Your property:
<bpws:property
xmlns:bpws="http://schemas.xmlsoap.org/ws/2004/03/business-process/"
name="stringIDToken" type="choreons:stringID"/>
appears to reference a XML complex-type -- at least that's what Xerces'
schema model says -- whereas only simple-types are supported.
You might want to check the definition of the choreons:stringID type and
perhaps use "xsd:string" as a workaround for the time being.
alex
Alina Dima wrote:
Hi,
Thanks a lot for the new code..I compiled it and indeed this is the
exception I am getting:
ERROR - DeploymentPoller.check(133) | Deployment of BprId220 failed,
aborting fo
r now.
org.apache.ode.bpel.iapi.BpelEngineException: Compilation failure!
at
org.apache.ode.store.deploy.DeploymentUnitImpl.loadProcessDefinitions
(DeploymentUnitImpl.java:112)
at org.apache.ode.store.deploy.DeploymentUnitImpl.refresh
(DeploymentUnit
Impl.java:238)
at org.apache.ode.store.deploy.DeploymentUnitImpl
.<init>(DeploymentUnitI
mpl.java:75)
at
org.apache.ode.store.deploy.DeploymentManagerImpl.createDeploymentUni
t(DeploymentManagerImpl.java:49)
at org.apache.ode.store.ProcessStoreImpl.deploy(
ProcessStoreImpl.java:78
)
at org.apache.ode.axis2.deploy.DeploymentPoller.check(
DeploymentPoller.j
ava:127)
at org.apache.ode.axis2.deploy.DeploymentPoller.access$300
(DeploymentPol
ler.java:55)
at org.apache.ode.axis2.deploy.DeploymentPoller$PollingThread.run
(Deploy
mentPoller.java:178)
Caused by: org.apache.ode.bpel.compiler.api.CompilationException: <?xml
version=
"1.0" encoding="UTF-8"?>
<bpws:property xmlns:bpws="
http://schemas.xmlsoap.org/ws/2004/03/business-proces
s/" name="stringIDToken" type="choreons:stringID"/>: error:
[PropertyDeclaredWit
hComplexType] Attempt to declare property "{
http://cdl2bpel.cecka.sap.com/SAC1/S
toragePartner}stringIDToken" with complex type "{
http://cdl2bpel.cecka.sap.com/S
AC1}stringID".
at org.apache.ode.bpel.compiler.BpelCompiler.compile(
BpelCompiler.java:8
58)
at org.apache.ode.bpel.compiler.BpelCompiler.compile(
BpelCompiler.java:6
00)
at org.apache.ode.bpel.compiler.BpelC.compile(BpelC.java:265)
at org.apache.ode.bpel.compiler.BpelC.compile(BpelC.java:355)
at org.apache.ode.store.deploy.DeploymentUnitImpl.compile
(DeploymentUnit
Impl.java:101)
at org.apache.ode.store.deploy.DeploymentUnitImpl.compileProcesses
(Deplo
ymentUnitImpl.java:91)
at
org.apache.ode.store.deploy.DeploymentUnitImpl.loadProcessDefinitions
(DeploymentUnitImpl.java:109)
... 7 more
However, I am still confused about what that means...
Alina