BPEL designer problem

Hey guys,
I am trying to download BPEL designer and it absolutely does not let me register my eclipse directory. The eclipse version I am using is 3.0.1, my eclipse dir is
C:/eclipse and thats what I am entering when the BPEL designer installation asks me. But it keeps telling me that the eclipse version has to be more than 3.0
Is there a trick to this I cant see? I have been trying diff. combinations but to no avail.
Thanks in advance,
Matt

Sorry. This is a bug in the installer of BPEL designer 2.0.10. Please refer to BPEL plug-in not installing on eclipse 3.0.1 for more information. We are in the process of pushing out 0.9.6 which addresses this issue. -Edwin

Similar Messages

  • "Problem building schema" exception in BPEL Designer

    Hi all,
    I use BPEL Designer 10.1.2.0.2 and encounter the following problem:
    I built a web service based on the Oracle Toplink How To demo. The web service has one published method that returns a custom 'Customer' object.
    I deployed the web service on my localhost (AS 10.1.3)
    In my BPEL process, I create a partnerlink based on the WSDL that was generated by JDeveloper and let BPEL Designer create a local copy.
    Then I created an invoke and had the wizard create in- and output variables for the invoke.
    When I select either the input- or output variable in the structure pane, I get an error message when I click on the 'parameters' entry. The message shown is 'Exception - problem building schema!'
    When I check the 'show detailed node information' box no additional info is shown!
    Any Idea what might go wrong?
    The WSDL looks as follows:
    <definitions
    name="updCustWS"
    targetNamespace="http://examples.ox.model/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://examples.ox.model/"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:tns0="http://examples.ox.model/types/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns1="http://www.oracle.com/webservices/internal/literal"
    >
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="urn:customer-example" schemaLocation="Customer.xsd"/>
    </schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://examples.ox.model/types/"
    elementFormDefault="qualified" xmlns:tns="http://examples.ox.model/types/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:ns1="http://www.oracle.com/webservices/internal/literal">
    <import namespace="http://www.oracle.com/webservices/internal/literal"/>
    <import namespace="urn:customer-example" schemaLocation="Customer.xsd"/>
    <complexType name="getCust">
    <sequence>
    <element name="cust" type="tns:Customer" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="Customer">
    <sequence>
    <element name="gender" type="string" nillable="true"/>
    <element name="dateOfBirth" type="dateTime" nillable="true"/>
    <element name="phoneNumbers" type="ns1:vector" nillable="true"/>
    <element name="shippingAddress" type="tns:Address" nillable="true"/>
    <element name="billingAddress" type="tns:Address" nillable="true"/>
    <element name="firstName" type="string" nillable="true"/>
    <element name="lastName" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="Address">
    <sequence>
    <element name="postalCode" type="string" nillable="true"/>
    <element name="suite" type="string" nillable="true"/>
    <element name="street" type="string" nillable="true"/>
    <element name="province" type="string" nillable="true"/>
    <element name="city" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="getCustResponse">
    <sequence>
    <element name="result" type="tns:Customer" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="version">
    <sequence/>
    </complexType>
    <complexType name="versionResponse">
    <sequence>
    <element name="result" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <element name="getCustElement" type="tns:getCust"/>
    <element name="getCustResponseElement" type="tns:getCustResponse"/>
    <element name="versionElement" type="tns:version"/>
    <element name="versionResponseElement" type="tns:versionResponse"/>
    </schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.oracle.com/webservices/internal/literal"
    elementFormDefault="qualified" xmlns:tns="http://www.oracle.com/webservices/internal/literal"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/">
    <import namespace="http://examples.ox.model/types/"/>
    <import namespace="urn:customer-example" schemaLocation="Customer.xsd"/>
    <complexType name="vector">
    <complexContent>
    <extension base="tns:list">
    <sequence/>
    </extension>
    </complexContent>
    </complexType>
    <complexType name="list">
    <complexContent>
    <extension base="tns:collection">
    <sequence/>
    </extension>
    </complexContent>
    </complexType>
    <complexType name="collection">
    <sequence>
    <element name="item" type="anyType" minOccurs="0" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    </schema>
    </types>
    <message name="UpdCustWS_getCust">
    <part name="parameters" element="tns0:getCustElement"/>
    </message>
    <message name="UpdCustWS_getCustResponse">
    <part name="parameters" element="tns0:getCustResponseElement"/>
    </message>
    <message name="UpdCustWS_version">
    <part name="parameters" element="tns0:versionElement"/>
    </message>
    <message name="UpdCustWS_versionResponse">
    <part name="parameters" element="tns0:versionResponseElement"/>
    </message>
    <portType name="updCustWS">
    <operation name="getCust">
    <input message="tns:UpdCustWS_getCust"/>
    <output message="tns:UpdCustWS_getCustResponse"/>
    </operation>
    <operation name="version">
    <input message="tns:UpdCustWS_version"/>
    <output message="tns:UpdCustWS_versionResponse"/>
    </operation>
    </portType>
    <binding name="updCustWSSoapHttp" type="tns:updCustWS">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="getCust">
    <soap:operation soapAction="http://examples.ox.model//getCust"/>
    <input>
    <soap:body use="literal" parts="parameters"/>
    </input>
    <output>
    <soap:body use="literal" parts="parameters"/>
    </output>
    </operation>
    <operation name="version">
    <soap:operation soapAction="http://examples.ox.model//version"/>
    <input>
    <soap:body use="literal" parts="parameters"/>
    </input>
    <output>
    <soap:body use="literal" parts="parameters"/>
    </output>
    </operation>
    </binding>
    <service name="updCustWS">
    <port name="updCustWSSoapHttpPort" binding="tns:updCustWSSoapHttp">
    <soap:address location="http://localhost:7780/toplinkDemo-toplink-context-root/updCustWSSoapHttpPort"/>
    </port>
    </service>
    </definitions>
    any help would be greatly appreciated!
    Thanks in advance,
    Rob

    Hi
    I know it's an old thread, but I'm having the same issue.
    I have created an EJB3 web service that returns an object with 2 nested objects. The autogenerated WSDL looks something like this:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns0="http://www.oracle.com/webservices/internal/literal" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://smbc.crm.persistence.services/" name="CRMBusinessWSService" targetNamespace="http://smbc.crm.persistence.services/">
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns1="http://www.oracle.com/webservices/internal/literal" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="http://smbc.crm.persistence.services/" elementFormDefault="qualified">
    <import namespace="http://www.oracle.com/webservices/internal/literal"/>
    <complexType name="Businesses">
    <sequence>
    <element name="partyId" type="long" nillable="true"/>
    <element name="businessContactPoints" type="ns1:list" nillable="true"/>
    <element name="businessAddresses" type="ns1:list" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="BusinessAddresses">
    <sequence>
    <element name="locality" type="string" nillable="true"/>
    <element name="paon" type="string" nillable="true"/>
    <element name="siteUseType" type="string" nillable="true"/>
    <element name="locationId" type="long" nillable="true"/>
    <element name="townName" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="BusinessContactPoints">
    <sequence>
    <element name="telCountryCode" type="string" nillable="true"/>
    <element name="partyId" type="long" nillable="true"/>
    <element name="telAreaCode" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <element name="queryBusinessesFindByPartyId" type="tns:queryBusinessesFindByPartyId"/>
    <complexType name="queryBusinessesFindByPartyId">
    <sequence>
    <element name="int_1" type="int"/>
    </sequence>
    </complexType>
    <element name="queryBusinessesFindByPartyIdResponse" type="tns:queryBusinessesFindByPartyIdResponse"/>
    <complexType name="queryBusinessesFindByPartyIdResponse">
    <sequence>
    <element name="return" type="tns:Businesses" nillable="true"/>
    </sequence>
    </complexType>
    </schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://www.oracle.com/webservices/internal/literal" targetNamespace="http://www.oracle.com/webservices/internal/literal" elementFormDefault="qualified">
    <import namespace="http://smbc.crm.persistence.services/"/>
    <complexType name="list">
    <complexContent>
    <extension base="tns:collection">
    <sequence/>
    </extension>
    </complexContent>
    </complexType>
    <complexType name="collection">
    <sequence>
    <element name="item" type="anyType" minOccurs="0" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    </schema>
    </types>
    <message name="CRMBusinessWS_queryBusinessesFindByPartyId">
    <part name="parameters" element="tns:queryBusinessesFindByPartyId"/>
    </message>
    <message name="CRMBusinessWS_queryBusinessesFindByPartyIdResponse">
    <part name="parameters" element="tns:queryBusinessesFindByPartyIdResponse"/>
    </message>
    <portType name="CRMBusinessWS">
    <operation name="queryBusinessesFindByPartyId">
    <input message="tns:CRMBusinessWS_queryBusinessesFindByPartyId"/>
    <output message="tns:CRMBusinessWS_queryBusinessesFindByPartyIdResponse"/>
    </operation>
    </portType>
    <binding name="CRMBusinessWSSoapHttp" type="tns:CRMBusinessWS">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="queryBusinessesFindByPartyId">
    <soap:operation soapAction=""/>
    <input>
    <soap:body use="literal"/>
    </input>
    <output>
    <soap:body use="literal"/>
    </output>
    </operation>
    </binding>
    <service name="CRMBusinessWSService">
    <port name="CRMBusinessSessionEJB" binding="tns:CRMBusinessWSSoapHttp">
    <soap:address location="http://blah.solihull.gov.uk:1234/crm-ws/CRMBusinessSessionEJB"/>
    </port>
    </service>
    </definitions>
    The web service runs fine and returns a valid XML document (like below):
    <?xml version="1.0" encoding="UTF-8"?>
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:ns0="http://smbc.crm.persistence.services/"
    xmlns:ns1="http://www.oracle.com/webservices/internal/literal">
    <env:Body>
    <ns0:queryBusinessesFindByPartyIdResponse>
    <ns0:return>
    <ns0:turnover xsi:nil="1"/>
    <ns0:partyId>551837</ns0:partyId>
    <ns0:employeesLocal xsi:nil="1"/>
    <ns0:employeesNational xsi:nil="1"/>
    <ns0:businessName xsi:nil="1"/>
    <ns0:classificationSic xsi:nil="1"/>
    <ns0:registeredBusinessName>Bob The Builder</ns0:registeredBusinessName>
    <ns0:classificationLacors xsi:nil="1"/>
    <ns0:sbaLinkNumber xsi:nil="1"/>
    <ns0:legalStatus xsi:nil="1"/>
    <ns0:localAuthority xsi:nil="1"/>
    <ns0:bpa>560950</ns0:bpa>
    <ns0:dateCommencedTrading xsi:nil="1"/>
    <ns0:businessDirectoryListing xsi:nil="1"/>
    <ns0:businessStage xsi:nil="1"/>
    <ns0:classificationBcl xsi:nil="1"/>
    <ns0:employeesGlobal xsi:nil="1"/>
    <ns0:descriptionOfBusiness xsi:nil="1"/>
    <ns0:businessContactPoints xsi:type="ns1:vector">
    <ns1:item xsi:type="ns0:BusinessContactPoints">
    <ns0:telCountryCode xsi:nil="1"/>
    <ns0:partyId>551837</ns0:partyId>
    <ns0:contactPointType>EMAIL</ns0:contactPointType>
    <ns0:contactTelephoneNumber xsi:nil="1"/>
    <ns0:bpa>560950</ns0:bpa>
    <ns0:contactPointId>76330</ns0:contactPointId>
    <ns0:telExtensionNumber xsi:nil="1"/>
    <ns0:contactEmailAddress>[email protected]</ns0:contactEmailAddress>
    <ns0:registeredBusinessName>Bob The Builder</ns0:registeredBusinessName>
    <ns0:telAreaCode xsi:nil="1"/>
    </ns1:item>
    <ns1:item xsi:type="ns0:BusinessContactPoints">
    <ns0:telCountryCode>44</ns0:telCountryCode>
    <ns0:partyId>551837</ns0:partyId>
    <ns0:contactPointType>PHONE</ns0:contactPointType>
    <ns0:contactTelephoneNumber>323233</ns0:contactTelephoneNumber>
    <ns0:bpa>560950</ns0:bpa>
    <ns0:contactPointId>76329</ns0:contactPointId>
    <ns0:telExtensionNumber xsi:nil="1"/>
    <ns0:contactEmailAddress xsi:nil="1"/>
    <ns0:registeredBusinessName>Bob The Builder</ns0:registeredBusinessName>
    <ns0:telAreaCode>123</ns0:telAreaCode>
    </ns1:item>
    </ns0:businessContactPoints>
    <ns0:businessAddresses xsi:type="ns1:vector">
    <ns1:item xsi:type="ns0:BusinessAddresses">
    <ns0:partyId>551837</ns0:partyId>
    <ns0:locality>Kingshurst</ns0:locality>
    <ns0:paon>20</ns0:paon>
    <ns0:siteUseType>HEADQUATERS_FOR</ns0:siteUseType>
    <ns0:locationId>34380</ns0:locationId>
    <ns0:townName>Birmingham</ns0:townName>
    <ns0:registeredBusinessName>Bob The Builder</ns0:registeredBusinessName>
    <ns0:saon xsi:nil="1"/>
    <ns0:bpa>560950</ns0:bpa>
    <ns0:country>GB</ns0:country>
    <ns0:uprn>100070950848</ns0:uprn>
    <ns0:dateOfOccupancyAtthisaddr xsi:nil="1"/>
    <ns0:streetDescriptor>Acacia Avenue</ns0:streetDescriptor>
    <ns0:postcode>B37 6AQ</ns0:postcode>
    <ns0:countyName xsi:nil="1"/>
    <ns0:usrn xsi:nil="1"/>
    </ns1:item>
    </ns0:businessAddresses>
    </ns0:return>
    </ns0:queryBusinessesFindByPartyIdResponse>
    </env:Body>
    </env:Envelope>
    The problem is that I'm trying to transform this message in BPEL/ESB but the mapper does not understand the schema as described in the WSDL and will not let me do 'for-each' or 'if' actions on the collections of addresses for example.
    I've tried injecting my own WSDL into the EJB3 web service through annotations, but it will not compile....
    Can anybody help????
    Thanks
    Chris

  • Problem in installing BPEL Designer 2.2 for eclipse

    Hi,
    As I said it in the topic, when I want to install the plugin "Oracle BPEL Designer 2.2" for eclipse, I got an error message
    " The version of the eclipse platforms installed in C:\Program Files\eclipse must be at least 3.0 (release)"
    My problem is that I have installed eclipse 3.1 ...
    If you have any idea...
    Thanks in advance,
    Rardo

    oups...
    sorry, I have just seen that there is the same topic here : More eclipse designer install problems

  • Problems with BPEL Designer ERROR build.xml:28: ORABPEL-00000

    following problem could someone help me, please
    I'm using Oracle BPEL Designer Plugin bpelz_0.9.10_win32.exe installed manually on Eclipse 3.2 SDK???
    Buildfile: C:\Programme\eclipse\workspace\SyncHelloWorld\build.xml
    main:
    [bpelc] bpelc> validating "C:\Programme\eclipse\workspace\SyncHelloWorld\SyncHelloWorld.bpel" ...
    BUILD FAILED
    C:\Programme\eclipse\workspace\SyncHelloWorld\build.xml:28: ORABPEL-00000
    Exception not handled by the Collaxa Cube system.
    An unhandled exception has been thrown in the Collaxa Cube system. The exception reported is: "java.lang.NoClassDefFoundError: sun/tools/javac/Main
         at com.collaxa.cube.util.JavaHelper.javac(JavaHelper.java:234)
         at com.collaxa.cube.util.JavaHelper.javac(JavaHelper.java:204)
         at com.collaxa.cube.lang.compiler.CubeProcessor.compileGeneratedClasses(CubeProcessor.java:1023)
         at com.collaxa.cube.lang.compiler.CubeProcessor.transformClientSide(CubeProcessor.java:579)
         at com.collaxa.cube.lang.compiler.CubeProcessor.transformClientSide(CubeProcessor.java:467)
         at com.collaxa.cube.lang.compiler.CubeParserHelper.compileClientSide(CubeParserHelper.java:68)
         at com.collaxa.cube.ant.taskdefs.Bpelc.execute(Bpelc.java:543)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
         at org.apache.tools.ant.Task.perform(Task.java:364)
         at org.apache.tools.ant.Target.execute(Target.java:341)
         at org.apache.tools.ant.Target.performTasks(Target.java:369)
         at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
         at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
         at org.eclipse.ant.internal.core.ant.EclipseDefaultExecutor.executeTargets(EclipseDefaultExecutor.java:32)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
         at org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java:706)
         at org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java:457)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.eclipse.ant.core.AntRunner.run(AntRunner.java:356)
         at org.eclipse.ant.internal.ui.launchConfigurations.AntLaunchDelegate$1.run(AntLaunchDelegate.java:230)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.NoClassDefFoundError: sun/tools/javac/Main
    Handled As: com.collaxa.cube.lang.compiler.CubeCException

    Hi
    Where does your JAVA_HOME variable point to? To JRE or JDK? This looks like Eclipse can't find javac in your path.
    ^_^

  • Problem with BPEL Designer Plugin in Eclipse

    I am not able to open the BPEL designer in Eclipse.
    I am using Version: 3.0.1 with the Build id: 200409161125
    When I select New Project, i cannot see the "Oracle BPEL Project" option in the New Project wizard.
    Is there any way to integrate the plug-in into the Eclipse.Please help.
    /Kiran.

    Hi Kiran,
    Eclipse requires to detect new plugins.Usually you only need to launch Eclipse with the 'clean' optionnal parameter (run "eclipse.exe -clean").
    If the setup of the BPEL Designer plug-in have been completed properly, you should see the the 'Oracle BPEL Project' item under de 'New Project' wizard menu.
    Hope this could help.
    Edmond Cissé.

  • Eclipse BPEL Designer with Oracle BPEL Process Manager

    Gurus,
    I am tryting to develop a BPEL 2 process using Eclipse Helios BPEL Designer (v0.5).
    Request your help with a problem that I am facing, which is as follows:
    I am trying to create a Partner Link (PL) in my BPEL process, using the Partner Link Type (PLT) provided by TaskService (for user interactions) in BPEL Process Manager 11g integration services.
    However, the PLT is not recognized by Eclipse BPEL Designer. The Port Types in the WSDL show up but not the PLTs.
    I noticed that the PLT namespace being used in the TaskService WSDL is BPEL v1 namespace (namely, http://schemas.xmlsoap.org/ws/2003/05/partner-link/). I am able to work with PLTs from WSDLs with BPEL v2 namespce (namely, http://docs.oasis-open.org/wsbpel/2.0/plnktype)
    Is there anyway I can work with v1 PLTs using Eclipse BPEL 2 Process?
    Many Thanks,
    Pulkit Sharma

    Hi,
    I believe the Eclipse BPEL Designer is not a supported tool to create SOA composites. I suggest using Oracle JDeveloper 11g as it is a supported tool for development and is Oracle's go-forward IDE strategy.
    Hope this helps!

  • Eclipse BPEl Designer -Changes to bpel.xml not saved

    Hi
    Is it possible to save changes made to bpel.xml file while using Eclipse? I was trying to set up preference properties in that file.
    Any say?

    According to our experience, JDEV BPEL Designer encoutered the same problem, you'd better modify the bpel.xml descriptor using external editor such as ultraedit, and save it.
    Modification of bpel.xml works fine for the first time, but often rolled back to the former edition once I restart the JDEV designer. Guess it is a bug.

  • Invalid Eclipse platform version - BPEL Designer

    Hello, when I try to install the BPEL designer, I get a popup "Invalid Eclipse platform version", "The version of the Eclipse platform installed at C:\Java\eclipse must be at least 3.0 (release)". I have Eclipse 3.0.1. Thank you.

    Problem solved using solution given for topic "BPEL plug-in not installing on eclipse 3.0.1". Not sure why I couldn't find this topic in the first place, before submitting one of my own....

  • BPEL Designer 10.1.2.0.2 Database Connection Error

    Hi,
    I'm trying to create a database connection in JDeveloper 10.1.2.1.0 Build 1915 (BPEL Designer version) but I get ORA-12505, TNS:listener does not currently know of SID ... error for a particular database. I can connect to the same database using JDeveloper 10.1.3 with no errors, also in SQL Plus, and I can connect to another database on the same server with no problem. I need to create a BPEL 10.1.2 process that connects to this database and so far I'm unable to do so.
    Here's the full error details and the tnsnames.ora entry for this database.
    Listener refused the connection with the following error:
    ORA-12505, TNS:listener does not currently know of SID given in connect descriptor
    The Connection descriptor used by the client was:
    xxxx:1521:oms.x1
    Here's the tnsnames.ora entry:
    oms.x1 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = xxxx)(PORT = 1521)))
    (CONNECT_DATA =(SERVICE_NAME = oms.x1))
    Here's the tnsnames.ora entry for the other database on the same server, that I can create a database connection to. The only difference as far as I can tell is with the service names, the unsuccessful connection has a "." in the service name, the successful connection does not.
    XOAS2 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = xxxx)(PORT = 1521)))
    (CONNECT_DATA =(SERVICE_NAME = XOAS2))
    When I try to create a connection to the same database referencing a second tnsnames entry with .world extension, this also fails with the same error. Here's the tnsnames.ora entry and error message from JDeveloper for that connection.
    XOAS2.WORLD =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = xxxx)(PORT = 1521)))
    (CONNECT_DATA =(SERVICE_NAME = XOAS2.world))
    Listener refused the connection with the following error:
    ORA-12505, TNS:listener does not currently know of SID given in connect descriptor
    The Connection descriptor used by the client was:
    xxxx:1521:XOAS2.world
    Any help you can provide in resolving this will be appreciated.
    Thanks
    Candace

    Steve,
    I tried the custom JDBC connection and still get the same error. I have been able to successfully connect to this database using a jdbc-odbc bridge connection after creating a local ODBC datasource, just to see if I can connect at all, but I don't want to have to use this connection method.
    I have also tried adding a tnsnames entry with omsx1, and I get the same error for creating a jdbc connection. However, this tnsnames entry is the one I had to use for the ODBC connection in order to successfully create the jdbc-odbc bridge connection.
    As far as both databases listening on the same port, this doesn't seem to be an issue when I configure this connection in JDeveloper 10.1.3. This issue seems to be related to using JDeveloper 10.1.2, which I need to use in order to create 10.1.2 BPEL projects.
    I was wondering whether it's possible to use the jdbc driver that JDeveloper 10.1.3 uses in JDeveloper 10.1.2? I can post this to the JDeveloper forum if that's more appropriate.
    Thanks for the pointers
    Candace

  • Eclipse BPEL Designer

    Hi all.
    After succesfully installation of BPEL PM i have installed Eclipse 3.2.0!
    Then I installed the eclipese BPEL Designer Plugin.
    When I try to craete a new "Oracle BPEL Project" by default, nothing was there.
    The only possibility I see is "File -> NEW -> Other -> BPEL 2.0. There is the possibility to select "New BPEL Process File".
    But when I try to finish this possibility nothing happens!
    Knows anybody what went wrong?
    Thanks

    Same Problem here.
    btw: This document isn't up-to-date: http://www.oracle.com/technology/obe/obe_as_1012/integration/bpel/install/bpel_install.htm#t2

  • JDev 11g 111 with BPEL designer - cant connect to BPA Server

    I have just installed the latest 11g JDeveloper and added the BPEL designer.
    I notice that in the composite designer I can connect to or create a connection to the BPA server.
    I have BPA designer 10.1.3.3...which I used with JDeveloper 10.1.3.1. This is running on my local PC.
    However I am not able to create a connection to it in the latest Jdeveloper.
    When I try to add a BPA server, as soon as I select Local server (as opposed to Remote).. it tries to connect and fails :
    Failing to establish a connection.
    And of course a load of Java info :
    com.idsscheer.aris.common.cl.framework.TransientException: attempt to establish connection failed: java.net.ConnectException: Connection refused: connect
         at com.idsscheer.aris.common.cl.framework.corba.AClientProfile.lookup(AClientProfile.java:98)
         at com.idsscheer.aris.common.cl.framework.core.ANamingClient.isAlive(ANamingClient.java:30)
         at com.idsscheer.aris.common.cl.framework.core.ANamingClientFactory.createNamingClient(ANamingClientFactory.java:66)
         at com.idsscheer.aris.common.cl.framework.core.ANamingClientFactory.createNaming(ANamingClientFactory.java:37)
         at com.idsscheer.aris.cscommon.scriptrunner.AServerConnector.connectServer(AServerConnector.java:130)
         at com.idsscheer.aris.cscommon.scriptrunner.AServerConnector.listARISDatabases(AServerConnector.java:92)
         at com.idsscheer.aris.cscommon.scriptrunner.AScriptRunnerBase.listDatabases(AScriptRunnerBase.java:148)
         at oracle.bpa.remote.RepositoryService.listDatabases(RepositoryService.java:72)
         at oracle.tip.tools.ide.bpeldesignerplugins.plugins.outliner.bpaserver.connections.BPAServer.getDatabases(BPAServer.java:245)
         at oracle.tip.tools.ide.bpeldesignerplugins.plugins.outliner.bpaserver.editors.ConnectionSettingsPanel.getDatabasesFromServer(ConnectionSettingsPanel.java:575)
         at oracle.tip.tools.ide.bpeldesignerplugins.plugins.outliner.bpaserver.editors.ConnectionSettingsPanel$8.run(ConnectionSettingsPanel.java:550)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: org.omg.CORBA.TRANSIENT: attempt to establish connection failed: java.net.ConnectException: Connection refused: connect vmcid: 0x4f4f0000 minor code: 1 completed: No
         at com.ooc.OCI.IIOP.Connector_impl.connect_timeout(Unknown Source)
         at com.ooc.OB.GIOPClient.getWorker(Unknown Source)
         at com.ooc.OB.GIOPClient.bind(Unknown Source)
         at com.ooc.OB.DowncallStub.locate_request(Unknown Source)
         at com.ooc.CORBA.Delegate._OB_getDowncallStub(Unknown Source)
         at com.ooc.CORBA.Delegate.request(Unknown Source)
         at com.ooc.CORBA.Delegate.non_existent(Unknown Source)
         at org.omg.CORBA.portable.ObjectImpl._non_existent(ObjectImpl.java:137)
         at com.idsscheer.aris.common.cl.framework.corba.AClientProfile.lookup(AClientProfile.java:91)
         ... 11 more
    Am I missing some setup configuration or perhaps additional updates ?
    Has anyone resolved this issue ?
    Thanks

    Hi,
    The problem still seems to persist, despite the version change. I have tried with JDev ver 11g and Oracle BPA 11gR1. I test the connection. Result Test Succeeded. But when I click on the OK button, it does not close the dialogue box and allow me to proceed. I need to cancel and hence unable to establish connection .
    Krish

  • BPEL designer issues

    Hi,
    I facing following problems while designing BPEL process using Oracle JDeveloper 10g BPEL Designer :
    1> While editing XPath exp through query builder in activities (e.g assign, switch) it takes a lot of time which is actually irritating.
    2>Sometimes the design through bpel designer is not saved back in the .bpel file even after it shows that file is saved. And once i close the JDeveloper i loose my design because it opens the old bpel file in design mode.
    If any one is having workaround for this or if this problem is resolved in some latest version of Oracle JDeveloper BPEL Designer then pls tell me.
    With thanks and regards
    Pankaj Kumar.
    Message was edited by: Pankaj
    I am using
    Oracle JDeveloper 10g version 10.1.2.0.0(Build1811)
    Oralce Ide 10.1.2.17.84
    BPEL Designer 10.1.2.0.0(Build 050708.1500)
    Pankaj

    OK, good to know, John. Eventually a person figures it out one way or the other. I realize all of this stuff exists in documentation someplace, but there's only so many hours in the day. And if you're using JDeveloper 10.1.3, with JDeveloper 11 already available, you don't necessarily expect a lot of the articles you run across to be so old that they still refer to workspaces. I'm not saying that these are necessarily Oracle articles.
    As an aside I've found Oracle documentation to be pretty good. I use Oracle software on Windows, Mac OS X and Linux. For ESB and BPEL on Linux the main problem with the docs is that they are incomplete. It's disconcerting to see continual references to having to turn BPEL Designer on, in Windows, and have no instructions concerning that for Linux, as one example. As it happens, doing a "startall" for opmnctl does everything I need, so if there's a separate BPEL Designer started up by that (as opposed to the BPEL Process Manager) I guess that's where it gets fired up. That may also be covered in documentation someplace, for Linux, but I haven't found it.
    Arved

  • JDeveloper and BPEL Designer - You dont mean this serious...

    Quality of software seems as alpha release maybe but definitely nowhere near stable...
    Problems we are experiencing are slowing our development totally comparing to any other IDEs available.
    We are using version 10.1.3.3.0.
    I ll mention few:
    Every completion editor takes ages to load.
    In some editor there isnt even basic clipboard operations available.
    Expression editor is some kind of bad joke, isnt it? Even if i move window it revalidates everything, it seems it virtually reloads every schema what takes tens of seconds and making work with it totally impossible.
    Validations in some editors aint even working OK, when u enter valid xpath expression with whitespaces editor resoves it as invalid.
    You delete file and it remains in filesystem and after u recreate same transformation file no matter what target and source of transformation you choose it will just load old deleted file...
    These problems are just peak of iceberg.
    Please tell me theres kind of magic button i forgot to press what will resolve these problems...
    Im very unsatisfied and cursing on Oracle everydaily, sadly I cant choose another product since customer choosed.
    Best Regards,
    Mathew Stafurik

    Hi Mathew,
    cursing and ranting in a very unspecific way doesn't help you nor gives us a chance to help you.
    Indeed the BPEL Designer in JDeveloper is very in certain situations, esp. when you have very complex XSD with lots of imports in your project.
    Some tips to improve performance:-
    - Have 2GB RAM at minimum
    - Run it on Linux
    - Split you work in as many as possible projects
    - Don't include XSD, because you might need them in the future.
    We're looking forward to your detailed problem descriptions to help solve one by one to make you more productive.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Some questtion in BPEL Designer

    plotform : win2000 Chinese Edition
    jdk : 1.4.1_05
    Eclipse: Version 3.0.0 ,Build id :200406251208
    I have install bpelz_1.0_win32.exe successful,and I can build a new BPEL project,but I have some problems.
    When I open the bpel project,the XXX.bpel can not explore in bpel designer UI,there are two errors in logs.
    1.bpelz.html trapped at 18:'undefined'{}
    2.bpelz.html trapped at 575:'gZoomSlider' is null or not a object{}
    ps.my bpel server not install completed.
    Have someone seen this problem??
    Thanks and regards!

    Hi,
    We are in the process of installing the BPEL designer on a Chinese Edition of Win2000 to try to reproduce this problem.
    Edwin

  • Unable to view 118.JMSService example in BPEL designer(Eclipse)

    Hello all
    I have imported the JMSService (buyer/seller) example using eclipse, so I can look at the flow. But, the designer view throws errors when I try to open the bpel file. I am able to open the source view.
    The Designer view has a single message-
    Access is denied.
    Please resolve this error in the 'BPEL Source' view.
    These are the errors reported in the error log-
    Error Aug 18, 2004 17:32:17.343 bpelz.html trapped at 67:Access is denied.
    Error Aug 18, 2004 17:32:17.327 Fatal _cxApplyBehavior at stage: initializing behaviors ...
    "name":"TypeError",
    "isError":"function () {
    return true
    "getErrorNumber":"function () {
    return (this.number & 0xFFFF)
    "getFacility":"function () {
    return ((this.number >> 16) & 0xFFFF)
    "message":"Access is denied.
    "number":"-2147024891",
    "description":"Access is denied.
    Error Aug 18, 2004 17:32:12.953 Error while processing template: frame because Access is denied.
    request:[object Object]
    code: this.__html += "\n";
         var bpelElement = request.bpelElement;
    var elementID = checkinObject(bpelElement, bpelElement.getUID())
    this.__html += "\n<table cellspacing=\"0\" cellpadding=\"15\" align=\"center\">\n<tr>\n\t<td width=\"140\" valign=\"top\">\n\t\t<img src=\"images/dot.gif\" height=\"24\" width=\"1\" /><br/>\n\t\t";
                   var clientPartners = bpelElement.listCollectionElements( "partnerLinks" );
                   for( var i = 0 ; i < clientPartners.length ; i++ )
                        var partnerLink = clientPartners[ i ];
                        var name = partnerLink.getAttribute( "name" );
                        if( name == "client" )
                        this.__html += "\n\t\t\t\t<div behavior=\"Viewlet\"\n\t\t\t\t template=\"templates/PartnerLink.xml#partnerLink\"\n\t\t\t\t bpelElement=\"";
    this.__html += checkinObject( partnerLink, partnerLink.getUID() );
    this.__html += "\">";
    this.__html += gLoadingHTML;
    this.__html += "</div>\n\t\t\t\t";
              this.__html += "\n\t</td>\n\t<td width=\"180\" valign=\"top\">\n\t\t<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n\t\t<tr height=\"5\">\n\t\t\t<td><img src=\"images/overview.process.header.gif\" width=\"210\" height=\"5\"/></td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td>\n\t\t\t\t<div class=\"OverviewProcessHeader\" id=\"overviewLabel\">\n\t\t\t\t";
    this.__html += bpelElement.getLabel() ;
    this.__html += "\n\t\t\t\t</div>\n\t\t\t</td>\n\t\t</tr>\n\t\t<tr height=\"180\">\n\t\t\t<td align=\"center\">\n\t\t\t\t<div style=\"height:100%;border-left:1px solid #6B94E7;border-right:1px solid #6B94E7\">\n\t\t\t\t\t<img src=\"images/overview.process.logo.gif\"/>\n\t\t\t\t\t<div class=\"OverviewEditFlow\" UNSELECTABLE=\"on\">\n\t\t\t\t\t<img src=\"images/arrow20.gif\" align=\"absmiddle\"/>\n\t\t\t\t\t<img src=\"images/dot.gif\" width=\"3\" height=\"1\" />\n\t\t\t\t\t<span behavior=\"Actionable,Underlineable\" action=\"ShowMap/[PROCESS_ELEMENT]\">\n\t\t\t\t\tEdit Process Map\n\t\t\t\t\t</span>\n\t\t\t\t </div>\n\t\t\t\t</div>\n\t\t\t</td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td>\n\t\t\t\t<div class=\"OverviewProcessVariables\">Global XML Variables</div>\n\t\t\t</td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td>\n\t\t\t\t<div style=\"height:100%;border-left:1px solid #6B94E7;border-right:1px solid #6B94E7\">\n\t\t\t\t\t<div behavior=\"Collectlet\"\n\t\t\t\t\t\t template=\"templates/Listing.xml#list.bullet.customize\"\n\t\t\t\t\t\t bpelElement=\"";
    this.__html += checkinObject( bpelElement , bpelElement.getUID() );
    this.__html += "\"\n\t\t\t\t\t\t collectionName=\"variables\">\n\t\t\t\t\t</div>\n\n\t\t\t\t\t<div class=\"OverviewAddPartnerLink\">\n\t\t\t\t\t<img src=\"images/arrow20.gif\" align=\"absmiddle\"/><img src=\"images/dot.gif\" width=\"3\" height=\"1\" />\n\t\t\t\t\t<span behavior=\"Actionable,Underlineable\" action=\"AddCollectionElement/[PROCESS_ELEMENT]?collectionName=variables\">\n\t\t\t\t\tAdd XML Variable\n\t\t\t\t\t</span>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</td>\n\t\t</tr>\n\t\t<tr height=\"3\">\n\t\t\t<td><img src=\"images/overview.process.footer.gif\" width=\"210\" height=\"3\"/></td>\n\t\t</tr>\n\t\t</table>\n\t</td>\n\t<td width=\"140\" valign=\"top\">\n\t\t<img src=\"images/dot.gif\" height=\"24\" width=\"1\" /><br/>\n\t\t<div behavior=\"Collectlet\"\n\t\t\t template=\"templates/PartnerLink.xml#partnerLink\"\n\t\t\t bpelElement=\"";
    this.__html += elementID;
    this.__html += "\"\n\t\t\t collectionName=\"partnerLinks\"\n\t\t\t block=\"BlockClientPartnerLink\"\n\t\t\t >\n\t\t</div>\n\t\t<div class=\"OverviewAddPartnerLink\" behavior=\"DropZone,DropBorder\"\n bpelElement=\"";
    this.__html += elementID;
    this.__html += "\"\n dropHint=\"url\"\n dropCommand=\"AddCollectionElement/[PROCESS_ELEMENT]?collectionName=partnerLinks&config=wsdlLocation%3D{1}\"\n style=\"border: 1px solid #ffffff;\">\n\t\t<img src=\"images/arrow20.gif\" align=\"absmiddle\"/><img src=\"images/dot.gif\" width=\"3\" height=\"1\" />\n\t\t<span behavior=\"Actionable,Underlineable\" action=\"AddCollectionElement/[PROCESS_ELEMENT]?collectionName=partnerLinks\">\n\t\tAdd Partner Link\n\t\t</span>\n <div style=\"padding-top: 10px; display: none;\" drophint=\"over\">\n <span style=\"color: #aaaaaa;\">Drop WSDL URL here</a>\n </div>\n\t\t</div>\n\n\t</td>\n</tr>\n</table>\n";
    Thanks for your help
    mahesh :)

    I am using 0.0.91. And, I am able to import other tutorials and view them in the BPEL Design view.
    My primary concern with running this example is posted with subject 'Problem with running JMSServer example'. Looks like the buyer/seller queues are created automatically on build/deploy.
    Thanks
    Mahesh :)

