Accessing process manager via JNDI

We are developing with Appserver 6.5, and also the the
process manager running inside the appserver. Unfortunately our
experience is that 6.5 is not stable enough to develop and deploy
our app. However we do need to use the process manager.
I'm now trying to run our application in Catalina (7.0) and use
a JNDI reference to talk to the process manager beans in
6.5. however the jndi lookup fails.
javax.naming.NamingException: com.netscape.pm.model.IPMClusterManager
I'm pretty sure I need to provide additional parameters in server.xml
for this lookup... but cannot find -any- documentation as to what
parameters are used.
ideas?
thanks
Roy

We are developing with Appserver 6.5, and also the the
process manager running inside the appserver. Unfortunately our
experience is that 6.5 is not stable enough to develop and deploy
our app. However we do need to use the process manager.
I'm now trying to run our application in Catalina (7.0) and use
a JNDI reference to talk to the process manager beans in
6.5. however the jndi lookup fails.
javax.naming.NamingException: com.netscape.pm.model.IPMClusterManager
I'm pretty sure I need to provide additional parameters in server.xml
for this lookup... but cannot find -any- documentation as to what
parameters are used.
ideas?
thanks
Roy

Similar Messages

  • Accessing Enteprise Manager via Cluster Scan VIP

    Hello all...
    We have a few clusters set up, and we've been accessing Enterprise Manager for these via the cluster scan IP address. For some unknown reason we now cannot access two of the three OEM installations via the scan IP, only by the IP address of the first node. Unfortunately I wasn't involved in this stage of the setup and I'm not having a lot of luck finding docs relevant to this.
    The clusters are running 11.2.0.2 Standard with the January 2012 patch set, and the nodes in the clusters with the issue don't have any problem pinging each other or the scan URL for the custer, if that's helpful.
    Can someone point me in the right direction?
    Thanks,
    Dan
    Edited by: ddenton on Apr 20, 2012 11:11 AM
    Edited by: ddenton on Apr 20, 2012 11:18 AM

    Ravi,
    DB Control was set up independently of the database using "emca".
    The scan name in the emoms.properties file does match up with what's listed when running the "srvctl config scan" command.
    When I attempt to connect to the scan address from Node2 using the following command, I get this response:
    [oracle@devdb2 ~]$ sqlplus username/[email protected]:1521/DEVDB
    SQL Plus: Release 11.2.0.2.0 Production on Mon Apr 23 10:41:00 2012
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    ERROR:
    ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptor
    I have no problem tns pinging the scan name or the database name:
    [oracle@devdb2 ~]$ tnsping devdb-scan.rp.db
    TNS Ping Utility for Linux: Version 11.2.0.2.0 - Production on 23-APR-2012 10:42:10
    Copyright (c) 1997, 2010, Oracle. All rights reserved.
    Used parameter files:
    Used HOSTNAME adapter to resolve the alias
    Attempting to contact (DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=))(ADDRESS=(PROTOCOL=TCP)(HOST=10.10.10.130)(PORT=1521)))
    OK (0 msec)
    [oracle@devdb2 ~]$ tnsping DEVDB
    TNS Ping Utility for Linux: Version 11.2.0.2.0 - Production on 23-APR-2012 10:42:34
    Copyright (c) 1997, 2010, Oracle. All rights reserved.
    Used parameter files:
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = devdb1-vip.company.com)(PORT = 1521)) (ADDRESS = (PROTOCOL = TCP)(HOST = devdb2-vip.company.com)(PORT = 1521)) (LOAD_BALANCE = yes) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = DEVDB.company.com)))
    OK (0 msec)
    Connecting using the following command directly to the TNS name for the database works too, so I'm a bit confused as to why specifying the scan name with port doesn't...
    [oracle@devdb2 ~]$ sqlplus username/password@DEVDB
    SQL*Plus: Release 11.2.0.2.0 Production on Mon Apr 23 16:16:40 2012
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Release 11.2.0.2.0 - 64bit Production
    With the Real Application Clusters and Automatic Storage Management options
    SQL>
    ##################################

  • Accessing Tomcat Manager Via URLConnection

    Hi,
    Does anyone know how to access Tomcat Manager using URLConnection? or Can it be done at all?
    I'm using URLConnection, javax.mail.authenticator, and javax.mail.PasswordAuthentication. It seems that I can get to the correct URL, but the servlet can't get pass thru the login dialog box(username ,password)
    for example if you're using Tomcat 5 and type http://localhost/manager/reload?path=/, this will prompt you a login dialog box and if you enter correct username and password with manager role, tomcat will reload the ROOT web application
    I want to get pass that login box, but my servlet doesn't seem to work.
    Here's my code so far:
    package reload;
    import javax.mail.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.net.*;
    public class Reload extends HttpServlet
         public void doGet(HttpServletRequest request, HttpServletResponse response)
                                  throws ServletException, IOException
              URL url = new URL("http://localhost/manager/reload?path=/");
              URLConnection connection = url.openConnection();
               //----------------------------------Output Stream to supply username and password---
            javax.mail.Authenticator auth = new Auth();
              connection.setDoOutput(true);
              PrintWriter out = new PrintWriter(connection.getOutputStream());
              out.println(auth);   //this is supposed to supply the username and password to Tomcat
              out.close();
                //--------------------------------Input Stream to get content result-------------------
              BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
              String inputLine;
              while ((inputLine = in.readLine()) != null)
                   response.setContentType("text/html");
                   PrintWriter out1 = response.getWriter();
                   out1.println(inputLine);
              in.close();
           //-------------------sub class to store username and password-------------------------------
         private class Auth extends javax.mail.Authenticator
             public javax.mail.PasswordAuthentication getPasswordAuthentication()
                 return (new javax.mail.PasswordAuthentication("test","123"));
    }

    The manager application uses basic authentication. Therefore, you need to add a header to the request you make to the manager URL. Below is an example:
    HttpURLConnection httpconn = (HttpURLConnection)connection;
    String auth = strUsername + ":" + strPassword;
    httpconn.setRequestProperty("Authorization", "Basic " + Base64.encode(auth.getBytes()));
    The Base64 class is in the package org.apache.catalina.util, which is located in the file catalina-ant.jar. Here, I used it as a convenience.
    I also recommend re-writing your input/output loop to:
    BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
    String inputLine;          
    PrintWriter out1 = response.getWriter();
    response.setContentType("text/html");               
    while ((inputLine = in.readLine()) != null)     {
         out1.println(inputLine);
    in.close();
    I hope this helps.

  • Accessing JMX via JNDI?

    Hi all,
    I've used JMX just a bit via custom jsps and the HttpAdapter that ships with Coherence. I would like to know how, if at all, to access the MBeans via JNDI. Running in WLS 8.1, I can access the WebLogic MBeans by looking up the MBean server via JNDI or by looking up the WLS-specific MBeanHome via JNDI. Can I do something similar with the Coherence MBeans? In my jsp, I can get the default MBeanServer via the MBeanServerFactory and then look up something like "Coherence:type=Service,*" and go from there. With JNDI, I look up "weblogic.management.server" but can't use it to look up any Coherence MBeans. Is there a different MBean server I should be looking up? Something else completely?
    Also, is there a way to use something more like strong typing? In other words, can I cast an object to something like ServiceMBean and call methods like getRequestTotalCount() on it? I know this works with WLS, but they document the interfaces. I haven't seen anything similar for Coherence.
    thanks
    john

    Hi all,
    I've used JMX just a bit via custom jsps and the HttpAdapter that ships with Coherence. I would like to know how, if at all, to access the MBeans via JNDI. Running in WLS 8.1, I can access the WebLogic MBeans by looking up the MBean server via JNDI or by looking up the WLS-specific MBeanHome via JNDI. Can I do something similar with the Coherence MBeans? In my jsp, I can get the default MBeanServer via the MBeanServerFactory and then look up something like "Coherence:type=Service,*" and go from there. With JNDI, I look up "weblogic.management.server" but can't use it to look up any Coherence MBeans. Is there a different MBean server I should be looking up? Something else completely?
    Also, is there a way to use something more like strong typing? In other words, can I cast an object to something like ServiceMBean and call methods like getRequestTotalCount() on it? I know this works with WLS, but they document the interfaces. I haven't seen anything similar for Coherence.
    thanks
    john

  • Cannot Access Busniess Rules via EAS Admin or HBRLauncher for EPM 11.1

    An error occurred: Login Failed. Please login again.
    Error Message:Error logging in to Business Rules. The repository has not been configured or you are not authorized to use Business Rules.
    Complete Detail: Detail:Error authenticating user in UserServerManager. Detail:Error authenticating user in UserServerManager. Detail:Error authenticating user in UserServerManager. Detail:Exception occurred. Please check your log file for details.
    I can log into Essbase and create applications and etc. It's in Shared Security Mode with Shared Services.
    Dimension Library and Applications Library.
    I cannot access Calc Manager Via EPMA interface either, so this is a 2 question thread but Business rules being more critical.
    Any ideas?

    hi ,
    In shared services you have a separate node for business rule wherein you can assign user or group the access to the business rules for ex one of the role is "Interactive User"(If you assign this access it will let user to validate and launch the rule but they cant change the business rule).
    Once you have assigned the role to user in shared service you would like to update the user list via EAS for business rules.
    Thanks!

  • Datasource via JNDI vs Driver Manager

    I am really desperate to use Datasource for connectivity to Oracle (rather than using the driver manager) in my little J2EE app (no EJB) on IBM WSAD 5.0.
    I have some example using DB2 datasource via JNDI.
    I replaced the properties with my Oracle database parameters.
    as below
    userid=scott
    password=tiger
    url=jdbc:oracle:thin:@localhost:1521:library
    driver=oracle.jdbc.OracleDriver
    lookupName=jdbc/library
    database=library
    There is an object "DB2DataSource" coming from package COM.ibm.db2.jdbc.DB2DataSource in the example code "CreateDatasource.java" I am using to create the data source.
    I have added JNDI.jar(from oracle), Naming.jar(from WSAD home), nasmingClient.jar(from WSAD home) in to the project.
    By looking at Oracle manual we need import com.evermind.sql.DriverManagerDataSource; and
    com.evermind.server to get initialContext.
    But compiler cant find them.
    Can anyone tell me what is the equivalent in Oracle?
    Thanks
    Mei

    Hold on.
    This is what I think. There will be others here who might be able to build to this and provide you the solution.
    All that you need to do is
    1. Add the Oracle driver to the WebSphere classpath.
    2. Use the Admin Console / WSAD screens to create a JDBC Driver for the Oracle Driver.
    3. Create a datasource within this driver. There is step-by-step documentation on how to do this.
    4. Specify a JNDI name for the datasource.
    5. Lookup the DataSource and cast it to a DataSource object.
    6. Call getConnection method to get a connection.
    Your coding portion is only steps 5 and 6 above.
    Steps 1 through 4 needs to happen in the Admin Console / WSAD tool. I have done it in both the places before and it is a fairly straightforward process. You do not need any of the jars that you are mentioning below or need to do anything special.
    Vijay

  • Multiple Top-Level Realms in Access Manager via AMconfig?

    Is it possible to configure multiple top-level realms in Access Manager via AMconfig? It is not possible through the UI.

    Hi!
    How about this:
    String adminDN = (String)AccessController.doPrivileged(new AdminDNAction());
    String adminPwd = (String)AccessController.doPrivileged(new AdminPasswordAction());
    adminToken = adminManager.createSSOToken(new AuthPrincipal(adminDN), adminPwd);
    hth Chris

  • Accessing Solution Manager CHARM Via SAP CRM

    Hi
    Is it possible to accces charm of soultion manager via SAP CRM
    If so how does it work and documentation are welcomed
    Thanks in advance
    R-K

    option 1
      > customise sap crm to cater for the external product in terms of what solution manager charm / service is currently doing for sap componet
        . Create all the status for this products eg: transport is in Dev for product A, Transprot is in QA for product A or product is in Prod then test and close the call
    > access solution manager from crm (NB: work center / service desk can be accessed through crm) the problem is WE NOT SURE OF CHARM
    > also customise crm to cater for IT related issues like broken laptop or netowrk cable not working or  IT related query,
    Option 2
    > intergrate the external product to solution manager o
    > Customise CHARM / service desk to cater for this external product in solution manager the way it does for sap components / ibase

  • Connector access via JNDI?

    I have a project on java.net - https://lucenerar.dev.java.net/ if you're interested - and I have a client class meant to hide all the JNDI and connector plumbing from my application. However, this class needs to look up the connector via JNDI.
    This is all fine and good, but my webapp fails verification in the J2EE 1.4 RI if I have a resource-ref to a Connector factory. According to the developer's guide at http://docs.sun.com/source/819-0079/dgjndi.html I should be able to specify a resource of type javax.resource.cci.ConnectionFactory - which I do! - but this is the only cause of failure I can find.
    Note that I don't have a sun-web.xml yet, so it may be that it's trying to resolve the local name to a global name, and failing at that point. If that's the case, it's an error on my part as deployer, which I'll be glad to address - but I'd really rather know if that's actually the cause of my error, because that SHOULD be something I can configure at deploy-time rather than build time, IMO (as the connection factory's name is configured at deploy-time rather than build-time.)
    Does anyone see anything obvious that I'm doing incorrectly?

    [#|2005-01-20T19:59:00.836-0500|INFO|sun-appserver-pe8.1|javax.enterprise.system.tools.verifier|_ThreadID=24;|INFO: Look in file "/var/tmp//main-site.war20050120075858.txt" for detailed results.|#]
    [#|2005-01-20T19:59:03.214-0500|INFO|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=25;|Total Deployment Time: 30206 msec, Total EJB Compiler Module Time: 0 msec, Portion spent EJB Compiling: 0%|#]
    [#|2005-01-20T19:59:03.257-0500|SEVERE|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=25;|Exception occured in J2EEC Phase
    com.sun.enterprise.deployment.backend.IASDeploymentException: Some verifier tests failed for the given application. Aborting deployment. Please verify your application using the verifier separately for more details
         at com.sun.enterprise.deployment.backend.ModuleDeployer.runVerifier(ModuleDeployer.java:871)
         at com.sun.enterprise.deployment.backend.WebModuleDeployer.preRedeploy(WebModuleDeployer.java:260)
         at com.sun.enterprise.deployment.backend.ModuleDeployer.doRequestFinish(ModuleDeployer.java:160)
         at com.sun.enterprise.deployment.phasing.J2EECPhase.runPhase(J2EECPhase.java:146)
         at com.sun.enterprise.deployment.phasing.DeploymentPhase.executePhase(DeploymentPhase.java:71)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.executePhases(PEDeploymentService.java:633)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:188)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:520)
         at com.sun.enterprise.management.deploy.DeployThread.deploy(DeployThread.java:143)
         at com.sun.enterprise.management.deploy.DeployThread.run(DeployThread.java:171)Looking at the text file yields:
          FAILED TESTS :
          Test Name : tests.web.WebResourceType
          Test Assertion : The resource-type element specifies the Java class type of the data source. Please refer to Java Servlet 2.4 Specification Section #SRV.13.4 for further information.
          Test Description : For [ main-site.war ]
    Error: The resource-type [ javax.resource.cci.ConnectionFactory ] element does not specify a valid Java class type for the data source within Web application [ main-site ].This is the failure that prevents deployment, that I'm trying to resolve. My suspicion is that my connection factory doesn't implement something it's supposed to, but I don't know where to look to find out what it is. SRC.13.4 sheds little light on it.

  • HFM, Process Management, NO ACCESS Issue

    Gurus !,
    Users have a Reviewer 1-3 role with submitter role as well, however, when they try to access a Scenario that has "Process Management" = "Y", they get NOACCESS.
    I think it is beacause of the Process Management setup and the calc status shows as SC, CN or LOCKED (when logged in with Process Super role)
    Process Level shows ... NOT Started ... so the questions becomes ... can a reviewer 1 see data when the process level shows "Not Started" ?
    Thanks in anticipation ... ,
    Edited by: user10940595 on Jun 8, 2010 6:22 AM

    One more question: how exactly is the "No Access" information displayed? That is, what exactly is the error message you get? For example, users in Financial Reports may intermittently get an "access denied" message when trying to run a report there. In that case, the issue has nothing to do with permissions of the users but is instead a DCOM bug in Windows. Having the exact message may help us see if you are experiencing a different problem than data access.
    --Chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Fail to install Process Management ES and access workspace!

    I failed to install Process Management ES and got the message "Error [ALC-LCM-030-200]" when it install the "adobe-workspacepersistence-dsc.jar".
    Then i can access the "http://localhost:8080/workspace" but fail to login and get message "An error occurred during the operation. Please try again or contact your system administrator for assistance. (ALC-WKS-007-000)".
    many thx for yours attention!!!

    Could you share the associated error for the failure to deploy adobe-workspacepersistence-dsc.jar as found in the ConfigurationManager log ([InstallRoot]\configurationmanager\log\**).
    Thanks,
    John

  • EPM Architect - Process Manager service hangs when shut down via script

    Hello all,
    We have a shutdown script which brings down all of our EPM 11.1.1.3 services. It works perfectly for everything except for one service. For some reason the "Hyperion EPM Architect - Process Manager" service gets stuck in a hung state whenever we run our shutdown script. Here is the section of the script which relates to our EPM Architect services.
    echo stopping Hyperion EPMA Services. %date% %time% >> %LOGFILE%
    sc \\ERPHYBTVXX02 stop "HyS9EPMAWebTier"
    choice /n /t 45 /d y > nul
    sc \\ERPHYBTVXX02 stop "HyS9EPMADataSynchronizer"
    choice /n /t 120 /d y > nul
    sc \\ERPHYBTVXX02 stop "HyS9BPMA_NetJNIBridge"
    choice /n /t 120 /d y > nul
    sc \\ERPHYBTVXX02 stop "HyS9BPMA_EngineManager"
    choice /n /t 120 /d y > nul
    sc \\ERPHYBTVXX02 stop "HyS9BPMA_EventManager"
    choice /n /t 120 /d y > nul
    sc \\ERPHYBTVXX02 stop "HyS9BPMA_JobManager"
    choice /n /t 120 /d y > nul
    sc \\ERPHYBTVXX02 stop "HyS9BPMA_ProcessManager"
    choice /n /t 45 /d y > nul
    echo stopped Hyperion EPMA Services. %date% %time% >> %LOGFILE%
    If anyone has run into this or has any ideas, I would appreciate any feedback.
    -Bob

    Thanks for the reply. Checking the Event Viewer on the server I did find an application error log related the the service not stopping properly. I forwarded the error on to our EPM consultant who created the script.

  • Firefox is freezing. When I close Firefox, and try to re-start it, it will not open. I need to access Task Manager, where I find Firefox still running. I close Firefox in Task Manager & can re-start Firefox.

    Firefox is freezing in the middle of a browsing session. When I close Firefox, and try to re-start it, it will not open. I need to access Task Manager, where I find Firefox to still be running. Once I close Firefox in Task Manager, I can re-start Firefox. This can happen several times in the space of a few hours? I'm running Vista Home premium with Firefox 3.6.16, and this problem has only started in the last 4 weeks. Can Anyone Help? Core 2 Duo E7300 with 4GB RAM.

    Sounds like it is hanging when you exit and later try to restart Firefox.
    * How to stop the running Firefox process
    ** In Task Manager, does firefox.exe show in the '''<u>Processes</u>''' tab?
    ** See: http://kb.mozillazine.org/Kill_application
    **Windows 7 users: http://www.techrepublic.com/blog/window-on-windows/reap-the-benefits-of-windows-7s-task-manager/2576
    * What may cause Firefox to hang at exit
    **Windows 7 Task Manager: http://www.techrepublic.com/blog/window-on-windows/reap-the-benefits-of-windows-7s-task-manager/2576
    ** http://support.mozilla.com/en-US/kb/Firefox+hangs
    ** http://kb.mozillazine.org/Firefox_hangs
    ** https://support.mozilla.com/en-US/kb/Firefox+is+already+running+but+is+not+responding
    * You may need to try Firefox Safe Mode
    ** You may need to use '''Safe Mode''' to locate the problem: ***See: http://kb.mozillazine.org/Safe_Mode
    ***Firefox 4 users, hold the Shift key while clicking the Firefox 4 desktop icon to enter Safe Mode.
    ***Firefox Safe Mode is a diagnostic mode that disables Extensions and some other features of Firefox.
    ****In Firefox 4, Safe Mode also disables Plugins and Hardware Acceleration.
    ****If you are using a theme, switch to the DEFAULT theme: Tools > Add-ons > Themes '''<u>before</u>''' starting Safe Mode (In Firefox 4, Tools > Add-ons > Appearance). See: http://support.mozilla.com/en-US/kb/Using%20themes%20with%20Firefox#w_managing-themes-and-personas
    ****When entering Safe Mode, do not check any items on the entry window, just click "Continue in Safe Mode".
    ****Test to see if the problem you are experiencing is corrected.
    *** If the problem does not occur in Safe-mode then disable all of your Extensions and Plug-ins and then try to find which is causing it
    ***#by enabling '''<u>one at a time</u>''' until the problem reappears.
    ***#You can also enable a few at a time (3-5), keeping track of what you just re-enabled to see if the problem re-occurs; this will help narrow down the possibilities if you have a large number of add-ons.
    ***#'''<u>You MUST close and restart Firefox after EACH change</u>''' via File > Restart Firefox (on Mac: Firefox > Quit).
    ***#You can use "Disable all add-ons" on the Safe Mode start window.
    **See the following for more information
    *** http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes
    *** http://support.mozilla.com/en-US/kb/Troubleshooting+plugins
    *** http://support.mozilla.com/en-US/kb/Basic+Troubleshooting
    <br />
    <br />
    '''You need to update the following:'''
    *Adobe Shockwave for Director Netscape plug-in, version 11.0
    *Shockwave Flash 10.2 r152
    #'''''Check your plugin versions''''' on either of the following links':
    #*http://www.mozilla.com/en-US/plugincheck/
    #*https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #*There are plugin specific testing links available from this page:
    #**http://kb.mozillazine.org/Testing_plugins
    #'''Update Shockwave for Director'''
    #*NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    #*Use Firefox to download and SAVE the installer to your hard drive from the link in the article below (Desktop is a good place so you can find it).
    #*When the download is complete, exit Firefox (File > Exit)
    #*locate and double-click in the installer you just downloaded, let the install complete.
    #*Restart Firefox and check your plugins again.
    #*'''<u>Download link and more information</u>''': http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox
    #'''Update the [[Managing the Flash plugin|Flash]] plugin''' to the latest version.
    #*Download and SAVE to your Desktop so you can find the installer later
    #*If you do not have the current version, click on the "Player Download Center" link on the "'''Download and information'''" or "'''Download Manual installers'''" below
    #*After download is complete, exit Firefox
    #*Click on the installer you just downloaded and install
    #**Windows 7 and Vista: may need to right-click the installer and choose "Run as Administrator"
    #*Start Firefox and check your version again or test the installation by going back to the download link below
    #*'''Download and information''': http://www.adobe.com/software/flash/about/
    #**Use Firefox to go to the above site to update the Firefox plugin (will also install plugin for most other browsers; except IE)
    #**Use IE to go to the above site to update the IE ActiveX
    #*'''Download Manual installers'''.
    #**http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller
    #**Note separate links for:
    #***Plugin for Firefox and most other browsers
    #***ActiveX for IE

  • SJSAS 9.1 does not expose EJB 3.0 remote Interface via JNDI

    I have successfully deployed a simple Stateful EJB 3.0 bean (CartBean, like the one in the Java EE 5 tutorial remote interface Cart) on SJSAS 9.1, located on machine host1.
    After I deployed the CartBean, I browsed the SJSAS and noticed the existence of the following JNDI entries:
    ejb/Cart
    ejb/Cart__3_x_Internal_RemoteBusinessHome__
    ejb/Cart#main.Cart
    ejb/mgmt
    ejb/myOtherEJB_2_x_bean ( +myOtherEJB_2_x_bean+ is a different 2.x bean that I have deployed as well)So, I am trying to access the remote interface of the CartBean from a remote machine, host2. The client application is a Java-standalone client.
    I am using the Interoperable Naming Service syntax: corbaname:iiop:host1:3700#<JNDI name>
    The problem is that the remote interface of the bean does NOT seem to be available via JNDI. I get the javax.naming.NameNotFoundException when I try to do a lookup like:
    corbaname:iiop:host1:3700#ejb/Cart
    On the other hand, the following lookups succeed:
    corbaname:iiop:host1:3700#ejb/mgmt
    corbaname:iiop:host1:3700#myOtherEJB_2_x_bean
    and also the following succeeds:
    corbaname:iiop:host1:3700#ejb/Cart__3_x_Internal_RemoteBusinessHome__So it seems like the Remote interface is not available via JNDI, rather only some internal SJSAS implementation (the object returned from the ejb/Cart__3_x_Internal_RemoteBusinessHome__ lookup is of type: com.sun.corba.se.impl.corba.CORBAObjectImpl
    Why is this happening? I know there used to be a bug in Glassfish, but I thought it had been fixed since 2006.
    Many thanks in advance, any help would be greatly appreciated.

    The EJB 3.0 Remote Business references are not directly stored in CosNaming. EJB 3.0 Remote references do not have the cross-vendor interoperability requirements that the EJB 2.x Remote view had.
    You can still access Remote EJB references from a different JVM as long as the client has access to SJSAS naming provider. Please see our EJB FAQ for more details :
    https://glassfish.dev.java.net/javaee5/ejb/EJB_FAQ.html

  • BPEL Process Manager Generated WSDL

    We are working on an ant build framework for a Oracle SOA Suite 10.1.3.3.0 project, consisting of a main BPEL process that is synchronously calling another BPEL process via an ESB. This second process uses the same ESB to call back the original process.
    This of course leads to a circular deployment dependency, where the ESB requires both BPEL WSDLs before it can be deployed, and each BPEL process needs a WSDL for the ESB endpoint to be deployed.
    We are attempting to short circuit this dependency by deploying a web application registry for the WSDLs in question, but this presents us with a further problem. The WSDLs used to communicate with the BPEL processes and ESB are not the project WSDLs, but appear to actually be describing web service wrappers generated on the application server side. In order to use the proposed web registry, we would need to be able to predictably generate these WSDLs (or at least representative versions).
    In our example it looks like a case of generating binding and service elements and merging them with the BPEL project WSDL , but we do not feel that it is safe to assume anything about this behaviour and would prefer some kind of documentation to inform our decision.
    So, a couple of questions:
    1) Can anyone provide documentation and/or description of how the required web service endpoints are generated by the application server/BPEL process manager?
    2) Alternatively, is there a better way of avoiding or dealing with the aforementioned circular dependency?
    Thankyou

    I was wondering too what would be a could solution for the "circular dependency" situation.
    In my current project we will build some mockup-bpels(just for the interface) for the time being.

Maybe you are looking for

  • Vendor as customer and viceversa

    Hello, My scenario is that i have several vendors that are customers at the same time. And viceversa, several customers that are vendors too. I have made the customizing, into the customer I have put the vendor nr and the check 'clearing with vendor'

  • Adding existing subversion project to an Oracle database project

    Is there an easy way to add an existing set of files to a new ODT project? I'd like to be able to get the latest version from SVN and then place my oracle database project in the same directory. I can "add existing item.." just fine but the problem i

  • Address book is a little clunky

    I would prefer to be able to select a single address in Address Book, copy it and paste it into a Word or Pages doc. That seems to be a pretty basic feature that Apple seemed to forget about. I don't necessarily just want to create a vcard but that's

  • There is no album artwork in the Multiple items information box for all albums

    I have iTunes 10.0.5 and all my album artwork is present but when i bring up the Multiple item information box by clicking on an album there is no artwork there? but there is artwork on the actual album. im wondering if this is why when im uploading

  • BP Relationship Data Mass Maintenance

    Hello experts, We are needed to assign sales force to several relevant Business Partner. We think that we can perform it via MASS. However I could not find relevant Table Name for maintaining the BP relationships from the Business Object type BUS1006