Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to generate a client jar from WSDL using an Ant buildfile like this:

<target name="generateWSClient">
    <setproxy proxyhost="proxy" proxyport="port" />

    <wsimport wsdl="https://mywsdl" destdir="${build.dir}/clientclasses"
             verbose="true" package="com.locationservice.client">
    </wsimport>

    <jar destfile="${build.dir}/${lis.jar.name}"
         basedir="${build.dir}/clientclasses" />

    <javac srcdir="${src.dir}" destdir="${build.dir}/clientclasses"
           includes="com/locationservice/client/*.java">
        <classpath refid="client.classpath" />
    </javac>
</target>

But I'm getting this exception when I run Ant:

[wsimport] parsing WSDL...
[wsimport] [ERROR] sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
[wsimport] Failed to read the WSDL document: https://mywsdl, because 1) could not find the document; /2) the document could not be read; 3) the root element of the document is not <wsdl:definitions>.
[wsimport] [ERROR] failed.noservice=Could not find wsdl:service in the provided WSDL(s): 
[wsimport]  At least one WSDL with at least one service definition needs to be provided.
[wsimport]  Failed to parse the WSDL.

Any pointers on how to fix this?

share|improve this question

1 Answer

I think https://mywsdl in <wsimport> has to point to a valid WSDL document.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.