Hi,
In my .NET solution i've two projects a webservice and a testing
application, everything works ok and the testing application is able to call
the methods of the webservice. This webservice requires the client to send a
username token to validate that request. When i make a release build of the
application and i select Project - > Copy project and i copy my web service
to a local address http://localhost/deployed/webservice.asmx when i acess
this url in webbrowser i m able to see the methods exposed by this web
service, but when i call this web service from my testing application ( i
re-add the reference to the web service) i receive an exception, can
somebody tell me how do i fix this issue ?
Invalid Login Credientials, Webservice Returned: Security Fault Unable to
authenticate Username
TokenSystem.Web.Services.Protocols.SoapHeaderException:
System.Web.Services.Protocols.SoapHeaderException: Server unavailable,
please try later ---> System.ApplicationException: An error occured
processing an outgoing fault response --- End of inner exception stack
trace --- at
System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClient
Message message, WebResponse response, Stream responseStream, Boolean
asyncCall) at
Regards
Pablo Cibraro - 08 Aug 2005 15:19 GMT
Hi Roger,
For some reason, the UsernameTokenManager in the web service can't
authenticate the username token that you are sending attached to the
message.
Are you using the default UsernameTokenManager ?.
If you are using the default UsernameTokenManager, it authenticates the
token using windows authentication, and
maybe the user specified in the token can't be authenticated against the
active directory or the local computer.
Regards,
Pablo Cibraro
www.lagashsystems.com.ar
> Hi,
> In my .NET solution i've two projects a webservice and a testing
[quoted text clipped - 24 lines]
>
> Regards