Amacım bir PDF dosyası akışını istemciye geri vermektir.WCF Yayımlanan PDF Yanıtı
Yani WCF tarafında ben:
public interface IPersonalPropertyService
{
[OperationContract]
Stream GetQuotation();
}
public class PersonalPropertyService : IPersonalPropertyService
{
public Stream GetQuotation()
{
var filePath = HostingEnvironment.ApplicationPhysicalPath + @"Quotation.pdf";
var fileInfo = new FileInfo(filePath);
// check if exists
if (!fileInfo.Exists)
throw new FileNotFoundException("File not found");
FileStream stm = File.Open(filePath, FileMode.Open);
WebOperationContext.Current.OutgoingResponse.ContentType = "application/pdf";
return stm;
}
}
yapılandırma bölümü aşağıdaki gibidir:
<system.serviceModel>
<client>
<endpoint
binding="basicHttpBinding"
bindingConfiguration="StreamedHttp"
contract="IPersonalPropertyService" >
</endpoint>
</client>
<bindings>
<basicHttpBinding>
<binding name="StreamedHttp" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"
transferMode="Streamed">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
</binding>
</basicHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the values below to false before deployment -->
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
Şimdi istemci tarafında (örneğin konsol uygulaması), ben hizmet başvurusu oluştururken, BasicHttpBinding StreamedHttp yapılandırmamı görmeyi beklerdim, ancak bunun yerine şu yapılandırma oluşturulur:
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_PersonalPropertyService" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="MyPath/PersonalPropertyService.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_PersonalPropertyService"
contract="TheNamespace.ServiceReference.PersonalPropertyService"
name="BasicHttpBinding_PersonalPropertyService" />
</client>
</system.serviceModel>
ve ben çünkü bu nedenle, diyordum bir ProtocolException istisna alıyorum olduğunu hesaba katmak
cevap mesajının içerik türü application/pdf değil maçı bağlayıcı (text/xml içerik türü yapar; karakter kümesi = UTF-8).
İstemciyi WCF tarafında tanımlanan akış yapılandırmasını kabul etmeye nasıl zorlayabilirim?
Teşekkür ederiz
Tarayıcınızda 'http: //....../ GetQuotation' yazdığınızda ne olur? – Eser
Web.config'i tarayıcıyla etkileşimde bulunduğum için değiştirdim ve şimdi http: //..../PersonalPropertyService.svc/GetQuotation, yaptığım zaman: Yönteme izin verilmiyor. – Nostradamus
WCF conf dosyalarını hiçbir zaman okuyamamıştım, ancak ilgileniyorsanız, – Eser