JDeveloper 10.1.3.4 won't connect to Oracle BPEL 10.1.3.4 after patch

Hi
I've tried to install Oracle BPEL 10.1.3.4 four times now. Everytime I apply the 10.1.3.4 patch, JDeveloper won't connect to BPEL. I followed the installation documents step by step:
1.- Create SOA Schemas
2.- Install Oracle SOA Suite
3.- Upgrade BPEL and ESB Schemas
4.- Install 10.1.3.4 patch
5.- Configure PHP5
6.- Change data-source.xml
I always get the same problem in JDeveloper
XMLParseException:Whitespace required in the Identity Services. The configuration in JDeveloper is correct because it works on 10.1.3.1.
Regards,
Néstor Boscán

I install 10.1.3.1. JDeveloper works perfectly:
Application Server: OK
BPEL Process Manager Server: OK
ESB Server: OK
Then I run the upgrade scripts:
soa_schema_upgrade\bpel\scripts\upgrade_10131_10134_oracle.sql
And I install the patch.
Then I configure PHP5:
Set the enviroment variable PHPRC.
Configure the httpd.conf file:
LoadModule php5_module libexec/libphp5.so
AddModule mod_php5.c
AddType application/x-httpd-php .php .php5
AddType application/x-httpd-php-source .phps
Change the factory class in data-sources.xml to oracle.jdbc.pool.OracleDataSource.
Also I set in server.xml
     <application name="hw_services" path="../applications\hw_services.ear" parent="orabpel" start="true" />
The patch sets the start attribute to false.
Everything restarts correctly but I can't connect from JDeveloper. There are no errors in the opmn log, or the applications.log.
Regards,
Néstor Boscán

