bpel - An error to upload a ZIP file under apache ode: null model -
i have workflow made in intalio bpmn designer , zip file contents of build directory (deploy.xml, wsdl, bpel), problem why workflow doesn't deploy in apache ode.
the error displayed in apache ode is: invocation of operation deploy failed: java.lang.illegalargumentexception: null model.
any welcome
it's been while, here's answer:
this rather unhelpful error message result of ode processing import has no schema location attribute, such as:
<wsdl:types> <xsd:schema targetnamespace="something" > <xsd:import namespace="somethingelse" /> </xsd:schema> </wsdl:types>
add missing schemalocation
attribute:
<wsdl:types> <xsd:schema targetnamespace="something" > <xsd:import namespace="somethingelse" schemalocation="somethingelse.xsd"/> </xsd:schema> </wsdl:types>
also check <wsdl:import/>
, <bpel:import/>
tags missing location
attributes.
Comments
Post a Comment