How can I deploy the EJB to the remote AP Server

Dear All,
Any one know how can I deploy an EJB to the AP server which is not located on the local machine, using Jdev9.0.3.1.
I have try to new a connection with the server name and the testing connection section is successful, however when I deploy the EJB to that connection the error comes out as following:
java.lang.InstantiationException: Illeagal values: min-instances is greater than max-instances
     at com.evermind.server.ejb.deployment.BeanDescriptor.parseOrionAttribute(BeanDescriptor.java:410)
     at com.evermind.server.ejb.deployment.ExposableBeanDescriptor.parseOrionAttribute(ExposableBeanDescriptor.java:352)
     at com.evermind.server.ejb.deployment.SessionBeanDescriptor.parseOrionAttribute(SessionBeanDescriptor.java:260)
     at com.evermind.sFatal Error: Illeagal values: min-instances is greater than max-instances
erver.ejb.deployment.BeanDescriptor.parseOrionXML(BeanDescriptor.java:423)
     at com.evermind.server.ejb.deployment.SessionBeanDescriptor.parseOrionXML(SessionBeanDescriptor.java:265)
     at com.evermind.server.ejb.deployment.EJBPackage.parseOrionBean(EJBPackage.java:804)
     at com.evermind.server.ejb.deployment.EJBPackage.parseOrionEnterpriseBeans(EJBPackage.java:646)
     at com.evermind.server.ejb.deployment.EJBPackage.parseDeploymentMainNode(EJBPackage.java:455)
     at com.evermind.xml.XMLConfig.parseRootNode(XMLConfig.java:268)
     at com.evermind.xml.XMLConfig.init(XMLConfig.java:147)
     at com.evermind.server.ServerComponent.initDeployment(ServerComponent.java:305)
     at com.evermind.server.ServerComponent.copyAndDeploy(ServerComponent.java:374)
     at com.evermind.server.ServerComponent.initDeployment(ServerComponent.java:276)
     at com.evermind.server.ejb.EJBPackageDeployment.getPackage(EJBPackageDeployment.java:607)
     at com.evermind.server.administration.ServerApplicationInstallation.finish(ServerApplicationInstallation.java:464)
     at java.lang.reflect.Method.invoke(Native Method)
     at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:80)
     at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
Thank you very much!!

Your question is a bit unclear.
If you are referring to converting from using JInitiator to JRE, pl see MOS Doc 290807.1 (Deploying Sun JRE (Native Plug-in) for Windows Clients in Oracle E-Business Suite 11i).
If you are referring to upgrading Java versions for use by EBS, pl see MOS Doc 401561.1 (Using J2SE Version 6 with Oracle E-Business Suite 11i).
MOS Doc 300482.1 (Overview of Using Java with Oracle E-Business Suite Release 11i) gives an overview of Java usage with 11i.
HTH
Srini

