Wsdl2java Error: Emitter failed. Invalid endpoint address on port

I am trying to run a wsdl2java command on a WSDL file that was provided to me from another team at my company. I know wsdl2java works because I can run the examples, but when I tried it on the wsdl provided to me, it fails. One big difference is that the WSDL provided to me uses SSL.

Im using Java 1.4 (checked it several times) and made sure all the correct jars are in my classpath, the jsse.jar is there.

COMMAND: java org.apache.axis.wsdl.WSDL2Java --server-side GenericWebService.wsdl

ERROR:

log4j: WARN No application found for the log (org.apache.axis.i18n.ProjectResourceBundle). log4j: WARN Please initialize the log4j system correctly. ** java.io.IOException: Emitter error. Invalid endpoint address in AC_x0020_Generic_x0020_Web_0020_ServiceSoap port service AC_x0020_Generic_x0020_Web_x0020_ServiceLocator: ** on org.apache.axis.wsdl.toJava.JavaServiceImplWriter.writeFileBody (JavaServiceImplWriter.ja and 242) on org.apache.axis.wsdl.toJava.JavaWriter.generate ( JavaWriter.java:127) to org.apache.axis.wsdl.toJava.JavaServiceWriter.generate (JavaServiceWriter.java:112) at org.apache.axis.wsdl.toJava.JavaGeneratorFactory $ Writers.generate (JavaGeneratorFactory1 ) at org.apache.axis.wsdl.gen.Parser.generate (Parser.java:476) at org.apache.axis.wsdl.gen.Parser.access $ 000 (Parser.java:45) at org.apache.axis.wsdl.gen.Parser $ WSDLRunnable.run (Parser.java:362) at java.lang.Thread.run (Thread.java:534)

ASDF

<wsdl:portType name="AC_x0020_Generic_x0020_Web_x0020_ServiceSoap">
  <wsdl:operation name="Provision">
    <wsdl:input message="tns:ProvisionSoapIn" />
    <wsdl:output message="tns:ProvisionSoapOut" />
  </wsdl:operation>
</wsdl:portType>

<wsdl:binding name="AC_x0020_Generic_x0020_Web_x0020_ServiceSoap" type="tns:AC_x0020_Generic_x0020_Web_x0020_ServiceSoap">
  <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
  <wsdl:operation name="Provision">
    <soap:operation soapAction="http://xmlns.fmr.com/systems/dev/aar/2008/05/GenericWebService/Provision" style="document" />
    <wsdl:input>
      <soap:body use="literal" />
      <soap:header message="tns:ProvisionServiceProcessingDirectives" part="ServiceProcessingDirectives" use="literal" />
      <soap:header message="tns:ProvisionServiceCallContext" part="ServiceCallContext" use="literal" />
    </wsdl:input>
    <wsdl:output>
      <soap:body use="literal" />
    </wsdl:output>
  </wsdl:operation>
</wsdl:binding>


<wsdl:service name="AC_x0020_Generic_x0020_Web_x0020_Service">
  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Generic web service definition for provisioning requests callable by AccessCENTRAL</wsdl:documentation>
  <wsdl:port name="AC_x0020_Generic_x0020_Web_x0020_ServiceSoap" binding="tns:AC_x0020_Generic_x0020_Web_x0020_ServiceSoap">
    <soap:address location="" />
  </wsdl:port>
</wsdl:service>

      

UPDATED SOLUTION: The problem was that the parser needs a value in the "lt; soap: address location =" // gt; to complete it. I added my service url and it worked. The new lines looked like this:

<soap:address location="" http://localhost:8080/axis/services/AC_x0020_Generic_x0020_Web_x0020_Service" />

      

+1


source to share


1 answer


Location specified by soap: address is empty. This must be the URI of the SOAP service. See soap: address .



Looking at soapAction, http://xmlns.fmr.com/systems/dev/aar/2008/05/GenericWebService might be the correct value for the location.

+2


source







All Articles