Specifying 'localhost' in endpointURL of WSDD file lets WSDL generation crash
-----------------------------------------------------------------------------
Key: AXIS-2357
URL: http://issues.apache.org/jira/browse/AXIS-2357
Project: Apache Axis
Type: Bug
Versions: 1.3
Environment: Apache Tomcat/5.5.12, Axis 1.3, Win XP SP2
Reporter: Xypher Jarixx
Priority: Minor
If you specify
<deployment
xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<service name="HelloService" provider="java:RPC" style="wrapped"
use="literal">
<endpointURL>http://localhost:8080/axis/services/HelloService</endpointURL>
...
</service>
</deployment>
The WSDL will not be generated after deplloyment of the WSDD file.
Using
<deployment
xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<service name="HelloService" provider="java:RPC" style="wrapped"
use="literal">
<endpointURL>http://<hostname_or_IP>:8080/axis/services/HelloService</endpointURL>
...
</service>
</deployment>
solves the problem.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira