Questions tagged [wsdlc]

Wsdlc is a tool that can generate java stubs from WSDL (Web Services Description Language).

Wsdlc is a tool that can generate java stubs from WSDL (Web Services Description Language).

The Web Services Description Language is an XML-based interface description language that is used for describing the functionality offered by a web service. A WSDL description of a web service (also referred to as a WSDL file) provides a machine-readable description of how the service can be called, what parameters it expects, and what data structures it returns.

6 questions
3
votes
1 answer

Use JAXB unmarshalling in Weblogic Server

Especifications: - Server: Weblogic 9.2 fixed by customer. - Webservices defined by wsdl and xsd files fixed by customer; not modifications allowed. Hi, In the project we need to develope a mail system. This must do common work with the webservice.…
Leo
  • 75
  • 1
  • 9
1
vote
0 answers

Weblogic WsdlcTask for gradle

I am looking for the weblogic.wsee.tools.anttasks.WsdlcTask for gradle. All I could find so far was an example for Ant. Importing the ant script with ant.importBuild "wsdlc_build.xml" works perfectly fine in my gradle build script, but I would…
Julian
  • 65
  • 2
  • 13
0
votes
1 answer

wsdlc Ant task ignores constraints

I'm attempting to create a web services project using eclipse with the Oracle Enterprise Pack. When generating the web services from a WSDL document using the wsdlc Ant task, all the restrictions/constraints in the WSDL are completely ignored. Is…
Kal
  • 185
  • 3
  • 12
0
votes
1 answer

Unable to use .xjb file inside wsdlc ant task

I have a requirement of customize the default conversion provided by JAXB. For the xs:date type we need to show only the date part(removing the time). I have created an .xjb file and used the xjc command to generate the required classes. This is…
Govind
  • 1
  • 1
0
votes
3 answers

Error using jaxb external bindings customization

I use the wsdlc tool (weblogic 10.3.1) to generate classes from wsdl. I have the following external jaxb bindings customization file:
Gerard
  • 13,023
  • 14
  • 72
  • 125
0
votes
1 answer

Error while running weblogic wsdlc task from Java

After referring this article and this article, I am trying to run the ant script from a java class as follows: File buildFile = new File("D:\\Utility\\artifacts\\build.xml"); Project p = new Project(); p.setUserProperty("ant.file",…
Azhar
  • 1
  • 1