Hi Alex,
I tried to apply your features but nothing changes, I got only errors.
Furthermore I downloaded ode.jbi-2.0-20070217-installer from one Apache Ode
involved engineer.
I add it into service mix without any problem but when I try to develope a
BPEL project I obtain a compilation error:
BpelObjectFactory -Unrecognized element in BPEL
dom:{http://docs.oasis-open.org/wsbpel/2.0/process/executable}process
Well, it gimme wrong the BPEL namespace!
I'm sure my code it's ok, it's simply an echo server and in the AS version
it runs, well, it is a bug?
Here is a my code
<process name="Echo"
targetNamespace="http://localhost:8080/echo"
xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
xmlns:tns="http://localhost:8080/echo"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:test="http://localhost:8080/echo.wsdl"
queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0">
<import location="echo.wsdl"
namespace="http://localhost:8080/echo.wsdl"
importType="http://schemas.xmlsoap.org/wsdl/"/>
<partnerLinks>
<partnerLink
name="echoPartnerLink"
partnerLinkType="test:echoPartnerLinkType"
myRole="me"
partnerRole="you"/>
</partnerLinks>
<variables>
<variable name="inMex" messageType="test:echoMessage"/>
<variable name="outMex" messageType="test:echoMessage"/>
</variables>
<sequence>
<receive name="rec" partnerLink="echoPartnerLink"
portType="test:echoPortType" operation="echoReq" variable="inMex"
createInstance="yes"/>
<assign name="ass">
<copy>
<from variable="inMex" part="tellMe"/>
<to variable="outMex" part="tellMe"/>
</copy>
</assign>
<invoke
name="echoResp"
partnerLink="echoPartnerLink"
portType="test:echoPortType"
operation="echoReq"
inputVariable="outMex"/>
</sequence>
</process>
Please Help me.
Regards
Simone
----- Original Message -----
From: "Alex Boisvert" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Tuesday, February 19, 2008 1:28 AM
Subject: Re: Ode in service Mix
Alternatively, you can follow the steps outlined here,
http://ode.apache.org/user-guide.html#UserGuide-UsingaJNDIDataSourceunderServiceMixJBI
to configure a JNDI datasource for ServiceMix.
The only difference with ServiceMix 3.2.1 is that some bundled libraries
have changed: Jencks 2.1 is already provided, and you need to install
spring-jca-2.0.6.jar<http://repo1.maven.org/maven2/org/springframework/spring-jca/2.0.6/spring-jca-2.0.6.jar>,
tranql-connector-1.2.jar<http://mirrors.ibiblio.org/pub/mirrors/maven2/tranql/tranql-connector/1.2/tranql-connector-1.2.jar>,
and
tranql-connector-derby-common-1.1.jar<http://mirrors.ibiblio.org/pub/mirrors/maven2/tranql/tranql-connector-derby-common/1.1/tranql-connector-derby-common-1.1.jar>if
you use Derby.
alex
On 2/18/08, Tammo van Lessen <[EMAIL PROTECTED]> wrote:
Hi Simone,
could you please give the current trunk a try? There were some
compatibility issues which have been fixed recently (but not in the
1.1.x branch).
Thanks,
Tammo
Simone Maletta wrote:
> Hi guys,
> I'm trying to install ODE in ServiceMix 3.2.1 but I foud problems
doing so.
> I faound on the net the guide to solve the problem but the things go
worst an ServiceMix doesn't start.
> Well, is there anyone that may help me or telling me about a stable old
version where developing my thesis?
> I'm blocked now.
> Thank you all,
> Simone