folks,
Can anyone using axis on weblogic give me suggestions on this error?
"HTTP method POST is not supported by this URL"
I got this error when I try to deploy my services by doing ...
"java org.apache.axis.client.AdminClient deploy.wsdd"
My setup... Weblogic 7.0 + Axis beta2 running on Win2K.
I captured the request/response using tcpmon. here they are...
The Response...
HTTP/1.0 400 Bad Request
Date: Fri, 20 Sep 2002 18:09:46 GMT
Server: WebLogic WebLogic Server 7.0 Thu Jun 20 11:47:11 PDT 2002 190955
Content-Length: 45
Content-Type: text/html
Connection: Close
HTTP method POST is not supported by this URL
The Request....
POST /axis/services/AdminService HTTP/1.0
Content-Length: 1197
Host: 192.168.102.21
Content-Type: text/xml; charset=utf-8
SOAPAction: "AdminService"
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SOAP-ENV:Body><deployment xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<service name="cc3:Login" provider="java:RPC">
<parameter name="className" value="com.correlationtech.ws.ServiceProviders.Login"/>
<parameter name="methodName" value="login"/>
</service>
<service name="cc3:User" provider="java:RPC">
<parameter name="className" value="com.correlationtech.ws.ServiceProviders.User"/>
<parameter name="methodName" value="list create delete"/>
</service>
<service name="cc3:Team" provider="java:RPC">
<parameter name="className" value="com.correlationtech.ws.ServiceProviders.Team"/>
<parameter name="methodName" value="create"/>
</service>
<service name="cc3:Individual" provider="java:RPC">
<parameter name="className"
value="com.correlationtech.ws.ServiceProviders.Individual"/>
<parameter name="methodName" value="create"/>
</service>
</deployment> </SOAP-ENV:Body>
</SOAP-ENV:Envelope>