The most intelligent Java IDE
[Logo] JavaRanch » JavaRanch Saloon
  Search | FAQ | Recent Topics | Hot Topics
Register / Login


Win a copy of Flex 4 in Action this week in the Flex forum!
Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » Web Services
 
RSS feed
 
New topic
Author

trouble generating wsdl using ant task

tarik el berrak
Greenhorn

Joined: Oct 06, 2006
Messages: 29

Hi all,

I have some troubles using axis ant task to generate wsdl.
here is my task :
----------------------------------------------------------------------------
<taskdef name="java2wsdl"
classname="org.apache.ws.java2wsdl.Java2WSDLTask"
classpathref="manaccs.classpath" />

<target name="generate.wsdl" depends="compile"
description="generate wsdl from the service interface">

<java2wsdl className="${manaccs.services.pkg}.ServiceDelegate"
outputLocation="${manaccs.wsdl.dir}"
targetNamespace="http://${namespaceTarget}/"
schemaTargetNamespace="http://${namespaceTarget}/wsdl">
<classpath>
<pathelement path="${manaccs.classpath}" />
<pathelement path="${manaccs.build.classes.dir}" />
</classpath>
</java2wsdl>
</target>
----------------------------------------------------------------------------

when launching ant ia have this exception and the wsd file is empty.

org.apache.ws.commons.schema.XmlSchemaException: XML-22101: (Fatal Error) DOMSource node as this type not supported


Any help

SCJP 1.5<br />New Target (SCWCD 5)
Garima Gupta
Greenhorn

Joined: Feb 09, 2010
Messages: 1

I have the same issue. Did you get the solution?
 
 
 
Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » Web Services
 
RSS feed
 
New topic
MyEclipse Enterprise Workbench