SSL Connection over TCP using SSLSocketFactory to remote C++ Server

Hi.
Despite my traversing through the archives, I could not find a
solution to my problem. So hopefully, that would mean i have a simple
isolated, and FIXABLE problem :-)
My web application running under Weblogic 7.01 as a servlet needs to
connect to a remote server using SSL over tcp.
The server is a C++ app using openssl libraries to serve up a
self-signed certificate.
The code fragments to do so look like this:
     SSLSocketFactory sf =
(SSLSocketFactory)SSLSocketFactory.getDefault();
     connection = sf.createSocket(host, port);
     output.write(...)
     output.flush();
Upon the flush, I get the following error:
java.io.IOException: Write Channel Closed, possible SSL handshaking or
trust failure
     at com.certicom.tls.record.WriteHandler.write(Unknown Source)
     at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireAlertSent(Unknown
Source)
     at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Unknown
Source)
     at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Unknown
Source)
     at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMessage(Unknown
Source)
     at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMessages(Unknown
Source)
     at com.certicom.tls.record.ReadHandler.interpretContent(Unknown
Source)
     at com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
     at com.certicom.tls.record.ReadHandler.readUntilHandshakeComplete(Unknown
Source)
     at com.certicom.tls.interfaceimpl.TLSConnectionImpl.completeHandshake(Unknown
Source)
     at com.certicom.tls.record.WriteHandler.write(Unknown Source)
     at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:67)
     at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:125)
     at java.io.DataOutputStream.flush(DataOutputStream.java:99)
My guess is that its complaining about not trusting the certificate
being sent back by the server.
I typically use JSSE for this application when running within other
appservers, and
this application has no problems. But because i've run into issues
with using JSSE in WL7.01 (another topic
for another day), I'm using the default WL ssl library.
I have set weblogic.security.SSL.trustedCAKeyStore=d:\bea\weblogic700\server\lib\cacerts,
and imported my
certificate into that cacerts file. This doesn't seem to fix my
problem. Is there another truststore
that my webapp may rely on? Where within the admin console can I
figure this out?
Or am I on the wrong track here?
Also, if its any clue, elsewhere within the same application, I make
https requests to another
web app running under the same weblogic server - and that is fine - I
use the URLConnection class in those cases.
Any help is much appreciated!
Thanks
Ed

Hi,
Can you show us the stacktrace?
/Kaj

