jboss-fuse / wsdl2rest

A tool allowing quick migration from existing JAX-WS services to REST
Apache License 2.0
25 stars 22 forks source link

wsdl2rest generate wrong java package path for some namespaces #95

Open ffang opened 4 years ago

ffang commented 4 years ago

for example, the targetNamespace of a wsdl is

targetNamespace="http://ibm.com/wdata"

Then in the generated camel-context.xml, the java type is like

type="com/wdata.ibm.WeatherRequest"

which should be

type="com.wdata.ibm.WeatherRequest"
ffang commented 4 years ago

this is the wsdl file in question