Sun JSSE -- Weblogic Compatibility

Hi All,
I am Guru Dutt. I am trying to connect to a secure site using the sun
JSSE API on Weblogic, in JSP's
Preconditions:
* Changed the Security.policy file for adding SUN provider under
C:\bea\jdk131_06\jre\lib\security\
* Added jsse.jar, jnet.jar, jcert.jar into weblogic's classpath
* added the JSSE jar's in the the \ext directory.
********** The JSP File *********************88
<%@ page import="com.sun.net.ssl.SSLContext,
javax.net.ssl.SSLSocketFactory, com.sun.net.ssl.TrustManager,
com.sun.net.ssl.internal.www.protocol.https.HttpsURLConnection,
javax.security.cert.X509Certificate,
com.sun.net.ssl.KeyManagerFactory, java.security.KeyStore"%>
<%@ page import="com.sun.net.ssl.TrustManagerFactory,java.io.BufferedReader,
java.io.BufferedWriter, java.io.IOException,
java.io.InputStreamReader, java.io.OutputStreamWriter,
java.io.PrintWriter, java.io.FileInputStream, java.net.URL"%>
<%@ page import="javax.net.ssl.SSLSocket,import java.io.PrintStream"%>
<%
URL tempUrl = new URL("https://www.versign.com/");
String host = tempUrl.getHost();
int port = tempUrl.getPort();
String path = tempUrl.getPath();
String query = tempUrl.getQuery();
SSLSocketFactory factory = null;
try{
SSLContext ctx;
KeyManagerFactory kmf;
KeyStore ks;
char[] passphrase = "passphrase".toCharArray();
ctx = SSLContext.getInstance("https");
TrustManagerFactory tmf =
TrustManagerFactory.getInstance("SunX509", "SunJSSE");
kmf = KeyManagerFactory.getInstance("SunX509");
ks = KeyStore.getInstance("JKS");
ks.load(new FileInputStream("testkeys"), passphrase);
kmf.init(ks, passphrase);
tmf.init(ks);
ctx.init(kmf.getKeyManagers(), tmf.getTrustManagers(), null);
factory = ctx.getSocketFactory();
SSLSocket socket = (SSLSocket)factory.createSocket(host, 443);
out.println("after connection");
socket.startHandshake();
PrintWriter printOut = new PrintWriter(new BufferedWriter(new
OutputStreamWriter(socket.getOutputStream())));
printOut.println("GET " + path + " HTTP/1.1");
printOut.println();
printOut.flush();
BufferedReader in = new BufferedReader(new
InputStreamReader(socket.getInputStream()));
String inputLine =null;
String inputString=null;
while ((inputLine = in.readLine()) != null)
inputLine=inputLine inputString"\n";
out.println(inputLine);
in.close();
printOut.close();
socket.close();
} catch (Exception e) {
     out.println(e);
     PrintWriter printStream = new PrintWriter(out);
     e.printStackTrace(printStream);
     while(printStream!=null)
     printStream.println();
%>
Error Report
java.security.NoSuchAlgorithmException:
Algorithm https not available java.security.NoSuchAlgorithmException:
Algorithm https not available at
com.sun.net.ssl.SunJSSE_b.a(DashoA6275) at
com.sun.net.ssl.SSLContext.getInstance(DashoA6275) at
jsp_servlet.__httpsconnection._jspService(__httpsconnection.java:126)
at
weblogic.servlet.jsp.JspBase.service(JspBase.java:27) at
weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
at
weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5445)
at
weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
at
weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
at
weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
at
weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213) at
weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
Adv thanks if anyone can tell what is the workaround
Regards,
Guru Dutt.

Maybe sun JSSE doesn't like the "https" being specified, I think it is
expecting the
SSL version there ("SSL", "SSLV3", "TLS", etc...)
ctx = SSLContext.getInstance("https");Tony
"Guru Dutt" <[email protected]> wrote in message
news:[email protected]...
Hi All,
I am Guru Dutt. I am trying to connect to a secure site using the sun
JSSE API on Weblogic, in JSP's
Preconditions:
* Changed the Security.policy file for adding SUN provider under
C:\bea\jdk131_06\jre\lib\security\
* Added jsse.jar, jnet.jar, jcert.jar into weblogic's classpath
* added the JSSE jar's in the the \ext directory.
********** The JSP File *********************88
<%@ page import="com.sun.net.ssl.SSLContext,
javax.net.ssl.SSLSocketFactory, com.sun.net.ssl.TrustManager,
com.sun.net.ssl.internal.www.protocol.https.HttpsURLConnection,
javax.security.cert.X509Certificate,
com.sun.net.ssl.KeyManagerFactory, java.security.KeyStore"%>
<%@ pageimport="com.sun.net.ssl.TrustManagerFactory,java.io.BufferedReader,
java.io.BufferedWriter, java.io.IOException,
java.io.InputStreamReader, java.io.OutputStreamWriter,
java.io.PrintWriter, java.io.FileInputStream, java.net.URL"%>
<%@ page import="javax.net.ssl.SSLSocket,import java.io.PrintStream"%>
<%
URL tempUrl = new URL("https://www.versign.com/");
String host = tempUrl.getHost();
int port = tempUrl.getPort();
String path = tempUrl.getPath();
String query = tempUrl.getQuery();
SSLSocketFactory factory = null;
try{
SSLContext ctx;
KeyManagerFactory kmf;
KeyStore ks;
char[] passphrase = "passphrase".toCharArray();
ctx = SSLContext.getInstance("https");
TrustManagerFactory tmf =
TrustManagerFactory.getInstance("SunX509", "SunJSSE");
kmf = KeyManagerFactory.getInstance("SunX509");
ks = KeyStore.getInstance("JKS");
ks.load(new FileInputStream("testkeys"), passphrase);
kmf.init(ks, passphrase);
tmf.init(ks);
ctx.init(kmf.getKeyManagers(), tmf.getTrustManagers(), null);
factory = ctx.getSocketFactory();
SSLSocket socket = (SSLSocket)factory.createSocket(host, 443);
out.println("after connection");
socket.startHandshake();
PrintWriter printOut = new PrintWriter(new BufferedWriter(new
OutputStreamWriter(socket.getOutputStream())));
printOut.println("GET " + path + " HTTP/1.1");
printOut.println();
printOut.flush();
BufferedReader in = new BufferedReader(new
InputStreamReader(socket.getInputStream()));
String inputLine =null;
String inputString=null;
while ((inputLine = in.readLine()) != null)
inputLine=inputLine inputString"\n";
out.println(inputLine);
in.close();
printOut.close();
socket.close();
} catch (Exception e) {
out.println(e);
PrintWriter printStream = new PrintWriter(out);
e.printStackTrace(printStream);
while(printStream!=null)
printStream.println();
%>
Error Report
java.security.NoSuchAlgorithmException:
Algorithm https not available java.security.NoSuchAlgorithmException:
Algorithm https not available at
com.sun.net.ssl.SunJSSE_b.a(DashoA6275) at
com.sun.net.ssl.SSLContext.getInstance(DashoA6275) at
jsp_servlet.__httpsconnection._jspService(__httpsconnection.java:126)
at
weblogic.servlet.jsp.JspBase.service(JspBase.java:27) at
weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
tStubImpl.java:1058)
at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
:401)
at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
:306)
at
weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
ebAppServletContext.java:5445)
at
weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManage
r.java:780)
at
weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
ntext.java:3105)
at
weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
:2588)
at
weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213) at
weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
Adv thanks if anyone can tell what is the workaround
Regards,
Guru Dutt.

