Hi all,
I created a WSDL file.....using java2wsdl and got the following WSDL
(attached for reference). I see the WSDL deployed on
http://localhost:8080/axis/services/Bingo?wsdl.
When I write a client , I get the folllowing error.. What could be the
reason and also , please let me know if the WSDL is created properly... I
have a doubt on the WSDL creation....
AxisFault
faultCode: {
*http://schemas.xmlsoap.org/soap/envelope/}Server.userException<http://schemas.xmlsoap.org/soap/envelope/%7DServer.userException>
*
faultSubcode:
faultString:
*java.lang.reflect.InvocationTargetException*
faultActor:
faultNode:
faultDetail:
{http://xml.apache.org/axis/}hostname:builds<http://xml.apache.org/axis/%7Dhostname:builds>
*
java.lang.reflect.InvocationTargetException
*
at org.apache.axis.message.SOAPFaultBuilder.createFault(
*SOAPFaultBuilder.java:222*)
at org.apache.axis.message.SOAPFaultBuilder.endElement(
*SOAPFaultBuilder.java:129*)
at org.apache.axis.encoding.DeserializationCo
Any help gr8ly appreciated.
Regards,
Sarika
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="urn:com.fci.healthcheck.service" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="urn:com.fci.healthcheck.service" xmlns:intf="urn:com.fci.healthcheck.service" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<!--WSDL created by Apache Axis version: 1.4
Built on Apr 22, 2006 (06:55:48 PDT)-->
<wsdl:types>
<schema targetNamespace="urn:com.fci.healthcheck.service" xmlns="http://www.w3.org/2001/XMLSchema">
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
<complexType name="ClientInfo">
<sequence>
<element name="ficoScore" type="xsd:int"/>
</sequence>
</complexType>
</schema>
</wsdl:types>
<wsdl:message name="getHealthCheckResponse">
<wsdl:part name="getHealthCheckReturn" type="soapenc:string"/>
</wsdl:message>
<wsdl:message name="getHealthCheckRequest">
<wsdl:part name="in0" type="impl:ClientInfo"/>
</wsdl:message>
<wsdl:portType name="FCIPlannerEndPoint">
<wsdl:operation name="getHealthCheck" parameterOrder="in0">
<wsdl:input message="impl:getHealthCheckRequest" name="getHealthCheckRequest"/>
<wsdl:output message="impl:getHealthCheckResponse" name="getHealthCheckResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="Bingo2SoapBinding" type="impl:FCIPlannerEndPoint">
<wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="getHealthCheck">
<wsdlsoap:operation soapAction=""/>
<wsdl:input name="getHealthCheckRequest">
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:com.fci.healthcheck.service" use="encoded"/>
</wsdl:input>
<wsdl:output name="getHealthCheckResponse">
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:com.fci.healthcheck.service" use="encoded"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="FCIPlannerEndPointService">
<wsdl:port binding="impl:Bingo2SoapBinding" name="Bingo2">
<wsdlsoap:address location="http://localhost:8080/axis/services/Bingo2"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]