IFS-10620 when trying to connect to ifs (server side)

hi!
I have deployed the ifs-classes and -properties to the database (8.1.7).
To call the Java-API I used following Class (out of the Oracle documentation)
// Copyright (c) 2001 Oracle Corporation
import oracle.ifs.beans.LibraryService;
import oracle.ifs.beans.LibrarySession;
import oracle.ifs.common.CleartextCredential;
import oracle.ifs.common.ConnectOptions;
import oracle.ifs.common.IfsException;
import oracle.ifs.common.ParameterTable;
public class HelloIFSWorld implements Runnable
ParameterTable params=null;
String username=null;
String password=null;
String servicename=null;
String schemapassword=null;
public HelloIFSWorld(String[] args)
params=new ParameterTable(args);
username=params.getString("user","system");
password=params.getString("password","manager");
servicename=params.getString("service","IfsDefault");
schemapassword=params.getString("schemapassword","bravo");
System.out.println("Running with arguments:");
System.out.println("username="+username);
System.out.println("password="+password);
System.out.println("servicename="+servicename);
System.out.println("schemapassword="+schemapassword);
System.out.println("---------Results----------");
public static void main (String[] args)
new Thread(new HelloIFSWorld(args)).start();
public void run()
try
System.out.println("Obtaining LibraryService.");
LibraryService lsrvc=new LibraryService();
System.out.println("LibraryService obtained for Oracle iFS version:"+lsrvc.getVersionString());
System.out.println("Obtaining LibrarySession.");
CleartextCredential cr=new CleartextCredential(username,password);
System.out.println("Obtaining ConnectOptions.");
ConnectOptions cop=new ConnectOptions();
System.out.println("setting servicename.");
cop.setServiceName(servicename);
System.out.println("setting schemapassword.");
cop.setServicePassword(schemapassword);
System.out.println("connecting.");
LibrarySession session=lsrvc.connect(cr, cop);
System.out.println("LibrarySession obtained for user:"+session.getUser().getName());
catch(IfsException e )
e.printStackTrace();
When I try to connect to the IFS this message comes up (call_HelloIFSWorld is a PLSQL-Wrapper-Function ...):
SQL> exec call_HelloIFSWorld;
Running with arguments:
username=system
password=manager
servicename=IfsDefault
schemapassword=bravo
---------Results----------
Obtaining LibraryService.
LibraryService obtained for Oracle iFS version: 1.1.5.0.0
Obtaining LibrarySession.
Obtaining ConnectOptions.
setting servicename.
setting schemapassword.
connecting.
oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
at java.sql.DriverManager.getConnection(DriverManager.java:477)
at java.sql.DriverManager.getConnection(DriverManager.java:137)
at oracle.ifs.server.LibraryConnection.<init>(LibraryConnection.java:235)
at oracle.ifs.server.ConnectionPool.createLibraryConnection(ConnectionPool.java:576)
at oracle.ifs.server.ConnectionPool.<init>(ConnectionPool.java:321)
at oracle.ifs.server.S_LibraryService.<init>(S_LibraryService.java:912)
at oracle.ifs.server.S_LibraryService.startService(S_LibraryService.java:1129)
at oracle.ifs.beans.LibraryService.connectLocal(LibraryService.java:408)
at oracle.ifs.beans.LibraryService.connect(LibraryService.java:280)
at ifs_test.HelloIFSWorld.run(HelloIFSWorld.java:66)
PL/SQL procedure successfully completed.
SQL>
In the IfsDefault.properties I used
DatabaseUrl=jdbc:default:connection:
as connection descriptor
Now, what could be wrong?
Roland

I don't think 'malware' is your issue. And probably not accurate to begin with.
PowerBook G4 would be running Tiger 10.4. I assume.
Your router/modem etc might be what you see.
When you log into your network equipment, harden it and make sure to change the defalt password, use something stronger (create and store in Keychain or another password manager).
AS much as I favor security I don't know of any WORM or router exploit, but there are always people that will look to do remote login.
If you ever use(s) a bittorrent client your IP got listed on P2P servers and you will see denial of service on your router/firewall.
NAS hard drives, printers, anything that can be shared?
And Apple has more than a few Networking Support articles.
Make sure your modem etc have the latest firmware, too.

