Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I finally found out what was the error: it had nothing to do with Soap versions, streams, etc... I just mispelled the name of my own service (!), using <code>FileTransfer</code> instead of <code>FileTransferService</code>. </p> <p>In the end basicHttpBinding was perfectly fine, I didn't need to resort to a custom binding.</p> <p>Original (bad) version:</p> <pre><code>&lt;service behaviorConfiguration="serviceBehavior" name="Acme.Service.FileTransfer"&gt; &lt;endpoint address="" name="basicHttpStream" binding="basicHttpBinding" bindingConfiguration="httpLargeMessageStream" contract="Acme.Service.IFileTransferService" /&gt; &lt;endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/&gt; &lt;/service&gt; </code></pre> <p>New (fixed) version: </p> <pre><code>&lt;service behaviorConfiguration="serviceBehavior" name="Acme.Service.FileTransferService"&gt; &lt;endpoint address="" name="basicHttpStream" binding="basicHttpBinding" bindingConfiguration="httpLargeMessageStream" contract="Acme.Service.IFileTransferService" /&gt; &lt;endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/&gt; &lt;/service&gt; </code></pre> <p>Still I can't say that the error message was helpful in any way to understand what was going on here....</p> <p>If you are interested in the whole service, you can find more details on my blog at the following link: <a href="http://stefanoricciardi.com/2009/08/28/file-transfer-with-wcp/" rel="noreferrer">File Transfer with WCF</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload