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 Steve Loughran <st...@iseran.com> on 2004/01/14 13:25:48 UTC

Re: Axis Problem

Gregor Liebermann wrote:
> Hello
> 
> I have a problem with AXIS and dont know who to ask ...
> 
> mayby you have an answer:
> 
> when i will call a http-web-service (NOT localhost)
> 
> like:
> 
> http://www.xmethods.net/sd/2001/EBayWatcherService.wsdl
> 
> i get the fault:
> 
> AxisFault
> 
> faultCode: {http://xml.apache.org/axis/}HTTP
> 
> faultSubcode:
> 
> faultString: (405)Method Not Allowed
> 
> faultActor:
> 
> faultNode:
> 
> faultDetail:
> 
> {}string: return code: 405
> 
>  
> 

this means the server said that the Axis request is not allowed. post a 
trace (using TCPmon), and verify that the URL you are talking to really 
has a web service there.

The url you listed is to the WSDL File, your service should be talking 
to the endpoint inside, 
http://services.xmethods.net:80/soap/servlet/rpcrouter, yes? That only 
accepts POST and not GET, by the look of things.

-steve