Maybe you are looking for

  • Can't upload footage from camera?

    m on Final Cut Pro X. I'm trying to upload footage from my camera's memory card and the application won't let me scroll down to see my un-imported clips. It's frozen. It will let me move the window around and click on other tabs but it wont let scrol

  • What is the best ram to get for my imac i7 retina?

    Specifically I will go to crucial and I want to buy another 16gb of RAM to sit by my current 8, Which should I choose as there a few options? I have a iMac i& 4ghz Retina. Thanks for your help guys!

  • Help in the design of Adobe Air application

    Hello! I am confused and unaware how to design for Adobe Air. I explain my need: 1) first page I have background1 and over it 2 swf clickable 2) when I click on any swf1 it send me to a new "page" (or whatever) with another background (background2) a

  • How does one force Application Manager to do a re-install?

    I uninstalled Acrobat X to try and resolve some issues with plugins, but Adobe Application Manager insists it's already installed and won't let me download or attempt to re-install it again.. Can one force a re-install of an already installed applica

  • Is it safe to download itunes 7?

    i just got my ipod nano 2 gig 1st gen today (refurb) and i was wondering if u have to download itunes 7? i mean i read some posts where some ppl's ipod nanos got screwed up and i don't want the same to happen to me since i just got it... cuz my ipod