[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.technology.bpel-designer] Eclipse Plugin and Oracle Bpel Process Manager

Hi, I've a problem with Eclipse BPEL designer plugin (eclipse 3.3). I'm trying to create a BPEL process with eclipse and deploy it in oracle bpel process manager (10.1.3.1), but the format of the xml file created from eclipse isn't valid for oracle! In oracle examples, in fact, bpel files are in this format:

code:

<process name="CreditRatingService"
targetNamespace="http://services.otn.com";
suppressJoinFailure="yes"
xmlns:tns="http://services.otn.com";
xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/";
xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/";>
<variable....>



but in eclipse the output file is:

code:

<?xml version="1.0" encoding="UTF-8"?>
<bpws rocess exitOnStandardFault="yes"
name="bpeltest"
xmlns:bpws="http://docs.oasis-open.org/wsbpel/2.0/process/executable";
xmlns:ns="UGGH"
xmlns:ns0=http://www.bpeltest.it/bpeltest/>
<bpws:variable....>



The strange fact is that eclipse create an xml in correct format (the first) at the end of the create bpel file wizard... But at the first save... The format become the second!

Please, help!