Similar Messages

  • Null connection when trying to connect to SQL Server 2000 in Tomcat4.1.29

    Hi All,
    I am still struggling with null connection when trying to connect to sql server 2000 with tomcat using sun.jdbc.odbc.JdbcOdbcDriver
    Here is my server.xml
    <Server port="8005" shutdown="SHUTDOWN" debug="0">
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener"
    debug="0"/>
    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"
    debug="0"/>
    <GlobalNamingResources>
    <Resource name="UserDatabase" auth="Container"
    type="org.apache.catalina.UserDatabase"
    description="User database that can be updated and saved">
    </Resource>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <Resource auth="Container" description="Users and Groups
    Database" name="UserDatabase"
    scope="Shareable"
    type="org.apache.catalina.UserDatabase"/>
    <Resource name="jdbc/DefaultDS" scope="Shareable"
    type="javax.sql.DataSource"/>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.
    MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <ResourceParams name="jdbc/DefaultDS">
    <parameter>
    <name>validationQuery</name>
    <value></value>
    </parameter>
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <parameter>
    <name>maxActive</name>
    <value>4</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>jdbc:odbc:JBoss-SQL://localhost:1433;databaseName=Development;selectMethod=cursor;</value>
    </parameter>
    <parameter>
    <name>driverClassName</name>
    <value>sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    <parameter>
    <name>maxIdle</name>
    <value>2</value>
    </parameter>
    </ResourceParams>
    </GlobalNamingResources>
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Tomcat-Standalone">
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8080" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="100" debug="0" connectionTimeout="20000"
    useURIValidationHack="false" disableUploadTimeout="true" />
    <!-- Note : To disable connection timeouts, set connectionTimeout value
    to -1 -->
    <!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
    <!--
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8443" minProcessors="5" maxProcessors="75"
    enableLookups="true"
    acceptCount="100" debug="0" scheme="https" secure="true"
    useURIValidationHack="false" disableUploadTimeout="true">
    <Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
    clientAuth="false" protocol="TLS" />
    </Connector>
    -->
    <!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8009" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" connectionTimeout="0"
    useURIValidationHack="false"
    protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
    <!-- Define an AJP 1.3 Connector on port 8009 --><Logger className="org.apache.catalina.logger.FileLogger"
    prefix="catalina_log." suffix=".txt"
    timestamp="true"/>
    <!-- Define the default virtual host -->
    <Host name="localhost" debug="0" appBase="webapps"
    unpackWARs="true" autoDeploy="true">
    <Logger className="org.apache.catalina.logger.FileLogger"
    directory="logs" prefix="localhost_log." suffix=".txt"
    timestamp="true"/>
    <Environment name="maxExemptions" type="java.lang.Integer"
    value="15"/>
    <Parameter name="context.param.name" value="context.param.value"
    override="false"/>
    <Resource name="jdbc/DefaultDS" auth="container" type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/DefaultDS">
    <!-- Maximum number of dB connections in pool.
    Set to 0 for no limit.
    -->
    <parameter>
    <name>maxActive</name>
    <value>8</value>
    </parameter>
    <!-- Maximum number of idle dB connections to retain in pool.
    Set to 0 for no limit.
    -->
    <parameter>
    <name>maxIdle</name>
    <value>4</value>
    </parameter>
    <!-- Maximum time to wait for a dB connection to become available
    in ms, in this example 10 seconds. An Exception is thrown if
    this timeout is exceeded. Set to -1 to wait indefinitely.
    -->
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <!-- MS Sql Server dB username and password for dB connections
    -->
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>sa</value>
    </parameter>
    <!-- Class name for MS Sql Server JDBC driver
    -->
    <parameter>
    <name>driverClassName</name>
    <value>sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    <!-- The JDBC connection url for connecting to MS Sql Server dB.
    -->
    <parameter>
    <name>url</name>
    <value>jdbc:odbc:JBoss-SQL://localhost:1433;databaseName=Development;selectMethod=cursor;</value>
    </parameter>
    <!-- This Databae Connection Pool Description.
    -->
    <parameter>
    <name>description</name>
    <value>JDBC Driver: sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    </ResourceParams>
    <Resource name="mail/Session" auth="Container"
    type="javax.mail.Session"/>
    <ResourceParams name="mail/Session">
    <parameter>
    <name>mail.smtp.host</name>
    <value>localhost</value>
    </parameter>
    </ResourceParams>
    <ResourceLink name="linkToGlobalResource"
    global="simpleValue"
    type="java.lang.Integer"/>
    </Host>
    </Engine>
    </Service>
    </Server>
    and my web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <!-- Standard Action Servlet Mapping -->
    <web-app>
    <resource-ref>
    <res-ref-name>jdbc/DefaultDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>
    and JBoss-SQL is data source I created from control panel settings and here is way I am retrieving connetion
    InitialContext initCtx = new InitialContext();
    DataSource ds = (DataSource) initCtx.lookup("java:comp/env/jdbc/DefaultDS");
    Connection con = ds.getConnection();
    return con;
    I tried connecting as mentioned in this website
    http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples-howto.html#Common%20Problems.But didn't help
    Please help urgent
    Sorry for long file. Can any one please help me in solving this problem.
    Thanks in advnace
    Kurakula

    I'd recommend that you not use the JDBC-ODBC bridge driver to connect to SQL Server. M$ and jTDS are two free type IV JDBC drivers that you should use instead. Put those JARs in the WEB-INF/lib directory.
    The database URL you're using is not correct if you change drivers. Consult the docs to find out what the proper syntax is.
    MOD

  • RMI Error when trying to connect to remote server

    We are getting an RMI error (below) when trying to connect to a remote weblogic 9 server with mission control.
    We are running a portal application on the app server. If we connect using mission control before the app starts then mission control connects successfully.
    If we wait until the portal application is running then we get the following error when we try to connect:
    Could not open Management Console for UAT Live (1).
    java.rmi.UnmarshalException: error unmarshalling return; nested exception is:
         java.lang.ClassNotFoundException: com.vignette.monitor.framework.VgnMBeanInfo (no security manager: RMI class loader disabled)
    java.rmi.UnmarshalException: error unmarshalling return; nested exception is:
         java.lang.ClassNotFoundException: com.vignette.monitor.framework.VgnMBeanInfo (no security manager: RMI class loader disabled)
         at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:162)
         at com.sun.jmx.remote.internal.PRef.invoke(Unknown Source)
         at javax.management.remote.rmi.RMIConnectionImpl_Stub.getMBeanInfo(Unknown Source)
         at javax.management.remote.rmi.RMIConnector$RemoteMBeanServerConnection.getMBeanInfo(RMIConnector.java:1031)
         at com.jrockit.console.rjmx.RJMXConnection.getMBeanInfos(RJMXConnection.java:262)
         at com.jrockit.console.rjmx.RJMXConnection.getMBeanInfos(RJMXConnection.java:297)
         at com.jrockit.console.rjmx.RJMXConnectorModel.initializeAttributeInfos(RJMXConnectorModel.java:294)
         at com.jrockit.console.rjmx.RJMXConnectorModel.<init>(RJMXConnectorModel.java:99)
         at com.jrockit.console.rjmx.RJMXConnectorModel.<init>(RJMXConnectorModel.java:113)
         at com.jrockit.mc.console.ui.actions.StartConsole$1.preConnect(StartConsole.java:36)
         at com.jrockit.mc.browser.utils.PreConnectJob.run(PreConnectJob.java:73)
         at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    Caused by: java.lang.ClassNotFoundException: com.vignette.monitor.framework.VgnMBeanInfo (no security manager: RMI class loader disabled)
         at sun.rmi.server.LoaderHandler.loadClass(LoaderHandler.java:371)
         at sun.rmi.server.LoaderHandler.loadClass(LoaderHandler.java:165)
         at java.rmi.server.RMIClassLoader$2.loadClass(RMIClassLoader.java:620)
         at java.rmi.server.RMIClassLoader.loadClass(RMIClassLoader.java:247)
         at sun.rmi.server.MarshalInputStream.resolveClass(MarshalInputStream.java:197)
         at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1544)
         at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1466)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1699)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1305)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:348)
         at sun.rmi.server.UnicastRef.unmarshalValue(UnicastRef.java:290)
         at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:139)
         ... 11 more
    thanks

    As poorem suggested, I would check that the time is the same on both the identity and vcac appliances.  It has been a while since I posted this question but I believe that did get me past that specfic error.  I changed the timezone on each and made sure the times were correct and the same.

  • Console Error When Trying to Connect to Task Server

    I'm trying to set up an Apple Remote Desktop task server on our Xserve G5. I've successfully installed Apple Remote Desktop 3, but I'm having some weird problems with it.
    One thing that should be noted is that we don't have a monitor for our Xserve. Everything is done via Apple Remote Desktop. So I have to install Remote Desktop on the Xserve via Remote Desktop. (I don't know if this makes a difference, but I do know that Remote Desktop doesn't allow you to control a computer that is currently running Remote Desktop, so maybe this is part of the problem.)
    After installing Remote Desktop on the Xserve, I launched it, and when trying to control the application, it's very unresponsive. Clicking and holding on the icon in the Dock almost always says "Application not responding", and I can barely click on anything at all. I created an AppleScript that turned on the Remote Desktop task server, hoping that I wouldn't need to touch the Remote Desktop app on the Xserve anymore.
    The problem now, though, is that when I try to connect to the task server from another administration computer (by going to Remote Desktop preferences, "Task Server" tab, choosing "Use remote Task Server", entering the IP address of the Xserver, and then clicking select), it immediately reverts back to using the task server on the local computer.
    This also shows up in the console when trying to connect to the remote task server:
    MacBook-001959 /Applications/Remote Desktop.app/Contents/MacOS/Remote Desktop: setCollectionAtComputer: Got unexpected error (-6410) setting Admin entry in DOC.
    Has anyone had this problem before?

    Well, in fairness to Apple, the ARD license does say that each copy can only be installed on a single system. But I do agree that it would be nice if a more explicit "this serial number is in use on another system" message appeared (since it may not be known in some organizations that someone installed ARD elsewhere). You can suggest that to Apple through the feedback page.

  • Error -14910 when trying to connect to network server

    A user has a brand new (2 weeks old) Mac Pro 3.00GHZ quad running 8GB RAM that has started acting very strangelly this morning. I will break it down as it happened...
    - When logging on, it brought up the connect to server dialogue BEFORE the log on screen. It would not allow us to cancel the screen for ages, but eventually the third restart cleared that.
    - As soon as we logged on, it connected automatically to the server (without prompting for any password). From within apps, it was as if the server was not there, but a second connect would make the folders available. When trying to disconnect the first instance of the server, it prompted for an admin password and then said it was unable to disconnect.
    - Ran a permission repair, which cleared that issue but presented me with a far worse issue...The user can no longer connect to the server with his username; Error -14910
    - I then tried a whole bunch of other usernames to connect to the server but all failed. EVENTUALLY I was able to connect using the server's admin account, but obviously this is not ideal for my user.
    Other info: OS 10.4.7 on Mac Pro and Server
    Server is an XServe
    I can supply any more information needed, This is urgent, so any help at all gratefully recieved

    Time error. Sorted

  • Internal Error When Trying To Connect To Enterprise Server

    We are making a rather bold move upgrading from CD8.5 to CR2008.  We have an enterprise server in place that can be accessed in 8.5.  When I attempt to log in to the server using 2008, I get a weird error saying that an internal error has occurred for an unknown exception. 
    I guess the place to start is to figure out what that error message really means so we can try and fix it.
    Any tips or suggestions?

    Hello,
    There have been changes in the way CR connects to Enterprise. You did not say what version of Enterprise you are using but it should also match the version of CR.
    CR 8.5 is very old and since version 9.0 most reports designed and published to current versions of Enterprise will work. You'll run into issues though because CR XI R2 and above have cascading parameters which older versions do not know anything about. Designing reports in CR 2008 and publishing them to older version of CRS may not work 100%.
    Depending on the version of Enterprise you should have a valid support contract and therefore can create a case on line and work with an engineer to explain in details. If your version of Enterprise is that old you'll need to upgrade it also to BOE XI R3.1
    If you are trying to connect to Enterprise 8.5 or older it's not going to work from CR 2008. They need to match versions.
    Thank you
    Don

  • Exception when trying to Connect to JMS Server Remotely

    Hi,
    I get the following error when i am trying to connect to a JMS server over the network. Please help.
    Aug 7, 2009 12:58:10 PM com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl <init>
    WARNING: "IOP00410201: (COMM_FAILURE) Connection failure: socketType: IIOP_CLEAR_TEXT; hostname: localhost; port: 3700"
    org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 201 completed: No
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(ORBUtilSystemException.java:2690)
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(ORBUtilSystemException.java:2711)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.<init>(SocketOrChannelConnectionImpl.java:261)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.<init>(SocketOrChannelConnectionImpl.java:274)
    at com.sun.corba.ee.impl.transport.SocketOrChannelContactInfoImpl.createConnection(SocketOrChannelContactInfoImp
    l.java:130)
    at com.sun.corba.ee.impl.protocol.CorbaClientRequestDispatcherImpl.beginRequest(CorbaClientRequestDispatcherImpl
    .java:192)
    at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.request(CorbaClientDelegateImpl.java:181)
    at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.is_a(CorbaClientDelegateImpl.java:325)
    at org.omg.CORBA.portable.ObjectImpl._is_a(ObjectImpl.java:112)
    at org.omg.CosNaming.NamingContextHelper.narrow(NamingContextHelper.java:69)
    at com.sun.enterprise.naming.SerialContext.narrowProvider(SerialContext.java:127)
    at com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.java:182)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:339)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at com.splwg.mpl.server.jms.JNDIJMSConnectionFactoryFactory.getConnectionFactory(JNDIJMSConnectionFactoryFactory
    .java:56)
    at com.splwg.mpl.server.jms.JMSUtilImpl.getConnectionFactory(JMSUtilImpl.java:75)
    at com.splwg.mpl.jms.queue.JMSSender.init(JMSSender.java:80)
    at com.splwg.mpl.sending.NewSenderManager.init(NewSenderManager.java:108)
    at com.splwg.mpl.sending.SameThreadSendingManager.initSenderManager(SameThreadSendingManager.java:353)
    at com.splwg.mpl.sending.SameThreadSendingManager.init(SameThreadSendingManager.java:154)
    at com.splwg.mpl.server.async.AsyncServer.init(AsyncServer.java:193)
    at com.splwg.mpl.server.MPLServer.init(MPLServer.java:386)
    at com.splwg.mpl.server.MPLServer.run(MPLServer.java:547)
    at com.splwg.mpl.server.MPLServer.runMPL(MPLServer.java:535)
    at com.splwg.mpl.server.MPLServer.main(MPLServer.java:524)
    Caused by: java.lang.RuntimeException: java.net.ConnectException: Connection refused: connect
    at com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSocketFactory.java:347)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.<init>(SocketOrChannelConnectionImpl.java:244)
    ... 22 more
    Caused by: java.net.ConnectException: Connection refused: connect
    at sun.nio.ch.Net.connect(Native Method)
    at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:464)
    at com.sun.corba.ee.impl.orbutil.ORBUtility.openSocketChannel(ORBUtility.java:105)
    at com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSocketFactory.java:332)
    ... 23 more
    Aug 7, 2009 12:58:16 PM com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl <init>
    WARNING: "IOP00410201: (COMM_FAILURE) Connection failure: socketType: IIOP_CLEAR_TEXT; hostname: localhost; port: 3700"
    org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 201 completed: No
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(ORBUtilSystemException.java:2690)
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(ORBUtilSystemException.java:2711)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.<init>(SocketOrChannelConnectionImpl.java:261)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.<init>(SocketOrChannelConnectionImpl.java:274)
    at com.sun.corba.ee.impl.transport.SocketOrChannelContactInfoImpl.createConnection(SocketOrChannelContactInfoImp
    l.java:130)
    at com.sun.corba.ee.impl.protocol.CorbaClientRequestDispatcherImpl.beginRequest(CorbaClientRequestDispatcherImpl
    .java:192)
    at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.request(CorbaClientDelegateImpl.java:181)
    at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.is_a(CorbaClientDelegateImpl.java:325)
    at org.omg.CORBA.portable.ObjectImpl._is_a(ObjectImpl.java:112)
    at org.omg.CosNaming.NamingContextHelper.narrow(NamingContextHelper.java:69)
    at com.sun.enterprise.naming.SerialContext.narrowProvider(SerialContext.java:127)
    at com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.java:182)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:339)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at com.splwg.mpl.server.jms.JNDIJMSConnectionFactoryFactory.getConnectionFactory(JNDIJMSConnectionFactoryFactory
    .java:56)
    at com.splwg.mpl.server.jms.JMSUtilImpl.getConnectionFactory(JMSUtilImpl.java:75)
    at com.splwg.mpl.jms.queue.JMSSender.init(JMSSender.java:80)
    at com.splwg.mpl.sending.NewSenderManager.init(NewSenderManager.java:108)
    at com.splwg.mpl.sending.SameThreadSendingManager.initSenderManager(SameThreadSendingManager.java:353)
    at com.splwg.mpl.sending.SameThreadSendingManager.init(SameThreadSendingManager.java:154)
    at com.splwg.mpl.server.async.AsyncServer.init(AsyncServer.java:193)
    at com.splwg.mpl.server.MPLServer.init(MPLServer.java:386)
    at com.splwg.mpl.server.MPLServer.run(MPLServer.java:547)
    at com.splwg.mpl.server.MPLServer.runMPL(MPLServer.java:535)
    at com.splwg.mpl.server.MPLServer.main(MPLServer.java:524)
    Caused by: java.lang.RuntimeException: java.net.ConnectException: Connection refused: connect
    at com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSocketFactory.java:347)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.<init>(SocketOrChannelConnectionImpl.java:244)
    ... 22 more
    Caused by: java.net.ConnectException: Connection refused: connect
    at sun.nio.ch.Net.connect(Native Method)
    at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:464)
    at com.sun.corba.ee.impl.orbutil.ORBUtility.openSocketChannel(ORBUtility.java:105)
    at com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSocketFactory.java:332)
    ... 23 more

    The googleapi.jar contains copies of some javamail classes. Here a few I found in my output:
    javax.mail.event.MessageCountListener from googleapi.jar
    javax.mail.Session from googleapi.jar
    javax.mail.MessagingException from googleapi.jar
    javax.mail.NoSuchProviderException from googleapi.jar
    This particular google api is the old SOAP google service that is no longer allowing new registrations, but still has support for existing API key holders, like me :-). Thought this might be a common jar in most libraries, so worth mentioning.
    Don't forget, you can debug your loaded classes with java -verbose MyApp to find those rogue libraries.

  • Spinner when trying to connect to Lion Server

    At some point I tried to uninstall Lion Server (by dragging the server app to the trash, realize now that this was really dumb)
    Re-installed via the appstore, and now I can't connect to the server. 
    Run the Server.app
    Click on "This Mac"
    Enter current account password
    Spins forever.
    Dtruss tells me the following:
    __semwait_signal(0x1F03, 0x0, 0x1)
    = -1 Err#60
    mmap(0x0, 0x4000, 0x3, 0x1002, 0x34000000, 0x0)
    = 0x11BF3000 0
    mmap(0x0, 0x4000, 0x3, 0x1002, 0x34000000, 0x0)
    = 0x11BF7000 0
    munmap(0x111BF7000, 0x4000)
    = 0 0
    munmap(0x111BF3000, 0x4000)
    = 0 0
    mmap(0x0, 0x4000, 0x3, 0x1002, 0x34000000, 0x0)
    = 0x11BF7000 0
    munmap(0x111BF7000, 0x4000)
    = 0 0
    munmap(0x111BF3000, 0x4000)
    = 0 0
    Over and over again.  I've run through most of onyx's cleaning routines (mainly just dumping caches). . . no dice.
    servermgrd is running so the normal check launchctl that is floating around won't do much for me.

    I'm new to this what other posts?

  • Error message when trying to connect to Game Server via Mobility Ware, Solitaire

    Hello, 
    I am connected to the Game Center's server but when I go an play a game, specifically Mobility Ware's Solitare, I get the error message "Could not connect to Game Center Server" with options "cancel" and "retry".  Retry does not work.
    Please help

    Hi Brian,
    In Acrobat, security concerns dictate that you cannot specify an ODBC connection string by using the Driver=; syntax. Therefore, the client computer using the form needs to have a DSN pre-configured for ODBC connections.
    Denver
    Adobe Enterprise Developer Support

  • Error when trying to connect to identity server from vcac 6 server during fresh install attempt

         Hello.  I am trying to install vcac6 so I can try it out but I am getting the error "Command execution failed with unexpected error: java.security.cert.CertificateNotYetValidException" when I try to point the vcac appliance at the identity appliance during the sso config.  I researched around but didn't find anything.  I confirmed that all network communication is good between the two.  Dns names resolve fine.  I am using self generated certs for both.
    Thanks in advance for any help you can give!

    As poorem suggested, I would check that the time is the same on both the identity and vcac appliances.  It has been a while since I posted this question but I believe that did get me past that specfic error.  I changed the timezone on each and made sure the times were correct and the same.

  • Icloud encountered an error when trying to connect to the server

    I get this error everytime I try and sign in to icloud.com on my work desktop.  I have tried IE8, and Chrome (latest version) on my Windows xp machine.  any suggestions.  I know my office uses Websence to restrict internet access but it is hard to believe iCloud would be blocked.

    If it only does it at work, then the most likely reason is that your work network is blocking it, or one of the servers iCloud connects to.
    Have you asked the IT people at work? Checked it on another computer at work?

  • Keep gettig this error message when trying to connect to Firefox The proxy server is refusing connections.

    Redownloaded Firefox and continue to get this error message when trying to connect: The proxy server is refusing connections
    Firefox is configured to use a proxy server that is refusing connections.
    Check the proxy settings to make sure that they are correct.
    Contact your network administrator to make sure the proxy server is
    working.

    Go to Options > Advanced > Network > Connection > Settings and choose "No proxy".
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    It is important that you keep IE updated. The information included with your question, indicates that you are using IE7; you should update to IE8 for your own protection. IE9 will not be made available for Windows XP.
    *http://windows.microsoft.com/en-US/internet-explorer/products/ie/home

  • When installing Flash, it stops right around the begging while, "Trying to connect to the server", anyone know how to fix this?

    Like I said, when trying to connect to the server, the installation makes no progress, for hours. I've tried re-downloading the installer, simply restarting the installation, and i can't think of anything else to do. Does anyone have a fix to this?

    Do those folders exist on the server?
    You'll need to navigate into the mailstore folder via terminal.
    With dovecot, all folders start with a "."
    Do you see all of those dup folders?
    Check permissions on your entire mailstore, everything should be owned by '_dovecot' and group 'mail'
    You could reset perms of the mailstore (assuming default location of the mailstore) with:
    sudo chown -R _dovecot:mail /Library/Server/Mail/Data/mail/

  • Hi there, I am trying to connect to my server at work from home using a vpn connection. It connects fine and the time ticks along, but when i click go - connect to server, it comes up with connection failed. Please help!

    Hi there, I am trying to connect to my server at work from home using a vpn connection. It connects fine and the time ticks along, but when i click go - connect to server, it comes up with connection failed. Please help!

    ... when i click go - connect to server, it comes up with connection failed.
    If you're trying to connect to a Bonjour server on the remote network, that won't work over a layer 3 VPN. Use something like Hamachi or one of the SSH-tunnelling Bonjour proxy apps for that.

  • HT4436 When trying to sign in I keep getting the error message, "iCloud encounterd a error while trying to connect to the server". How can I get signed in?

    When trying to sign in to iCloud, I always get the message, iCloud has encountered a error while trying to connect to the server. How do I get in????

    Hello,
    Try following step and check if issue gets resolved or not.
    Find Acrobat.exe on your computer.  Right click the program and click 'Troubleshoot Compatibility'.  Set the compatibility to Windows XP service pack 3.
    Regards,
    Anoop

Maybe you are looking for

  • Valuated Sales order stock with CO Production Order

    Dear All, Our clinet is manifatcuring cables and having  2 plants, for one plant we have configured PP module so we are arriving valuated sales order stock, for another plant we didnt configured PP module so we planned CO production order, but where

  • Soap request with attachment --problem in deploye to jboss useing Jdevelope

    using Jdeveloper and oc4j application server i made two application. In application one i exposed a web service method.In this application their is a handler class which able to handle soap request and response with attachment. In application two a c

  • Can't access my dvr from safari

    Hi, I have a problem with safari.  I can't access my dvr from the browser. After I sign in to my dvr webpage this message comes instead of loading java: The requested URL was not found on this server I have this message when I try with Mozilla: Cache

  • ABAP Interactive report

    Hi, What is Interactive report? what are the specific statements you write when do u write interactive Report?? Thanks in advance.

  • Smart form footer issue in 2nd page - Horizontal line is not displayed

    Dear Experts, I am working on a smartform. Which has a table (Header, Main area, Footer), When there are more records and footer alone is printed in the 2nd page, i am not getting the first horizontal line for the footer and it does not look like a t