Click here to Skip to main content
15,887,683 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
how to add validation on web service that is only verified the first time and next time called it,it do not need to be verfity ?I see every verification when called online, every time client need to provice username and password,It is not good.Here is my codes,How to correct that?
C#
LocalService.GIISService localTest = new LocalService.GIISService();

           localTest.Credentials = System.Net.CredentialCache.DefaultCredentials;//default credetials

           LocalService.CredentialSoapHeader header = new LocalService.CredentialSoapHeader();//Create SOAP header

           header.UserID = userName;//Set SOAP header user name information

           header.PassWord = userPassword;//Set SOAP header user password information

           localTest.CredentialSoapHeaderValue = header;

           this.Label1.Text = localTest.HelloWorld("ss");
Posted
Comments
Shahin Khorshidnia 14-Apr-13 20:52pm    
Have you ever tried to define header as a field?

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900