Similar Messages

  • Modbus RTU over TCP (Simex Transmitte​r and Advantech Server)

    Hey Guys,
    somehow i am not able to get a connection over TCP IP using RTU Mode (reading values) from a  transmitter which is hooked up to an advantech EKI 1542 Server. The Port is configured as an RS 485.
    i am using the modbus library and i tried to adjust the MB serial read holding registers vi to accept a TCP IP Socket input instead of an INSTR. Do you have any suggestions?
    Thanks a lot for the forum support!

    Hi Christo and welcome to NI Forums!
    Is this the ModBus library you are using? If so, I'd recomend to check out the newer, object based library available here. It has a more straightforward setup, especially for using TCP connections. You'll find an example VI for using a master, as well as a slave device, and these you'll be able to use right away without much modification. The code'll look like:
    Please test your device communication using this library.
    Kind regards:
    Andrew Valko
    NI Hungary
    Andrew Valko
    National Instruments Hungary

  • Connecting over VPN using Toad

    Hello,
    We have started experience problems connecting to our 9i and 10g databases when using Toad over a VPN connection. Although a connection is actually made nothing is returned to the Toad client and it justs hangs. This problem only occurs over a VPN. When connected to the LAN there is no problem. Also it is possible to connect over the VPN using SQL Developer. This has only recently started happening. In the past we have been able to connect over the VPN without a problem. Sounds like a Toad problem? Yes! I was wondering if anyone else had experienced this and new of a resolution.
    Thanks James

    Hi ,
    The OP is able to connect through SQL Developer using VPN so no issues with VPN,The OP is facing problem when connecting using TOAD so:
    1)Try to disconnect the TOAD and than try if that doesn't work can you please type the error message you are getting while connecting to the TOAD using VPN.
    Best regards,
    Rafi.
    http://rafioracledba.blogspot.com/

  • SOAP over TCP using Oracle 10g

    Hi everyone
    I am currently working with a client and they have recently upgraded a legacy DB from Oracle 6i to Oracle 10g and now wish to be able to provide some functionality of this legacy system as a web service to their other J2EE n-tier applications.
    The Oracle 10g and J2EE applications sit securely inside a corporate network. As such it would be preferable if service calls to the 10g database could be exposed using SOAP over TCP as opposed to using HTTP to speed up performance a little bit.
    This is a baby step, point-to-point, SOA solution that they wish to implement before progressing to a more managed solution (eg ESB) in the future.
    As I am not an Oracle expert I would like to know if this can be done and if so is it a trivial or complicated thing to achieve?
    Any help would be greatly appreciated!

    Hi Hatchman,
    As Eric described, Oracle does not support SOAP over TCP yet. If your goal is to improve the performance, I don't think you'll gain substantial performance improvement by bypassing HTTP layer. Although it depends upon the nature of the service implementations, typically the bottleneck lies in xml processing not in the transport layer.
    Regards,
    Pyounguk

  • Errror during SSL connection with LDAP using JNDI APIs

    Hello,
    I have established a client and server certificates cert.arm for LDAP server and client. On client i have created a client.kdb file and on server server.kdb file both containing cert.arm. whwn i give a request
    C:\Program Files\IBM\LDAP\bin>ldapsearch -b "o=ibm,c=us" -h 9.182.174.71 -p 636 -D cn=roo
    -w root1 -Z -K "C:\Program Files\ibm\ldap\etc\client.kdb" -P client -s sub cn=s* cn sn
    it gave me proper results
    but using a JNDI API where i specify
    Hashtable env = new Hashtable(11);
         env.put(Context.INITIAL_CONTEXT_FACTORY,
         "com.sun.jndi.ldap.LdapCtxFactory");
         // Specify LDAPS URL
         env.put(Context.PROVIDER_URL, "ldap://"+"9.182.174.71:636");
         // Authenticate as S. User and password "mysecret"
         env.put(Context.SECURITY_PROTOCOL, "ssl");
         env.put(Context.SECURITY_AUTHENTICATION, "simple");
         env.put(Context.SECURITY_PRINCIPAL, "cn=root1");
         env.put(Context.SECURITY_CREDENTIALS, "root1");
    DirContext ctx = new InitialDirContext(env);
    SearchControls constraintssc=new SearchControls();
    constraintssc.setSearchScope(SearchControls.SUBTREE_SCOPE);
                             // performing the search
    NamingEnumeration results=ctx.search("o=ibm,c=us","cn=s*",constraintssc);
    ////etc.........
    Its gives me an exception saying that
    javax.naming.CommunicationException: simple bind failed: 9.182.174.71:636. Root
    exception is javax.net.ssl.SSLHandshakeException: Couldn't find trusted certificate
    Could any body help me out on this
    Thank You

    You are attempting to authenticate via an SSL connection to port 636.
    The message 'couldn't find trusted certificate' means that your client doesn't trust the certificate it has received from the LDAP server.
    In order to establish that trust, you must export a certificate file from the LDAP server, then use Java's keytool.exe to create a keystore file using that certificate. Then your client code must reference that keystore file that you've created.
    So essentially, you have to provide your program the LDAP server's credentials. "If the server's certificate looks like this, then you can trust it."
    After your program trusts the certificate it receives from the server at runtime, your connection will authenticate.

  • How to connect to Akamai using RTMP SDK (Adobe Media Server Connector for C++)?

    We need to stream live video to Akamai using RTMP. But, we are trying to connect using ADOBE RTMP SDK (Adobe Media Server Connector for C++ 2.0.1), but have no idea regarding how to connect to Akamai using the SDK. How to make the SDK respond to the server challenges for password etc. If this can't be done using the RTMP SDK, we can use plain C++ for the purpose. But for that too, we don't have any idea regarding the steps involved to make it work. If anyone has any idea on how to connect to Akamai using the RTMP SDK or using plain C++ (a sample code will be very helpful), please help us out. If you can suggest any C/C++/.NET library too which will help us achieve it, we are ready to do so. Thanks in advance.

    hi,
    I am sorry I can not help you.  Could you do me a favor? I know you are using Adobe RTMP SDK.I want to know how to get it.
    I tried to contact adobe at [email protected] but it seems to be an invalid email address.if you know efficient way,
    please tell me.Thank you very much.

  • Crash connection over Internet using TCP/IP SSL sockets

    I'm doing a file Transfer WEB Client/server Application using TCP/IP SSL Sockets?
    In an internal LAN the file Transfer work pretty well but in Internet this Crash (downturn the file transfer).
    the code in Client to connect to server is:
    SSLSocketFactory sslFact = (SSLSocketFactory)SSLSocketFactory.getDefault();
    socket = (SSLSocket)sslFact.createSocket(c.site, c.PORT);
    String [] enabledCipher = socket.getSupportedCipherSuites ();
    socket.setEnabledCipherSuites (enabledCipher);
    out = new ObjectOutputStream(socket.getOutputStream());
    in = new ObjectInputStream(socket.getInputStream());
    The code in Server to wait client connections is:
    Runtime.getRuntime().addShutdownHook(new ShutdownThread(this));
    try {
    SSLServerSocketFactory factory = (ServerSocketFactory) SSLServerSocketFactory.getDefault();
    SSLServerSocket sslIncoming =
    (SSLServerSocket) factory.createServerSocket (PORT);
    String [] enabledCipher = sslIncoming.getSupportedCipherSuites ();
    sslIncoming.setEnabledCipherSuites (enabledCipher);
    while(running) {
    SSLSocket s = (SSLSocket)sslIncoming.accept();
    newUser(s, pauseSyn);
    } catch (IOException e) { System.out.println("Error: " + e); }
    Some help with this topic, show me the ligth? what is bad?

    Hi,
    Can you show us the stacktrace?
    /Kaj

  • Problems when trying to connect over TCP/IP with DHCP

    Hello everybody,
    I have problems to get a TCP/IP connection to my Blackfin board.
    There is an error message, see in the attached files.
    I have also Problems with the UART Interface can't run it with the Code Examples!
    Best Regards,
    Johannes
    Attachments:
    TCP IP Faults.doc ‏146 KB

    Johannes,
    The Blackfin lwip stack expects a DHCP server to assign it an IP, you cannot just connect a crossover cable between your computer and the EZKIT (unless your computer happens to be running a DHCP server). Connect your computer and the EZKIT and your computer to a router/switch so that the DHCP server on it can assign IPs to both. Also, you appear to be using the code from the example called Print EZKIT IP Address.vi. I recommend putting this code into a while loop with a wait.
    Message Edited by Michael P on 07-27-2006 10:57 AM
    Michael P
    National Instruments

  • Connecting to non-secure listener port over TCPS

    Hi,
    I am trying to connect to non-SSL port over TCPS.
    When I use tnsping, it hangs.
    When I do an OCIServerAttach, it hangs.
    Client is 10.2
    And Database server is 9.2 and higher..
    Any way I can find out why this is happening??
    -Harsha

    Maybe I'm not getting the point, but when you do not use SSL on this port, why do you want to use TCPS. Wouldn't TPC be a better choice?
    cu
    Andreas

  • Connecting to labview over TCP/IP port

    I have got an undocumented project to maintain, it has a Java UI code, which connects with some component of LABVIEW over
    TCP/IP Port = 1234
    and over this port it sends commands for clear, get, set
    I need links for understanding the component from LABVIEW which is been accessed over port 1234
    I have installed LABVIEW Run time 2013, and do not know which PROCESS the Java code is trying to connect over TCP/IP, and I do not see any of the RT processes binding to port 1234.
    Any pointers/links would certainly help me!
    Thanks,
    -Vikrant

    Can you define what you mean by "component of LabVIEW"?
    The LabVIEW runtime engine is just a required component to run any custom build LabVIEW executable or dll. So, what is it?
    You also mention RT processes. Does this run on an RT system? What is running where? If you are connecting to a remove LabVIEW RT system that runs a service on port 1234, you don't need LabVIEW or a run time engine at all on the local side.
    At this time we don't have any useful information from you. Please be significantly more detailed! Thanks.
    LabVIEW Champion . Do more with less code and in less time .

  • Web Proxy Server 3.6 with Administration Server using SSL connection

    In your manual: Administrator�s Guide Sun� ONE Web Proxy Server Version 3.6 SP3 for UNIX you wrote:
    You should also make the administrative connection a mandatory SSL connection
    Instead of using http://servername:port_number
    I need to use:
    https://servername:port_number
    How can I do that?
    Thanx
    Gian Mario

    HI
    To enable https for the admin,
    Create a certifcate for the proxy admin
    Next, From 'Admin Preferences', click on 'Encryption on/off'
    From the 'Encryption on/off'; screen that appears, click on the 'on' radio button. Select the certficate from the alias list and click on OK to enable encryption for the cerficate you have installed for your admin server.
    Now restart you admin server.
    You wil now be able to connect to your admin using https
    Thanks
    Nagendra HK

  • SSL connections blocking worker threads on DS 5.2 patch 4

    Hi,
    Is it normal for an idle SSL connection to consume a worker thread within the directory server?
    We have recently enabled SSL on a number of our directory servers (5.2 patch 4) and have run into problems with the server hanging. We have a number of application servers, each opening a pool of connections to the servers via JNDI. It seems that once 30 SSL connections have been established to a give LDAP server, the server will hang. By hang I mean the server is accepting TCP connections, but not responding to LDAP requests.
    The server can deal with a lot more than 30 non-ssl connections. I'm guessing that SSL connections need to maintain state, which is what is tying up the worker threads.
    Is this normal, and is it docuemented anywhere? Currently I'm looking at terminating the SSL connections on a load balancer in front of the LDAP servers, or perhaps on an LDAP proxy. Any other suggestions as to how this is typically dealt with?
    thanks,
    R

    Thank you Gautam.
    On further testing yesterday, we discovered that the problem is just as you have described. Our application servers are opening an initial pool of five connections, but typically only using one of those connections. The one connection the server uses to make an LDAP request behaves 'normally', not tying up a thread on the LDAP server. The other four sit there blocking a thread each, until eventually we hit the nsslapd-threadnumber.
    Based on that discovery, we're having the application changed so that its initial LDAP connection pool size is one, which appears to address the problem. That way connections are only established and added to the pool as they are required, resulting in well behaved connections to the LDAP server.
    Thanks for the quick reply... The Sunsolve note is helpful, as is the info about the nsslapd-ioblocktimeout parameter.
    kind regards,
    R

  • MTS dispatcher over TCP

    I try to make MTS dispatcher over TCP/IP protocol.
    But Oracle abuses ORA-00102: network protocol (ADDRESS=
    (PROTOCOL=TCP)(HOST=lnx1.4line.kts.ru)(PORT=1521)) cannot be
    used by dispatchers.
    But MTS over IPC works good. I can connect over TCP to dedicated
    server process.
    Where I'm wrong?
    My settings:
    file /etc/services
    listenera 1521
    <eof>
    file /%ORACLE_HOME/network/admin/listener.ora
    LISTENER =
    a (ADDRESS_LIST =
    (ADDRESS= (PROTOCOL= IPC)(KEY= lnx1ora))
    aaaaaaa (ADDRESS= (PROTOCOL= IPC)(KEY= PNPKEY))
    aaaaaaa (ADDRESS= (PROTOCOL= TCP)(Host= lnx1.4line.kts.ru)(Port=
    1521))
    a )
    SID_LIST_LISTENER =
    a (SID_LIST =
    aaa (SID_DESC =
    aaaaa (GLOBAL_DBNAME= lnx1.4line.kts.ru.)
    aaaaa (ORACLE_HOME= /app/oracle/product/8.0.5)
    aaaaa (SID_NAME = lnx1ora)
    aaa )
    aaa (SID_DESC =
    aaaaa (SID_NAME = extproc)
    aaaaa (ORACLE_HOME = /app/oracle/product/8.0.5)
    aaaaa (PROGRAM = extproc)
    aaa )
    a )
    STARTUP_WAIT_TIME_LISTENER = 0
    CONNECT_TIMEOUT_LISTENER = 10
    TRACE_LEVEL_LISTENER = OFF
    <eof>
    file /%ORACLE_HOME/dbs/initlnx1ora.ora
    mts_dispatchers="ipc,1"
    #mts_dispatchers="tcp,1" N - ORA-00102
    mts_dispatchers="(ADDRESS=(PROTOCOL=TCP)(Host=lnx1.4line.kts.ru)
    (PORT=1521))
    (DISPATCHERS=1)"
    mts_max_dispatchers=10
    mts_servers=4
    mts_max_servers=16
    mts_service=lnx1ora
    mts_listener_address="(ADDRESS=(PROTOCOL=ipc)(KEY=PNPKEY))"
    mts_listener_address="(ADDRESS=(PROTOCOL=TCP)(PORT=1521)\
    (Host=lnx1.4line.kts.ru))"
    <eof>
    Regards, Marry Christmas,
    Mark
    null

    Mark Malakanov (guest) wrote:
    : I try to make MTS dispatcher over TCP/IP protocol.
    : But Oracle abuses ORA-00102: network protocol (ADDRESS=
    : (PROTOCOL=TCP)(HOST=lnx1.4line.kts.ru)(PORT=1521)) cannot be
    : used by dispatchers.
    : But MTS over IPC works good. I can connect over TCP to
    dedicated
    : server process.
    : Where I'm wrong?
    : My settings:
    : file /etc/services
    : listener 1521
    : <eof>
    : file /%ORACLE_HOME/network/admin/listener.ora
    : LISTENER =
    : (ADDRESS_LIST =
    : (ADDRESS= (PROTOCOL= IPC)(KEY= lnx1ora))
    : (ADDRESS= (PROTOCOL= IPC)(KEY= PNPKEY))
    : (ADDRESS= (PROTOCOL= TCP)(Host=
    lnx1.4line.kts.ru)(Port=
    : 1521))
    : SID_LIST_LISTENER =
    : (SID_LIST =
    : (SID_DESC =
    : (GLOBAL_DBNAME= lnx1.4line.kts.ru.)
    : (ORACLE_HOME= /app/oracle/product/8.0.5)
    : (SID_NAME = lnx1ora)
    : (SID_DESC =
    : (SID_NAME = extproc)
    : (ORACLE_HOME = /app/oracle/product/8.0.5)
    : (PROGRAM = extproc)
    : STARTUP_WAIT_TIME_LISTENER = 0
    : CONNECT_TIMEOUT_LISTENER = 10
    : TRACE_LEVEL_LISTENER = OFF
    : <eof>
    : file /%ORACLE_HOME/dbs/initlnx1ora.ora
    : mts_dispatchers="ipc,1"
    : #mts_dispatchers="tcp,1" N - ORA-00102
    mts_dispatchers="(ADDRESS=(PROTOCOL=TCP)(Host=lnx1.4line.kts.ru)
    : (PORT=1521))
    : (DISPATCHERS=1)"
    : mts_max_dispatchers=10
    : mts_servers=4
    : mts_max_servers=16
    : mts_service=lnx1ora
    : mts_listener_address="(ADDRESS=(PROTOCOL=ipc)(KEY=PNPKEY))"
    : mts_listener_address="(ADDRESS=(PROTOCOL=TCP)(PORT=1521)\
    : (Host=lnx1.4line.kts.ru))"
    : <eof>
    : Regards, Marry Christmas,
    : Mark
    Just want to ermind newcomer of Oracle for Linux..
    the current version of oracle for Linux(standard) edition
    has error when config it using MTS thru' TCP/IP...
    null

  • Send Bytes over TCP/IP

    {noformat}I am trying to send an array of bytes over tcp using OutputStream to a chat dispatch server, but few extra bytes are getting added at the begining and
    at the end of the original data I want to send.
    Why is this hapening and how do I overcome this?{noformat}

    ejp wrote:
    byte[] consisted of byte array converted from this hex dumpConverted how?
    If you use a String as a container for this binary data it will be corrupted.I declared the dump as a string like:
    "8A00000000000000000000000B000000476174656B6565706572320F0000004765744C6F67696E536572766572735C0000001800000052656469666620426F6C382E3020206275696C6420323735030000000A00000052424F4C2F312E322E351700000052424F4C2F312E322E352B485454505F434F4E4E4543540F00000052424F4C2F312E322E352B48545450"
    after this what should i do?
    what I am doing is
    1. extract two characters from the string at a time
    2. join them to make a string of two characters
    3. then treat that string as a hex value
    4. convert that hex value to its ascii-char equivalent( so i get an array of characters )
    5. convert the array of characters to array of bytes and send .
    I think that there is a better way to do this. Please suggest. So that no problem occurs.

  • Unable to make SSL connection from Proxy Server to Directory Server

    I have recently installed Directory Proxy Server 5.2 Patch 3 on Solaris 9 server. Backend directories are Sun Directory Server 5.2sp3 using Thawte signed certificates.
    I can't get the Proxy Server to make a successful SSL connection to the Directory Servers. The proxy server can make the non-ssl connection without problem. When the Proxy Server attempts the SSL connection it gives SEC_ERROR_UNTRUSTED_ISSUER error. The SSL certificates on the Directory Servers are signed by Thawte and have just recently been updated. The certificate for the Proxy Server is also signed by Thawte. The CA certificate is loaded in both the Proxy Server and the Directory Server.
    I also have an iPlanet Directory Access Router (iDAR) 5.0 Server that is our current production server that serves these same directories and I haven't had a problem with SSL connection with it. So, the certificates are good.
    I've encluded an exerpt from the Proxy Server log below for one of SSL connection attempts.
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [STAT/CONN]    [   560
    307] Connection from secured listen port. New connection is on socket 37.
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [STAT/CONN]    [   560
    305] Number of open connections is 1.
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [STAT/CONN]    [   171
    211] [client(         152.3.100.30,  37)] Accepting connection via dukenet-group
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   302
    023] Failure with CERT_VerifyCertNow (checking signature, usage: "certUsageSSLSe
    rver").
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   302
    023] SEC_ERROR_BASE + 20, NSPR error: -8172 (0xffffe014). Native errno is: 11
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   385
    729] Rejected certificate on socket 38
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   385
    729] SEC_ERROR_BASE + 20, NSPR error: -8172 (0xffffe014). Native errno is: 11
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   385
    728] Certificate rejected on socket 38
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   385
    728] SEC_ERROR_BASE + 20, NSPR error: -8172 (0xffffe014). Native errno is: 11
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   385
    721] Read on socket 38 failed.
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   385
    721] SEC_ERROR_BASE + 20, NSPR error: -8172 (0xffffe014). Native errno is: 11
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [EXCEPTION]    [   301
    006] Unexpected error on socket 38. (Error: -8172).
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   171
    002] [client(         152.3.100.30,  37)] [server(  152.3.101.110+  636,  38)] L
    ost connection to server, trying to failover to another
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   302
    023] Failure with CERT_VerifyCertNow (checking signature, usage: "certUsageSSLSe
    rver").
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   302
    023] SEC_ERROR_BASE + 20, NSPR error: -8172 (0xffffe014). Native errno is: 11
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   385
    729] Rejected certificate on socket 38
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   385
    729] SEC_ERROR_BASE + 20, NSPR error: -8172 (0xffffe014). Native errno is: 11
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   385
    728] Certificate rejected on socket 38
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   385
    728] SEC_ERROR_BASE + 20, NSPR error: -8172 (0xffffe014). Native errno is: 11
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [EXCEPTION]    [   385
    717] ber_flush unexpected error on socket 38
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [EXCEPTION]    [   385
    717] SEC_ERROR_BASE + 20, NSPR error: -8172 (0xffffe014). Native errno is: 11
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [EXCEPTION]    [   385
    717] ber_flush unexpected error on socket 38
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [EXCEPTION]    [   385
    717] NSPR error: -5938 (0xffffe8ce). Native errno is: 11
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   385
    721] Read on socket 38 failed.
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   385
    721] NSPR error: -5938 (0xffffe8ce). Native errno is: 11
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [EXCEPTION]    [   301
    006] Unexpected error on socket 38. (Error: -5938).
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [NOTICE]       [   171
    002] [client(         152.3.100.30,  37)] [server(    152.3.232.3+  636,  38)] L
    ost connection to server, trying to failover to another
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [EXCEPTION]    [   385
    717] ber_flush unexpected error on socket 38
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [EXCEPTION]    [   385
    717] NSPR error: -5938 (0xffffe8ce). Native errno is: 11
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [EXCEPTION]    [   190
    102] [client(         152.3.100.30,  37)] Rejecting request The server is tempor
    arily busy
    Aug 30 2005 16:12:12 king.oit.duke.edu SunONEDPS[ 17471]: [OP/CONN]      [   170
    904] [client(         152.3.100.30,  37)] [server(  152.3.101.110+  636,  38)] C
    onnection unbound by client

    No, that was on 5.1. For 6.0, my classpath has just:
    %JAVA_HOME%\lib\tools.jar;%WL_HOME%\lib\weblogic_sp.jar;%WL_HOME%\lib\weblogic.jar;
    %CLASSPATH%
    This works fine.

Maybe you are looking for

  • Problem with printing over wireless network

    Hello. I have a HP psc 2410 all-in-one printer. I've recently bought a modem router which has a capability called"printer-server" and I decided to use this feature and print over wifi. I set it up but with a problem. when I print something, for insta

  • In report data cannot see properly

    Hi, Experts I have ticket regarding reporting issue is in the cube delta is correct, but in the report i am seeing one data, if check with user id it showing some other data? what is the proble exactly and wht is the procedure to solve it? Tnaksand r

  • How to convert date to ccyymm format

    Hi, How to convert date to ccyymm format. Thanks

  • Importing FAP's in Documaker

    Hi, As part of a requirements, we have updated certain number of FAP's. We need to import these FAP's back in the Documaker. Does ORACLE provide any sort of functionality/Utility so that this import can be done without having to import each FAP manua

  • Rotate Net and Bus names

    1. Is there a way to rotate the net names and/or bus names to follow the wire if it runs vertically? The command shift/R does not work. (Version 10.1 Power Pro). 2. Can the names be placed off grid? There is no reason to snap a name to the grid. Ther