Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 71905
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T19:57:40+00:00 2026-05-10T19:57:40+00:00

I am trying to run the wsdl2java command on a WSDL file that was

  • 0

I am trying to run the wsdl2java command on a WSDL file that was given to me from another group in my company. I know wsdl2java works because I can run the examples but when I try it on the wsdl given to me it fails. The one big difference is that the WSDL given to me uses SSL.

I’m using Java 1.4 (checked it a few time) and made sure all the correct jars are in my class path, jsse.jar is there.

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

ERROR:

log4j:WARN No appenders could be found for logger (org.apache.axis.i18n.ProjectResourceBundle). log4j:WARN Please initialize the log4j system properly. **java.io.IOException: Emitter failure. Invalid endpoint address in port AC_x0020_Generic_x0020_Web_0020_ServiceSoap in service AC_x0020_Generic_x0020_Web_x0020_ServiceLocator: ** at org.apache.axis.wsdl.toJava.JavaServiceImplWriter.writeFileBody(JavaServiceImplWriter.ja a:242) at org.apache.axis.wsdl.toJava.JavaWriter.generate(JavaWriter.java:127) at org.apache.axis.wsdl.toJava.JavaServiceWriter.generate(JavaServiceWriter.java:112) at org.apache.axis.wsdl.toJava.JavaGeneratorFactory$Writers.generate(JavaGeneratorFactory.j va:421) 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 needed a value in the <soap:address location=” /> for it to complete. I added the URL of my service and it worked.
New Lines looked like:

<soap:address location='' http://localhost:8080/axis/services/AC_x0020_Generic_x0020_Web_x0020_Service' /> 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T19:57:40+00:00Added an answer on May 10, 2026 at 7:57 pm

    The location specified by the soap:address is blank. It should 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 location.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 100k
  • Answers 100k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer If you want to stay with list / iterator comprehensions… May 11, 2026 at 7:53 pm
  • Editorial Team
    Editorial Team added an answer I would say making it part of the URI itself… May 11, 2026 at 7:53 pm
  • Editorial Team
    Editorial Team added an answer It seems that the best solution would be to index… May 11, 2026 at 7:53 pm

Related Questions

I am trying to run the VS 2008 SP1 installer , but it says
I am trying to run the following commands as part of an MSBuild script:
Hey everyone, I am trying to run the following program, but am getting a
I am trying to get the Azure SDK up and running on my dev

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.