Questions tagged [wsdl2code]

38 questions
1
vote
1 answer

Salesforce Compilation errors on generating apex class from WSDL

When I am trying to generate Apex classes from the below WSDL file I am getting the The following generated class(es) have compilation errors: Error: testxyzCom Error: unexpected token: 'limit' at 7:23 The generated class is also given below. I…
Ajay Dubedi
  • 208
  • 2
  • 11
1
vote
1 answer

Axis2 adding src infront of the directory

I am trying to generate java classes out of wsdl file using axis2. The code is being generated however the destination directory is not correct. After running the package or compile command I end up having two…
thedethfox
  • 1,651
  • 2
  • 20
  • 38
1
vote
1 answer

Log4j warning while using axis2-wsdl2code-maven-plugin to generate SOAP client

I am using axis2-wsdl2code-maven-plugin to generate my SOAP service client. The plugin itself works correctly and it generates a correct SOAP client, but I get following warning in console with every build: log4j:WARN No appenders could be found for…
Petr Dvořák
  • 750
  • 1
  • 9
  • 21
1
vote
1 answer

wsdl2code not found

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 : org.apache.axis2 axis2-wsdl2code-maven-plugin
dagofly
  • 31
  • 1
  • 5
1
vote
2 answers

Axis wsdl2java maven plugin with xmlbeans doesn't include resources folder

I'm using axis2 to re-generate the client code for an updated webservice that I need to use, for a legacy application. Being a legacy application I would like to avoid changing the code that has been already written, and re-generate the classes as…
rascio
  • 8,968
  • 19
  • 68
  • 108
1
vote
1 answer

How can I get SoapUI request to work on a webserver

I would like it so customers don't have to travel off site to see their tracking info:(In other words they can track their shipment from my website) http://www.echo.com/ShipmentTracking/EchoShipmentTrack.aspx I received the API documentation and I…
Andrew M.
  • 382
  • 3
  • 11
1
vote
1 answer

axis2 wsdl2code plugin only creates Arrays

When running wsdl2code maven plugin it only creates Arrays as opposed to wsdl2java plugin we were earlier using for ant. Following is the configuration. Thanks, Ash
0
votes
1 answer

How to handle custom objects in WebService with wsdl.exe

I have a Java webservice that is defined by this Java class: @WebService() @SOAPBinding(style = SOAPBinding.Style.RPC) public class ModelSim { /* ... */ public boolean CheckCondition(Condition condition) { return…
Tarion
  • 16,283
  • 13
  • 71
  • 107
0
votes
0 answers

serialVersionUID always changing in generated web service client

Upon regeneration of the webservice client from a wsdl with axis2 some of the classes get a new serialVersionUID. e.g. private static final long serialVersionUID = 1325767162892L; Because this changes the code its always a change for the VCS, even…
Udo Held
  • 12,314
  • 11
  • 67
  • 93
0
votes
1 answer

Can I call method from wsdl?

Is it possible to call method from wsdl.if yes how it can be achieved.Can i get web service name from wsdl? Thanks
Rajaram Shelar
  • 7,537
  • 24
  • 66
  • 107
0
votes
0 answers

axis2-wsdl2code keeps asking for wsdl file even my source is URL

I'm very new to WSDL. I want to generate JAVA code from WSDL url. Below is my code, org.apache.axis2 axis2-wsdl2code-maven-plugin 1.5.1
Hikaru Shindo
  • 2,611
  • 8
  • 34
  • 59
0
votes
1 answer

Visual Studio WSDL.exe unable to convert ONVIF WSDL files

I am trying to convert the ONVIF WSDL files from https://www.onvif.org/profiles/specifications/ to C++. But I keep getting similar errors about certain data types missing. For example, doing the following command: wsdl /language:CPP /protocol:SOAP12…
0
votes
1 answer

No XMLBean Classes Generated for XSD and WSDL Files (Maven)

I ma trying to generate XMLBean classes for some XSD and WSDL that I have. My POM file looks like:
hell_storm2004
  • 1,401
  • 2
  • 33
  • 66
0
votes
2 answers

Impossible to generate java client code from some wsdl

I'm trying with this specific URL: org.apache.axis2 axis2-wsdl2code-maven-plugin 1.7.9
Eljah
  • 4,188
  • 4
  • 41
  • 85
0
votes
2 answers

What is the best way of generating java class from a WSDL url for android?

I have a SOAP Web Service that i want to parse and use in my android project. I have read that there is a website that auto generates the java classes by importing the url (wsl2code) but it seems to have flaws. Additionally the sample they provide…
Anninos Kyriakou
  • 205
  • 3
  • 15