You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by umesh barik <um...@yahoo.com> on 2009/01/21 19:15:16 UTC

facing problem while writing client object

I am getting the following error while trying to connect to ESPPServer (on linux).
�
�
AxisFault
faultCode: {http://xml.apache.org/axis/}HTTP
faultSubcode: 
faultString: (401)Unauthorized
faultActor: 
faultNode: 
faultDetail: 
{}:return code: 401
&lt;html&gt;&lt;head&gt;&lt;title&gt;Apache Tomcat/5.5.26 - Error report&lt;/title&gt;&lt;style&gt;&lt;!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--&gt;&lt;/style&gt; &lt;/head&gt;&lt;body&gt;&lt;h1&gt;HTTP Status 401 - &lt;/h1&gt;&lt;HR size=&quot;1&quot; noshade=&quot;noshade&quot;&gt;&lt;p&gt;&lt;b&gt;type&lt;/b&gt; Status report&lt;/p&gt;&lt;p&gt;&lt;b&gt;message&lt;/b&gt;
 &lt;u&gt;&lt;/u&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;description&lt;/b&gt; &lt;u&gt;This request requires HTTP authentication ().&lt;/u&gt;&lt;/p&gt;&lt;HR size=&quot;1&quot; noshade=&quot;noshade&quot;&gt;&lt;h3&gt;Apache Tomcat/5.5.26&lt;/h3&gt;&lt;/body&gt;&lt;/html&gt;
{http://xml.apache.org/axis/}HttpErrorCode:401

(401)Unauthorized
at org.apache.axis.transport.http.HTTPSender.readFromSocket(HTTPSender.java:732)
at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:143)
at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
at org.apache.axis.client.Call.invokeEngine(Call.java:2765)
at org.apache.axis.client.Call.invoke(Call.java:2748)
at org.apache.axis.client.Call.invoke(Call.java:2424)
at org.apache.axis.client.Call.invoke(Call.java:2347)
at org.apache.axis.client.Call.invoke(Call.java:1804)
at com.cablelabs.espp.soap.api.ESPPSoapBindingStub.addPubIds(ESPPSoapBindingStub.java:1110)
at com.cablelabs.espp.client.ESPPClient.addPubId(ESPPClient.java:79)
at com.cablelabs.espp.client.ESPPClient.main(ESPPClient.java:55)
�
�
Trying to instantiate a ESPPClient and added the following codes to authenticate 
�
ESPPService s = new ESPPServiceLocator();
ESPPPortType espp = s.getESPPPort(new URL(url));
((org.apache.axis.client.Stub)espp)._setProperty(Call.USERNAME_PROPERTY, "accountr1");
((org.apache.axis.client.Stub)espp)._setProperty(Call.PASSWORD_PROPERTY, "accountr1");
�
But not getting any result.
�
Appreciate any help. Thanks in advance.
�
-Umesh