How do I provide information to the Web Service when the
information is required as a SOAP Header?
Answer Posted / swapna
The key here is the Web Service proxy you created using
wsdl.exe or through Visual Studio .NET's Add Web Reference
menu option. If you happen to download a WSDL file for a
Web Service that requires a SOAP header, .NET will create a
SoapHeader class in the proxy source file. Using the
previous example:
public class Service1 :
System.Web.Services.Protocols.SoapHttpClientProtocol
{
public AuthToken AuthTokenValue;
[System.Xml.Serialization.XmlRootAttribute
(Namespace="http://tempuri.org/", IsNullable=false)]
public class AuthToken : SoapHeader {
public string Token; }}
In this case, when you create an instance of the proxy in
your main application file, you'll also create an instance
of the AuthToken class and assign the string:
Service1 objSvc = new Service1();
processingobjSvc.AuthTokenValue = new AuthToken();
objSvc.AuthTokenValue.Token = <ACTUAL token value>;
Web Servicestring strResult =
objSvc.MyBillableWebMethod();
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the result of “20” + 20;
Is web application testing different from desktop application testing? Explain how.
What is a Simple Element?
How can you add a method to a class already defined?
What is frame level testing and how do we test it?
How to test iBackup and storage products?
What is user application?
What is meant by mobile application?
Suppose there are two requests for 2 different pages of same site and from 2 different browsers, How Web server recognise the different request and send result to the exact sender browsers.
what are propritory databases?
What is DOM?
Define http.
Can you get a virus from website?
Is it right way to earn revenue through google adsense? Is it Possible?
what atttributes we use to create a webservice?