The Oracle JRockit JVM is not supported by SAP JCo 3.0.5.

Hello all,
I am preparing our new Oracle Fusion Middleware platforms. So far we have been running BPEL 10.1.3.4.0 and we are going to build the 11g platform (WLS and SOA suite) in parallel.
I have already installed WLS Server 10.3.3 and then SOA Suite + the SOA patchset bu selecting always Jrockit_160_17_R28.0.0-679.
Now I am abaout to install the adapters and I red in the documentation
http://download.oracle.com/docs/cd/E14571_01/doc.1111/e17054/intro.htm
For supported JVM information that corresponds to each operating system, see the SAP Note #1077727 in the SAP Service Marketplace.
Note:
The Oracle JRockit JVM is not supported by SAP JCo 3.0.5.
Is anybody aware of this? If it is valid, how could I achieve not to re-installa everything from scratch and select SUN JVM?
Could I for example create a new Managed Server where I will explicity select SUN JVM to be installed for this instance?
Best Regards,
Loukas Rougkalas

Please post your question to SOA forum. This forum is about WebLogic Connector Container.

Similar Messages

  • JVM Vendor not supported error in NWDS.

    I installed the NWDS 7.3 for customizing my portal 7.3 logon page. I am following an interesting blog for the same: Getting started with Netweaver 7.3 portal Part 2 - NWDS and Logon Page
    However I am yet to complete this task successfully due to a JVM vendor not supported error. I have a JAVA_HOME entry to the javaw.exe path. Also, i have vm entry of the same path in the NWDS shortcut- properties- target value. C:Program Files (x86)Javajdk1.7.0_02 in
    I chose program files (x86) for this installation bcos during my previous java error i read in my log that JVM 64 bit could not be run.
    Initially i use to get JVM error during startup itself bcos of which i was not able to get to the home page of developer studio. I solved that error now by installing right version and making necessary entries as mentioned above. Now i get a pop up stating that oracle vendor is not supported (it says that i should have either a Sun or SAP provided java). Is it really the problem? If so, can some 1 get me the link to download it.
    I am creating a new thread since the old ones posted by others on the same topic does not give me the solution.
    Thanks in advance

    Hi,
    I also come to this warning. I did a little research, and found solution that worked for me by solving source of problem, without need of trying different JDK versions.
    My current configuration:
    SAP NWDS:
         - v7.30 EHP1 (7.31) SP10 PAT0001 (8.31.100001.140103092401 SP10 PAT0001)
         - file: "nwds-extsoa-7.3-EHP1-SP10-PAT0001-win32.zip"
         - Download location: https://nwds.sap.com/swdc/downloads/updates/netweaver/nwds/nw/731/doc/auto_latest_distributions.html
    JDK:
         - v7 Update 51 - both x86 and x64 versions. As NWDS is x86 version, that platfotm is enought if you don't need native support for x64 applications.
         - Latest version download location: http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html
         - Older versions download location: http://www.oracle.com/technetwork/java/javase/archive-139210.html
         - I'm not suggesting that you need to install last version. I tested it on this version and it worked for me, but I use NWDS only for few specific tasks. So I did't test all functions for JVM compatibility. But my solution should work for solving cause of vendor specific problem. Not other JVM problems. And installing newer Java may be source of other problems, like is every release. But with correct backup there shouldn't be a problem.
    Problem:
    Problem is in older code of initial JVM check, where are specified allowed vendors. Oracle is not included in configuration, so warning is shown. Module is located in plugins folder:
         "<SAP NWDS>\plugins\com.sap.ide.jvm.check_1.0.0.140103091951.jar"
    Version number (orange) can differs based on NWDS distribution. In jar file is configuration stored in file "config.xml". There is this part, that specifies allowed vendors:
    <supportedRuntimes shutdownIfNotMatches="false" warnIfNotMatches="true">
          <vendor name="SAP AG">
              <versionRange jdkRequired="true" minInclusive="1.6.0_07"/>
          </vendor>
          <vendor name="Sun Microsystems Inc.">
              <versionRange jdkRequired="true" minInclusive="1.6.0_07"/>
          </vendor>
      </supportedRuntimes
    Here you can see that only "SAP AG" and "Sun Microsystems Inc." from older Java releases are included. And that's the problem, as new versions are released by Oracle. So vendor differs and warning is here.
    Solution:
    Before we begin it's best to backup whole NWDS directory and also workspace(s)!
    1) Locate file with JVM checking module:
         "<SAP NWDS>\plugins\com.sap.ide.jvm.check_1.0.0.140103091951.jar"
        As mentioned before, version number can be different in your release.
    2) Create backup copy of current file. Call it for example "com.sap.ide.jvm.check_1.0.0.140103091951.jar.BAK".
    3) Copy original file to temporary location. I used "C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951.jar"
    4) Extract files from JAR. JAR files are basically ZIP files. I used 7-zip program to extract source to folder based on file name:
    "C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\".
    5) Locate and edit configuration file "C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\config.xml". Add vendor node "Oracle Corporation" (part in green color). Just copy existing node and replace vendor name.
    <supportedRuntimes shutdownIfNotMatches="false" warnIfNotMatches="true">
        <vendor name="SAP AG">
            <versionRange jdkRequired="true" minInclusive="1.6.0_07"/>
        </vendor>
        <vendor name="Sun Microsystems Inc.">
            <versionRange jdkRequired="true" minInclusive="1.6.0_07"/>
        </vendor>
        <vendor name="Oracle Corporation">
            <versionRange jdkRequired="true" minInclusive="1.6.0_07"/>
        </vendor>
    </supportedRuntimes>
    6) Pack directory. Pack whole content of directory from step 5) back to ZIP format. Change extension to .JAR in your favorite compression program, or rename new file from ".zip" to ".jar" after compression is done. Now we have our new corrected file for checking JVM version in NWDS - "C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\com.sap.ide.jvm.check_1.0.0.140103091951.jar".
    7) Replace original file. Copy file over original one:
    "C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\com.sap.ide.jvm.check_1.0.0.140103091951.jar" -->
    "<SAP NWDS>\plugins\com.sap.ide.jvm.check_1.0.0.140103091951.jar". Overwrite if asked.
    8) Done.

  • Microsoft OLE DB Provider for Oracle: Data type is not supported.

    I got the error:
    Microsoft OLE DB Provider for Oracle: Data type is not supported.
    Shortly after upgrading from Oracle 8 to Oracle 9. I was advised to download more up to date oracle drivers, but I was wondering if there was a way to tell what version of the 'OLE DB Provider for Oracle' is already at. Is there a command I can use via SQL Plus or something?

    I have found Microsoft ODBC for Oracle to be more stable than the Microsoft OLEDB for Oracle driver. I have also found both Microsoft ODBC and OLEDB drivers to be more stable than the drivers from Oracle.
    You could always get the latest MDAC (Microsoft Data Access Components) from Microsoft's MSDN Download site and then get the ODAC (Oracle Data Access Components) from Oracle's OTN Download site. ODAC requires MDAC. And ODAC has the latest drivers.
    I suppose it would help to have the latest patches for your Oracle client software too. Maybe Oracle MetaLink would have these?
    It may even help to have the latest service pack for Visual Studio 6 (Visual C++ 6 and Visual Basic 6) too.

  • Oracle Business Intelligence is not supported on this Windows version

    Hi Guys,
    I uninstalled OBIEE 10.1.3.4.1 and OBIA 7.9.6.1 and after that i did disk cleanup from Start->Accessories->System Tools-> Disk Cleanup.
    And after that when i tried to Install OBIEE 10.1.3.4.1 i got the following error.
    Oracle Business Intelligence is not supported on this Windows version. Oracle Business Intelligence is only supported on Windows XP x86, Windows 2003 x86, Windows 2003 AMD64, Windows 2003 EM64T, Windows Vista x86, Windows Vista AMD64, Windows Vista EM64T, and Windows 2000 x86.
    But my machine is Windows XP x86 and I have installed OBIEE. I was surprised when i saw this error.
    In Run-> CMD when I type Systeminfo i get the following error.
    Loading Network Card Information...
    ERROR: Provider Load Failure.
    I would appreciate if any one of you can let me know what could be the problem.
    Thanks a lot!
    Edited by: user10511107 on Mar 14, 2010 9:22 PM

    Hi Daan,
    I belive we all shoud consider http://forums.oracle.com/forums/ann.jspa?annID=939
    I get upset to see people on this forum who answer the questions like *'use google'* or *'let me google it for you'* or *'use this forum filter'*
    I belive it is better to help them answer a better question or if you don't like the question ignore it.
    Hi user10511107,
    I belive your problem is with Windows not with BI, BI just can't get windows version,
    If you are on right version of windows go to MSDN and search for your error and how to fix it
    ERROR: Provider Load Failure.
    Regards
    Nicolae

  • Running a 64-bit JVM is not supported on this platform.error on DAC install

    Hi Friends,
    I am getting the error while installating DAC server on RHEL5.4(64 bit)
    Running a 64-bit JVM is not supported on this platform.
    What is the fix?
    Regards,
    DB

    I have tried that but run into issues too... are you installing DAC directly on Linux 64 from installer or copying over from Windows binaries of DAC?

  • The Event read query was not supported

    I have an error during a Search request in my collab suite calendar.
    Here the soap message :
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Header>
    <auth:BasicAuth xmlns:auth="http://soap-authentication.org/2002/01/">
    <Name>lde</Name>
    <Password>xxxx</Password>
    </auth:BasicAuth>
    </SOAP-ENV:Header>
    <SOAP-ENV:Body>
    <cwsl:Search xmlns:cwsl="http://www.oracle.com/WebServices/Calendaring/1.0/">
    <CmdId>test</CmdId>
    <vQuery>
    <From>VEVENT</From>
    <Where>DTSTART >= '20061002T000000Z' AND DEND <= '20061002T235959Z'</Where>
    <x-oracle-searchhandle></x-oracle-searchhandle>
    <x-oracle-timestamp>20061002T113300Z</x-oracle-timestamp>
    </vQuery>
    </cwsl:Search>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    And the reply is :
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <soap:Body>
    <soap:Fault>
    <faultcode>soap:Server.Error::Data::CalEvent</faultcode>
    <faultstring>The Event read query was not supported</faultstring>
    <detail>
    <cwsl:Error xmlns:cwsl="http://www.oracle.com/WebServices/Calendaring/1.0/">
    <Class>Error::Data::CalEvent</Class>
    <Code>000C-07-00-00000023</Code>
    <Line>306</Line>
    <FileName>UniapiQuery.cpp,v</FileName>
    <Version>1.2</Version>
    <LastMod>2005/04/26 16:47:36</LastMod>
    <Author>kelsaid</Author>
    <Date>Mon Oct 02 11:48:16 2006</Date>
    <PID>30834</PID>
    <TID>1124678576</TID>
    </cwsl:Error>
    </detail>
    </soap:Fault>
    </soap:Body>
    </soap:Envelope>
    I haven't any errors with this sample.
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Header>
    <auth:BasicAuth xmlns:auth="http://soap-authentication.org/2002/01/">
    <Name>lde</Name>
    <Password>xxxxx</Password>
    </auth:BasicAuth>
    </SOAP-ENV:Header>
    <SOAP-ENV:Body>
    <cwsl:Search xmlns:cwsl="http://www.oracle.com/WebServices/Calendaring/1.0/">
    <CmdId>test</CmdId>
    <vQuery>
    <From>VEVENT</From>
    </vQuery>
    </cwsl:Search>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Message was edited by:
    Ludovic DESSEMON

    I resolved my problem. It was a syntax error :
    <Where>DTSTART >= '20061002T000000Z' AND DTEND <= '20061002T235959Z'</Where>
    and not :
    <Where>DTSTART >= '20061002T000000Z' AND DEND <= '20061002T235959Z'</Where>

  • When trying to play videos I get the message "requested URL is not supported on this network" how do I fix this?

    I receive the error "requested URL is not supported on this network" when trying to play videos on my iPhone. Can you please advise how to fix this problem?

    Hi,
    You will need to re-instal iCal as an optional install from your OSX installer DVDs. Then run the Mac OS X 10.5.8 Combo Update.
    Best wishes

  • Error message "The currently attached accessory is not supported by this iPod" is shown when connected to my Zeppelin Air Dock.

    I have 2 iPods, one is a 60GB Classic formatted to Mac the other is a 80GB Classic formatted to Windows. When either is connected to my Zeppelin Air Dock, a message appears on the iPod saying "The currently attached accessory is not supported by this iPod"
    I have updated the firmware on the Zeppelin and have the latest updates on each of the iPods.
    The Zeppelin works fine and connects to the computer and laptop without issues.

    I'm having the same problem, it just started today. I've been running w/ the nike+ sensor and receive w/ my iPod nano for 6 months, logging 75 runs, so don't understand why I'm getting this error now.
    Can someone please reply w/ how to resolve this issue? I have Nike+ challenges coming up soon that I can't miss. Thanks!

  • I have a mid 2009 Macbook Pro and i know the Mini-display port does not support audio out but does it support HDMI out? or do i have to buy a Mini-display to DVI and then a DVI to HDMI adapters?

    I have a mid 2009 Macbook Pro and i know the Mini-display port does not support audio out but does it support HDMI out? or do i have to buy a Mini-display to DVI and then a DVI to HDMI adapters?

    Run MDP to HDMI for picture. Use a cable like this to run sound from your audio out on your Mac to your TV's audio in.  That's about all  you can do.

  • When i connect my macbook using the mini hdmi to my HD samsung tv, the response is always "mode not supported".  ideas?

    I'm using the mini HDMI to connec to a Samsung HDTV.  The response is always "Mode Not Supported."  Anyone know what to do?  Trying to watch TV shows from iTunes on the TV.  Thanks, Hugh

    Hi Jake,
    It's impossible to know without troubleshooting, but it sure sounds like a bad adapter or cable.

  • Error while connecting to an OData Feed from Excel 2013 PowerPivot . Error: Failed to connect to the server. Reason: The payload kind 'BinaryValue' of the given data feed is not supported

    I am trying to connect to a Odata Data feed from Excel 2013 Power Pivot
    The datasource is in sharepoint site eg: https://sitename/Shared%20Documents/datafeed.atomsvc
    getting below error
    Error message:
    Failed to connect to the server. Reason: The payload kind 'BinaryValue' of the given data feed is not supported.
    ============================
    Call Stack:
    ============================
       at Microsoft.Data.DataFeedClient.DataFeedODataReader.ValidatePayloadKind(ODataPayloadKind payloadKind, ODataMessageReader odataMessageReader)
       at Microsoft.Data.DataFeedClient.DataFeedODataReader.InterceptODataException(Action action)
       at Microsoft.Data.DataFeedClient.DataFeedODataReader..ctor(IODataResponseMessage responseMessage, Int64 maxReceivedMessageSize)
       at Microsoft.Data.DataFeedClient.DataFeedODataReader.CreateReader(IWebResponse webResponse, Int64 maxReceivedMessageSize, Boolean applySlashUpdatingBaseUriResolver)
       at Microsoft.Data.DataFeedClient.ODataHelper.GetCollectionsFromServiceDocumentUrl(Uri serviceDocumentUrl, DataFeedConnection connection)
       at Microsoft.Data.DataFeedClient.DataFeedConnection.Open()
       at Microsoft.AnalysisServices.BackEnd.RelationalDataSourceConnection.InitializeConnectionObject(String connectionIdentifier)
       at Microsoft.AnalysisServices.BackEnd.RelationalDataSourceConnection.InitializeConnectionObject(String connectionIdentifier)
       at Microsoft.AnalysisServices.BackEnd.RelationalDataSourceConnection.Open(String& connectionIdentifier)
       at Microsoft.AnalysisServices.BackEnd.RelationalDataSourceConnection.Open()
       at Microsoft.AnalysisServices.Common.DataSourceBasic.ClickTestConnection(Object progressControl)
    Appreciate suggestions/answers
    NOTE: The error is showing only while using Excel 2013 powerpivot
    its working good with Excel 2010 powerpivot

    Anita,
    Please look into using Power Query to use OData as a source in Power Pivot.
    Thanks!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Power view couldn't load the model or data source because the data source type is not supported

    Hi,
    I have SQL 2012 standard edition in my local. I have developed SSAS & deployed in local. I have been asked to develop power view report in excel 2013 using this SSAS. But when I tried to do in Excel 2013 professional Plus, I am getting below error:
    Power view couldn't load the model or data source because the data source type is not supported.
    Does power view is supported in standard edition of SQL or it requires Business/Enterprise edition of SQL server?
    Thanks in advance

    What type of SSAS install are you using?
    PowerView in Excel 2013 currently only supports Tabular data sources.
    Only PowerView in Sharepoint 2013 supports both Tabular and Multi-Dim data sources. (provided you have the required Sharepoint and SQL updates installed)
    http://darren.gosbell.com - please mark correct answers

  • The Oracle BI server is not running. The repositiry had to be closed

    Hi guys,
    I have a OBI Standard Edition 10.1.3.4.1.
    I have modify the rpd and if I try to "Check In Changes", the error appears: "The Oracle BI server is not running. The repositiry had to be closed".
    In the nQServer.log this error appears:
    [nQSError: 12002] Socket communication error at call=recv: (Number=10055) An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.
    Why?
    The problem persist if I restart the services.
    The problem only occurs if I make a change in the Business Model Layer. The changes in the Physical Layer do not generate errors.
    Thank you,
    Sara

    Hi Sara,
    Can you please let us know, if there are any other messages in the NQServer.out.log ? I just googled around with this code to hit at the following link : http://www.bookmark-master.com/socket-error-10055.html
    Socket error (#10055): No buffer space available.
    Analyse & Solutions:
    An operation on a socket or pipe was not performed because the system lacked sufficient buffer space or because a queue was full. This error indicates a shortage of resources on your system. It can occur if you're trying to run too many applications (of any kind) simultaneously on your machine. If this tends to occur after running certain applications for a while, it might be a symptom of an application that doesn't return system resources (like memory) properly. It may also indicate you are not closing the applications properly. If it persists, exit Windows or reboot your machine to remedy the problem.
    From the above information, I understand that this is a system resource issue. Can you please recheck if your system has got enough resources?
    Hope this helps.
    Thank you,
    Dhar

  • HT3275 Since updating OS to Mountain Lion from leopard, I get the following error message when trying to backup with time machine on external drive.  Could not complete backup to media share.  The network backup disk does not support the required AFP feat

    Since updating OS to Mountain Lion from leopard, I get the following error message when trying to backup with time machine on external drive.  "Could not complete backup to media share.  The network backup disk does not support the required AFP features."  What are AFP features and how do I get Time Machine to backup to my current external backup?

    This means that your NAS does not support the required encryption. Update your NAS to the latest firmware or ditch it and buy a Time Capsule (they are the most reliable when using TM).

  • Hp the system recovery media does not support this computer, WIN7 GS72 Notebook

    HProduct: GS-B66US (17" I3 notebook)
    OS:             Win7
    Bios Rev:   F.47
    Error message: "hp the system recovery media does not support this computer.  You are not able to restore this system"
    Changes made to system:  Updated bios (I think).
    Getting error messages (at system boot, as windows start, and from the intel hard drive controller) warning me to backup data and hard drive my fail.
    I replaced the harddrive and inserted the first of my 4 recovery DVDs (created before I updated the bios).  After booting from the first recovery disk I get the following message
    "hp the system recovery media does not support this computer. You are not able to restore this system with the media"
    The computer still boots with the old hard drive (with drive failure imminent messages)  I do see support assistant offering another bios update but I did not install it with the hard drive problem
    PLEASE HELP
    TIA

    Hi,
    I think there could be two possible reason. wrong media or systemboard is changed.
    did you create any recovery media yourself or you ordered the recovery media from hp? also, was there any systemboard replacement done before?
    media created on some other computer (same model) may not work on your computer.
    you can order the media from hp.com here.
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&docname=c00810334
    also once systemboard is replaced you need to get the configuration settings done for BIOS(only HP can do it).
    hope it helps
    Regards,
    WW
    “I am an HP Employee“
    ***** Click the KUDOS star on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem***

Maybe you are looking for

  • How do you get your acct in a new computer if you already reached the 5 computer limit. I don't have 5 computers?!

    How do you get your acct in a new computer if you already reached the 5 computer limit. I don't have 5 computers?

  • Payment Terms at Item Level

    Hi All, 1.After SO Creation, When I change payment terms at Header level, Payment terms at Item level are not changing. 2. We are using same payment terms at both Header and Item Level.(Payment terms are not getting determined from Condition Record.

  • .mp2 video capture

    I'm looking for a plug-in or software/hardware that will let me capture video into premiere CS-5 as a .mp2 or .mpg file on a PC (actually a laptop). I don't want to have to encode, but just have the raw captured file be an .mp2.   Any ideas?

  • Custom Search Portlet: How to specify a page in the auto query?

    I want to specify a page in an auto query (Automatically display search results). I'm able to specify a pagegroup (Tab What to Search), but unable to select a specific page and to include/exclude subpages. This option is available on the SearchForm T

  • Gradient map not selectable

    Hello! I'm using Photoshop CC on Mac and for some reason the gradient map option is not selectable at all. I'm working with PSD images that had been rasterized, duplicated, and merged. I am able to apply some adjustments like Hue/Saturation, Desatura