Similar Messages

  • SQL Developer 1.5.5 installs but won't connect to Oracle DB

    An earlier version I'd been using for years just went dead on me, nearly crashing my PC in the process.
    I installed 1.5.5 with its own JDK, and it launches without errors, but when I try to create a new connection, it gives me this crap: "no ocijdbc11 in java.library.path".
    A perfect example of a completely useless error message. What's a "java.library.path"? Where is it? How do I fix it?
    I couldn't find any uninstall utility for SQL Developer, so I just deleted the 'sqldeveloper' directories for both versions and re-installed. Same result, same useless error message.
    I thought I might try this forum while I'm installing TOAD. Any suggestions? Anyone seen this before?

    If you're using TNS, try using the Basic connection type.
    If that still doesn't work, you can try tricking sqldev by changing your ORACLE_HOME within a batch file inside sqldev's install folder. This would force using the supplied thin driver:
    set ORACLE_HOME=%CD%
    start sqldeveloper.exeHope that helps,
    K.

  • Problem while connecting to oracle in linux

    i connected to oracle in linux as
    "sqlplus ,#sysdba,"
    after that it asked me for password
    and i typed as "oracle"
    after tat message displayed that "connected to IDEAL instance"
    SQL>select * from tab;
    i got an error message staying tat "ORACLE not connected"
    can anyone help me out where the poblem is getting

    hi,
    after tat message displayed that "connected to IDEAL instance"
    i got an error message staying tat "ORACLE not connected"you are connected to an ideal instance.
    you should mount and then open the database
    if you are using spfile
    then issue
    SQL>startup
    database mounted.
    database opened.
    or
    SQL> startup nomount pfile='location'
    database will be in nomount stage
    SQL>alter database mount;
    database mounted.
    SQL>alter database open;
    then you can issue your command..
    regards,
    Deepak

  • Could not connect to Oracle database from excel macro. Getting connection not open.

    Hi all, 
    I could not connect to oracle database using excel macro. After much R&D also, I cannot find right solution. Please help me where I am doing wrong.
    Sub Button2_Click()
    Dim Conn As New ADODB.Connection
    Dim RS As New ADODB.Recordset
    Dim Cmd As New ADODB.Command
    Dim sqlText As String
    Dim Row As Long
    Dim Findex As Long
    Dim Data As Worksheet
    Dim X As Long
    Dim UID As String
    Dim PWD As String
    Dim Server As String
    Dim strCon As String
    Application.Calculation = xlCalculationManual
    UID = "myUserid" 'Enter the User ID
    PWD = "myPassword" 'Enter the password
    Server = "myHostname or myServername" 
    Set Data = Sheets("Sheet2")  
    Data.Select
    Range("A:J").ClearContents 
    strCon1 = "Provider = Microsoft.ACE.OLEDB.12.0;DATA SOURCE=myHostName;Database=myDBname;uid=myUserid;pwd=myPassword;"
    Conn.Open (strCon1)
    Cmd.ActiveConnection = Conn
    Cmd.CommandType = adCmdText
    ' Put your query next
    sqlText = " select * from table "
    Cmd.CommandText = sqlText
    Set RS = Cmd.Execute
    For X = 0 To 17 
    Data.Cells(1, X + 1) = RS.Fields(X).Name
    Next
    Do While Not RS.EOF 'this loops through the data and puts it in the spreadsheet
    Row = Row + 1
    For Findex = 0 To RS.Fields.Count - 1
    Data.Cells(Row + 1, Findex + 1) = RS.Fields(Findex).Value
    Next Findex
    RS.MoveNext
    Loop
    Application.Calculation = xlCalculationAutomatic
    Application.Calculate
    End Sub
    sammy

    I have set oci.dll in to the path specified. Prior to this I musy say that, I have 64 bit excel 2010 & installed respective drivers from the link provided http://www.oracle.com/technetwork/database/windows/downloads/index-090165.html
    But
    still I am facing as:-" Provider cannot be found. It may not be properly installed."
    sammy

  • Jdeveloper deploying error: oracle.bpel.services.datacontrol.types.Number

    I have migrated a BPEL process from 11.1.1.3 to 11.1.1.5. When deploying my migrated BPEL process from JDEVELOPER I get the following error:
    java.lang.ClassNotFoundException: oracle.bpel.services.datacontrol.types.Number
    I found this: http://www.orastudy.com/oradoc/selfstu/fusion/integration.1111/e10226/appx_trouble.htm
    If you see the following error:
    Caused By:
    java.lang.ClassNotFoundException:
    oracle.bpel.services.datacontrol.ty
    pes.Number
    during deployment of a task form, then it is likely due to the missing shared library in weblogic.xml. Add the following element in weblogic.xml:
    <library-ref>
    <library-name>oracle.soa.worklist.w
    ebapp</library-name>
    <specification-version>11.1.1</spec
    ification-version>
    </library-ref>
    But, when I add this element in weblogic.xml, deployment fails with a new error:
    [Deployer:149193]Operation 'deploy' on application 'Reclamaciones' has failed on 'soa_server1'
    [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application Reclamaciones on soa_server1.: Failed to load webapp: 'oracle.soa.worklist.webapp'.
    Weblogic Server Exception: weblogic.application.ModuleException: Failed to load webapp: 'oracle.soa.worklist.webapp'
    Caused by: java.lang.ClassNotFoundException: oracle.adfinternal.view.faces.taglib.region.RichDeclarativeComponentTag
    See server logs or server console for more details.
    weblogic.application.ModuleException: Failed to load webapp: 'oracle.soa.worklist.webapp'
    Taskflow deployment failed to deploy to server. oracle.jdeveloper.deploy.DeployException: Remote deployment failed
    #### Deployment incomplete. ####
    I would appreciate any help from you .
    Thanks in advance
    Edited by: 822084 on 05-dic-2011 17:53

    HI everybody ,
    M facing the same issue too.. Please suggest where this bmp-services-client.jar will be available?
    I am human task forms which are using the ADF data controls for workflow and am getting the following error:-
    Caused By: java.lang.ClassNotFoundException: oracle.bpel.services.datacontrol.types.Number
    The human task forms are taskflow components of a soa composite containing a bpmn component which stitches these taskflows into an Activity Guide.
    Any help will be appreciated

  • My HP OfficeJet Pro 8600 won't connect to my wireless router

    This is bizarre.  I have had my HP OfficeJet Pro 8600 for about 6 months.  It has generally worked fine, and we have used it wirelessly only.  But now it refuses to connect to the router.  It can FIND the router, and it can find other networks in the area, but it won't connect to the router.  I ran the Wireless Network Test, and the results say:
    Wireless On - Pass // Wireless Working - Pass //
    Network Name (SSID) found - Pass //  Wireless Networks Detected - 9
    Printer Settings Consistent with Wireless Router Settings - Pass / No Filtering - FAIL //
    So it recommends solution as follows: "1 If MAC Address filtering is enabled, and you would like to keep it enabled, you must add the Mac address of your printer to the list of permitted devices for your router before continuing."
    Except, guess what, I don't have MAC Address filtering enabled.  I wouldn't know how to do that, much less check for it.
    Also, before today, this was never a problem.  HELP!
    Thanks....
    If you are interested, here's more detail and background.  
    Before today, the only problem we have had is that frequently our Apple laptop (OS X 10.6) has trouble connecting to the printer.  This has been odd because the printer is connected to the network, and so is the laptop, but the laptop can't find the printer - it thinks the printer is "offline" (even though it's not).  Usually, if I wait a while, it will find the printer, and it will resolve itself work fine.  If not, we sometimes have found that it can fix itself if you restart the laptop -- restarting the printer does not make a difference.   In fact, I did exactly that today, and it resolved itself.  And I printed.  Fine, right?
    But then I wanted to do more printing, and the problem of the laptop not finding the printer came up again, so I decided to really "get to the bottom of this."  I don't remember exactly what I did, but somehow I was persuaded by the online help, that the correct solution would be to go into my System Preferences / Print and Fax, and click on the "-", which de-installs the printer, with the idea of re-installing the printer.  But then when I tried to re-install the printer, it could not find the printer.  Ugh!  Wierdly, it found an 8600 Scanner, but not an 8600 printers.  After installing and de-installing the 8600 scanner a few times, I eventually deinstalled everything, and I decided to start from scratch.  I got my HP disk, and installed all the software again from the beginning (even though it was already there), and then it looked for my printer, but couldn't find it.  So then I got a USB cord, and plugged that in.
    So, now I have a situation where I do have a working printer via the USB cord, but no wireless connection at all.  In particular, since the Office Jet Pro 8600 won't connect to the router, I don't know what else to do.  My Apple MacBook pro is 2 feet away from the printer, and it is connected to the router just fine (as is my blackberry), and I have never before had a problem connecting to the wireless router by the printer.
    Any suggestions?

    There are two things that can trip the mac filtering test to fail:  actual MAC address filtering setup (sounds like this is not the case) and using wireless channel 6 or automatic for wireless channel in the wireless network settings (in the router).  Since it does show failed for MAC filtering and you do not use this option, try changing the wireless channel in the router to 1 or 11.  Those two channels provide the best compatibility with printers due to less interference.  Almost everything defaults to auto or 6 for the channel and this causes a lot of interference.  This change should not affect anything at all.  To do this, you may need to contact the router manufacturer as the process differs from router to router.
    What brand and model is the router?
    Has anything in the network settings changed at all?
    What version is the Mac OS X?  There may be additional steps to take as it sounds like there are two separate issues involved and this could be revisited later.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • TS3276 I'm now having trouble getting mac mail to work on my mac. The mobile me account works great on iphone and ipad but it won't connect to my mail account. Password is correct. What else can I do? Using OS10.68

    I'm now having trouble getting mac mail to work on my mac. The mobile me account works great on iphone and ipad but it won't connect to my mail account. Password is correct. What else can I do? Using OS10.68

    HI,
    The Apple IDs from @mac.com and @me.com (Older MobileMe and more recent iCloud Names) are also Valid AIM Screen names.
    Any other sort of Apple ID is not a Valid AIM Name.
    A Google ID that is associated with Google Mail Account (And has "Talk" enable on your Google Settings) can be used in iChat as  Jabber Name/ID.  (Google Run  Jabber server).
    Jabber and AIM are different IM Services and it is not easy or straight forward to add Buddies from one Service to the Buddy List of another.  (As A Starting point consider it "impossible")
    iChat 4 and 5 have links to the registration page of @Mac.com here with a "Get an iChat Account" button in the add (Account) screen  (You select @mac.com or MobileMe and then press the Button - Choosing AIM and then pressing the button used to lead to the AIM registration page but AIM moved their page).
    Apple IDs can be any valid email (or an @mac.com or iCloud registration)
    Therefore you could make a Google ID into an Apple ID.
    However this will not be a valid AIM Screen Name the way @mac.com or MobileMe/iCloud ones are.
    Valid AIM Screen Names in Table (pic)
    7:46 PM      Monday; December 5, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • HP 6520 wifi won't connect

    Just took a 6520 out of the box, trying to set it up/print to it from a windows 8.1 computer, after returning a 4620 printer that had the same problem.
    Ran the setup software. Setup software can't even manage to figure out what wireless network the computer it's running on is connected to - useless.
    Printer can find the wireless network, and when using the wrong password, won't connect, citing wrong password.
    When I use the right password, it just fails to connect.
    I've rebooted my router, rebooted my computer, rebooted the printer. No good. Print doctor software is useless as it can't even find the printer.
    I've turned off MAC filtering on my router, and disabled Windows Firewall. Nothing.
    I have an epson printer that has no problem connecting, and every other wifi capable device I own can connect to my wifi with no problem, from both Android and apple phones to tablets to four different PCs and laptops to my freaking nest thermostat. Why can't my printer manage to just work over wifi?
    I do not have a USB cable for the printer (it wasn't sold with one), btw, so trying that is out (besides, I bought this as a wireless printer, not a wired printer).
    Help please.

    Hi MattMihaly,
    Welcome to the HP forums!
    I see you have a Photosmart 6520 and a Windows 8.1 computer that don't seem to want to talk to one another. I'm sorry to hear this, but I will certainly do my best to help!
    I would suggest you start by following the steps for Windows 8 in this 'Unable to Find Printer' Error Message Displays on the Computer During a Wireless Network Installati... document (make sure to follow the Option two: Connect with the Wireless Setup Wizard under Step five). If that doesn't resolve it, please try the steps under Your printer has never worked over the network in the HP Wireless printing center.
    I realize you may have tried some of these steps, perhaps all of them, before but often trying them in a specific order is what makes the difference
    Let me know how this goes for you!
    Please click “Accept as Solution ” if you feel my post resolved your issue, as it will help others find the solution faster
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    **MissTeriLynn**
    I work on behalf of HP

  • My HP OfficeJet 6500A Plus printer/scanner/fax/copier won't connect to my wireless network

    I tried going through the Wireless Network setup on my HP OfficeJet 6500A Plus machine. The printer recognizes the network and I then type in my network's password but it won't connect to the network. What can I do? I would like to be able to print and scan wirelessly. Help please!

    Hello erking,
    Sorry to hear that you are having an issue with connecting the printer to your Mac over a wireless connection.
    I have done some research and I have found a great document that deals with The Printer Is Not Found During a Wireless Network Installation.
    Please feel free to write me back and I will be happy to assist you further with any questions or concerns you may have.
    Thanks for your time.
    Cheers,  
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • I just got the new ipod touch (5th generation) and it will show up on my computer but it will not show up on itunes and it won't connect. Please help!

    I just got the new ipod touch (5th generation) and it will show up on my computer but it will not show up on itunes and it won't connect. Please help!

    See:
    iOS: Device not recognized in iTunes for Windows
    You need iTunes version 10.7

  • IPOD won't connect to Windows or show up in itunes...HELP

    Have my daughter's 30 GB 5th Gen Ipod here. When you plug it into the computer with the cord, it will turn on, and charge. However I get a balloon come up that says "One of the USB devices attached to this computer has malfunctioned, and Windows does not regognize it. For assistance in solving this issue click this message." I clicked the message. It shows the Ipod in Device Manager as an "unknown device" and when you try to update the driver, it says there are no better drivers to install than the one currently installed. I have tried the 5 R's step by step several times, and that does not work. I can not restore it because it does not show up in itunes. I have tried it on other computers and it does the same thing. It plays the music she has on it, works fine, but we can not get it to connect to either computer. Her friend's Ipods connect to both our computers fine, and will download songs etc. I also have tried putting it into disc mode to see if it would go into itunes so we can restore it. Same message comes up when you have it in disc mode. I have also tried the "tap on the palm" suggestion, which made no difference at all. It just won't connect. I do have the newest version of itunes downloaded and installed.
    I am at my wits end with this thing! PLEASE help me get this thing to connect.
    Thanks!

    Start with these articles and see if that gets you anywhere (yes I know some of these you already tried) ...
    iPod is not recognized properly by computer when USB drivers are not installed properly or are out of date
    http://docs.info.apple.com/article.html?artnum=305136
    iTunes for Windows: iTunes 7 doesn't recognize iPod
    http://docs.info.apple.com/article.html?artnum=304434
    iPod shows up in Windows but not in iTunes
    http://support.apple.com/kb/TS1363
    iPod missing in "My Computer" or in iTunes for Windows
    http://docs.info.apple.com/article.html?artnum=61711
    Also you might try forcing the iPod into disk mode first, then connecting it to your computer and see if that makes it show up in iTunes...
    Putting iPod into Disk Mode
    http://docs.info.apple.com/article.html?artnum=93651
    Windows confuses iPod with network drive or hard drive and may keep iPod from mounting or songs may seem to disappear
    http://support.apple.com/kb/TS1493
    Also this semi-recent interesting post by a user here for a work around when an iPod is in the "recovery mode" looping state...
    http://discussions.apple.com/thread.jspa?threadID=1679535&tstart=0
    Cheers,
    Patrick

  • HT1174 I got my iPod touch 5g yesterday 2/7/13 n I did everything you guys said restarting uninstalling checking everything making sure we have what's required and still won't show up on my windows or won't connect to itunes... Please help?????

    I just got my iPod yesterday and I've tried to connect to my windows and iTunes n it says error n won't connect sync or anything please help...I've read other people's post that have the same problem.. But I need to know for myself .. It ***** get all excited about a new device and can't even connect it .. Sync it to iTunes ..

    What is the exact wording of the error message?

  • My Iphone 5 won't connect to my PC

    My Iphone 5 won't connect to my PC. When I plug it in to my PC nothing happens at all. My cord chargers on the charger so I dont think the cord could be the problem. Also I updated all my PC software, as well as my Iphone and still nothing. I tried plugging in my itouch to see if it would work and it does! So i think something with my phone is the problem! Please help!

    Hi,
    I have the same trouble. After reading many internet sites around this subject I found the following solution.
    Although apple explained that it is not necessary with the lightning connector to use it in a special direction this seems not to be true.
    I have just turned my connector by 180° and it is working again.
    Hopefully this direction does not fail too. There are only 2 possibilities

  • My iPhone 5 won't connect to my macbook pro retina over bluetooth?

    My iPhone 5 won't connect to my macbook pro retina over bluetooth?

    Ah, sure it actually won't.  I have the same problem, and I contacted Apple Support.  They told me that there is an incompatability between the iphone 5 and MacBook Pro Retina such that Bluetooth pairing is not possible.
    The Support Agent actually had the audacity to tell me this was part of the design of the OS on the MacBook Pro, like Windows people saying, "That's not a bug.  It's a feature!!"
    Personally, I think this is insane.  While I was trying to tether the iphone to the MacBook Pro retina for an internet connection, there are other reasons related to file transfers for which one would want to pair the iphone 5 with the MacBook Pro retina.
    I am hoping this "feature" is fixed in iOS 7, and/or in some dot release of Mac OS 10.8.
    By the way, the personal hotspot feature on my Verizon iphone 5 works great either via a wifi or USB connection.  There are occaisions, however, when one would 1) not have a USB cable, and/or 2) have another wifi relationship between the phone and a network that one would not want to have to "forget" in order for it not to connect to that wifi network.  The Macbook will not find the iphone as a wifi hotspot if the iphone is connected to wifi in the first place.  At least mine won't.
    WWSJS???  What Would Steve Jobs Say???!!!
    OZones

  • My Iphone 5 won't connect to a network or wifi

    My Iphone 5 won't connect to a network or wifi, I just got the phone less then a month ago.....It is driving me nuts and I don't know how to fix it!I

    Have you read through the user guide and taken basic troubleshooting steps?  What have you done so far to troubleshoot?

Maybe you are looking for

  • Things to know before (and after) building a Mega 865

    As I am seeing a lot of the same questions regarding the Mega 865 I created this document, 29-Oct-2004 Added Northwood benefits 29-Oct-2004 Emphasized NOT to use live update for bios update Processors in general Start with the processor, I would say

  • Attachment to the Service Entry Sheet

    Hi experts, Is there any procedure to attach any required document (scanned copy / word / excel sheet etc) to the Service Entry Sheet. Please help. Mohan

  • FireFox won't auto-refresh specific site, other browsers do. How can I get FF to auto-refresh?

    I have a Help Desk application (everything HelpDesk) with a web interface. I keep my queue screen open so I can see new tickets come in and check status of existing tickets. FireFox does not auto-refresh this queue page so that new items or status ch

  • Waveburner and Macbook Pro issue

    Not sure what's going on here but I decided to check a waveburner master on the internal speakers of my 2011 macbook pro. Each song has a distinct pop at the very front if played at the start of the region. It seems like buffers are not being cleared

  • Fpsane.cpp error

    Hello, Following an fpsane.cpp error, all open vi's crash and when they are reloaded they are temporarily reloaded in mandarin chinese. After a minute or so the language reverts back to english. Has anyone ever seen an error like this before? Thanks,