Similar Messages

  • Sun JSSE -- Weblogic 7.0  Compatibility

    Sorry Gurys forgot to mention the Weblogic's version
    Its 7.0
    and Sun JSSE is 1.0.3
    Rest of the things are as mentioned in the
    Sun JSSE -- Weblogic Compatibility Thread

    Sorry Gurys forgot to mention the Weblogic's version
    Its 7.0
    and Sun JSSE is 1.0.3
    Rest of the things are as mentioned in the
    Sun JSSE -- Weblogic Compatibility Thread

  • Sun JSSE intergration with WebLogic

    First, I should state that I have been able to get my application to work in Tomcat
    and run on it's own, but not in WebLogic.
    Has anyone used Sun's JSSE implementation from within WebLogic? Is it possible
    to do so?
    I have set the following properties:
    System.setProperty("java.protocol.handler.pkgs",
    "com.sun.net.ssl.internal.www.protocol");
    System.setProperty("javax.net.ssl.keyStoreType",
    "pkcs12");
    System.setProperty("javax.net.ssl.keyStore",
    keystore);
    System.setProperty("javax.net.ssl.keyStorePassword",
    keyStorePassword);
    System.setProperty("javax.net.ssl.trustStore",
    trustStore);
    System.setProperty("javax.net.ssl.trustStorePassword",
    trustStorePassword);
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    I get the following exception when writing to the output stream of HttpsURLConnection:
    java.io.IOExceptionWrite Channel Closed, possible SSL handshaking or trust failure
    I am not that familiar with Weblogic, so any suggestions are welcome.

    No, the loadLocalIdentity methods that take InputStream-s expect streams for the
    certificate and the key pem files, with the key in pkcs8 format. If your certificate
    is in pkcs12 keystore, you can read the cert and the key using java keystore api,
    and then load them with the loadLocalIdentity(Certificate[], PrivateKey) method.
    Pavel.
    "Dave" <[email protected]> wrote:
    >
    Thanks for the response I appreciate it. I do have some follow up questions
    you
    may be able to help me with.
    This application is performing two way SSL, but in this case my web app
    (deployed
    in WLS) is the client. Making a https call to public server that requires
    the
    client certificate. The public server issues the client certificates
    in pkcs12
    format. Can the weblogic.net.http.HttpsURLConnection class or WebLogic
    SSL implementation
    handle that format?
    Thanks.
    "tm" <no-reply> wrote:
    From a coworker:
    It sounds like in this particular case they are using an URL to open
    the
    connection.
    On the server this will return a weblogic.net.http.HttpsURLConnection,
    which
    does not support the jsse configuration properties.
    In the case of a one way connection they might be able to fix this by
    setting weblogic.security.SSL.trustedCAKeyStore instead.
    For two way they would need to use our HttpsURLConnection api to load
    identity.
    -tm
    "tm" <no-reply> wrote in message news:[email protected]...
    To the best of my knowledge, BEA doesn't test or claim to support
    any
    scenarios with Sun JSSE running inside a WLS server when the WLS serveris
    setup to use SSL. However, it might work.
    In any case, to see what WLS SSL is complaining about, turn on SSLdebug
    tracing:
    -Dssl.debug=true -Dweblogic.StdoutDebugEnabled=true
    -tm
    "Dave" <[email protected]> wrote in message
    news:[email protected]...
    First, I should state that I have been able to get my application
    to
    work
    in Tomcat
    and run on it's own, but not in WebLogic.
    Has anyone used Sun's JSSE implementation from within WebLogic?
    Is
    it
    possible
    to do so?
    I have set the following properties:
    System.setProperty("java.protocol.handler.pkgs",
    "com.sun.net.ssl.internal.www.protocol");
    System.setProperty("javax.net.ssl.keyStoreType",
    "pkcs12");
    System.setProperty("javax.net.ssl.keyStore",
    keystore);
    System.setProperty("javax.net.ssl.keyStorePassword",
    keyStorePassword);
    System.setProperty("javax.net.ssl.trustStore",
    trustStore);
    System.setProperty("javax.net.ssl.trustStorePassword",
    trustStorePassword);
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    I get the following exception when writing to the output stream
    of
    HttpsURLConnection:
    java.io.IOExceptionWrite Channel Closed, possible SSL handshaking
    or
    trust
    failure
    I am not that familiar with Weblogic, so any suggestions are welcome.

  • Creator/Sun AppServer - Weblogic 8.1 sp4

    Hi Folks,
    What I'm tring to do is create a web application that can talk to an existing Enterprise application running on Weblogic 8.1 The web application (in a war) runs fine if I deploy it to Weblogic (by virtue of exporting the war from Creator) but fails if I try to run in it in the AS 8 that is included with Creator. (mind you, it is trying to talk to EJBs that are located in the weblogic server) The error I get is described by the stack trace below.
    Can anyone shed some light on what is ~really~ going on? Remember, the SAME .war runs fine under weblogic.
    Thanks in advance for any insights you can share!
    Langley
    Caused by: org.omg.CORBA.DATA_CONVERSION: vmcid: SUN minor code: 214 completed: No
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.badCustomSocketFactory(ORB UtilSystemException.java:2391)
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.badCustomSocketFactory(ORB UtilSystemException.java:2410)
    at com.sun.corba.ee.impl.orb.ParserTable$3.operate(ParserTable.java:468)
    at com.sun.corba.ee.impl.orb.NormalParserAction.apply(NormalParserAction.java:22)
    at com.sun.corba.ee.spi.orb.PropertyParser.parse(PropertyParser.java:52)
    at com.sun.corba.ee.spi.orb.ParserImplBase.init(ParserImplBase.java:56)
    at com.sun.corba.ee.impl.orb.ORBDataParserImpl.<init>(ORBDataParserImpl.java :339)
    at com.sun.corba.ee.impl.orb.ORBImpl.postInit(ORBImpl.java:421)
    at com.sun.corba.ee.impl.orb.ORBImpl.set_parameters(ORBImpl.java:498)
    at org.omg.CORBA.ORB.init(ORB.java:337)
    at weblogic.corba.j2ee.naming.ORBHelper.createORB(ORBHelper.java:361)
    at weblogic.corba.j2ee.naming.ORBHelper.getORBReferenceWithRetry(ORBHelper.java:49 8)
    at weblogic.corba.j2ee.naming.ORBHelper.getORBReference(ORBHelper.java:480)
    at weblogic.corba.j2ee.naming.InitialContextFactoryImpl.getInitialContext(InitialC ontextFactoryImpl.java:97)
    at weblogic.corba.j2ee.naming.InitialContextFactoryImpl.getInitialContext(InitialC ontextFactoryImpl.java:42)
    at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory .java:41)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:662)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:243)
    at javax.naming.InitialContext.init(InitialContext.java:219)
    at javax.naming.InitialContext.<init>(InitialContext.java:195)
    at com.granite.xng.web.application.locator.EJBLocator.ejbHome(EJBLocator.java:265)
    ... 80 more
    Caused by: org.omg.CORBA.DATA_CONVERSION: vmcid: SUN minor code: 213 completed: No
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.illegalSocketFactoryType(O RBUtilSystemException.java:2362)
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.illegalSocketFactoryType(O RBUtilSystemException.java:2385)
    at com.sun.corba.ee.impl.orb.ParserTable$3.operate(ParserTable.java:462)
    ... 98 more
    |#]

    I am getting the same error as well
    cannot load libary 'stackdump': java.lang.UnsatisfiedLinkError: no stackdump in java.library.path
    I am creating a simple domain using the domain config wizard and I hope all the PATH and LD_LIBRARY_PATH are set by the default scripts. But I am still getting this error.
    But Kill -3 <PID> works though!
    Is is a know problem OR am I missing something?!
    Bala

  • Sun Ray Software Compatibility

    hi,
    i want to know about the Sun Ray Compatibility with windows.
    is Sun Ray server software is compatible with windows? OR
    it needs only linux or Sol for installation? if it needs Linux Or Sol for installation then how can it provide Windows Env on the Desktop?
    if someone has some Tech documents on how Sun Ray software works and configured, please inform me.
    Regards,
    Asghar

    Sun Ray Server Software runs only on Solaris and Linux, so you need at least one Solaris or Linux system to control your Sun Ray terminals. After you have that you can run a Windows client program (such as rdesktop, Citrix or Sun's Sun Ray Windows Connector) on the Sun Ray server, connect that program to a Windows machine running Terminal Services and have a Windows desktop presented on the Sun Ray.
    Sun Ray documentation for the current (3.1) release is at <http://docs.sun.com/app/docs/coll/1230.3>.

  • Sun One - Weblogic interoperability

    I have a web app on Sun One. I am trying to use an EJB on a weblogic server. I get the following error.
    Unexpected exception in LoginManagerHome:org.omg.CORBA.INITIALIZE: can't instantiate custom socket factory: weblogic.corba.client.cluster.ORBSocketFactory vmcid: 0x0 minor code: 0 completed: No
    I have added the weblogic jar and the wlclient.jar to the path. Can anyone point me in the right direction???

    SimpleRemoteStatelessSessionProxyFactoryBean can be substituted for SimpleRemoteStatelessSessionProxyFactoryBean2.
    It's just overridden to correct a bug in spring m3 that's fixed in m4:
    package org.springframework.ejb.access;
    import java.util.Iterator;
    import java.util.Map;
    import java.util.Properties;
    import javax.naming.NamingException;
    public class SimpleRemoteStatelessSessionProxyFactoryBean2 extends
              SimpleRemoteStatelessSessionProxyFactoryBean {
         public void afterPropertiesSet() throws NamingException {
              Properties properties = new Properties();
              for (Iterator iter = getJndiEnvironment().entrySet().iterator(); iter.hasNext();) {
              Map.Entry property = (Map.Entry) iter.next();
              properties.setProperty((String) property.getKey(),(String) property.getValue());
              setJndiEnvironment(properties);
              super.afterPropertiesSet();
    }

  • GCC and Sun Studio 12 compatibility ?

    What is the level of compatibility between g++ for SPARC systems and the Sun Studio C++ compilers for SPARC ?
    If I build a shared library using g++ for SPARC is it safe for objects built with the Sun C++ compilers to use these shared libraries ?

    They are completely incompatible, there is no way you can mix them.

  • Weblogic Compatability...help required

    can anyone help me regarding below
    I have windows server 2003 64 bit machine.. Can we install weblogic 10.3 32-bit application...
    pls help me
    Edited by: 797797 on Sep 26, 2010 11:06 PM

    Yes you can install and run a 32 bit WLS on 64 bit machine if this comes under supported configuration
    Please see this previous post:
    32-bit Weblogic on 64-bit machine
    Regards
    Girish

  • Sun hw platform compatibility

    Hi,
    This is about restoring ourSystem (solaris 8 for the moment)
    to another Sun hardware.
    Our System is running on a Sunfire-6800 server and
    when I restore our system into a Sunfire-4800, it works as it is running on the SF-6800. Few system files are modified to run our system on another hardware after complete restoration.
    But when I restore our system into a V-240 server, it does not.
    The reason is, I can say 4800 and 6800 are in the same family of hardware platform while V-240 is another family...
    I have two question:
    1- Is there a way or procedure to run my main system coming from SF-6800 on V-240 after certain changes/modifications ?
    2- What are the most compatible families to SF 6800? Is there any smaller (cheaper) server that I can restore and run my system with minimal changes and efforts ???

    Sun Ray Server Software runs only on Solaris and Linux, so you need at least one Solaris or Linux system to control your Sun Ray terminals. After you have that you can run a Windows client program (such as rdesktop, Citrix or Sun's Sun Ray Windows Connector) on the Sun Ray server, connect that program to a Windows machine running Terminal Services and have a Windows desktop presented on the Sun Ray.
    Sun Ray documentation for the current (3.1) release is at <http://docs.sun.com/app/docs/coll/1230.3>.

  • Jms from sun j2ee to bea weblogic

    Hy,
              is there a easy way to connect a JmsFactory from an j2ee sun server to a
              bea weblogic server?
              JMS API Tutorial shows an example for connecting two j2ee Server:
              j2eeadmin --addJmsFactory MyFactory queue -props
              url=corbaname:iiop:remoteserver:1050:#remoteserver
              Weblogic 7 seems to support iiop (on Port 7001?) but
              something is missing ... no connection could be made to send Messages
              from j2ee (sun) to weblogic server?
              Any hint?
              Best Regards,
              Holger
              

    Hi Holger,
              The WL JMS client does not support iiop in 7.0,
              although it does in 8.1 (beta soon). Instead use t3, a much
              faster protocol, or, if you need to tunnel, use http.
              Note that BEA has a comprehensive white-paper on integrating
              "foreign" JMS providers on dev2dev.bea.com:
              "Using Foreign JMS Providers With WebLogic Server"
              Tom
              Holger von Rhein wrote:
              > Hy,
              >
              > is there a easy way to connect a JmsFactory from an j2ee sun server to a
              > bea weblogic server?
              >
              > JMS API Tutorial shows an example for connecting two j2ee Server:
              >
              > j2eeadmin --addJmsFactory MyFactory queue -props
              > url=corbaname:iiop:remoteserver:1050:#remoteserver
              >
              > Weblogic 7 seems to support iiop (on Port 7001?) but
              > something is missing ... no connection could be made to send Messages
              > from j2ee (sun) to weblogic server?
              >
              > Any hint?
              >
              >
              > Best Regards,
              >
              > Holger
              >
              

  • Error connecting to websphere MQ from weblogic 10.3.0 :EndPointFinder

    1)     We are in process of connection from weblogic 10.3.0 to websphere MQ series . We are trying connecting to the response queues using MQclient binding . I created .binding file using following configuration
    DEFINE QCF(BBNMSRMSConnectionFactory2) QMGR(ESBMBJU2) CHAN(ESBMBJU2_SSL) HOST(bos69872.bst.bls.com) PORT(1414) TEMPMODEL(WEBLOGIC.MODEL.QUEUE) TRAN(CLIENT)
    DEFINE QCF(BBNMSRMSConnectionFactory2) QMGR(ESBMBJU2) CHAN(ESBMBJU2_SSL) HOST(bos69874.bst.bls.com) PORT(1415) TEMPMODEL(WEBLOGIC.MODEL.QUEUE) TRAN(CLIENT)
    DEFINE Q(BBNMSSERESPONSEQUEUE1) QUEUE(FUSIONQL.BBNMSE.BBNMSTORMS.1_0.D.JU.RSP) QMGR(ESBMBJU1) TARGCLIENT(MQ)
    DEFINE Q(BBNMSSERESPONSEQUEUE2) QUEUE(FUSIONQL.BBNMSE.BBNMSTORMS.1_0.D.JU.RSP) QMGR(ESBMBJU2) TARGCLIENT(MQ)
    DEFINE QCF(BBNMSRMSCF1) QMGR(ESBMBJU1) CHAN(ESBMBJU1_SSL) HOST(bos69872.bst.bls.com) PORT(1414) TEMPMODEL(WEBLOGIC.MODEL.QUEUE) TRAN(CLIENT)
    ALTER QCF(BBNMSRMSConnectionFactory1) CHAN(ESBMBJU1_SSL) SSLCIPHERSUITE(SSL_RSA_WITH_NULL_MD5)
    ALTER QCF(BBNMSRMSConnectionFactory2) CHAN(ESBMBJU2_SSL) SSLCIPHERSUITE(SSL_RSA_WITH_NULL_MD5)
    2)     The I created the foreign JMS-server as such :
    <foreign-server name="ForeignRmsServer-1">
    <default-targeting-enabled>true</default-targeting-enabled>
    <foreign-destination name="RmsFusionBusRequestQueue1">
    <local-jndi-name>RmsResponseQueue1</local-jndi-name>
    <remote-jndi-name>BBNMSSERESPONSEQUEUE1</remote-jndi-name>
    </foreign-destination>
    <foreign-connection-factory name="RmsFusionBusFactory1">
    <local-jndi-name>RmsFusionBusfactory1</local-jndi-name>
    <remote-jndi-name>BBNMSRMSConnectionFactory1</remote-jndi-name>
    <username>m66300d</username>
    <password-encrypted xsi:nil="true"/>
    </foreign-connection-factory>
    <initial-context-factory>com.sun.jndi.fscontext.RefFSContextFactory</initial-context-factory>
    <connection-url>file:/opt/mqm/java/bin/mqjndi</connection-url>
    </foreign-server>
    3)     Subsequently I use the JNDI names configured in foreign server(above) in weblogic-ejb-jar.xml .
    <weblogic-ejb-jar xmlns="http://www.bea.com/ns/weblogic/10.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <weblogic-enterprise-bean>
    <ejb-name>RMSRespMDB</ejb-name>
    <message-driven-descriptor>
    <pool>
    <max-beans-in-free-pool>10</max-beans-in-free-pool>
    <initial-beans-in-free-pool>5</initial-beans-in-free-pool>
    </pool>
    <destination-jndi-name>BBNMSSERESPONSEQUEUE1</destination-jndi-name>
    <initial-context-factory>com.sun.jndi.fscontext.RefFSContextFactory</initial-context-factory>
    <provider-url>file:/opt/mqm/java/bin/mqjndi</provider-url>
    <connection-factory-jndi-name>BBNMSRMSConnectionFactory1</connection-factory-jndi-name>
    </message-driven-descriptor>
    <transaction-descriptor>
    <trans-timeout-seconds>300</trans-timeout-seconds>
    </transaction-descriptor>
    <enable-call-by-reference>true</enable-call-by-reference>
    <jndi-name>jms.RMSRespMDB</jndi-name>
    <dispatch-policy>JbbosServicesServerXQ</dispatch-policy>
    </weblogic-enterprise-bean>
    <weblogic-compatibility>
    <entity-always-uses-transaction>true</entity-always-uses-transaction>
    </weblogic-compatibility>
    </weblogic-ejb-jar>
    4)     Now when my MDB comes up its giving following error
    Mar 8, 2011 10:13:16 AM EST> <Error> <Deployer> <BEA-149231> <Unable to set the activation state to true for the application
    'RMSRespMDB'.
    weblogic.application.ModuleException: Exception activating module: EJBModule(RMSRespMDB)
    Unable to deploy EJB: RMSRespMDB from RMSRespMDB.jar:
    unable to find EndPointFinder for file:/opt/mqm/java/bin/mqjndi
    at weblogic.ejb.container.deployer.EJBModule.activate(EJBModule.java:493)
    at weblogic.application.internal.flow.ModuleListenerInvoker.activate(ModuleListenerInvoker.java:107)
    at weblogic.application.internal.flow.DeploymentCallbackFlow$2.next(DeploymentCallbackFlow.java:411)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.flow.DeploymentCallbackFlow.activate(DeploymentCallbackFlow.java:74)
    Truncated. see log file for complete stacktrace
    java.lang.AssertionError: unable to find EndPointFinder for file:/opt/mqm/java/bin/mqjndi
    at weblogic.rmi.spi.RMIRuntime.getEndPointFinder(RMIRuntime.java:61)
    at weblogic.rmi.spi.RMIRuntime.findOrCreateEndPoint(RMIRuntime.java:42)
    at weblogic.rmi.extensions.server.RemoteDomainSecurityHelper.isRemoteDomain(RemoteDomainSecurityHelper.java:379)
    at weblogic.jms.common.ServerCrossDomainSecurityUtil.isRemoteDomain(ServerCrossDomainSecurityUtil.java:319)
    at weblogic.jms.common.ServerCrossDomainSecurityUtil.getRemoteSubject(ServerCrossDomainSecurityUtil.java:116)
    Truncated. see log file for complete stacktrace
    >
    My binding file is correctly placed on the following location file:/opt/mqm/java/bin/mqjndi with appropriate permissions
    Some info :
    Our weblogic version is 10.3.0
    I tracked this exception (unable to find EndPointFinder) to bug id 8168598
    Can anyone please suggest what can be issue potentially
    Thanks in advance

    hi,
    Even i want to connect webspere MQ 7 with weblogic 10.3, can u suggest me some document where i can follow step by step?
    I have too tried using some binding file,but it is not reading the same.

  • OIM 9.0.1.1 on Weblogic Failing

    My installation is failing and I cannot seem to get to the bottom of it. Any pointers / help here is appreciated.
    XIMDD does not report any problem prior to running the installation. The database operations all seem to occur successfully, but there are problems deploying to WebLogic. The myserver.log content and the Java VM System Properties Report from the XIMDD is included. The environment is:
    Windows Server 2003 / Weblogic 8.1 SP4 / JDK 142_05
    Windows Server 2003 / Oracle db 10.2.1
    XIMDD Java Report
    Test Name Java VM System Properties Report
    Description Prints out all the Java VM system properties.
    Result PASSED
    Details
    java.vendor Sun Microsystems Inc.
    org.xml.sax.parser weblogic.xml.jaxp.RegistryParser
    os.name Windows 2003
    sun.boot.class.path C:\bea\JDK142~1\jre\lib\rt.jar;C:\bea\JDK142~1\jre\lib\i18n.jar;C:\bea\JDK142~1\jre\lib\sunrsasign.jar;C:\bea\JDK142~1\jre\lib\jsse.jar;C:\bea\JDK142~1\jre\lib\jce.jar;C:\bea\JDK142~1\jre\lib\charsets.jar;C:\bea\JDK142~1\jre\classes
    sun.java2d.fontpath
    java.vm.specification.vendor Sun Microsystems Inc.
    java.runtime.version 1.4.2_05-b04
    weblogic.Name myserver
    jmx.implementation.vendor Sun Microsystems
    user.name rsquires
    jmx.implementation.name JMX RI
    user.language en
    java.naming.factory.initial weblogic.jndi.WLInitialContextFactory
    sun.boot.library.path C:\bea\JDK142~1\jre\bin
    jmx.specification.name Java Management Extensions
    java.version 1.4.2_05
    user.timezone America/New_York
    sun.arch.data.model 32
    javax.rmi.CORBA.UtilClass weblogic.iiop.UtilDelegateImpl
    jmx.specification.version 1.0 Final Release
    java.endorsed.dirs C:\bea\JDK142~1\jre\lib\endorsed
    vde.home .\myserver\ldap
    sun.cpu.isalist pentium i486 i386
    jmx.implementation.version 1.0
    file.encoding.pkg sun.io
    weblogic.mbeanLegalClause.ByPass false
    file.separator \
    java.specification.name Java Platform API Specification
    java.class.version 48.0
    user.country US
    java.home C:\bea\JDK142~1\jre
    java.vm.info mixed mode
    os.version 5.2
    org.omg.CORBA.ORBSingletonClass weblogic.corba.orb.ORB
    path.separator ;
    java.vm.version 1.4.2_05-b04
    java.util.prefs.PreferencesFactory java.util.prefs.WindowsPreferencesFactory
    user.variant
    java.protocol.handler.pkgs weblogic.utils|weblogic.utils|weblogic.net
    jmx.specification.vendor Sun Microsystems
    java.awt.printerjob sun.awt.windows.WPrinterJob
    java.security.policy C:\bea\WEBLOG~1\server\lib\weblogic.policy
    sun.io.unicode.encoding UnicodeLittle
    awt.toolkit sun.awt.windows.WToolkit
    java.naming.factory.url.pkgs weblogic.jndi.factories:weblogic.corba.j2ee.naming.url
    user.home C:\Documents and Settings\rsquires
    java.specification.vendor Sun Microsystems Inc.
    org.xml.sax.driver weblogic.apache.xerces.parsers.SAXParser
    java.library.path C:\bea\JDK142~1\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\bea\WEBLOG~1\server\bin;C:\bea\JDK142~1\jre\bin;C:\bea\JDK142~1\bin;C:\Perl\bin\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Dell\OpenManage\Array Manager;C:\Program Files\Dell\OpenManage\oma\bin;C:\Program Files\Dell\OpenManage\LU\bin;C:\Program Files\Dell\OpenManage\oldiags\bin;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;c:\tomcat\bin;C:\tomcat\j2sdk1.4.1_02\bin;C:\bin\tomcat50\bin;c:\cygwin\bin;C:\bea\jdk142_05\bin;C:\bea\WEBLOG~1\server\bin\oci920_8
    java.vendor.url http://java.sun.com/
    java.vm.vendor Sun Microsystems Inc.
    java.runtime.name Java(TM) 2 Runtime Environment, Standard Edition
    java.class.path C:\bea\JDK142~1\lib\tools.jar;C:\bea\WEBLOG~1\server\lib\weblogic_sp.jar;C:\bea\WEBLOG~1\server\lib\weblogic.jar;C:\bea\WEBLOG~1\server\lib\log4j-1.2.9.jar;C:\bea\WEBLOG~1\common\eval\pointbase\lib\pbserver44.jar;C:\bea\WEBLOG~1\common\eval\pointbase\lib\pbclient44.jar;C:\bea\JDK142~1\jre\lib\rt.jar;C:\bea\WEBLOG~1\server\lib\webservices.jar;
    Total Memory 6353648 Bytes
    java.vm.specification.name Java Virtual Machine Specification
    java.vm.specification.version 1.0
    javax.rmi.CORBA.PortableRemoteObjectClass weblogic.iiop.PortableRemoteObjectDelegateImpl
    sun.cpu.endian little
    sun.os.patch.level
    java.io.tmpdir C:\DOCUME~1\rsquires\LOCALS~1\Temp\
    java.vendor.url.bug http://java.sun.com/cgi-bin/bugreport.cgi
    os.arch x86
    java.awt.graphicsenv sun.awt.Win32GraphicsEnvironment
    java.ext.dirs C:\bea\JDK142~1\jre\lib\ext
    user.dir D:\bea\user_projects\domains\oim
    line.separator
    java.vm.name Java HotSpot(TM) Client VM
    javax.xml.soap.MessageFactory weblogic.webservice.core.soap.MessageFactoryImpl
    Free Memory 6353800 Bytes
    file.encoding Cp1252
    org.omg.CORBA.ORBClass weblogic.corba.orb.ORB
    javax.xml.rpc.ServiceFactory weblogic.webservice.core.rpc.ServiceFactoryImpl
    weblogic.ProductionModeEnabled
    java.specification.version 1.4
    Weblogic myserver.log
    ####<Jan 23, 2007 4:29:40 PM EST> <Notice> <Log Management> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-170019> <The server log file D:\bea\user_projects\domains\oim\myserver\myserver.log is opened. All server side log events will be written to this file.>
    ####<Jan 23, 2007 4:29:41 PM EST> <Info> <Security> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-090149> <The server security configuration has been loaded from C:\bea\weblogic81\server\lib\SecurityDefaultConfig.xml>
    ####<Jan 23, 2007 4:29:41 PM EST> <Info> <Security> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-090074> <Initializing RoleMapper provider using LDIF template file D:\bea\user_projects\domains\oim\.\DefaultRoleMapperInit.ldift.>
    ####<Jan 23, 2007 4:29:41 PM EST> <Info> <Security> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-090075> <The RoleMapper provider has had its LDIF information loaded from: D:\bea\user_projects\domains\oim\.\DefaultRoleMapperInit.ldift>
    ####<Jan 23, 2007 4:29:41 PM EST> <Info> <Security> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-090074> <Initializing Authorizer provider using LDIF template file D:\bea\user_projects\domains\oim\.\DefaultAuthorizerInit.ldift.>
    ####<Jan 23, 2007 4:29:41 PM EST> <Info> <Security> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-090075> <The Authorizer provider has had its LDIF information loaded from: D:\bea\user_projects\domains\oim\.\DefaultAuthorizerInit.ldift>
    ####<Jan 23, 2007 4:29:41 PM EST> <Info> <Security> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-090074> <Initializing Authenticator provider using LDIF template file D:\bea\user_projects\domains\oim\.\DefaultAuthenticatorInit.ldift.>
    ####<Jan 23, 2007 4:29:41 PM EST> <Info> <Security> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-090075> <The Authenticator provider has had its LDIF information loaded from: D:\bea\user_projects\domains\oim\.\DefaultAuthenticatorInit.ldift>
    ####<Jan 23, 2007 4:29:42 PM EST> <Info> <Security> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-090093> <No pre-WLS 8.1 Keystore providers are configured for server myserver for security realm myrealm.>
    ####<Jan 23, 2007 4:29:42 PM EST> <Notice> <Security> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-090082> <Security initializing using security realm myrealm.>
    ####<Jan 23, 2007 4:29:42 PM EST> <Notice> <WebLogicServer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-000327> <Starting WebLogic Admin Server "myserver" for domain "oim">
    ####<Jan 23, 2007 4:29:42 PM EST> <Info> <WebLogicServer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-000214> <WebLogic Server "myserver" version:
    WebLogic Server 8.1 SP4 Mon Nov 29 16:21:29 PST 2004 471647
    WebLogic XMLX Module 8.1 SP4 Mon Nov 29 16:21:29 PST 2004 471647 (c) 1995, 1996, 1997, 1998 WebLogic, Inc.
    (c) 1999, 2000, 2001 BEA Systems, Inc.>
    ####<Jan 23, 2007 4:29:42 PM EST> <Info> <WebLogicServer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-000215> <Loaded License : C:\bea\license.bea>
    ####<Jan 23, 2007 4:29:42 PM EST> <Info> <RJVM> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-000570> <Network Configuration for Channel "myserver"
    Listen Address          *
    Public Address          N/A
    Http Enabled          true
    Tunneling Enabled     false
    Outbound Enabled     false
    Admin Traffic Enabled     true>
    ####<Jan 23, 2007 4:29:42 PM EST> <Debug> <RJVM> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-000571> <Network Configuration Detail for Channel "myserver"
    Channel Weight          50
    Accept Backlog          50
    Login Timeout          5000ms
    Max Message Size     10000000
    Message Timeout     60s
    Idle Timeout          65s
    Tunneling Timeout     40s
    Tunneling Ping          45s>
    ####<Jan 23, 2007 4:29:42 PM EST> <Info> <XML> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-130036> <Initializing XMLRegistry.>
    ####<Jan 23, 2007 4:29:43 PM EST> <Info> <JDBC> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-001135> <Initializing the JDBC service.>
    ####<Jan 23, 2007 4:29:43 PM EST> <Info> <JDBC> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-001137> <Initialization complete.>
    ####<Jan 23, 2007 4:29:43 PM EST> <Info> <Connector> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-190000> <Initializing J2EE Connector Service>
    ####<Jan 23, 2007 4:29:43 PM EST> <Info> <Connector> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-190001> <J2EE Connector Service initialized successfully>
    ####<Jan 23, 2007 4:29:43 PM EST> <Info> <IIOP> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-002014> <IIOP subsystem enabled.>
    ####<Jan 23, 2007 4:29:43 PM EST> <Info> <JMS> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-040090> <Deployed 5 default connection factories.>
    ####<Jan 23, 2007 4:29:43 PM EST> <Info> <JMS> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-040305> <JMS service is initialized and in standby mode.>
    ####<Jan 23, 2007 4:29:43 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-101128> <Initializing HTTP services.>
    ####<Jan 23, 2007 4:29:43 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-101133> <Initializing Web server myserver.>
    ####<Jan 23, 2007 4:29:43 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-101052> <[HTTP myserver] Initialized>
    ####<Jan 23, 2007 4:29:43 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-101135> <myserver is the default Web server.>
    ####<Jan 23, 2007 4:29:43 PM EST> <Info> <J2EE> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-160037> <J2EE service initializing.>
    ####<Jan 23, 2007 4:29:43 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149207> <Initializing.>
    ####<Jan 23, 2007 4:29:45 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149059> <Module console of application console is transitioning from unprepared to prepared on server myserver.>
    ####<Jan 23, 2007 4:29:45 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149060> <Module console of application console successfully transitioned from unprepared to prepared on server myserver.>
    ####<Jan 23, 2007 4:29:45 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149059> <Module uddi of application uddi is transitioning from unprepared to prepared on server myserver.>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149060> <Module uddi of application uddi successfully transitioned from unprepared to prepared on server myserver.>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149059> <Module uddiexplorer of application uddiexplorer is transitioning from unprepared to prepared on server myserver.>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149060> <Module uddiexplorer of application uddiexplorer successfully transitioned from unprepared to prepared on server myserver.>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149059> <Module wl_management_internal1 of application wl_management_internal1 is transitioning from unprepared to prepared on server myserver.>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149060> <Module wl_management_internal1 of application wl_management_internal1 successfully transitioned from unprepared to prepared on server myserver.>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149059> <Module wl_management_internal2 of application wl_management_internal2 is transitioning from unprepared to prepared on server myserver.>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149060> <Module wl_management_internal2 of application wl_management_internal2 successfully transitioned from unprepared to prepared on server myserver.>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149059> <Module console of application console is transitioning from prepared to active on server myserver.>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149060> <Module console of application console successfully transitioned from prepared to active on server myserver.>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <main> <<anonymous>> <> <BEA-101047> <[ServletContext(id=1784167,name=console,context-path=/console)] WebServiceServlet: init>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149059> <Module uddi of application uddi is transitioning from prepared to active on server myserver.>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149060> <Module uddi of application uddi successfully transitioned from prepared to active on server myserver.>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <main> <<anonymous>> <> <BEA-101047> <[ServletContext(id=18026635,name=uddi,context-path=/uddi)] WebServiceServlet: init>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149059> <Module uddiexplorer of application uddiexplorer is transitioning from prepared to active on server myserver.>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149060> <Module uddiexplorer of application uddiexplorer successfully transitioned from prepared to active on server myserver.>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <main> <<anonymous>> <> <BEA-101047> <[ServletContext(id=28839323,name=uddiexplorer,context-path=/uddiexplorer)] WebServiceServlet: init>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149059> <Module wl_management_internal1 of application wl_management_internal1 is transitioning from prepared to active on server myserver.>
    ####<Jan 23, 2007 4:29:46 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149060> <Module wl_management_internal1 of application wl_management_internal1 successfully transitioned from prepared to active on server myserver.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <main> <<anonymous>> <> <BEA-101047> <[ServletContext(id=21570718,name=wl_management_internal1,context-path=/wl_management_internal1)] WebServiceServlet: init>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149059> <Module wl_management_internal2 of application wl_management_internal2 is transitioning from prepared to active on server myserver.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149060> <Module wl_management_internal2 of application wl_management_internal2 successfully transitioned from prepared to active on server myserver.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <main> <<anonymous>> <> <BEA-101047> <[ServletContext(id=18394110,name=wl_management_internal2,context-path=/wl_management_internal2)] WebServiceServlet: init>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149208> <Initialization Complete.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <JTA> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-110441> <Opening transaction log with driver version "j1.0" and synchronous write policy "Cache-Flush". For information on synchronous write policies, refer to the weblogic.management.configuration.ServerMBean javadoc or console online help.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Notice> <JTA> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-110025> <Creating new transaction log file [.\myserver\./myserver.0000.tlog].>
    ####<Jan 23, 2007 4:29:47 PM EST> <Notice> <JTA> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-110025> <Creating new transaction log file [.\myserver\./myserver.heur.0000.tlog].>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <JDBC> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-001138> <Resuming the JDBC service.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <JDBC> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-001140> <Resume complete.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <JMS> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-040108> <User connection factory "DefaultXAConnectionFactory" is started.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <JMS> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-040108> <User connection factory "QueueConnectionFactory" is started.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <JMS> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-040108> <User connection factory "MessageDrivenBeanConnectionFactory" is started.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <JMS> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-040108> <User connection factory "DefaultConnectionFactory" is started.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <JMS> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-040108> <User connection factory "TopicConnectionFactory" is started.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <JMS> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-040306> <JMS service is active now.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-101129> <Initializing the Web application container.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-101238> <HTTP log rotation is size based for the Web server: myserver.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-101051> <[HTTP myserver] started>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <JMS> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-040321> <JMSServer "WSStoreForwardInternalJMSServermyserver" is resuming.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <JMS> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-040113> <JMSServer "WSStoreForwardInternalJMSServermyserver", Opening file store "FileStore" in directory "D:\bea\user_projects\domains\oim\.\rmfilestore". Starting scan of 0 files totalling 0 bytes.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <JMS> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-040114> <JMSServer "WSStoreForwardInternalJMSServermyserver", Finished scan of file store "FileStore" in directory "D:\bea\user_projects\domains\oim\.\rmfilestore". Found 0 records totalling 0 bytes.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <JMS> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-040010> <JMSServer "WSStoreForwardInternalJMSServermyserver" configured no session pools.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <JMS> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-040109> <JMSServer "WSStoreForwardInternalJMSServermyserver" is started.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <WebService> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-220027> <Web Service reliable agents are started on the server.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149209> <Resuming.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-101133> <Initializing Web server myserver.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-149210> <Resumed.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <Management> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-141187> <Java system properties are defined as follows:
    awt.toolkit = sun.awt.windows.WToolkit
    file.encoding = Cp1252
    file.encoding.pkg = sun.io
    file.separator = \
    java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob = sun.awt.windows.WPrinterJob
    java.class.path = C:\bea\JDK142~1\lib\tools.jar;C:\bea\WEBLOG~1\server\lib\weblogic_sp.jar;C:\bea\WEBLOG~1\server\lib\weblogic.jar;C:\bea\WEBLOG~1\server\lib\log4j-1.2.9.jar;C:\bea\WEBLOG~1\common\eval\pointbase\lib\pbserver44.jar;C:\bea\WEBLOG~1\common\eval\pointbase\lib\pbclient44.jar;C:\bea\JDK142~1\jre\lib\rt.jar;C:\bea\WEBLOG~1\server\lib\webservices.jar;
    java.class.version = 48.0
    java.endorsed.dirs = C:\bea\JDK142~1\jre\lib\endorsed
    java.ext.dirs = C:\bea\JDK142~1\jre\lib\ext
    java.home = C:\bea\JDK142~1\jre
    java.io.tmpdir = C:\DOCUME~1\rsquires\LOCALS~1\Temp\
    java.library.path = C:\bea\JDK142~1\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\bea\WEBLOG~1\server\bin;C:\bea\JDK142~1\jre\bin;C:\bea\JDK142~1\bin;C:\Perl\bin\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Dell\OpenManage\Array Manager;C:\Program Files\Dell\OpenManage\oma\bin;C:\Program Files\Dell\OpenManage\LU\bin;C:\Program Files\Dell\OpenManage\oldiags\bin;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;c:\tomcat\bin;C:\tomcat\j2sdk1.4.1_02\bin;C:\bin\tomcat50\bin;c:\cygwin\bin;C:\bea\jdk142_05\bin;C:\bea\WEBLOG~1\server\bin\oci920_8
    java.naming.factory.initial = weblogic.jndi.WLInitialContextFactory
    java.naming.factory.url.pkgs = weblogic.jndi.factories:weblogic.corba.j2ee.naming.url
    java.protocol.handler.pkgs = weblogic.utils|weblogic.utils|weblogic.net
    java.runtime.name = Java(TM) 2 Runtime Environment, Standard Edition
    java.runtime.version = 1.4.2_05-b04
    java.security.policy = C:\bea\WEBLOG~1\server\lib\weblogic.policy
    java.specification.name = Java Platform API Specification
    java.specification.vendor = Sun Microsystems Inc.
    java.specification.version = 1.4
    java.util.prefs.PreferencesFactory = java.util.prefs.WindowsPreferencesFactory
    java.vendor = Sun Microsystems Inc.
    java.vendor.url = http://java.sun.com/
    java.vendor.url.bug = http://java.sun.com/cgi-bin/bugreport.cgi
    java.version = 1.4.2_05
    java.vm.info = mixed mode
    java.vm.name = Java HotSpot(TM) Client VM
    java.vm.specification.name = Java Virtual Machine Specification
    java.vm.specification.vendor = Sun Microsystems Inc.
    java.vm.specification.version = 1.0
    java.vm.vendor = Sun Microsystems Inc.
    java.vm.version = 1.4.2_05-b04
    javax.rmi.CORBA.PortableRemoteObjectClass = weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass = weblogic.iiop.UtilDelegateImpl
    javax.xml.rpc.ServiceFactory = weblogic.webservice.core.rpc.ServiceFactoryImpl
    javax.xml.soap.MessageFactory = weblogic.webservice.core.soap.MessageFactoryImpl
    jmx.implementation.name = JMX RI
    jmx.implementation.vendor = Sun Microsystems
    jmx.implementation.version = 1.0
    jmx.specification.name = Java Management Extensions
    jmx.specification.vendor = Sun Microsystems
    jmx.specification.version = 1.0 Final Release
    org.omg.CORBA.ORBClass = weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass = weblogic.corba.orb.ORB
    org.xml.sax.driver = weblogic.apache.xerces.parsers.SAXParser
    org.xml.sax.parser = weblogic.xml.jaxp.RegistryParser
    os.arch = x86
    os.name = Windows 2003
    os.version = 5.2
    path.separator = ;
    sun.arch.data.model = 32
    sun.boot.class.path = C:\bea\JDK142~1\jre\lib\rt.jar;C:\bea\JDK142~1\jre\lib\i18n.jar;C:\bea\JDK142~1\jre\lib\sunrsasign.jar;C:\bea\JDK142~1\jre\lib\jsse.jar;C:\bea\JDK142~1\jre\lib\jce.jar;C:\bea\JDK142~1\jre\lib\charsets.jar;C:\bea\JDK142~1\jre\classes
    sun.boot.library.path = C:\bea\JDK142~1\jre\bin
    sun.cpu.endian = little
    sun.cpu.isalist = pentium i486 i386
    sun.io.unicode.encoding = UnicodeLittle
    user.country = US
    user.dir = D:\bea\user_projects\domains\oim
    user.home = C:\Documents and Settings\rsquires
    user.language = en
    user.name = rsquires
    user.timezone = America/New_York
    vde.home = .\myserver\ldap
    weblogic.Name = myserver
    weblogic.mbeanLegalClause.ByPass = false
    >
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <Management> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-141052> <The application poller has started for the development server.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <Socket> <SNSSRV101> <myserver> <ListenThread.Default> <<WLS Kernel>> <> <BEA-000406> <NTSocketMuxer was built on May 20 2004 21:15:15
    >
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <Socket> <SNSSRV101> <myserver> <ListenThread.Default> <<WLS Kernel>> <> <BEA-000436> <Allocating 2 reader threads.>
    ####<Jan 23, 2007 4:29:47 PM EST> <Info> <Socket> <SNSSRV101> <myserver> <ListenThread.Default> <<WLS Kernel>> <> <BEA-000440> <NativeIO Enabled>
    ####<Jan 23, 2007 4:29:47 PM EST> <Notice> <WebLogicServer> <SNSSRV101> <myserver> <ListenThread.Default> <<WLS Kernel>> <> <BEA-000355> <Thread "ListenThread.Default" listening on port 7001, ip address *.*>
    ####<Jan 23, 2007 4:29:47 PM EST> <Notice> <WebLogicServer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-000331> <Started WebLogic Admin Server "myserver" for domain "oim" running in Development Mode>
    ####<Jan 23, 2007 4:29:47 PM EST> <Notice> <WebLogicServer> <SNSSRV101> <myserver> <main> <<WLS Kernel>> <> <BEA-000360> <Server started in RUNNING mode>
    ####<Jan 23, 2007 4:29:48 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '2' for queue: 'weblogic.admin.RMI'> <<WLS Kernel>> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:29:48 PM EST> <Info> <Configuration Management> <SNSSRV101> <myserver> <ExecuteThread: '2' for queue: 'weblogic.admin.RMI'> <<WLS Kernel>> <> <BEA-150007> <The booted configuration .\config.xml has been backed up at D:\bea\user_projects\domains\oim\.\config.xml.booted.>
    ####<Jan 23, 2007 4:29:56 PM EST> <Info> <Application Poller> <SNSSRV101> <myserver> <ExecuteThread: '3' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149400> <Activating application: appsdirXIMDD_war>
    ####<Jan 23, 2007 4:29:56 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '3' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149038> <A deployment task with ID 0 for application appsdirXIMDD_war is being initiated.>
    ####<Jan 23, 2007 4:29:56 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '4' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149033> <preparing application appsdirXIMDD_war on myserver>
    ####<Jan 23, 2007 4:29:57 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '4' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149059> <Module XIMDD of application appsdirXIMDD_war is transitioning from unprepared to prepared on server myserver.>
    ####<Jan 23, 2007 4:29:57 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '4' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149060> <Module XIMDD of application appsdirXIMDD_war successfully transitioned from unprepared to prepared on server myserver.>
    ####<Jan 23, 2007 4:29:57 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '4' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149033> <prepared application appsdirXIMDD_war on myserver>
    ####<Jan 23, 2007 4:29:57 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '4' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149033> <activating application appsdirXIMDD_war on myserver>
    ####<Jan 23, 2007 4:29:57 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '4' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149059> <Module XIMDD of application appsdirXIMDD_war is transitioning from prepared to active on server myserver.>
    ####<Jan 23, 2007 4:29:57 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '4' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149060> <Module XIMDD of application appsdirXIMDD_war successfully transitioned from prepared to active on server myserver.>
    ####<Jan 23, 2007 4:29:57 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <ExecuteThread: '4' for queue: 'weblogic.kernel.System'> <<anonymous>> <> <BEA-101047> <[ServletContext(id=20827989,name=XIMDD,context-path=/XIMDD)] WebServiceServlet: init>
    ####<Jan 23, 2007 4:29:57 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '4' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149033> <activated application appsdirXIMDD_war on myserver>
    ####<Jan 23, 2007 4:29:58 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '4' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:29:58 PM EST> <Info> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '4' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149074> <Successfully completed deployment task: [Deployer:149026]Deploy application appsdirXIMDD_war on myserver.>
    ####<Jan 23, 2007 4:30:07 PM EST> <Info> <WebLogicServer> <SNSSRV101> <myserver> <ListenThread.Default> <<WLS Kernel>> <> <BEA-000213> <Adding address: 10.18.128.209 to licensed client list>
    ####<Jan 23, 2007 4:30:07 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <ExecuteThread: '14' for queue: 'weblogic.kernel.Default'> <<anonymous>> <> <BEA-101047> <[ServletContext(id=20827989,name=XIMDD,context-path=/XIMDD)] /*: init>
    ####<Jan 23, 2007 4:30:07 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <ExecuteThread: '14' for queue: 'weblogic.kernel.Default'> <<anonymous>> <> <BEA-101047> <[ServletContext(id=20827989,name=XIMDD,context-path=/XIMDD)] /*: Using standard I/O>
    ####<Jan 23, 2007 4:30:09 PM EST> <Info> <HTTP> <SNSSRV101> <myserver> <ExecuteThread: '14' for queue: 'weblogic.kernel.Default'> <<anonymous>> <> <BEA-101047> <[ServletContext(id=20827989,name=XIMDD,context-path=/XIMDD)] SystemVerificationServlet: init>
    ####<Jan 23, 2007 4:42:36 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '1' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:42:36 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '2' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:42:36 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '1' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:42:36 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '0' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:42:36 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '1' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:42:37 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '0' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:42:37 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '2' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:42:37 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '1' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:42:37 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '0' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:42:37 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '2' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:42:37 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '1' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:42:38 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '0' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:42:38 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '2' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:42:38 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '0' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:42:38 PM EST> <Info> <Management> <SNSSRV101> <myserver> <ExecuteThread: '1' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-140009> <Configuration changes for the domain have been saved to the repository.>
    ####<Jan 23, 2007 4:48:58 PM EST> <Warning> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '2' for queue: 'weblogic.admin.RMI'> <<WLS Kernel>> <> <BEA-149001> <No application named Nexaweb exists for operation remove>
    ####<Jan 23, 2007 4:48:58 PM EST> <Debug> <Management> <SNSSRV101> <myserver> <ExecuteThread: '2' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-141132> <Dynamic invocation while executing action remove on oim:Location=myserver,Name=DeployerRuntime,ServerRuntime=myserver,Type=DeployerRuntime MBean instance failed. The method remove with signature [java.lang.String, weblogic.management.deploy.DeploymentData, java.lang.String, boolean] was invoked with parameters as [Nexaweb, Delete Files:false
    Timeout :3600000
    Targets:
    oim: (Modules: null)
    Files:
    null
    , null, false].
    weblogic.management.ManagementException: [Deployer:149001]No application named Nexaweb exists for operation remove
         at weblogic.management.deploy.DeployerRuntime.unprotectedRemove(DeployerRuntime.java:1102)
         at weblogic.management.deploy.DeployerRuntime.access$200(DeployerRuntime.java:69)
         at weblogic.management.deploy.DeployerRuntime$1.run(DeployerRuntime.java:1539)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.DeployerRuntime.checkAndPerformDeployerActions(DeployerRuntime.java:1523)
         at weblogic.management.deploy.DeployerRuntime.remove(DeployerRuntime.java:251)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:754)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:733)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1560)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1528)
         at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:988)
         at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:946)
         at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    >
    ####<Jan 23, 2007 4:48:59 PM EST> <Warning> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '2' for queue: 'weblogic.admin.RMI'> <<WLS Kernel>> <> <BEA-149001> <No application named Xellerate exists for operation remove>
    ####<Jan 23, 2007 4:48:59 PM EST> <Debug> <Management> <SNSSRV101> <myserver> <ExecuteThread: '2' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-141132> <Dynamic invocation while executing action remove on oim:Location=myserver,Name=DeployerRuntime,ServerRuntime=myserver,Type=DeployerRuntime MBean instance failed. The method remove with signature [java.lang.String, weblogic.management.deploy.DeploymentData, java.lang.String, boolean] was invoked with parameters as [Xellerate, Delete Files:false
    Timeout :3600000
    Targets:
    oim: (Modules: null)
    Files:
    null
    , null, false].
    weblogic.management.ManagementException: [Deployer:149001]No application named Xellerate exists for operation remove
         at weblogic.management.deploy.DeployerRuntime.unprotectedRemove(DeployerRuntime.java:1102)
         at weblogic.management.deploy.DeployerRuntime.access$200(DeployerRuntime.java:69)
         at weblogic.management.deploy.DeployerRuntime$1.run(DeployerRuntime.java:1539)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.DeployerRuntime.checkAndPerformDeployerActions(DeployerRuntime.java:1523)
         at weblogic.management.deploy.DeployerRuntime.remove(DeployerRuntime.java:251)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:754)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:733)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1560)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1528)
         at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:988)
         at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:946)
         at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    >
    ####<Jan 23, 2007 4:49:21 PM EST> <Warning> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '0' for queue: 'weblogic.admin.RMI'> <<WLS Kernel>> <> <BEA-149001> <No application named Nexaweb exists for operation remove>
    ####<Jan 23, 2007 4:49:21 PM EST> <Debug> <Management> <SNSSRV101> <myserver> <ExecuteThread: '0' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-141132> <Dynamic invocation while executing action remove on oim:Location=myserver,Name=DeployerRuntime,ServerRuntime=myserver,Type=DeployerRuntime MBean instance failed. The method remove with signature [java.lang.String, weblogic.management.deploy.DeploymentData, java.lang.String, boolean] was invoked with parameters as [Nexaweb, Delete Files:false
    Timeout :3600000
    Targets:
    oim: (Modules: null)
    Files:
    null
    , null, false].
    weblogic.management.ManagementException: [Deployer:149001]No application named Nexaweb exists for operation remove
         at weblogic.management.deploy.DeployerRuntime.unprotectedRemove(DeployerRuntime.java:1102)
         at weblogic.management.deploy.DeployerRuntime.access$200(DeployerRuntime.java:69)
         at weblogic.management.deploy.DeployerRuntime$1.run(DeployerRuntime.java:1539)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.DeployerRuntime.checkAndPerformDeployerActions(DeployerRuntime.java:1523)
         at weblogic.management.deploy.DeployerRuntime.remove(DeployerRuntime.java:251)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:754)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:733)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1560)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1528)
         at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:988)
         at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:946)
         at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    >
    ####<Jan 23, 2007 4:49:22 PM EST> <Warning> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '2' for queue: 'weblogic.admin.RMI'> <<WLS Kernel>> <> <BEA-149001> <No application named Xellerate exists for operation remove>
    ####<Jan 23, 2007 4:49:22 PM EST> <Debug> <Management> <SNSSRV101> <myserver> <ExecuteThread: '2' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-141132> <Dynamic invocation while executing action remove on oim:Location=myserver,Name=DeployerRuntime,ServerRuntime=myserver,Type=DeployerRuntime MBean instance failed. The method remove with signature [java.lang.String, weblogic.management.deploy.DeploymentData, java.lang.String, boolean] was invoked with parameters as [Xellerate, Delete Files:false
    Timeout :3600000
    Targets:
    oim: (Modules: null)
    Files:
    null
    , null, false].
    weblogic.management.ManagementException: [Deployer:149001]No application named Xellerate exists for operation remove
         at weblogic.management.deploy.DeployerRuntime.unprotectedRemove(DeployerRuntime.java:1102)
         at weblogic.management.deploy.DeployerRuntime.access$200(DeployerRuntime.java:69)
         at weblogic.management.deploy.DeployerRuntime$1.run(DeployerRuntime.java:1539)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.DeployerRuntime.checkAndPerformDeployerActions(DeployerRuntime.java:1523)
         at weblogic.management.deploy.DeployerRuntime.remove(DeployerRuntime.java:251)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:754)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:733)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1560)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1528)
         at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:988)
         at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:946)
         at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    >
    ####<Jan 23, 2007 4:49:46 PM EST> <Warning> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '2' for queue: 'weblogic.admin.RMI'> <<WLS Kernel>> <> <BEA-149001> <No application named Nexaweb exists for operation remove>
    ####<Jan 23, 2007 4:49:46 PM EST> <Debug> <Management> <SNSSRV101> <myserver> <ExecuteThread: '2' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-141132> <Dynamic invocation while executing action remove on oim:Location=myserver,Name=DeployerRuntime,ServerRuntime=myserver,Type=DeployerRuntime MBean instance failed. The method remove with signature [java.lang.String, weblogic.management.deploy.DeploymentData, java.lang.String, boolean] was invoked with parameters as [Nexaweb, Delete Files:false
    Timeout :3600000
    Targets:
    oim: (Modules: null)
    Files:
    null
    , null, false].
    weblogic.management.ManagementException: [Deployer:149001]No application named Nexaweb exists for operation remove
         at weblogic.management.deploy.DeployerRuntime.unprotectedRemove(DeployerRuntime.java:1102)
         at weblogic.management.deploy.DeployerRuntime.access$200(DeployerRuntime.java:69)
         at weblogic.management.deploy.DeployerRuntime$1.run(DeployerRuntime.java:1539)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.DeployerRuntime.checkAndPerformDeployerActions(DeployerRuntime.java:1523)
         at weblogic.management.deploy.DeployerRuntime.remove(DeployerRuntime.java:251)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:754)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:733)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1560)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1528)
         at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:988)
         at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:946)
         at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    >
    ####<Jan 23, 2007 4:49:47 PM EST> <Warning> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '0' for queue: 'weblogic.admin.RMI'> <<WLS Kernel>> <> <BEA-149001> <No application named Xellerate exists for operation remove>
    ####<Jan 23, 2007 4:49:47 PM EST> <Debug> <Management> <SNSSRV101> <myserver> <ExecuteThread: '0' for queue: 'weblogic.admin.RMI'> <oimsvc> <> <BEA-141132> <Dynamic invocation while executing action remove on oim:Location=myserver,Name=DeployerRuntime,ServerRuntime=myserver,Type=DeployerRuntime MBean instance failed. The method remove with signature [java.lang.String, weblogic.management.deploy.DeploymentData, java.lang.String, boolean] was invoked with parameters as [Xellerate, Delete Files:false
    Timeout :3600000
    Targets:
    oim: (Modules: null)
    Files:
    null
    , null, false].
    weblogic.management.ManagementException: [Deployer:149001]No application named Xellerate exists for operation remove
         at weblogic.management.deploy.DeployerRuntime.unprotectedRemove(DeployerRuntime.java:1102)
         at weblogic.management.deploy.DeployerRuntime.access$200(DeployerRuntime.java:69)
         at weblogic.management.deploy.DeployerRuntime$1.run(DeployerRuntime.java:1539)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.DeployerRuntime.checkAndPerformDeployerActions(DeployerRuntime.java:1523)
         at weblogic.management.deploy.DeployerRuntime.remove(DeployerRuntime.java:251)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:754)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:733)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1560)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1528)
         at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:988)
         at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:946)
         at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    >
    ####<Jan 23, 2007 4:50:15 PM EST> <Error> <Deployer> <SNSSRV101> <myserver> <ExecuteThread: '2' for queue: 'weblogic.admin.RMI'> <<WLS Kernel>> <> <BEA-149010> <Target oim is not configured. Unable to deploy application Xellerate.>
    ####<Jan 23, 2007 4:50:15 PM EST> <Warning> <Deployer> <SNSSRV101>

    Ryan,
    I'm starting to set up the same environment as you. The purpose is to learn as I'm a newbie to IdM. What are all the components I will need to install? From the tutorials/docs on this site I was able to conclude:
    Oracle DB
    App Server - tutorial uses JBoss...I'd rather use WebLogic to learn it as well
    Oracle Identity Manager
    Does sequence matter? Unfortunately, the tutorials aren't as detailed as, for example, Microsoft's Walkthroughs for MIIS 2003.
    Thanks and sorry to bug you with newbie questions.

  • Https with JSSE

    Hi,
    I am trying to write a simple client to connect to a https server.
    I have a .crt and a .key files generated with openssl for the server.
    As I understand I need to use those somehow to make a connection to the server. Otherwise I will always get "unable to find valid certification path to requested target".
    How can I do that.
    PS: If that's not the problem, plz, tell me what is then.
    Thank you.

    hi,
    user URL( "https","www.verisign.com","443","",new
    com.sun.net.ssl.internal.www.protocol.https.Handler()); to create url.
    thanks
    kiran
    "Junaid" <[email protected]> wrote in message
    news:3cc84396$[email protected]..
    >
    I'm writing an Https client, running within WebLogic. Can I use Sun's JSSEimplementation
    instead of WebLogic's? I set the Sun JSSE provider at position 1, as wellas setting
    the protocol handler to Sun's implementation. However my client program(running
    within WebLogic) still seeems to be using WebLogic's SSL (and https)implementations.
    Is there a way to NOT use WebLogic's SSL implementation?
    Thanks!

  • SSL/HTTPS with JSSE

    I'm writing an Https client, running within WebLogic. Can I use Sun's JSSE implementation
    instead of WebLogic's? I set the Sun JSSE provider at position 1, as well as setting
    the protocol handler to Sun's implementation. However my client program (running
    within WebLogic) still seeems to be using WebLogic's SSL (and https) implementations.
    Is there a way to NOT use WebLogic's SSL implementation?
    Thanks!

    hi,
    user URL( "https","www.verisign.com","443","",new
    com.sun.net.ssl.internal.www.protocol.https.Handler()); to create url.
    thanks
    kiran
    "Junaid" <[email protected]> wrote in message
    news:3cc84396$[email protected]..
    >
    I'm writing an Https client, running within WebLogic. Can I use Sun's JSSEimplementation
    instead of WebLogic's? I set the Sun JSSE provider at position 1, as wellas setting
    the protocol handler to Sun's implementation. However my client program(running
    within WebLogic) still seeems to be using WebLogic's SSL (and https)implementations.
    Is there a way to NOT use WebLogic's SSL implementation?
    Thanks!

  • JSSE Error in JRE 1.3.1

    Hi,
    I've got a really strange issue using JRE 1.3.1. I keep getting a Socket Closed exception when trying to connect to when in 1.3.1. If I use JRE 1.4.2...it works fine! I'm user Websphere and I've noticed that IBM has their own implementaion of JSSE...I've tried to use it as well as using the standard SUN JSSE plugins for 1.3.1. Upgrading the server to JRE 1.4 is not an option for me so I have to try to get it to work with 1.3.1. I've been pulling my hair out on this for the last few days and haven't gotten anywhere...anybody experience the same issue?
    ERROR MESSAGE....
    java.net.SocketException: Socket closed
         at java.net.PlainSocketImpl.socketGetOption(Native Method)
         at java.net.PlainSocketImpl.getOption(PlainSocketImpl.java:198)
         at java.net.Socket.getSendBufferSize(Socket.java:526)
         at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:703)
         at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:860)
         at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:625)
         at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:526)

    This if from the jdk1.4.1 documentation
    Cause: Some SSL/TLS servers will disconnect if a ClientHello message is received in a format it doesn't understand or with a protocol version number that it doesn't support.
    Solution: Try adjusting the protocols in SSLSocket.setEnabledProtocols. For example, some older server implementations speak only SSLv3 and do not understand TLS. Ideally, these implementations should negotiate to SSLv3, but some simply hangup. For backwards compatibility, some server implementations (such as SunJSSE) send SSLv3/TLS ClientHellos encapsulated in a SSLv2 ClientHello packet. Some servers do not accept this format, in these cases use setEnabledProtocols to disable the sending of encapsulated SSLv2 ClientHellos.

Maybe you are looking for