Oracle SOA 11g TP3 - Tutorial problem

Hello!
I am quite new to this whole platform, and while I was following the First step of the tutorial, I ran into a problem, which I have no idea how to solve.
(this tutorial: http://download.oracle.com/otndocs/products/soa/105-end2end-PO-Processing.zip )
As it said I installed the prerequisites,
an Oracle database,
Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
PL/SQL Release 10.2.0.1.0 - Production
CORE 10.2.0.1.0 Production
TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production
the Oracle SOA Suite 11g TP3,
as well as jDeveloper 11.1.1.0.0
After I successfully created and successfully deployed the 'CreditCardValidation Application' following the steps in 105-end2end-PO-Processing_2.pdf (part of the zip, but it's basically a database adapter a mediator and an exposed web service packed together) and I tried to test it, i got this error:
<env:Envelope
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header/>
<env:Body>
<env:Fault>
<faultcode
xmlns="">env:Server</faultcode>
<faultstring
xmlns="">null: Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'OracleXESelect' failed due to: Could not create/access the TopLink Session. This session is used to connect to the datastore. Caused by Exception [TOPLINK-4002] (Oracle TopLink - 11g Technology Preview 3 (11.1.1.0.0) (Build 071207)): oracle.toplink.exceptions.DatabaseException Internal Exception: java.sql.SQLException: No suitable driver Error Code: 0. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. </faultstring>
<faultactor
xmlns=""/>
<detail
xmlns="">
<exception/>
</detail>
</env:Fault>
</env:Body>
</env:Envelope>
If I understand it correctly, the core of the problem is this:
java.sql.SQLException: No suitable driver Error Code: 0.
now if this is the problem, how to solve it?
Ideally I would start by looking at the configurations of Toplink, but I didn't install Toplink, as such I have no idea where these options are.. (Is it part of the database in this current configuration?)
Thanks in advance!
Mike

Actually, the tutorial works fine in this version, all the way through. Specifically, the database adapter is working.
The problem you are having has been discussed on this forum. You should do this:
sqlplus sys/system@XE as sysdba
SQL> show parameter session
SQL> show parameter processes
SQL> alter system set sessions=100 scope=spfile;
SQL> alter system set processes=150 scope=spfile;
SQL> shutdown immediate
SQL> startup
SQL> show parameter session
And restart your server. That should fix it. Some people have also restarted Windows.
Heidi.

Similar Messages

  • Oracle BPM 10gR3 to Oracle SOA 11g Suite

    I am not sure some body else already asked.
    I have Oracle BPM product in production which is fine and happy the way it works. Its developed from Version: 10.3.1.0.0 Build: #100364. We use custom JSP, JavaComponent, PAPI etc in this.
    We are thinking of migrating to Oracle SOA 11g Suite.
    Is there any tool for this? If not, anything expected?
    Do we need to re-write our BPM 10g app to 11g? What all parts might need to re-write?

    To answer to you question in a straight way I am afraid there is no direct migration path from OBPM 10g to Oracle SOA Suite 11g. You would need to we-write a lot of things like
    1. As of now the BPM API's arent public. so u wont have something like PAPI as in OBPM
    2. There is no support for PBL/Java in Oracle BPM 11g. However if you want to use custom Java Component u can leverage BPEL or Spring along with BPM. Every component is afterall packed inside a single composite.
    3. It is advisable to have all dashboards and UI's developed with ADF if you are with Oracle SOA Suite 11g but even if you have JSPs that shouldnt be a problem.
    This topic was discussed some days back in this forum. You can find the thread here
    Business case to move from Oracle BPM 10.3g to BPM11g

  • How to use JKS-based Keystore in Oracle SOA 11g

    I am trying to do FTPS on third party remote server(with UNIX OS) using SOA 11g FTP Adapter. I have Installed and Configured vsftpd and generated vsftpd.pem certificate file on remote server.
    Followed the steps mentioned in http://download.oracle.com/docs/cd/E17904_01/integration.1111/e10231/adptr_file.htm#CIABDGCF
    In one of the step "Setting Up the Oracle FTP Adapter" walletLocation is required, then I went through steps mentioned in http://download.oracle.com/docs/cd/E17904_01/core.1111/e10105/wallets.htm#CHDGIJDC
    Tried to use both 1) JKS Keystore Management 2) Wallet Management
    But unable to find both of them in em of Oracle SOA 11g as the steps are not matching.
    Can anyone tell me how to use JKS Keystore Management or Wallet Management ?
    Many Thanks!!
    Regards
    Yogesh

    Hi Yogesh,
    I believe the wallet can be created from the FMW console only if the HTTP server is installed and available. If there is no Oracle HTTP server, please configure one as given under.
    [ http://download.oracle.com/docs/cd/E12839_01/doc.1111/e14260/toc.htm | Oracle HTTP Server Installation ]
    Reards,
    Neeraj Sehgal

  • Task.getProcessInfo().getProcessName Returns null -Oracle SOA 11g Worklist

    Hi,
    Im working on building custom worklist application using oracle SOA 11g Java API .I 'm able to query a list of tasks from the BPM server. But, When I try to find process name by invoking task.getProcessInfo().getProcessName() it returns null even I specify PROCESSNAME in my column list.Do i have to specify anywhere else except query columns ? What could be the reason?
    Thanks,
    Govindh

    If BPEL don't timed out, you can have Human task in Synchronous BPEL process.
    For this, you can have your synchronous reply before any Human task call back receive activities (this causes the timeout) or you can just create human task and no other call back receive activities.
    Thanks
    --Sreeny                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to implement Custom Authentication and Authorization in Oracle SOA 11g

    Can anyone please tell me, how to implement Custom Authentication in Oracle SOA 11g ?
    Because in Oracle SOA 10.1.3.4 , i have implemented this custom authentication and authorization by implementing BPMAuthenticationService, BPMAuthorizationService, BPMIdentityService to verify againt my database systems.
    implementation classes like the mentioned below
    1).
    public class SampleAuthenticationService extends SampleServiceBase implements BPMAuthenticationService {
    2).
    public class SampleAuthorizationService extends SampleServiceBase implements BPMAuthorizationService {
    3).
    public class SampleIdentityService extends SampleServiceBase implements BPMIdentityService {
    Please help me to implement the authentication and authorization in Oracle SOA 11g .
    thanks in advance

    To start with please go through following document
    http://docs.oracle.com/cd/E21764_01/integration.1111/e10231/adptr_jms.htm
    http://docs.oracle.com/cd/E23943_01/integration.1111/e10231/adptr_file.htm
    Regards
    Arpit

  • Oracle EBS Inbound/Outbound Interface build using Oracle SOA 11g

    Hi SOA Guru's,
    I am very much new to SOA 11g, could you guy's help me in understanding "How I can build any Oracle EBS Inbound/Outbound interface using Oracle SOA 11g"
    It will be great if anybody explain me with any example script/screen shot/document.
    Thanks in advance.
    Regards
    Pankaj

    I don't have any experience with ebs, but i assume it works like this.
    In the composite editor you will find a list adapters at the right..over here you will also find the oracle applications (ebs) adapter.
    This will be the component for you which will communicate with the ebs packages.
    you need to drag this adapter on the swim lane, and after that you should create the composite application like the way it's described in the tutorials Oracle supplies, put a mediator component in the middle and expose this interface (drag the line to the left swim line)
    Hope it's a bit clear like this ?
    http://download.oracle.com/docs/cd/E15523_01/integration.1111/e10224/fod_intro2.htm
    this should make a few things clear too

  • Oracle SOA 11g installation guide version 10.3.3 published.

    I have just published the Oracle SOA 11g version 10.3.3 guide. I hope this will be helpful for the beginners and for those who wants to start working on oracle SOA suite.
    here is the URL
    [http://shouab.wordpress.com/oracle-soa-11g-step-by-step-installation-guide/]

    Very Helpful indeed. Very comprehansive and detailed. Thanks a lot.

  • Steps to follow for Installing Oracle SOA 11g in 64 bit Windows 7 machine

    Hi,
    I have successfully installed Oracle SOA 11g components in Windows 32 bit machine by following the downloading the installers for Windows 32 bit and following the steps mentioned in the Quick Start Guide for SOA Suite and BPM Suite.
    Now I am trying to install Oracle SOA components in Windows 7 64 bit machine.Are the installation steps I followed for 32 bit is applicable for 64 bit too?Or are there any difference?
    In the download section of installers,I could see one for 32 bit, linux and generic.Can you guide me which one I need to download for 64 bit machine?
    Thanks in advance.

    I followed for 32 bit is applicable for 64 bit too?Or are there any difference?Steps followed for 32 bit installation would be same as for 64 bit. The only difference would be 64 bit JDK as it's required for win 7 to run the installation binaries of SOA Suite.
    http://www.oracle.com/technetwork/java/javase/downloads/java-se-jdk-7-download-432154.html
    I could see one for 32 bit, linux and generic.Can you guide me which one I need to download for 64 bit machine? You can use even 32 bit installer for 64 bit machine ( it works like charm for DEV like environment)...
    but as per Oracle doc they prefer to use generic installer.
    Regards,
    Abhinav
    Edited by: Abhinav on Dec 12, 2012 10:03 PM

  • 11g Tp3 Tutorial execution problems

    I tried creating the 1st JDeveloper targeted Toplink tutorial at http://www.oracle.com/technology/products/ias/toplink/doc/11110/tutorial/index.htm.
    What are the correct libraries to execute the test?
    I have
    TopLink
    Oracle XML Parser v2
    Oracle JDBC *
    Java EE 1.5 *
    JUnit 4 Runtime
    * - I added theses to resolve ClassNotFound errors.
    I now get a TransactionException. What are the correct libraries? Do I really need to set this naming factory, or do you think I am doing something else wrong?
    oracle.toplink.exceptions.TransactionException:
    Exception Description: Error obtaining the Transaction Manager
    Internal Exception: Exception [TOPLINK-23001] (Oracle TopLink - 11g Technology Preview 3 (11.1.1.0.0) (Build 071207)): oracle.toplink.exceptions.TransactionException
    Exception Description: Error looking up external Transaction resource under JNDI name [java:comp/pm/TransactionManager]
    Internal Exception: javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial

    Hi !
    Can you please share this tutorial as when i am trying to build and execute it in 11g (11.1.1.1.0) i am getting the below error, i am new to 11g/Toplink/Junit.
    oracle.toplink.exceptions.SessionLoaderException:
    Exception Description: Several [2] SessionLoaderExceptions were thrown:
    oracle.toplink.exceptions.SessionLoaderException.finalException(SessionLoaderException.java:91)
    oracle.toplink.tools.sessionconfiguration.XMLLoader.loadInternal(XMLLoader.java:172)
    oracle.toplink.tools.sessionconfiguration.XMLLoader.load(XMLLoader.java:144)
    oracle.toplink.tools.sessionmanagement.SessionManager.getSession(SessionManager.java:340)
    oracle.toplink.tools.sessionmanagement.SessionManager.getSession(SessionManager.java:453)
    oracle.toplink.tools.sessionmanagement.SessionManager.getSession(SessionManager.java:383)
    example.test.TopLinkExampleTest.createSession(TopLinkExampleTest.java:79)
    example.test.TopLinkExampleTest.setUp(TopLinkExampleTest.java:40)
    junit.framework.TestCase.runBare(TestCase.java:125)
    junit.framework.TestResult$1.protect(TestResult.java:106)
    junit.framework.TestResult.runProtected(TestResult.java:124)
    junit.framework.TestResult.run(TestResult.java:109)
    junit.framework.TestCase.run(TestCase.java:118)
    junit.framework.TestSuite.runTest(TestSuite.java:208)
    junit.framework.TestSuite.run(TestSuite.java:203)
    Thanks,
    KK

  • Performance tuning for Oracle SOA 11g

    Hi,
    Ours is SOA 11g Environment ver 11.1.1.4.2 on Windows Box.
    what are the performance tuning steps / guidelines that needs to be followed for SOA 11g in production env
    Thanks in adv
    Thanks & Regars,
    anvv sharma

    http://download.oracle.com/docs/cd/E17904_01/core.1111/e10108/toc.htm
    Regards,
    Anuj

  • Issue with Oracle SOA 11g

    Hi friends, I am new in BPEL development an i have some problem with SOA.
    When ApprovalTask initialize data(RequesterDetails and BenefeciaryDetails) and Manager of User who initialized in status NOT Active, then soa log output next error:
    <Error> <oracle.soa.services.identity> <BEA-000000> <<oracle.tip.pc.services.identity.jps.UserImpl.populateDetails()> UserImpl: Error while populating>>
    <Error> <oracle.soa.services.identity> <BEA-000000> No users found matching the criteria.
    oracle.security.idm.ObjectNotFoundException: No users found matching the criteria.
    Maybe you can help me.Thanks.

    Hi User,
    can you please elaborate when you are getting above error and also the issue.
    oracle.security.idm.ObjectNotFoundException: No users found matching the criteria
    The issue could have several different kind of causes. They all are likely due to a configuration issue.

  • Oracle SOA 11g Performance Issue

    Hi,
    We have set up Oracle SOA Suite on AIX environment. Java which we are using is IBM Jdk 1.6. Recently we are hit with performance issue. Frequently we are getting out of memory exception and we need to restart the server and sometimes physically reboot the machine, because out of 16 GB of RAM 4GB we have given as heap space to Admin Server, 7 GB to SOA Server but it is taking more than 7 GB as heap space. On stopping or killing both the services memory is not getting released
    SOA Suite Version : 11.1.1.3
    Instance Node: Single Node
    I collected the logs and tried to analyze in Thread Dump Analyzer and i could see objects(Reserved) is taking 100% of the CPU Utilization.
    We are getting the following error highlighed in the analyzer. There are about 200+ threads got stuck.
    "HTTPThreadGroup-42" prio=10 tid=0x6382ba28 nid=0x20bf4 waiting on condition [0x6904f000..0x6904fb94]
    at sun.misc.Unsafe.park(Native Method)
    at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:146)
    at java.util.concurrent.locks.AbstractQueuedSynchronizer.doAcquireNanos(AbstractQueuedSynchronizer.java:772)
    at java.util.concurrent.locks.AbstractQueuedSynchronizer.tryAcquireNanos(AbstractQueuedSynchronizer.java:1087)
    at java.util.concurrent.SynchronousQueue$Node.waitForPut(SynchronousQueue.java:291)
    at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:443)
    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:475)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:674)
    at java.lang.Thread.run(Thread.java:595)
    "HTTPThreadGroup-41" prio=10 tid=0x6ae3cce0 nid=0x20bf0 waiting on condition [0x68d8f000..0x68d8fc14]
    at sun.misc.Unsafe.park(Native Method)
    at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:146)
    at java.util.concurrent.locks.AbstractQueuedSynchronizer.doAcquireNanos(AbstractQueuedSynchronizer.java:772)
    at java.util.concurrent.locks.AbstractQueuedSynchronizer.tryAcquireNanos(AbstractQueuedSynchronizer.java:1087)
    at java.util.concurrent.SynchronousQueue$Node.waitForPut(SynchronousQueue.java:291)
    at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:443)
    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:475)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:674)
    at java.lang.Thread.run(Thread.java:595)
    Has anyone faced same issue? We are badly hit with this performance issue in UAT
    Please concider this on high priority and someone please help us
    Regards,
    Sundar

    Always raise a case with Oracle Support for such issues.
    Regards,
    Anuj

  • Invalid Session Id: Oracle SOA 11g invoking Salesforce API WSDL

    Hi,
    We are integrating SOA 11g to SFDC through Salesforce Enterprise WSDL,
    BPEL process successfuly make call to SFDC using login operation by providing username and password.
    Login response such as session id and server URL is used to make subsequent call to other operation such as update. But BPEL process fail for this call and return error message saying
    "Invalid Session ID"
    But when I try to test from SOAPUI everything works fine.
    Below is the code snippet of call to update operation of SFDC from BPEL.
    <invoke name="Invoke2Update"
    inputVariable="Invoke2Updat_InputVariable"
    outputVariable="Invoke2Update_OutputVariable"
    partnerLink="SFDCEnterpriseWebservice" portType="ns1:Soap"
    operation="update" bpelx:invokeAsDetail="no"
    bpelx:inputHeaderVariable="SessionId">
    <bpelx:inputProperty name="endpointURI" variable="EndPointURI"/>
    </invoke>
    Please advise, Thanks inadvance.

    I had a similar issue, but i got around by assigning the header varliable to bpelx:inputHeaderVariable.

  • Problem executing migrated BPEL process in Oracle SOA 11g

    Hi,
    I have migrated a 10g BPEL process to 11g successfully and deployed it. But while trying to invoke the BPEL, I am getting this error while invoking the bpel:
    Non Recoverable System Fault :
    Error committing transaction:; nested exception is: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: java.sql.SQLException: ORA-12899: value too large for column "DEV1_SOAINFRA"."CUBE_INSTANCE"."TITLE" (actual: 1718, maximum: 100) Error Code: 12899 Call: INSERT INTO CUBE_INSTANCE (CIKEY, PARENT_REF_ID, AG_ROOT_ID, TEST_RUN_ID, COMPOSITE_LABEL, STATE, CONVERSATION_ID, EXT_STRING1, SCOPE_USIZE, MODIFY_DATE, STAGE, AT_COUNT_ID, CREATOR, ECID, PARENT_ID, TITLE, PRIORITY, TEST_SUITE, TEST_CASE, METADATA, SCOPE_CSIZE, COMPOSITE_NAME, STATUS, ROOT_ID, DOMAIN_NAME, CMPST_ID, OUTCOME, EXT_INT1, AG_MILESTONE_PATH, COMPONENTTYPE, PROCESS_TYPE, MODIFIER, CREATION_DATE, AT_DETAIL_ID, COMPONENT_NAME, SCOPE_REVISION, EXT_STRING2, AT_EVENT_ID, COMPOSITE_REVISION, TEST_RUN_NAME, CACHE_VERSION) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) bind => [10092, null, null, null, soa_f21825b0-dcd6-47c2-8bf0-da63e26a53ea, 5, urn:uuid:b194c638-d9b3-4680-a10f-068c9a1eaa01, null, 415, 2010-06-23 12:38:26.406, null, 0, null, 0000I_ZcdIR95il_Kt9Die1C8BKX00009a, null, Instance #10092 of ProcessOrder GIFBDC IG-GetOrder Order 98347594357 Always 100shij 2009-08-03T16:16:17.390Z 321354564 processCancelBRMOrder Commit 1 2010061001 2010-05-01 VIN2010061001 Address1 CityName CountrySub 456123 US 101 true 12345 0 0 wang chen 1 1 1 1 1 1 Sales_Channel 123 PricePlan 156 2010-05-01 true 101 , 0, null, null, null, 256, ProcessOrder, Log_Fault, null, default, 10006, null, 0, null, bpel, 0, null, 2010-06-23 12:38:06.812, 0, ProcessOrder, 1, null, 0, 1.0, null, null] Query: InsertObjectQuery(com.collaxa.cube.persistence.dto.CubeInstance@1830602)
    IS there any problem with the configuration of database? I am using XE for storing the metadata.
    Please provide the solution for the issue.
    Thanks in advance.

    Yes it is having a receive activity , it receives the cXML from Ariba Adaapter. I checked the adapter it is up.
    I generated the jar and deployed through BPEL console still i get the same error.
    I got the below error
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.

  • Some problems in finding answers of interview questions Oracle SOA 11g

    hi
    These questions were asked from me in an interview. could someone please help me to get the answers?
    Q1: While using a file adapter if we have declared an elements schema length as 100 and file reading the file adapter that element contains 120 characters, then what will happen ? Is there any way to read that file?
    Q2: In a BPEL process there is a partner link which is invoked more than once in this BPEL. While creating assertions in Test suit for this composite how we will write assertions for this partener link?
    Q3: In a Flow activity if we have added 2 assign activities in each branch, then will we really have performance improvement as compared if we use them serially?
    Q4: In OSB how to restrict the no of messages coming to Proxy service?
    Q5: in OSB how to use dynamic URL of business service? (we will get to know the url at rum time or we have to create url at runtime)
    Q6: While using fault policy framework if have set the retry count as 3. Now when the retry count is exhausted then how this fault will be clost.faulted or open.faulted?
    Q7: can we have two service bindings in one composite if there is only one BPEL process in that composite?
    Q8: Q: If we need to validate any message in OSB after pipeline stage according to its destination
    thanks in advance

    John
    Please check these links and may answers some of your questions
    http://www.sap-img.com/business/sap-bw-interview-questions.htm
    http://www.techinterviews.com/?p=184
    http://rapidshare.de/files/3829216/Bw_Interview_Questions.pdf.html
    http://groups.ittoolbox.com/archives/archives.asp?l=sap-career&i=671624
    Hope this helps
    Thnaks
    Sat

Maybe you are looking for

  • IPod touch music dissapears from album view and other things

    I'm honestly suprised to the fact that my old iPod video works better on this factor than the iPod touch I upgraded to. My problem lies in the fact of syncing makes my iPod decide certain things stay on Album view and dissapear from it. To give an ex

  • Unable to paste frame from one animation into another

    Hi, I'm currently working to make a set of GIFs. I'm using PS CS6 64-bit on a Windows 7 PC. This is my first time encountering this error. I am attempting to select a batch of frames from one animation (in the frame animation mode) then select "Copy

  • How to make a single record datablock?

    Hi all, I got a data-entry form (9i) that will input a record one at a time and commit before entering another record. I try to set the block as single-record to yes but it gives error, and after checking with help, I understand that it can not work

  • Tape-based importing problem has emerged

    Managed to import ten taped videos from my Sony DV camera, no problems. But now the screen flashes twice, every two or three seconds, straight after import starts. Each flash is like a flashbulb going off.  This continues for about 10 seconds, i.e.,

  • CFDocument pdf CF8.01 super slow~unless I remove dynamic image

    Upgraded from CF7 to CF8.01 and all the hotfixes. Since the upgrade, dynamic .pdfs are super slow. I commented out an image, and now it loads faster. What changed in CF8.01 to cause problems with including dynamic images in .pdfs? How do I get around