Click here to Skip to main content
15,886,362 members
Articles / Web Development / ASP.NET

WebService Routing (Soap Router)

Rate me:
Please Sign up or sign in to vote.
4.71/5 (4 votes)
27 Aug 2010CPOL4 min read 49.2K   554   23  
This article explains WebService routing using WSE 3.0
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
  </configSections>
  <appSettings>
    <add key="Premium Web Service" value="http://localhost/PremiumService" />
  </appSettings>
  <system.web>
    <webServices>
      <soapExtensionImporterTypes>
      </soapExtensionImporterTypes>
    </webServices>
    <compilation>
      <assemblies>
        <add assembly="System.Security, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
        <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
        <add assembly="System.Configuration.Install, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
      </assemblies>
    </compilation>
  </system.web>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions