Hello All,
I want to invoke the .Net Based webservice from a java client code using axis api.
As we pass the credentials in .Net
"uin.Credentials = new NetworkCredential("administrator", "Tech1234", "WORKGROUP");"
I have to pass them in java code.
I have tried with
" System.setProperty("http.proxyUser","Administrator ");
System.setProperty("http.proxyPassword","Tech1234" );
"
But still I am getting 401 Unauthorized response.
How I can pass these credentials through a java code?
Thanks And Regards,
Amarja