Webservice - URL, property
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
1. How can I get the url of the webservice it is running? a. within the page from web service is being invoked b. from Within web service I have web service on multiple servers from it can be invoked. Based on where it is running I have different logic to execute. 2. I want to pass certain information to the web service that can be used between my all web methods. I do not want to pass all the information in webmethods parameters like _ Public function MyWebMethod_1(ByVal param1 as string....ByVal paramN as String) As String ... End function _ Public function MyWebMethod_N(ByVal param1 as string....ByVal paramN as String) As String ... End function Any idea how can I do this? Can I have properties in web services? Yes, How?