Note that there are some explanatory texts on larger screens.

plurals
  1. POWCF TestClient Error if calling Get() methods
    text
    copied!<p>I'm dealing with a problem with WCF Testing. I have a <strong>CategorieService</strong> WCF service.. See the image <a href="http://i.stack.imgur.com/1Wbg1.jpg" rel="nofollow">http://i.stack.imgur.com/1Wbg1.jpg</a> sharing it through <em>netTcpBinding</em> Everything it's ok(all methods are being called properly) except the GetAll() GetById() methods. It throws an exception... See the details <a href="http://i.stack.imgur.com/I60vt.jpg" rel="nofollow">http://i.stack.imgur.com/I60vt.jpg</a></p> <p>Here is the <em>App.config</em> file</p> <pre><code>&lt;system.serviceModel&gt; &lt;diagnostics&gt; &lt;messageLogging logEntireMessage="true" logMalformedMessages="true" logMessagesAtTransportLevel="true" /&gt; &lt;endToEndTracing activityTracing="true" /&gt; &lt;/diagnostics&gt; &lt;services&gt; &lt;service name="Services.CategorieService"&gt; &lt;clear /&gt; &lt;endpoint binding="mexHttpBinding" contract="IMetadataExchange" listenUriMode="Explicit"&gt; &lt;identity&gt; &lt;dns value="localhost" /&gt; &lt;certificateReference storeName="My" storeLocation="LocalMachine" x509FindType="FindBySubjectDistinguishedName" /&gt; &lt;/identity&gt; &lt;/endpoint&gt; &lt;endpoint address="net.tcp://localhost:8888/myservice" binding="netTcpBinding" bindingConfiguration="" contract="Services.ICategorieService" /&gt; &lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress="http://localhost:8732/Service1/" /&gt; &lt;/baseAddresses&gt; &lt;/host&gt; &lt;/service&gt; &lt;/services&gt; &lt;behaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior&gt; &lt;serviceMetadata httpGetEnabled="True"/&gt; &lt;serviceDebug includeExceptionDetailInFaults="False" /&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; &lt;/system.serviceModel&gt; </code></pre>
 

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