While connecting from Client to EJB , LookUp Error is Comming...

Hi All
I am working with Oracle Application Server 10g.
Here I downloaded one helloworld session bean from oracle site.
I am able to deploy .ear file.
But when I am connecting bean using client...
I am getting following error:
D:\helloworld>ant run
Buildfile: build.xml
init:
setup:
cli-classes:
[javac] Compiling 1 source file to D:\helloworld\build\helloworld\helloworld-client
cli-descriptor:
cli-jar:
[jar] Building jar: D:\helloworld\dist\helloworld-client.jar
run:
[java] client started...
[java] java.lang.InstantiationException: Error communicating with server: Lookup error: java.net.ConnectException: Connection refused: connect; nested exception is:
[java] java.net.ConnectException: Connection refused: connect; nested exception is:
[java] javax.naming.NamingException: Lookup error: java.net.ConnectException: Connection refused: connect; nested exception is:
[java] java.net.ConnectException: Connection refused: connect [Root exception is java.net.ConnectException: Connection refused: connect]
[java] at com.evermind.server.ApplicationClientContext.createContext(ApplicationClientContext.java:63)
[java] at com.evermind.server.ApplicationClientInitialContextFactory.getInitialContext(ApplicationClientInitialContextFactory.java:145)
[java] at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:662)
[java] at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:243)
[java] at javax.naming.InitialContext.init(InitialContext.java:219)
[java] at javax.naming.InitialContext.<init>(InitialContext.java:175)
[java] at hello.HelloClient.main(HelloClient.java:25)
[java] NamingException: Error reading application-client descriptor: Error communicating with server: Lookup error: java.net.ConnectException: Connection refused: connect; nested exception is:
[java] java.net.ConnectException: Connection refused: connect; nested exception is:
[java] javax.naming.NamingException: Lookup error: java.net.ConnectException: Connection refused: connect; nested exception is:
[java] java.net.ConnectException: Connection refused: connect [Root exception is java.net.ConnectException: Connection refused: connect]
I used the following JNDI Configurations:
java.naming.factory.initial=com.evermind.server.ApplicationClientInitialContextFactory
java.naming.provider.url=ormi://localhost:23791/helloworld
Pls Post your results....
With Regards
Kumar

Try this:
java.naming.factory.initial=oracle.j2ee.rmi.RMIInitialContextFactory

