N
Nina
Compact Framework 2.0 does not include support for WSE 3.0 (Web.Services3).
What can I use instead of SoapContext to pass my credentials?
On Windows application I use C# code:
NewToken.com.digitalpaytech.sandbox.TransactionInfoServiceWse
myPayStationWse = new
NewToken.com.digitalpaytech.sandbox.TransactionInfoServiceWse();
SoapContext myContext = myPayStationWse.RequestSoapContext;
UsernameToken token = new UsernameToken(myUsername, myPassword,
PasswordOption.SendPlainText);
myContext.Security.Tokens.Add(token);
myContext.Security.MustUnderstand = true;
It works fine. How can I connect to secure Web Server from Mobile
application where SoapContext is not available?
What can I use instead of SoapContext to pass my credentials?
On Windows application I use C# code:
NewToken.com.digitalpaytech.sandbox.TransactionInfoServiceWse
myPayStationWse = new
NewToken.com.digitalpaytech.sandbox.TransactionInfoServiceWse();
SoapContext myContext = myPayStationWse.RequestSoapContext;
UsernameToken token = new UsernameToken(myUsername, myPassword,
PasswordOption.SendPlainText);
myContext.Security.Tokens.Add(token);
myContext.Security.MustUnderstand = true;
It works fine. How can I connect to secure Web Server from Mobile
application where SoapContext is not available?