Similar Messages

  • How can I deploy the WAR application in the Tomcat

    How can I deploy the WAR application in the Tomcat. Do I have to do any manifest file.
    Thanks
    S. Nikov

    First of all, which version of Tomcat are you using?
    Deploying a WAR file in Tomcat is very easy. Just put the WAR file in the %TOMCAT_HOME%\webapps directory and start Tomcat. It will automatically find the WAR.
    Please read the Tomcat documentation: start Tomcat and point your browser to http://localhost:8080
    Jesper

  • How can I deploy the Operation find all

    Hello together,
    I have a big problem. 
    How can I deploy the operation find all so that I can see it in the WSNavigator.
    There I can just see the CRUD operations and if I try to select the operation in the Developer Studio ,when I expose the webservice, the operation is highlighted grey. But if I test the Service I can see the operation and it works.
    ?????? But why can I test the service with the operation find all and why is it not possible to see the operation in the WSNavigator.
    Thank you

    Hi Srinivasan;
    thanks a lot. I could solve the problem with my <Cars>. I just deleted it. Now I have just a warning - message.
    The code looks know like:
    @com.sap.caf.dt.CAFOperation(name="GetAllCars")
         public gennari.mhp.types.Ret_Cars GetAllCars() {
              Ret_Cars ret_cars = new Ret_Cars();
              try {
                   Collection docList = this.getcarsService().findAll();
                   ret_cars.setTest((List) docList);
              } catch (CAFFindException fe) {
              return ret_cars;
    But if I try to run the operation as a webservice in the webservice navigator I have following error message:
    "com.sap.engine.services.webservices.espbase.server.additions.exceptions.ProcessException "
    Is this a problem with my Java AS or is still something in my Application Service responible fort that???
    Thats the XML Content:
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <SOAP-ENV:Body>
        <SOAP-ENV:Fault>
          <faultcode>SOAP-ENV:Server</faultcode>
          <faultstring>com.sap.engine.services.webservices.espbase.server.additions.exceptions.ProcessException</faultstring>
          <detail>
            <yq1:com.sap.engine.services.webservices.espbase.server.additions.exceptions.ProcessException xmlns:yq1="http://sap-j2ee-engine/client-runtime-error">
              <!-- com.sap.engine.services.webservices.espbase.server.additions.exceptions.ProcessException -->
            </yq1:com.sap.engine.services.webservices.espbase.server.additions.exceptions.ProcessException>
          </detail>
        </SOAP-ENV:Fault>
      </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Thank you
    Regards Marco

  • How can I deploy the setting of clear cache on exit for all users?

    How can I deploy the setting of clear cache on exit for all users?

    Note that Firefox disables the disk cache if you use "Clear history when Firefox closes" to clear the cache (see about:cache), so you can either disable the disk cache via its related pref or set the prefs related to clearing this data,but then other items that have a check-mark by default are cleared as well.
    *browser.cache.disk.enable
    *privacy.clearOnShutdown.cache
    *privacy.sanitize.sanitizeOnShutdown
    You can use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.
    Place a local-settings.js file in the defaults\pref folder where also the channel-prefs.js file is located to specify using mozilla.cfg.
    pref("general.config.filename", "mozilla.cfg");
    These functions can be used in the mozilla.cfg file:
    defaultPref(); // set new default value
    pref(); // set pref, but allow changes in current session
    lockPref(); // lock pref, disallow changes
    See also:
    *http://kb.mozillazine.org/Locking_preferences
    *http://mike.kaply.com/2012/03/16/customizing-firefox-autoconfig-files/
    *http://mike.kaply.com/2014/01/08/can-firefox-do-this/

  • How can I use the remote that comes with MacBook?

    I have a MacBook remote (old macbook, not the pro). I no longer have the macbook computer, but I hope I can still use the remote. I do not know how. Please help me.

    Only if it has IR support. Otherwise, it cannot. You would need to connect an IR receiver to the USB port.

  • How can i deploy the struts

    Hi
    i am trying to learn the struts frame work ,please any one help me how to deploy the struts framework in tomacat] or weblogic8.1
    Regards
    ravi

    1)you can download struts 1.2.9 struts-1.2.9-bin.zip
    2)extract the file struts-1.2.9-bin.zip
    3)copy the file struts-examples.war into webapps directory of Tomcat 5(Tomcat will deploy the wep application for you).
    4) you can study inside struts-examples directory
    You can also study struts book or online tutorial.

  • How can I access the oracle/sql server jdbc driver class files from my cust

    I have a war file in which I have custom DataSource i.e mypackage.Datasource class. Its basically the need of my application. In this class we connect to datasource and link some of our programming artifacts .
    I have deployed the oracle jdbc driver and deploy my application as ear with datasources.xml in the meta inf file. Inspite of that my code fails to load the jdbc driver classes.
    Here is the extract of the code :
            Class.forName("oracle.jdbc.OracleDriver").newInstance();
             String url = "jdbc:oracle:thin:@dataserver:1521:orcl";
            Connection conn = DriverManager.getConnection(url, "weblims3", "labware");
            if(conn != null){
              out.println("the connection to the database have been achieved");
            out.println("conn object achived= " + conn);
    Class.forname fails in this case. I can see the ojdbc5.jar the driver jar in usr\sap\CE1\J00\j2ee\cluster\bin\ext\ojdbc5  . I even put the ojdbc.jar in web-inf/lib and application lib but does not help at all. Hope I have explained my problem clearly.
    I deployed the jdbc driver in the name of ojdbc5 .
    I am stuck here. It will be great help if anyone can help me in this. Thanks in advance.

    Bent,
    You can access the database from your Java portlet, just like from any other Java/JSP environment. Yes, you can use JDBC, as well as BC4J.
    The Discussion Forum portlet was built using BC4J, take a look at it's source to see how it was done.
    Also, check out Re: BC4J Java portlet anyone?, it contains a lot of useful information too.
    Peter

  • How can I unlock the remote desktop to shut down my MacBook Air?

    My computer is locked as it says the Remote Desktop is attempting to reconnect and I can't get two other screens to close.
    Ctrl+Alt+ Delete is not working....

    Hi sunburnhaven,
    I understand that you may have applications that are unresponsive. If the applications are still running, they may be preventing your computer from shutting down. Here is some information on how we can quit those applications:
    Mac OS X: How to quit an unresponsive application using Force Quit
    http://support.apple.com/kb/HT3411
    Mac OS X 10.6: If you can’t quit an application
    http://support.apple.com/kb/PH6642
    Thanks,
    Matt M.

  • How can I set the Remote app to work if I have lost my apple remote?

    I lost my remote to my Apple TV and I can't go into town to get another at the moment because there was a lot of snow and ice here. So, I'm wondering how I can set my iPhone 5 up as a remote using the remote app without the normal remote. I know the remote app used to auto-connect to the Apple TV, but since recent updates, you have to set it up as a remote on the actual Apple TV itself. Is there a way to get around this? Thanks in advance!

    Welcome to the Apple Community Dylan.
    There is no way to set up home sharing on the Apple TV without the original remote from Apple, you will need to purchase a new remote from the Apple Store.
    If you already have homesharing set up on the Apple TV, you merely need to set it up in the remote app settings.

  • How can I connect the remote server which is installed with oracle

    Now my computer is in my home,in my computer there is installed with the oracle 9i client,the server is also installed with oracle 9i,which is in my company.Now I want to use sql*plus to connect the database of the server through the internet work.I have created one listener service name in my home computer,but can't test successfully and the sql*plus can't connect the database.Who can tell me how to do it?Thank you!

    Technical questions need to be addressed to one of the technical forums-- Products | Database | Database - General in this case.
    Unless you are VPN-ing in or the DBA's at your company have configured Oracle Connection Manager to allow you to connect through the firewall to the database, however, I doubt this will work. If they have configured Connection Manager, you'll have to ask them to provide you with connection information. 99.9% of the time, you do not want people to access a database via the internet.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • How can I remove the first exchange server 2010 without any problems in DC

    Hi,
    our actually exchange is running on windows server 2008R2 with exchange 2010. I already install & configured a second Exchange 2010 server in the same domain. I also moved every mailbox to the new server. Now I have to deactivate the first server and
    I don't know, if I have to do something or can I deactivate the "old" server without any issues.
    If I can deactivate it, how can I do this? Is it enough to uninstall exchange 2010 on the server and after that I uninstall the windows server? Did I have to change something before?
    Thanks,
    Mesut Uygun
    btw. sorry for my bad english

    Hi MesutU,
    When you remove first Exchange Server 2010 in your organization, please confirm finish following steps:
    1. Move all mailboxes (including discovery and arbitration) to another server
    2. Move all Public Folder replicas
    3. Move OAB generation server
    4. Update SMTP flow from internet
    5. Update OWA/IMAP/POP/OA access from internet.
    6. Update any routing group connectors if 2003 is present
    7. Turn the old server offline for some days to check whether the new server works well.
    More information about How to Remove the First Exchange 2007 Server in a Coexistence Scenario (even if the version of Exchange server is different), for your conference:
    http://technet.microsoft.com/en-us/library/bb310767(v=exchg.80).aspx
    Best Regards,
    Allen Wang

  • Please give step by step details how can I deploy an EJB on weblogic 7

    Hi,
    I was working on Blazix Server for EJB.It is very esay to deploy bean on blazix
    server.Now I have to use weblogic 7. So please explain me step by step of deployment
    of EJB on weblogic. I don't know abcd of Weblogic Server.
    Thanking You,
    waiting for ur postive response,
    Mahendra Mahajan

    Hello Mahendra,
    There is no need to copy and paste all of the WebLogic documentation here. Just
    follow the steps in the documentation and you should be fine. If you run into
    a specific problem, we would be happy to assist you. Begin with the following
    EJB programming guide:
    http://edocs.bea.com/wls/docs81/ejb/index.html
    Best regards,
    Ryan LeCompte
    [email protected]
    http://www.louisiana.edu/~rml7669
    "Mahendra Mahajan" <[email protected]> wrote:
    >
    Hi,
    I was working on Blazix Server for EJB.It is very esay to deploy
    bean on blazix
    server.Now I have to use weblogic 7. So please explain me step by step
    of deployment
    of EJB on weblogic. I don't know abcd of Weblogic Server.
    Thanking You,
    waiting for ur postive response,
    Mahendra Mahajan

  • TS1741 how can I use the remote app for my Apple TV when I am using the Apple TV away from home!?

    I'm traveling and using the Apple TV at the hotel but the remote app is not working cause I can't turn on home sharing from my p&amp;c, cause its not here

    Most hotels tend to require a login to the network via browser, which the ATV doesn't have. You won't be able to access the network for any functions if that's the case.
    You may want to contact someone at the hotel to clarify.

  • How can I fix the remote control order of the chapters?

    I am using the new 6.0 theme of Reflection Black--submenu Chapters. THis gives you two rows of chapters (which shows the looping movies and title of the chapter). I am importing the .mov slideshows in the order I want them accessed with the remote control of the TV (or DVD Player remote), but this is not the case. Instead, when clicking the right arrow on the remote control, the next chapter is not the one laid down in order, but another chapter. (From the first chapter, it skips to the second row, then back to first row, then back to second row.) Basically, the remote does not forward to the next chapter in the order they were imported.
    Can anyone help? I have been told by Applecare that the map icons cannot be reordered. But starting a new iDVD project and importing in order does not work. I tried other themes and the ones with lists work and can even reorganize the order for you if you drag and change the position of the chapter!
    Thanks

    There seems to be some order in some themes, but this particular one has no order. Hoping also to hear of a solution. Applecare said to reinstall iDVD if I can't fix the problem with creating a new project, but I don't think this is the issue, since other themes work.

  • How can I make the 'remote' app work across a routed network?

    So, I have trusted and guest networks, with iTunes running on a Mac on the trusted network. I'd like iOS devices on the guest network to be able to use the 'remote' app, specifically the DJ function.
    I think there will be two components:
    -- service discovery. Apple likes mDNS (Bonjour), so possibly can be done like this: https://discussions.apple.com/thread/2751128?start=0&tstart=0 but one would need to figure out what service discovery records remote is looking for.
    -- traffic. Appropriate traffic would need to be allowed between the two networks.
    Has anyone looked at the wire traffic for remote, or gotten this to work?
    Thanks,
    Heath

    Welcome to the Apple Community Dylan.
    There is no way to set up home sharing on the Apple TV without the original remote from Apple, you will need to purchase a new remote from the Apple Store.
    If you already have homesharing set up on the Apple TV, you merely need to set it up in the remote app settings.

Maybe you are looking for