If you want to expose a simple web service (WCF) so that it can be accessed by a web get or browser you need to first insure that the input and output are simple data types like strings or integers.
1.Create the web site project
2. Add a reference to System.ServiceModel.Web (so we can access the WebGet decleration.
3. Add your function and decerate it with the following;
<OperationContract()> _
<WebGet()> _
Function Dosmothing(ByVal pValue As String) As String
4. Add the following to your web.config file;
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
5. Update your service model to reflect the one below.
<system.serviceModel>
<behaviors>
<endpointBehaviors>
<behavior name="NewBehavior">
<webHttp />
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior name="my.Application.Behavior1">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service behaviorConfiguration="Behavior1"
name="myInterface">
<endpoint behaviorConfiguration="NewBehavior" binding="webHttpBinding"
bindingConfiguration="" contract="myInterface" />
</service>
</services>
</system.serviceModel>
6.Now you can access the function like this;
http://localhost:54433/myInterface.svc/DoSmothing?pValue=Smothing
No comments:
Post a Comment