Hello -
When a WSDL from a separate project is included in a BPEL, the <import> tag's location cause looks like this:
<import namespace="
http://myns" location="otherProject/my.wsdl" importType="
http://schemas.xmlsoap.org/wsdl/"/>
whereas WSDLs from the local BPEL project look like this:
<import namespace="
http://myns" location="my.wsdl" importType="
http://schemas.xmlsoap.org/wsdl/"/>
Both forms work when building from inside Netbeans. When building from the command line with ant, the WSDL file pointed to by the location cause for these imported from other projects can not be found.
My question is, what is the location clause exactly? A path? It doesn't seem to be if both the above forms work. What do we have to do so the WSDLs in other projects are found when building from the command line? How does the validation/build process search for included WSDL files?
Thank you