Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>To re-cap the question in the OP:</p> <blockquote> <p>I am connecting [to a WCF service] using WCFStorm which is able to retrieve all the meta data properly, but when I call the actual method I get:</p> <p>The provided URI scheme 'https' is invalid; expected 'http'. Parameter name: via</p> </blockquote> <p>The WCFStorm tutorials addresses this issue in <a href="http://www.wcfstorm.com/wcf/working-with-iis-and-ssl.aspx" rel="nofollow" title="Testing SSL-Enabled WCF Services hosted in IIS with SSL">Working with IIS and SSL</a>.</p> <p>Their solution worked for me:</p> <blockquote> <ol> <li><p>To fix the error, generate a client config that matches the wcf service configuration. The easiest way to do this is with Visual Studio.</p> <ul> <li><p>Open Visual Studio and add a service reference to the service. VS will generate an app.config file that matches the service</p></li> <li><p>Edit the app.config file so that it can be read by WCFStorm. Please see <a href="http://www.wcfstorm.com/wcf/loading-client-appconfig-files.aspx" rel="nofollow">Loading Client App.config files</a>. Ensure that the endpoint/@name and endpoint/@contract attributes match the values in wcfstorm.</p></li> </ul></li> <li><p>Load the modified app.config to WCFStorm [using the Client Config toobar button].</p></li> <li><p>Invoke the method. This time the method invocation will no longer fail</p></li> </ol> </blockquote> <p>Item (1) last bullet in effect means to <em>remove the namespace prefix</em> that VS prepends to the endpoint contract attribute, by default "ServiceReference1"</p> <pre class="lang-xml prettyprint-override"><code>&lt;endpoint ... contract="ServiceReference1.ListsService" ... /&gt; </code></pre> <p>so in the app.config that you load into WCFStorm you want for ListsService:</p> <pre class="lang-xml prettyprint-override"><code>&lt;endpoint ... contract="ListsService" ... /&gt; </code></pre>
    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. This table or related slice is empty.
    1. 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