I tried to use it in my service but I can not get anything different from this error.
Error :
ExceptionDetail, provavelmente criado por IncludeExceptionDetailInFaults=true, cujo valor é:
System.InvalidOperationException: Foi gerada uma exceção em uma chamada a uma extensão de exportação WSDL: System.ServiceModel.Description.DataContractSerializerOperationBehavior
contrato: http://tempuri.org/:IHemoPlusApp ----> System.InvalidOperationException: Para a solicitação na operação SalvarPdf ser um fluxo, a operação deve ter um parâmetro único cujo tipo é Stream.
web.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --></configSections>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="mssqllocaldb" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
<appSettings>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5.2" />
<httpRuntime targetFramework="4.5.2" />
</system.web>
<system.serviceModel>
<bindings>
<webHttpBinding>
<binding name="endp.WebHttp" maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" transferMode="Streamed" sendTimeout="00:05:00">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
<security mode="None" />
</binding>
</webHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="servicebehaviors">
<!-- Para evitar a divulgação de informações de metadados, defina os valores abaixo para falso antes da implantação -->
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
<!-- Para receber detalhes de exceção em falhas para fins de depuração, defina o valor abaixo para verdadeiro. Defina para falto antes da implantação para evitar a divulgação de informações de exceção -->
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="web">
<webHttp />
</behavior>
</endpointBehaviors>
</behaviors>
<services>
<service behaviorConfiguration="servicebehaviors" name="HemoPlusApp.Service.HemoPlusApp">
<endpoint bindingConfiguration="endp.WebHttp" address="" behaviorConfiguration="web" binding="webHttpBinding" contract="HemoPlusApp.Service.IHemoPlusApp" />
</service>
</services>
<protocolMapping>
<add binding="basicHttpsBinding" scheme="https" />
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
<!--
Para procurar o diretório de raiz do aplicativo Web durante a depuração, defina o valor abaixo para verdadeiro.
Defina-o para falso antes da implantação para evitar a divulgação de informações da pasta do aplicativo Web.
-->
<directoryBrowse enabled="true" />
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="*" />
</customHeaders>
</httpProtocol>
</system.webServer>
<connectionStrings>
<!--<add name="DataContext" connectionString="data source=LUCAS-NOTE;initial catalog=DB_HEMOPLUS;user id=sa;password=g3rm4n;MultipleActiveResultSets=True;App=EntityFramework" providerName="System.Data.SqlClient" />-->
<add name="DataContext" connectionString="data source=192.168.254.154\SQL2008R2;initial catalog=DB_HEMOPLUS_PASQUINI_092017;persist security info=True;user id=SA;multipleactiveresultsets=True;application name=EntityFramework" providerName="System.Data.SqlClient" />
</connectionStrings>
</configuration>
Method:
[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "HelloWorld/test/{test}", BodyStyle = WebMessageBodyStyle.Bare)]
Stream HelloWorld(string test, Stream fileContents);