wsdl2code

WSDL2Code (Maven) auto-generates corrupt classes (packages)

Hello, I am currently in the process of replacing the IBM WebService framework with Axis2. When generating the code from the WSDL file, I use the Maven plugin WSDL2Code. However, the code created is always wrong. Or rather, the packagenames are always wrong, which in turn makes every method called uncallable (creating even more errors, ...

Code generation from WSDL using XML Catalog

Is there any tool for generating Java code from WSDL using XML Catalogs? The problem is that I have wsdl files that import XML schemas which also import other schemas and the schemas are not available at schemaLocation url. That is why code generation fails. If a tool was able to use XML Catalog this problem would be solved without modif...

Using Soap Web Services in iPhone with wsdl2objc?

Hello, I do realize this is a duplicate question, however the only other question is quite old, so I would like to know if anyone has had any recent experience with the latest version of the wsdl2objc wsdl2objc link I am doing an application that will communicate with SOAP Web services exposed by a third party application (it only expo...

axis2 maven example

I try to use axis2 (1.5.1) version to generate java codes from wsdl files, but I can't figure out what is the correct pom.xml <build> <plugins> <plugin> <groupId>org.apache.axis2</groupId> <artifactId>axis2-wsdl2code-maven-plugin</artifactId> <version>1.5.1</version> <execution...

What are the minimum dependencies and plugin configuration I need to create a web service client using Axis2 and Maven from a WSDL file?

Hi, I'm trying to create a web service client using Axis2. I would like to use Maven 2 to generate the necessary classes from the WSDL I have but the documentation for the wsdl2code plugin isn't helping me. Does anyone have a working example of a basic pom.xml that will generate classes from a WSDL? ...

Generate PHP code from WSDL (for service replacement)

We have few Web Services witch now are handled by an external application, and we plan to replace them as an new own implementation. Is there some tool/class witch will generate stock php interface and structures 100% compatible with those WSDL's we have now? I'll have to re-implement this wsdl interface, and i have to be sure, that in...

wsdl2code not founded

Hello, I'm trying to generate webservice client with axis2 and maven so i followed some tutorials and put some code lines in my pom.xml : <plugin> <groupId>org.apache.axis2</groupId> <artifactId>axis2-wsdl2code-maven-plugin</artifactId> <version>1.5.1</version> <executions> <execution> <goals> ...