Similar Messages

  • Restrict number of simultaneous connection from client to EJB bean

    I have EJB bean and JavaSE client. I want to restrict number of simultaneous connection from client to EJB bean. For example to maximum allowed 3. How I can do it?

    :) but answer is too general.
    I want to know how to design such "simple reference counting". As I understand it is not recommended to use static variables in EJB. so how to implement such counting in a right way?
    Edited by: NoName on Aug 20, 2009 1:25 AM
    Edited by: NoName on Aug 20, 2009 1:31 AM

  • HOW TO CONNECT FROM CLIENT MACHINE TO REMOTE MACHINE(SERVER DATABASE MACHINE)

    Hi friends.
    I need your valuable help,
    I am using oracle 11g database.
    I have two system.One is client machine and installed oracle 11G client software.
    and from this machine user can connect remote server database(This is old remote system, this is just for Information).
    And i have created one new database called RMANP in new remote server machine (this is the machine, in which i need to connect from client machine)
    ex
    CLIENT MACHINE DETAIL IS:
    system66
    ip address is 192.162.21.66
    REMOTE SEVER MACHINE DETAILS IS:
    system56
    ip address is 192.162.21.56.
    and i add entry on client machine tnsname.ora file like following,
    RMANP=
    (DESCRIPTION=
       (ADDRESS=
         (PROTOCOL=TCP)
         (HOST=192.168.21.56)
         (PORT=1521)
       (CONNECT_DATA=
         (SERVICE_NAME=rmanp)
    But when i try to connect to remote server from client machine in sqlplus, i am getting an error, Like following,
    SQL> CONN SYS/SYSPW AS SYSDBA;
    ERROR:
    ORA-12560: TNS:protocol adapter error

    2684285 wrote:
    Hi friends.
    I need your valuable help,
    I am using oracle 11g database.
    I have two system.One is client machine and installed oracle 11G client software.
    and from this machine user can connect remote server database(This is old remote system, this is just for Information).
    And i have created one new database called RMANP in new remote server machine (this is the machine, in which i need to connect from client machine)
    ex
    CLIENT MACHINE DETAIL IS:
    system66
    ip address is 192.162.21.66
    REMOTE SEVER MACHINE DETAILS IS:
    system56
    ip address is 192.162.21.56.
    and i add entry on client machine tnsname.ora file like following,
    RMANP=
    (DESCRIPTION=
       (ADDRESS=
         (PROTOCOL=TCP)
         (HOST=192.168.21.56)
         (PORT=1521)
       (CONNECT_DATA=
         (SERVICE_NAME=rmanp)
    But when i try to connect to remote server from client machine in sqlplus, i am getting an error, Like following,
    SQL> CONN SYS/SYSPW AS SYSDBA;
    ERROR:
    ORA-12560: TNS:protocol adapter error
    There is nothing in your connect string to tell sqlplus which database you want to connect to.  Therefore it assumes (by default) that you want to connect to a *local* database whose name is identified by the value of the environment variable ORACLE_SID.  And there is no such database, so he gets the reported error trying to establish a connection to a non-existent local service.
    You need to specify your target database, thusly:
    SQL>  conn sys/syspw@rmanp as sysdba
    BTW, connecting to a remote database as sysdba is considered by most DBAs to be a big secruity breach.  If you really need sysdba privileges (rare) you should be logged on to the database server machine with proper OS credentials, and work from there.
    Also, TYPING IN ALL CAPS IS PERCEIVED AS SHOUTING.

  • Issue while connecting from Biztalk adapter to SAP ECC 6.0

    Hi Friends
    Issue while connecting from Visulal Studio 2005 to SAP ECC 6.0 throgh Biztalk adapter2.0, even if we pass the correct login details, system is throwing an error like incorrect user/password.
    Can you please tell anybody the solution for this.
    Regards
    Praveen

    HI,
    is there a special "formation" to put in the user / pass ?
    maybe a missing domain ? or missing values like "/" or "\" ?
    Do you getting this error in the Biztalk Monitor (Visual 2005) ?

  • Accepting connection from client

    Hello,
    I want to create java server which accepts connection from client once and then continuously waits for request sent by client. Something same as select() call in C
    Something of kind
    Server.java:
    Socket socket = server.accept();
    while(true)
    // listen for request ,
    // if request received , create new thread for processing
    // return response
    I don't want to accept connection again and again
    Edited by: tryit on Aug 29, 2008 11:41 PM

    Thanks for the reply.
    But even in this library, an new thread is created which keeps on doing accept() in while(true) and after accepting connection , another thread is created to do the processing.
    But i want that once the connection is established between server and client i.e once accept() is done then just using that socket rest of processing i.e read()/write() is done , no need for accept() in while(true)
    I have something like this
    SenderReciever.java
    public class SenderAndReciever
        private ServerSocket server;
        private int port = 6000;
        public SenderAndReciever()
            try
                server = new ServerSocket(port);
         catch (IOException e)
                e.printStackTrace();
        public void handleConnection()
            try
         Socket socket = server.accept();
             /* PROBLEM AREA */
             /* This while loop results in infinite loop .
              * if i move Socket socket = server.accept() inside while then it  accepts one connection
              * returns a response but then waits for another connection to be accepted
              * But i want connection once accepted , use the same socket for rest all communications
         while (true)
              new ConnectionHandler(socket);
         catch (IOException e)
              e.printStackTrace();
        public static void main(String[] args)
            SenderAndReciever senderAndReciever = new SenderAndReciever();
            senderAndReciever.handleConnection();
    }ConnectionHandler.java:
    class ConnectionHandler implements Runnable
          private Socket socket;
          public ConnectionHandler(Socket socket)
             this.socket = socket;
            Thread t = new Thread(this);
            t.start();
          public void run()
             try
                readData();
                processData();
                sendData();
             catch (Exception e)
                e.printStackTrace();
    }

  • After updating waterfox 12.0 to 15.0, but while launching from task bar its giving error not compatable version 15.0 min/max version 12.0

    after updating waterfox 12.0 to 15.0, and i opend the app and pin it to the task bar (windows 7 64bit enterprise edition) but while launching from task bar its giving error not compatable version 15.0 min version 12.0 ,max version 12.0

    Such an error is caused by some files that weren't updated successfully, so you are left with a mixture of files from different Firefox versions.<br />
    There is usually some security software involved that protects .ini files against modification (update).
    You will still have to do a clean reinstall and delete the Firefox program folder before reinstalling a new copy of Firefox.
    *C:\Program Files (x86)\Mozilla Firefox\

  • ORA-03113 while connect from 8i client to 7 Server

    Hi,
    I have a Oracle 7.3.3 Server running on a SCO OpenSever 5.0.5 and a Oracle 8i Client 8.1.6.0.0 on a RedHat Linux 6.2.
    When I try to connect from the client to the server by issue command "sqlplus user@test", it responses me "Error while trying to retrieve text for error ORA-03113". But when I run "netasst" to test the connection, it says the connection was sucessful.
    Can anyone help? Here are my configuration files:
    Listener.ora on Server side:
    LISTENER=
    (ADDRESS LIST=
    (ADDRESS =
    (COMMUNITY=TCP.world)
    (PROTOCOL=TCP)
    (Host=10.128.64.52)
    (Port=1526)
    STARTUP_WAIT_TIME_LISTENER = 0
    CONNECT_TIMEOUT_LISTENER = 10
    TRACE_LEVEL_LISTENER = OFF
    SID_LIST_LISTENER =
    (SID_LIST=
    (SID_DESC =
    (SID_NAME = test)
    (ORACLE_HOME = /usr/app/oracle/product/7.3.3
    (PRESPAWN_MAX=10)
    tnsnames.ora on client side:
    TEST.888.COM
    (DESCRIPTION =
    (ADDRESS_LISTS =
    (ADDRESS =
    (PROTOCOL = TCP)
    (HOST = 10.128.64.52)
    (PORT = 1526)
    (CONNECT_DATA =
    (SID = test)
    )

    Hi,
    I don't have a 64 bit instance, but maybe another test will be usefull, try to get a connection with sqlplus on the server but via sqlnet like "user/passwd@tnsentry" I think if that also is not possible it is not the 64 bit issue but more that the listener itself coundn't etsablish a db connection, be aware tnsping is only testing if the listener is running and do not check if the listener is able to connect to the db.
    Hope this helps a little to find your real proble ;-), Olaf

  • SMP 3.0 with SP3 AgentryApp is not Connecting from Client : Communications error (14)

    Hello,
    In SMP 3.0 : Version 3.0.2, SP Level:02, my Agentry App : Work Manger 6.0 is working fine, it is running from device and running properly. After i migrate my SMP3.0 from SP02 To SP03, it is not connection from Any Device,(it is not showing any Error in Log file, Means App deployed successfully.) whenever we try to connect from Any device it is showing following Error Message.
    Requesting Public Key from Server
    Communications error (14)
    Connection failed
    Ending transmission
    ??? :  Is there any other confugration need to do in SMP 3.0 : SP03???? please help on this Issue...
    Thanks
    Krishna

    Hello Steve,
    i go through the SAP Note 2008882. based on that Note i run the following
    command.
    C:\windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -pa
    "C:\SAP\MobilePlatform3\Server\configuration\com.sap.mobile.platform.serv
    er.agentry" smpServiceUser.
    Now that Error is Gone from Log file but still it is not allowing to
    connect. Even from ATE also.
    Event Log File :
    06/19/2014 17:54:00, 0,         0,         0, Thr       3192, New files opened events.log, messages.log
    06/19/2014 17:54:00, 0,         0,         2, Thr       3192, Loading the Agentry Runtime's public/private key for password exchanges.
    06/19/2014 17:54:01, 0,         0,         2, Thr       3192, Upgraded the Agentry key pair from pre-SP03 format
    06/19/2014 17:54:01, 0,         0,         2, Thr       3192, Key pair loaded successfully.
    06/19/2014 17:54:01, 0,         0,         2, Thr       3192, Agentry Startup
    06/19/2014 17:54:01, 0,        17,        14, Thr       3192, WebSockets Front End v7.0.3.205
    06/19/2014 17:54:01, 0,         1,         4, Thr       3192, Agentry Server Agent v7.0.3.205
    06/19/2014 17:54:01, 0,        20,       150, Thr       1656, Loading Development application definitions
    06/19/2014 17:54:07, 0,        24,         4, Thr       1656, Loaded HTTPXML-HTTPXMLSystemConnection (HTTPXML v7.0.3.205) from ag3httpxmlbe.dll
    06/19/2014 17:54:07, 1,         3,         9, Thr       1656, Java-1, Chickaming Java, initialHeapSize, File: , ..\agentry\SystemLogger.cpp#792:DTLoggerHandler::badKey
    06/19/2014 17:54:07, 1,         3,         9, Thr       1656, Java-1, Chickaming Java, maxHeapSize, File: , ..\agentry\SystemLogger.cpp#792:DTLoggerHandler::badKey
    06/19/2014 17:54:07, 1,         3,         9, Thr       1656, Java-1, Chickaming Java, reduceOSSignalUse, File: , ..\agentry\SystemLogger.cpp#792:DTLoggerHandler::badKey
    06/19/2014 17:54:07, 1,         3,         9, Thr       1656, Java-1, Chickaming Java, nonStandardJavaOptions, File: , ..\agentry\SystemLogger.cpp#792:DTLoggerHandler::badKey
    06/19/2014 17:54:20, 0,        23,         4, Thr       1656, Loaded Java Back End (Java v7.0.3.205) from ag3javabe.dll
    06/19/2014 17:54:20, 0,        20,       152, Thr       1656, Loading Development application definitions for default localization
    06/19/2014 17:54:20, 0,        20,       153, Thr       1656, Finished loading Development application definitions for default localization
    06/19/2014 17:54:20, 0,        20,       151, Thr       1656, Finished loading Development application definitions
    06/19/2014 17:54:21, 0,        20,         4, Thr       3192, Server v7.0.3.205
    06/19/2014 17:54:21, 0,        17,        10, Thr       3192, WebSockets Front End v7.0.3.205
    06/19/2014 17:54:21, 0,         0,         0, Thr       3192, Old log files moved into C:\SAP\MobilePlatform3\Server\log\agentry\rolled\2014-06-19-175400
    06/19/2014 17:54:21, 0,         0,        23, Thr       3192, Agentry startup is complete.
    Thanks
    Krishna

  • How can I configure Lion server to accept inbound VPN (L2TP) connections while connected as client to another vpn service?

    I have what I believe to be a unique need;
    I have a MacPro (1,1) running Lion with Server app.
    I require that this particular machine be connected as a client to a VPN server, while at the same time acting as a VPN server for my network.
    The PPTP connection configuration is such that "Send all traffic over VPN connection" is checked.
    If PPTP client is NOT connected, I can connect to Lion as VPN server. As soon as I make the connection from Lion as a client, I can no longer
    connect to Lion VPN server.
    I understand this is because I am forcing all traffic out the virtual interface (tun0) and eth0 is no longer listening on the local network.
    1. Is it possible to bind the VPN client (on Lion Server) to a particular interface? If I could tell the PPTP client to only use eth1 as the interface of choice, my assumption would be that eth0 would then be free to accept incoming connections.
    2. Is it possible to bind the VPN service  (on Lion Server) to a particular interface? if I could tell the vpn serviec to only listen on eth1, and in turn tell the PPTP client to NOT communicate on eth1 but only eth0 then perhaps I could separate the communications?
    In my head, it seems as though both of the above options would be required in order to use Lion as both a VPN server and VPN client
    Any and all help appreciated.

    This is a standard facet of most VPNs - the problem lies in your NAT router since both clients appear to come from the same IP address as far as the VPN server is concerned, and the router can't separate out the traffic.
    There are a couple of solutions.
    First, the built-in VPN server supports L2TP and PPTP protocols. You should be able to connect one system under each protocol, so that gets your two machines connected.
    Second, you can replace your NAT router with one that supports multiple VPN clients (often termed 'VPN passthrough').
    Third, setup a site-to-site tunnel so that your entire LAN is connected to the VPN (this saves you from having to run a separate VPN client on each machine, but is typically only worth it when you have more machines).

  • Remote tuxedo domain rejects connection from client only Tuxedo JCA Adapter

    I am trying to use a client only configured Oracle Tuxedo JCA Adapter 11.1.1.2.1 to connect to a remote tuxedo 10.3 domain. The connector is deployed to a JDeveloper 10.1.3.4 embedded OC4J container. The connector is failing silently when attempting to establish a connection with the remote domain. Locally, the JCA Adapter ntrace logs the following:
    1/20/11:9:41:49 PM:10:TRACE[DMLocalAccessPoint,DMLocalAccessPoint]> (ypjspNQ5QIPKmOyk1DlAgw==)
    1/20/11:9:41:49 PM:10:DBG[DMLocalAccessPoint,DMLocalAccessPoint]_useSSL = false
    1/20/11:9:41:49 PM:10:TRACE[DMLocalAccessPoint,DMLocalAccessPoint]< return(10)
    1/20/11:9:41:49 PM:10:INFO[TuxedoAdapterSupervisor,createLocalAccessPoint]TJA_0233:Info: Default local access point for factory null created, access point id ypjspNQ5QIPKmOyk1DlAgw==.
    1/20/11:9:41:49 PM:10:DBG[TuxedoAdapterSupervisor,createLocalAccessPoint]features = 159
    1/20/11:9:41:49 PM:10:TRACE[TuxedoAdapterSupervisor,startListeners]> ()
    1/20/11:9:41:49 PM:10:TRACE[TuxedoAdapterSupervisor,startListeners]< (20) return
    1/20/11:9:41:49 PM:10:TRACE[DMSession,DMSession]> (__sess_0_0)
    1/20/11:9:41:49 PM:10:DBG[DMSession,myInit]_lap_name:ypjspNQ5QIPKmOyk1DlAgw==
    1/20/11:9:41:49 PM:10:DBG[DMSession,myInit]_rap_name:e1tst_tdtux02
    1/20/11:9:41:49 PM:10:DBG[DMSession,myInit]_pro_name:__default_session_profile__
    1/20/11:9:41:49 PM:10:DBG[DMSession,DMSession]got _lap: com.oracle.tuxedo.adapter.config.DMLocalAccessPoint@1f6bc1a
    1/20/11:9:41:49 PM:10:DBG[DMSession,DMSession]got _rap: com.oracle.tuxedo.adapter.config.DMRemoteAccessPoint@1b75e54
    1/20/11:9:41:49 PM:10:DBG[DMSession,DMSession]got _pro: com.oracle.tuxedo.adapter.config.DMSessionProfile@191f64b
    1/20/11:9:41:49 PM:10:DBG[DMSession,DMSession]sec = NONE
    1/20/11:9:41:49 PM:10:TRACE[DMSession,DMSession]< return(60)
    1/20/11:9:41:49 PM:10:INFO[TuxedoAdapterSupervisor,createDefaultSession]TJA_0193:INFO: Default session created between LocalAccessPoint ypjspNQ5QIPKmOyk1DlAgw== and RemoteAccessPoint e1tst_tdtux02.
    1/20/11:9:41:49 PM:10:TRACE[DMSession,DMSession]> (__sess_0_1)
    1/20/11:9:41:49 PM:10:DBG[DMSession,myInit]_lap_name:ypjspNQ5QIPKmOyk1DlAgw==
    1/20/11:9:41:49 PM:10:DBG[DMSession,myInit]_rap_name:e1tst_tdtux01
    1/20/11:9:41:49 PM:10:DBG[DMSession,myInit]_pro_name:__default_session_profile__
    1/20/11:9:41:49 PM:10:DBG[DMSession,DMSession]got _lap: com.oracle.tuxedo.adapter.config.DMLocalAccessPoint@1f6bc1a
    1/20/11:9:41:49 PM:10:DBG[DMSession,DMSession]got _rap: com.oracle.tuxedo.adapter.config.DMRemoteAccessPoint@1c0f654
    1/20/11:9:41:49 PM:10:DBG[DMSession,DMSession]got _pro: com.oracle.tuxedo.adapter.config.DMSessionProfile@191f64b
    1/20/11:9:41:49 PM:10:DBG[DMSession,DMSession]sec = NONE
    1/20/11:9:41:49 PM:10:TRACE[DMSession,DMSession]< return(60)
    1/20/11:9:41:49 PM:10:INFO[TuxedoAdapterSupervisor,createDefaultSession]TJA_0193:INFO: Default session created between LocalAccessPoint ypjspNQ5QIPKmOyk1DlAgw== and RemoteAccessPoint e1tst_tdtux01.
    1/20/11:9:41:49 PM:10:TRACE[TuxedoAdapterSupervisor,registerClientSideResourceAdapter]create default import
    1/20/11:9:41:49 PM:10:TRACE[ServiceManager,registerImportedService]> (*)
    1/20/11:9:41:49 PM:10:INFO[,]factory = null
    1/20/11:9:41:49 PM:10:INFO[,]name = *
    1/20/11:9:41:49 PM:10:INFO[,]iname = *
    1/20/11:9:41:49 PM:10:TRACE[ServiceManager,registerImportedService]register Default Import
    1/20/11:9:41:49 PM:10:TRACE[Route,Route]> (*)
    I can't determine if there are any problems from these log entries, but the remote tuxedo domain logs the following in the ULOG:
    155138.tdtux01!GWTDOMAIN.3495.4.0: LIBGWT_CAT:1073: ERROR: Unable to obtain remote domain id (ypjspNQ5QIPKmOyk1DlAgw==) information from shared memory
    155138.tdtux01!GWTDOMAIN.3495.4.0: LIBGWT_CAT:1509: ERROR: Error occurred during security negotiation - closing connection
    My understanding is that the client only configuration should connect to a remote tuxedo domain as an anonymous client instead of a peer tuxedo domain, but the remote tuxedo gateway domain listener is acting like the client has to be configured in its dmconfig file before it will allow the connection request. Is there a different kind of listener the client only configuration should connect to instead of the tuxedo gateway domain listener? How can a remote tuxedo domain accept a connection from an anonymous client if the client must first be specified in the remote domain's dmconfig file? Is this a tuxedo 11g only feature? I'm trying to connect to a tuxedo 10.3 server.
    The local ra.xml is reproduced here:
    <?xml version="1.0" encoding="UTF-8"?>
    <connector xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/connector_1_5.xsd"
    version="1.5">
    <display-name>Tuxedo JCA Adapter</display-name>
    <vendor-name>Oracle</vendor-name>
    <eis-type>Tuxedo</eis-type>
    <resourceadapter-version>11gR1(11.1.1.2.1)</resourceadapter-version>
    <license>
    <description>Tuxedo SALT license</description>
    <license-required>false</license-required>
    </license>
    <resourceadapter>
    <resourceadapter-class>com.oracle.tuxedo.adapter.TuxedoClientSideResourceAdapter</resourceadapter-class>
    <config-property>
    <config-property-name>debugConfig</config-property-name>
    <config-property-type>java.lang.String</config-property-type>
    <config-property-value>true</config-property-value>
    </config-property>
    <config-property>
    <config-property-name>traceLevel</config-property-name>
    <config-property-type>java.lang.String</config-property-type>
    <config-property-value>100000</config-property-value>
    </config-property>
    <config-property>
    <config-property-name>xaAffinity</config-property-name>
    <config-property-type>java.lang.String</config-property-type>
    <config-property-value>true</config-property-value>
    </config-property>
    <config-property>
    <config-property-name>remoteAccessPointSpec</config-property-name>
    <config-property-type>java.lang.String</config-property-type>
    <config-property-value>//tdtux01:9601/domainId=e1tst_tdtux01,//tdtux02:9601/domainId=e1tst_tdtux02</config-property-value>
    </config-property>
    <outbound-resourceadapter>
    <connection-definition>
    <managedconnectionfactory-class>com.oracle.tuxedo.adapter.spi.TuxedoManagedConnectionFactory</managedconnectionfactory-class>
    <connectionfactory-interface>javax.resource.cci.ConnectionFactory</connectionfactory-interface>
    <connectionfactory-impl-class>com.oracle.tuxedo.adapter.cci.TuxedoConnectionFactory</connectionfactory-impl-class>
    <connection-interface>javax.resource.cci.Connection</connection-interface>
    <connection-impl-class>com.oracle.tuxedo.adapter.cci.TuxedoJCAConnection</connection-impl-class>
    </connection-definition>
    <transaction-support>NoTransaction</transaction-support>
    <authentication-mechanism>
    <authentication-mechanism-type>BasicPassword</authentication-mechanism-type>
    <credential-interface>javax.resource.spi.security.PasswordCredential</credential-interface>
    </authentication-mechanism>
    <reauthentication-support>false</reauthentication-support>
    </outbound-resourceadapter>
    </resourceadapter>
    </connector>
    Thanks for any help.
    Steve

    Looks like this is an RTFM question. From:
    [http://download.oracle.com/docs/cd/E18050_01/jca/docs11gr1/users/jca_usersguide.html]
    Is the following:
    Dynamic RemoteAccessPoint (RAP) Insertion
    In order to make default LocalAccessPoint to work, Oracle Tuxedo GWTDOMAIN gateway configuration is required in order to make this simplified /Domain configuration to work.
    GWTDOMAIN gateway must be modified to allow Dynamic RemoteAccessPoint (RAP) Registration. If DYNAMIC_RAP is set to YES, it will also update the in-memory database of the status of the connection from those dynamically registered RAP. If the connection from those dynamically registered RAP lost then the information about that RAP will be removed from the SHM database.
    GWADM must be modified to process the DM MIB correctly to reflect the connection status of those dynamically registered RAP. When the connection from those dynamically registered RAP lost their entries in the SHM database will also be removed so that the DM MIB query can return the connection status correctly.
    The dynamically registered RAP will be added to /DOMAIN configuration permanently. Their existence will only be known when the Session is established. Their existence will be lost when the connection is lost.
    The DM_CONNECTION Oracle Tuxedo /Domain DMIB call returns all the connected dynamically registered RemoteAccessPoint. All other dynamically registered RemoteAccessPoint that are not connected will not be shown.
    The OPENCONNECTION DMIB request will not be supported to connect to those dynamically registered RAP.
    The CLOSECONNECTION Oracle Tuxedo /DMIB request closes the connection and remove the session from those dynamically registered RemoteAccessPoint, and returns its connection status as 'UNKNOWN.
    The PERSISTENT_DISCONNECT type of CONNECTION_POLICY will be honored that means when PERSISTENT_DISCONNECT is in effect all connections request from any RAP, whether they are dynamically or non-dynamically registered, will be rejected.
    I must have overlooked this section when reading it. Looks like I've got more configuration to do.
    Thanks,
    Steve

  • Problems connecting from Client to Database

    I've run into a strange situation,
    We are running Oracle 8.1.7 installed on Sco?!? In the past everyone has just opened a netterm connection from windows 2000 to the box that the database exists on and run SQL Plus from within that window. They do not use any of the client side Oracle tools.
    I just started working here and was trying to explain the benefits of some of the existing Oracle tools that are out there. I installed Discoverer along with some other tools and was having troubles connecting. I uninstalled everything and started with just SQL Plus. The following is my tnsnames entry for the database:
    oradev =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = TCP)
    (Host = ORADEV)
    (Port = 1521)
    (CONNECT_DATA = (SID = DVCX)
    and the error that I get when I try to connect is:
    ORA-12514: Message 12514 not found; product=RDBMS80; facility=ORA
    The strange thing is that I installed JDeveloper and told it to start a SQL Plus session and it works fine. It is pointing at the exact same executable that I tried running from the start menu. C:\ORACLE\806\BIN\PLUS80W.EXE
    I tried running this executable frmo the Dos prompt using this:
    C:\ORACLE\806\BIN\PLUS80W.EXE user/passwd@oradev:1521:DVCX
    and I get this error message:
    ORA-06401: NETCMN: invalid driver designator
    Does anyone have any ideas? It would be really nice to be able to show these guys why they spent so much money to buy Oracle. Right now they're only using it to store data.
    Any responses would be appreciated. If I don't know the answer to your questino I can ask around and find it.
    Thanks,
    Chris S.

    Before I do that,
    Since it's not really my database to hack around with, why would the everything work through JDeveloper or through a netterm session to the Sco box? I'm not familiar with stopping and starting the listener so I will have to figure out how to do that as well.
    Thanks again for your input. I appologize if these are newby questions but this has always been set up for me in the past. I'm on new ground here.
    Thanks,
    Chris S. I haven't worked with Java so I can't explain the JDeveloper connection. I assume netterm is a terminal emulater, thus running a 'local' session on the host and doesn't need the listener to be running.
    Before you change anything, on the SCO box run the following command:
    prompt> lsnrctl status
    if it is not running or configured properly, you should see this kind of output (my output is from an NT box, but it should be close):
    LSNRCTL for 32-bit Windows: Version 9.0.1.1.1 - Production on 04-OCT-2002 13:59:44
    Copyright (c) 1991, 2001, Oracle Corporation. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC0)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 2: No such file or directory
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=astra)(PORT=1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 61: Unknown error
    if it is running, it should show you which ports it is listening on. All things considered, you should take these steps first, because some O/Ss like to play games with the location of the config files (esp. Sun).

  • Problem to connect from client to server RMISSLSecuritySocket

    Hi,
    I�m try to connect to my RMISSLSecuritySocket out of my LAN and the debug tell me:
    keyStore is :
    keyStore type is : jks
    keyStore provider is :
    init keystore
    init keymanager of type SunX509
    trustStore is: seguridad\clientstore
    trustStore type is : jks
    trustStore provider is :
    init truststore
    adding as trusted cert:
    Subject: CN=Romenawerson, OU=Romenawerson Software, O=Masser, L=SC, ST=SC, C=ES
    Issuer: CN=Romenawerson, OU=Romenawerson Software, O=Masser, L=SC, ST=SC, C=ES
    Algorithm: RSA; Serial number: 0x443264ec
    Valid from Tue Apr 04 13:22:04 BST 2006 until Mon Jul 03 13:22:04 BST 2006
    trigger seeding of SecureRandom
    done seeding SecureRandom
    %% No cached client session
    *** ClientHello, TLSv1
    RandomCookie: GMT: 1166208304 bytes = { 177, 248, 233, 26, 255, 131, 30, 219, 187, 7, 161, 130, 36, 97, 87, 143, 144, 27, 106, 206, 189, 167, 26, 137, 97, 16, 104, 162 }
    Session ID: {}
    Cipher Suites: [SSL_RSA_WITH_RC4_128_MD5, SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA, SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA, SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA, SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA]
    Compression Methods: { 0 }
    AWT-EventQueue-0, WRITE: TLSv1 Handshake, length = 73
    AWT-EventQueue-0, WRITE: SSLv2 client hello message, length = 98
    AWT-EventQueue-0, READ: TLSv1 Handshake, length = 945
    *** ServerHello, TLSv1
    RandomCookie: GMT: 1166208307 bytes = { 184, 222, 131, 149, 231, 192, 11, 143, 18, 21, 255, 30, 23, 69, 88, 116, 202, 214, 156, 247, 108, 121, 158, 141, 11, 182, 75, 196 }
    Session ID: {70, 131, 237, 51, 103, 184, 128, 17, 11, 250, 79, 30, 226, 89, 202, 255, 40, 244, 207, 103, 23, 232, 181, 12, 213, 90, 153, 213, 5, 179, 105, 119}
    Cipher Suite: SSL_RSA_WITH_RC4_128_MD5
    Compression Method: 0
    %% Created: [Session-1, SSL_RSA_WITH_RC4_128_MD5]
    ** SSL_RSA_WITH_RC4_128_MD5
    *** Certificate chain
    chain [0] = [
    Version: V1
    Subject: CN=Romenawerson, OU=Romenawerson Software, O=Masser, L=SC, ST=SC, C=ES
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: Sun RSA public key, 2048 bits
    modulus: 26218049066688812844166292053322592777371129439466024553015697381624406300839227173808057660437842049778162997716778672465698869907347066124616563594240125762524939915402315386003803148278000690289855047564064085048848218487772248550902777635260652977838418228357272143568678808697631825834935842172373214502488401919079625206784817447169856160975190854447483259794542577274185756524489133463104507701871398035038051874790106390687139882093092278152813019096166210094417604042911501907793329618438553321927409287787349853730049580333692091467723730149335152659294835570337214736792744190512402485625826849470971056221
    public exponent: 65537
    Validity: [From: Tue Apr 04 13:22:04 BST 2006,
                   To: Mon Jul 03 13:22:04 BST 2006]
    Issuer: CN=Romenawerson, OU=Romenawerson Software, O=Masser, L=SC, ST=SC, C=ES
    SerialNumber: [    443264ec]
    Algorithm: [MD5withRSA]
    Signature:
    0000: 99 79 9F 84 5E A9 54 D5 19 D9 B9 2E EC F0 8F 98 .y..^.T.........
    0010: B2 35 DD 26 34 84 37 3C 47 50 2E 2A 05 5C 21 C3 .5.&4.7<GP.*.\!.
    0020: D6 98 24 CB 04 9E CF DC 1E 35 5C 4A 0A 29 EA 4E ..$......5\J.).N
    0030: 21 84 26 9A 6E 47 A2 17 77 A1 60 2A A6 F3 E9 92 !.&.nG..w.`*....
    0040: DD 76 77 D5 20 ED 94 9F AA FD 56 4F 6F 77 75 E3 .vw. .....VOowu.
    0050: EE E4 3B 4F 80 10 1A 68 E3 20 7A D8 27 19 31 54 ..;O...h. z.'.1T
    0060: 9C 90 8C D8 49 EA 48 73 FD F6 C6 6F 71 56 89 2E ....I.Hs...oqV..
    0070: 3D 4F 29 0D ED 50 8E BA FA A6 2B 54 D9 91 1D 98 =O)..P....+T....
    0080: E9 1A E7 17 DB DC 6B 84 D9 A4 32 6B BD 65 F1 F1 ......k...2k.e..
    0090: 24 10 69 B7 43 C7 76 B5 E3 29 4C 41 12 62 E2 DF $.i.C.v..)LA.b..
    00A0: 95 6F 6A FA 52 B8 FB C5 DB 1C B8 54 F3 20 0E B4 .oj.R......T. ..
    00B0: BE B6 B6 36 09 F3 CF 3A 1E E8 68 1D 34 D9 EF 43 ...6...:..h.4..C
    00C0: 3F FC 11 D2 B8 45 A7 1C 72 81 DD 3A 82 FC F7 DC ?....E..r..:....
    00D0: C8 98 69 86 83 09 96 BF D9 1D 94 36 2E 50 7F 48 ..i........6.P.H
    00E0: 05 B2 3B A6 F1 75 34 06 38 14 BE BD 60 3B F7 17 ..;..u4.8...`;..
    00F0: 03 92 B4 38 99 47 5F 96 DC F1 33 22 C5 BE FB 91 ...8.G_...3"....
    Found trusted certificate:
    Version: V1
    Subject: CN=Romenawerson, OU=Romenawerson Software, O=Masser, L=SC, ST=SC, C=ES
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: Sun RSA public key, 2048 bits
    modulus: 26218049066688812844166292053322592777371129439466024553015697381624406300839227173808057660437842049778162997716778672465698869907347066124616563594240125762524939915402315386003803148278000690289855047564064085048848218487772248550902777635260652977838418228357272143568678808697631825834935842172373214502488401919079625206784817447169856160975190854447483259794542577274185756524489133463104507701871398035038051874790106390687139882093092278152813019096166210094417604042911501907793329618438553321927409287787349853730049580333692091467723730149335152659294835570337214736792744190512402485625826849470971056221
    public exponent: 65537
    Validity: [From: Tue Apr 04 13:22:04 BST 2006,
                   To: Mon Jul 03 13:22:04 BST 2006]
    Issuer: CN=Romenawerson, OU=Romenawerson Software, O=Masser, L=SC, ST=SC, C=ES
    SerialNumber: [    443264ec]
    Algorithm: [MD5withRSA]
    Signature:
    0000: 99 79 9F 84 5E A9 54 D5 19 D9 B9 2E EC F0 8F 98 .y..^.T.........
    0010: B2 35 DD 26 34 84 37 3C 47 50 2E 2A 05 5C 21 C3 .5.&4.7<GP.*.\!.
    0020: D6 98 24 CB 04 9E CF DC 1E 35 5C 4A 0A 29 EA 4E ..$......5\J.).N
    0030: 21 84 26 9A 6E 47 A2 17 77 A1 60 2A A6 F3 E9 92 !.&.nG..w.`*....
    0040: DD 76 77 D5 20 ED 94 9F AA FD 56 4F 6F 77 75 E3 .vw. .....VOowu.
    0050: EE E4 3B 4F 80 10 1A 68 E3 20 7A D8 27 19 31 54 ..;O...h. z.'.1T
    0060: 9C 90 8C D8 49 EA 48 73 FD F6 C6 6F 71 56 89 2E ....I.Hs...oqV..
    0070: 3D 4F 29 0D ED 50 8E BA FA A6 2B 54 D9 91 1D 98 =O)..P....+T....
    0080: E9 1A E7 17 DB DC 6B 84 D9 A4 32 6B BD 65 F1 F1 ......k...2k.e..
    0090: 24 10 69 B7 43 C7 76 B5 E3 29 4C 41 12 62 E2 DF $.i.C.v..)LA.b..
    00A0: 95 6F 6A FA 52 B8 FB C5 DB 1C B8 54 F3 20 0E B4 .oj.R......T. ..
    00B0: BE B6 B6 36 09 F3 CF 3A 1E E8 68 1D 34 D9 EF 43 ...6...:..h.4..C
    00C0: 3F FC 11 D2 B8 45 A7 1C 72 81 DD 3A 82 FC F7 DC ?....E..r..:....
    00D0: C8 98 69 86 83 09 96 BF D9 1D 94 36 2E 50 7F 48 ..i........6.P.H
    00E0: 05 B2 3B A6 F1 75 34 06 38 14 BE BD 60 3B F7 17 ..;..u4.8...`;..
    00F0: 03 92 B4 38 99 47 5F 96 DC F1 33 22 C5 BE FB 91 ...8.G_...3"....
    *** ServerHelloDone
    *** ClientKeyExchange, RSA PreMasterSecret, TLSv1
    AWT-EventQueue-0, WRITE: TLSv1 Handshake, length = 262
    SESSION KEYGEN:
    PreMaster Secret:
    0000: 03 01 E3 5F 8B 56 4D 06 C4 F6 12 CD 93 81 AF 2C ..._.VM........,
    0010: 62 26 48 E1 F7 98 41 3E 97 99 40 AD 80 2A 2D C6 b&H...A>..@..*-.
    0020: F7 13 6D 2A 15 EF 4C F9 E3 B4 90 9E 6E 07 51 C5 ..m*..L.....n.Q.
    CONNECTION KEYGEN:
    Client Nonce:
    0000: 46 83 ED 30 B1 F8 E9 1A FF 83 1E DB BB 07 A1 82 F..0............
    0010: 24 61 57 8F 90 1B 6A CE BD A7 1A 89 61 10 68 A2 $aW...j.....a.h.
    Server Nonce:
    0000: 46 83 ED 33 B8 DE 83 95 E7 C0 0B 8F 12 15 FF 1E F..3............
    0010: 17 45 58 74 CA D6 9C F7 6C 79 9E 8D 0B B6 4B C4 .EXt....ly....K.
    Master Secret:
    0000: 91 F9 46 EC DC 49 20 6E 1B 36 43 FD 25 49 FD 03 ..F..I n.6C.%I..
    0010: AC 97 EF 22 8F 8C 16 F3 82 4C 38 BD C1 E6 D5 38 ...".....L8....8
    0020: 11 20 1C D1 41 50 C6 96 96 92 39 0B D8 2C 00 DF . ..AP....9..,..
    Client MAC write Secret:
    0000: 5E 90 BF 8E 39 D1 B8 4C 43 65 32 D4 6E 92 F0 C0 ^...9..LCe2.n...
    Server MAC write Secret:
    0000: 41 EF 1A 63 21 69 D7 C6 82 FA E0 EA CC F2 7F C6 A..c!i..........
    Client write key:
    0000: 16 A2 E1 AD 6C BA 83 E7 DD 22 59 44 21 48 A2 12 ....l...."YD!H..
    Server write key:
    0000: 7B FC 54 77 6F 67 92 99 88 71 6C 34 ED 48 C2 1C ..Twog...ql4.H..
    ... no IV used for this cipher
    AWT-EventQueue-0, WRITE: TLSv1 Change Cipher Spec, length = 1
    *** Finished
    verify_data: { 185, 57, 235, 98, 149, 175, 131, 220, 206, 66, 222, 206 }
    AWT-EventQueue-0, WRITE: TLSv1 Handshake, length = 32
    AWT-EventQueue-0, READ: TLSv1 Change Cipher Spec, length = 1
    AWT-EventQueue-0, READ: TLSv1 Handshake, length = 32
    *** Finished
    verify_data: { 170, 212, 47, 137, 112, 161, 231, 13, 84, 116, 170, 163 }
    %% Cached client session: [Session-1, SSL_RSA_WITH_RC4_128_MD5]
    AWT-EventQueue-0, WRITE: TLSv1 Application Data, length = 23
    AWT-EventQueue-0, setSoTimeout(900000) called
    AWT-EventQueue-0, READ: TLSv1 Application Data, length = 35
    AWT-EventQueue-0, setSoTimeout(0) called
    AWT-EventQueue-0, WRITE: TLSv1 Application Data, length = 35
    AWT-EventQueue-0, WRITE: TLSv1 Application Data, length = 72
    AWT-EventQueue-0, READ: TLSv1 Application Data, length = 322
    28-jun-2007 18:17:57 sun.rmi.transport.WeakRef pin
    M�S FINA: AWT-EventQueue-0: strongRef = sun.rmi.transport.DGCImpl@1551f60
    28-jun-2007 18:17:57 sun.rmi.transport.ObjectTable putTarget
    M�S FINA: AWT-EventQueue-0: add object [0:0:0, 2]
    28-jun-2007 18:17:57 sun.rmi.transport.ConnectionInputStream done
    M�S FINA: AWT-EventQueue-0: send ack
    AWT-EventQueue-0, WRITE: TLSv1 Application Data, length = 17
    AWT-EventQueue-0, READ: TLSv1 Application Data, length = 17
    AWT-EventQueue-0, WRITE: TLSv1 Application Data, length = 31
    The Exception is: Connection refuse to host: 192.168.1.21; java.net.ConnectException: Connection timed out: connect
    I think that the Hadshaked it�s ok, but I don�t know why I can�t connect satisfactorily. In my LAN the aplication is working perfectily. Please help me!!!!!!!! Sorry but my english is not very well.

    Hi,
    After installation of XI , We have to do some post installation activities to configure the XI as an Integration server...
    If you have not done the post installation activities ..try to execute the Template Installer..
    It will do all the post installation activities ...here is the path.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/4b/c25a42793d1653e10000000a155106/frameset.htm
    If this is helpfull for you ....reward points...
    regds,
    vasanth.

  • Oracle 8 not connecting from client machines

    hello
    i am using oracle 8 on windows environment. the problem is that oracle is connecting on the server machine but not on client machine for some days. sometimes i do connects but sometimes the application helds for long time and no response is obtained. Application is residing on the server and drive has been mapped on the client machines. What can be the possible cause. ping on the network is ok.
    Waiting...
    iftikhar ahmad
    Lahore

    oracle 8Wauv a historic database from 1997 - http://tonguc.wordpress.com/2006/12/27/history-of-oracle/
    do you really have to stay at that version first of all, 11gR1 is out and 9iR2 is de-supported recently and I couldnt find this release's documentation also.
    What about tnsping and sqlplus connection from your clients and listener status on your server - lsnrctl status
    You may need to set, take and analyze sql*net traces - http://download.oracle.com/docs/cd/B19306_01/java.102/b14355/apxtblsh.htm#i1004660
    Best regards.

  • BOE 4.0 Report Application Server Connectivity from client machine

    Hi,
    We have installed BO 4.0 for RAS. We configured the RAS to pick up the rpt files from local repository, that is from the machine which the Bo is installed.
    But when we try to access the RAS from client machine to process report it is not accepting the request,
    1. Do I need to grant access to any specific user group?
    2. What is the user id which the Report Application Service runs in the machine?
    3. Do I need to add / manage any guest acoount to request from client machine?
    4. How to accept other user request to process reports?
    Here is the error details,
    Message Number: -2147217397
    Message Description: The user account has been disabled. (FWB 00012)
    Please advise,
    Thanks,
    FebiginR
    Edited by: FebiginR on Jan 17, 2012 8:17 PM

    Thanks for your support.
    I searched in otn and i got the information
    http://www.oracle.com/technology/sample_code/products/forms/extracted/getclientinfo/readme.html?_template=/ocom/print
    1)But in Deployment section of this document the first point is copy entire sab and its subdirectories ........ot <oracle_home>\orant\forms60\java directory.
    I can't understand what is "sab" where should i look for it.
    2) Place the signed JavaBean JAR file (getclientinfo.jar.sig) in the codebase directory being used to deploy Oracle Forms Server 6i applications.
    Can you kindly explain this.
    3) where should we write <ARCHIVE = "f60all.jar, getclientinfo.jar.sig">
    Can you kindly explain this.
    Thanking you in anticipation.
    Regards,
    Devendra

  • Form Opening is Very slow while opening from client PC

    We are running forms application in 10.1.2.0 application server. We have a peculiar issue of slowness while opening forms from client PC's and not while opening from application server itself.
    1) When opening the form from a Windows 7 PC it takes around 25 seconds
    2) When opening the form from a Windows XP PC it takes around 15 seconds
    3) When opening the form from the application server itself it took less than 3 seconds .
    In essence all forms when opened from application server are opening very fast and when opened from client PC's it takes undue time. What might be the reason for the same, can anyone help us and we are pondering over this issue for some time. What are the files of interest to be visited for these kind of issues. We enabled tracing level 5 in JRE and could not find any thing fishy over it.
    Request application server and forms experts to participate and help us to resolve.
    Thanks in advance.
    Edited by: ramarun on Sep 9, 2010 8:27 PM

    Hi ramarun,
    In etc/host file, enter hostname and IP Address entry in client machine...
    or try to access application via IP Address.
    I hope it will work for you...
    Regards,
    Ajinkya

Maybe you are looking for