SSL bug in WebLogic Server 6.1 SP1 ?

Anybody have any idea why I get this exception:
java.lang.ClassCastException: weblogic.management.WebLogicObjectName
     at $Proxy0.getKernelDebug(Unknown Source)
     at weblogic.management.configuration.ServerMBean_CachingStub.getKernelDebug(ServerMBean_CachingStub.java:1185)
     at weblogic.kernel.Kernel.getDebug(Kernel.java:145)
     at weblogic.security.RSApkcs1.<init>(RSApkcs1.java:58)
     at weblogic.security.RSAMDSignature.<init>(RSAMDSignature.java:48)
     at weblogic.security.RSAMDSignature.<init>(RSAMDSignature.java:77)
     at weblogic.security.X509.verifySignature(X509.java:242)
     at weblogic.security.X509.verify(X509.java:172)
     at weblogic.security.SSL.SSLCertificate.verify(SSLCertificate.java:139)
     at weblogic.security.SSL.SSLCertificate.input(SSLCertificate.java:118)
     at weblogic.security.SSL.Handshake.input(Handshake.java:115)
     at weblogic.security.SSL.SSLSocket.getHandshake(SSLSocket.java:1043)
     at weblogic.security.SSL.SSLSocket.clientInit(SSLSocket.java:405)
     at weblogic.security.SSL.SSLSocket.initialize(SSLSocket.java:265)
     at weblogic.security.SSL.SSLSocket.<init>(SSLSocket.java:212)
     at weblogic.net.http.HttpsClient.openServer(HttpsClient.java:85)
     at weblogic.net.http.HttpsClient.openServer(HttpsClient.java:143)
     at weblogic.net.http.HttpsClient.<init>(HttpsClient.java:67)
     at weblogic.net.http.HttpClient.New(HttpClient.java:151)
     at weblogic.net.http.HttpsURLConnection.connect(HttpsURLConnection.java:39)
     at weblogic.net.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:156)
when trying to open a HTTPS connection using the JSSE? Relevant code
is:
String handlers =
System.getProperty("java.protocol.handler.pkgs");
System.setProperty("java.protocol.handler.pkgs",
"com.sun.net.ssl.internal.www.protocol|" + handlers);
java.security.Security.addProvider(new
com.sun.net.ssl.internal.ssl.Provider());
X509TrustManager tm = new MyX509TrustManager();
KeyManager []km = null;
TrustManager []tma = {tm};
SSLContext sc = SSLContext.getInstance("ssl");
sc.init(km, tma, new java.security.SecureRandom());
SSLSocketFactory sf1 = sc.getSocketFactory();
HttpsURLConnection.setDefaultSSLSocketFactory(sf1);
URL u = new URL(url);
c = (HttpURLConnection) u.openConnection();

We get a similar message just by starting a server in the cluster
environment ...
We're using 6.1 SP2!
####<Jul 22, 2002 8:04:31 PM CEST> <Error> <Kernel> <su37sr48>
<su37sr48-2> <ExecuteThread: '0' for queue:
'__weblogic_admin_rmi_queue'> <system> <> <000000> <ExecuteRequest
failed>
java.lang.ClassCastException: weblogic.management.WebLogicObjectName
     at $Proxy0.getSSL(Unknown Source)
     at weblogic.management.configuration.ServerMBean_CachingStub.getSSL(ServerMBean_CachingStub.java:1962)
     at weblogic.security.WLMessageDigest.getInstance(WLMessageDigest.java:61)
     at weblogic.security.SSL.GenericCipher.generateMAC(GenericCipher.java:75)
     at weblogic.security.SSL.GenericCipher.<init>(GenericCipher.java:57)
     at weblogic.security.SSL.SSLCiphertext.<init>(SSLCiphertext.java:47)
     at weblogic.security.SSL.SSLCiphertext.<init>(SSLCiphertext.java:52)
     at weblogic.security.SSL.SSLSocket.sendRecord(SSLSocket.java:1048)
     at weblogic.security.SSL.SSLSocket.sendData(SSLSocket.java:1028)
     at weblogic.security.SSL.SSLSocketOutputStream.write(SSLSocketOutputStream.java:66)
     at weblogic.socket.SocketMuxer.write(SocketMuxer.java:130)
     at weblogic.rjvm.t3.T3JVMConnection.sendMsg(T3JVMConnection.java:311)
     at weblogic.rjvm.MsgAbbrevJVMConnection.sendOutMsg(MsgAbbrevJVMConnection.java:243)
     at weblogic.rjvm.MsgAbbrevJVMConnection.sendMsg(MsgAbbrevJVMConnection.java:139)
     at weblogic.rjvm.ConnectionManager.sendMsg(ConnectionManager.java:404)
     at weblogic.rjvm.RJVMImpl.send(RJVMImpl.java:480)
     at weblogic.rjvm.MsgAbbrevOutputStream.flushAndSendRaw(MsgAbbrevOutputStream.java:166)
     at weblogic.rjvm.MsgAbbrevOutputStream.flushAndSend(MsgAbbrevOutputStream.java:174)
     at weblogic.rjvm.MsgAbbrevOutputStream.send(MsgAbbrevOutputStream.java:235)
     at weblogic.rmi.internal.BasicServerRef.postInvoke(BasicServerRef.java:341)
     at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:272)
     at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
     at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
     at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
[email protected] (Michael Snell) wrote in message news:<[email protected]>...
Anybody have any idea why I get this exception:
java.lang.ClassCastException: weblogic.management.WebLogicObjectName
     at $Proxy0.getKernelDebug(Unknown Source)
     at weblogic.management.configuration.ServerMBean_CachingStub.getKernelDebug(ServerMBean_CachingStub.java:1185)
     at weblogic.kernel.Kernel.getDebug(Kernel.java:145)
     at weblogic.security.RSApkcs1.<init>(RSApkcs1.java:58)
     at weblogic.security.RSAMDSignature.<init>(RSAMDSignature.java:48)
     at weblogic.security.RSAMDSignature.<init>(RSAMDSignature.java:77)
     at weblogic.security.X509.verifySignature(X509.java:242)
     at weblogic.security.X509.verify(X509.java:172)
     at weblogic.security.SSL.SSLCertificate.verify(SSLCertificate.java:139)
     at weblogic.security.SSL.SSLCertificate.input(SSLCertificate.java:118)
     at weblogic.security.SSL.Handshake.input(Handshake.java:115)
     at weblogic.security.SSL.SSLSocket.getHandshake(SSLSocket.java:1043)
     at weblogic.security.SSL.SSLSocket.clientInit(SSLSocket.java:405)
     at weblogic.security.SSL.SSLSocket.initialize(SSLSocket.java:265)
     at weblogic.security.SSL.SSLSocket.<init>(SSLSocket.java:212)
     at weblogic.net.http.HttpsClient.openServer(HttpsClient.java:85)
     at weblogic.net.http.HttpsClient.openServer(HttpsClient.java:143)
     at weblogic.net.http.HttpsClient.<init>(HttpsClient.java:67)
     at weblogic.net.http.HttpClient.New(HttpClient.java:151)
     at weblogic.net.http.HttpsURLConnection.connect(HttpsURLConnection.java:39)
     at weblogic.net.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:156)
when trying to open a HTTPS connection using the JSSE? Relevant code
is:
String handlers =
System.getProperty("java.protocol.handler.pkgs");
System.setProperty("java.protocol.handler.pkgs",
"com.sun.net.ssl.internal.www.protocol|" + handlers);
java.security.Security.addProvider(new
com.sun.net.ssl.internal.ssl.Provider());
X509TrustManager tm = new MyX509TrustManager();
KeyManager []km = null;
TrustManager []tma = {tm};
SSLContext sc = SSLContext.getInstance("ssl");
sc.init(km, tma, new java.security.SecureRandom());
SSLSocketFactory sf1 = sc.getSocketFactory();
HttpsURLConnection.setDefaultSSLSocketFactory(sf1);
URL u = new URL(url);
c = (HttpURLConnection) u.openConnection();

Similar Messages

  • Weblogic Server 8.1 SP1 bug?

    Hello,
              I have a problem when using XML JSP in combination with Struts tags, allthough I have the feeling that any other TLD will have the same problem.
              The <html:link page="http://www.home.nl">Home</html:link>
              is not rendered properly by WL. The result is:
              <a href="/ipmtoolhttp://www.home.nl"></a>
              Note the fact that the text 'Home' is missing in the anchor. This makes the link 'unclickable' in the browser.
              I have tested this code on Tomcat 5.0.27 as well and there the code renders properly.
              I think its a bug. The question is, has it been solved in SP2 or SP3?
              Below is the complete source:
              <?xml version="1.0" encoding="utf-8"?>
              <jsp:root xmlns="http://www.w3.org/1999/xhtml"
              xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2"
              xmlns:bean="/WEB-INF/tlds/struts-bean.tld"
              xmlns:html="/WEB-INF/tlds/struts-html.tld"
              xmlns:logic="/WEB-INF/tlds/struts-logic.tld"
              xmlns:tiles="/WEB-INF/tlds/struts-tiles.tld">
              <html>
              <body>
              <html:link page="http://www.home.nl">Home</html:link>
              <html:link page="http://www.home.nl">
              <jsp:text>Home</jsp:text></html:link>
              </body>
              </html>
              </jsp:root>
              -----------------------------

    What about Red Hat 7.2 ?
    I do not understand very well if this version has anything to do with the
    ones mentioned on supported platforms
    thanks
    "Raj Alagumalai" <[email protected]> escribió en el mensaje
    news:[email protected]..
    Campot,
    Unfortunately WLS 8.1 sp1 is not supported on RedHat 7.1
    http://e-docs.bea.com/wls/certifications/certs_810/overview.html#1043408
    should provide you more information on this.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Campot" <[email protected]> wrote in message
    news:[email protected]..
    Can I install WebLogic Server 8.1 SP1 on Linux Redhat 7.1?
    I looked the documentation and it is not clear if the server runs on
    this
    Linux version
    Thanks

  • Empty Weblogic Server 8.1 SP1 Repeating Stack Trace

    Thanks in advance for any help and attention!
              An instance of Weblogic 8.1 SP1 on our UAT environment keeps on spitting out stack traces even though the only user accessing WL is via the admin console. There are no applications deployed on this platform.
              The stack trace is also intermittent and can't be attributed to a specific action. This is occuring on our UAT environment and on a WL install which is a copy of our production environment. But we don't get these stack traces on production??
              Here are some details of the server hosting WL 8.1 SP1 in our UAT environment.
              Operating System/Hardware:
              Solaris VM (build Solaris_JDK_1.2.2_10, native threads, sunwjit)
              Operating System SunOS abcu012-ukzr 5.8 Generic_108528-23
              sun4u sparc SUNW,Sun-Fire-V210
              JVM Used by WebLogic:
              Weblogic JVM Java(TM) 2 Runtime Environment,
              Standard Edition (build 1.4.2-b28)
              Java HotSpot(TM) Client VM (build 1.4.2-b28, mixed mode)
              I have listed the full stack trace and config.xml below...
              <?xml version="1.0" encoding="UTF-8"?>
              <Domain ConfigurationVersion="8.1.0.0" Name="abc">
              <Server AcceptBacklog="100"
              CustomIdentityKeyStoreFileName="/apps/bea/user_projects/domains/abc/certificates/pwls.jks"
              CustomIdentityKeyStorePassPhrase="XXXXX"
              CustomIdentityKeyStoreType="JKS"
              CustomTrustKeyStoreFileName="/apps/bea/user_projects/domains/abc/certificates/cacert.jks"
              CustomTrustKeyStorePassPhrase="XXXXX"
              CustomTrustKeyStoreType="JKS" GracefulShutdownTimeout="5"
              IgnoreSessionsDuringShutdown="true"
              KeyStores="CustomIdentityAndCustomTrust" ListenAddress=""
              ListenPort="7001" Name="abcu012-ukzr" NativeIOEnabled="true"
              ReliableDeliveryPolicy="RMDefaultPolicy" ServerVersion="8.1.1.0"
              StdoutEnabled="false" TunnelingEnabled="true" WeblogicPluginEnabled="true">
              <SSL Enabled="true" HostnameVerificationIgnored="false"
              IdentityAndTrustLocations="KeyStores" ListenPort="7002"
              Name="abcu012-ukzr" ServerPrivateKeyAlias="wls" ServerPrivateKeyPassPhrase="XXXXX"/>
              <Log FileName="/apps/bea/logs/abcu012-ukzr/abc/server.log"
              Name="abcu012-ukzr" RotationType="byTime"/>
              <WebServer KeepAliveSecs="120"
              LogFileName="/apps/bea/logs/abcu012-ukzr/abc/access.log" Name="abcu012-ukzr"/>
              <ExecuteQueue Name="weblogic.kernel.Default" ThreadCount="30"/>
              </Server>
              <JMSFileStore Directory="rmfilestore" Name="FileStore"/>
              <WSReliableDeliveryPolicy DefaultRetryCount="10"
              DefaultTimeToLive="60000" Name="RMDefaultPolicy" Store="FileStore"/>
              <Security Name="abc" PasswordPolicy="wl_default_password_policy"
              Realm="wl_default_realm" RealmSetup="true">
              <weblogic.security.providers.authentication.DefaultAuthenticator
              Name="Security:Name=myrealmDefaultAuthenticator" Realm="Security:Name=myrealm"/>
              <weblogic.security.providers.authentication.DefaultIdentityAsserter
              ActiveTypes="AuthenticatedUser"
              Name="Security:Name=myrealmDefaultIdentityAsserter" Realm="Security:Name=myrealm"/>
              <weblogic.security.providers.authorization.DefaultRoleMapper
              Name="Security:Name=myrealmDefaultRoleMapper" Realm="Security:Name=myrealm"/>
              <weblogic.security.providers.authorization.DefaultAuthorizer
              Name="Security:Name=myrealmDefaultAuthorizer" Realm="Security:Name=myrealm"/>
              <weblogic.security.providers.authorization.DefaultAdjudicator
              Name="Security:Name=myrealmDefaultAdjudicator" Realm="Security:Name=myrealm"/>
              <weblogic.security.providers.credentials.DefaultCredentialMapper
              Name="Security:Name=myrealmDefaultCredentialMapper" Realm="Security:Name=myrealm"/>
              <weblogic.management.security.authentication.UserLockoutManager
              Name="Security:Name=myrealmUserLockoutManager" Realm="Security:Name=myrealm"/>
              <weblogic.management.security.Realm
              Adjudicator="Security:Name=myrealmDefaultAdjudicator"
              AuthenticationProviders="Security:Name=myrealmDefaultAuthenticator|Security:Name=myrealmDefaultIdentityAsserter"
              Authorizers="Security:Name=myrealmDefaultAuthorizer"
              CredentialMappers="Security:Name=myrealmDefaultCredentialMapper"
              DefaultRealm="true" DisplayName="myrealm"
              FullyDelegateAuthorization="true"
              Name="Security:Name=myrealm"
              RoleMappers="Security:Name=myrealmDefaultRoleMapper"
              UserLockoutManager="Security:Name=myrealmUserLockoutManager"/>
              </Security>
              <EmbeddedLDAP Credential="{3DES}XPMACNvHFn4=" Name="abc"/>
              <SecurityConfiguration
              Credential="XXXXX"
              Name="abc" RealmBootStrapVersion="1"/>
              <Realm FileRealm="wl_default_file_realm" Name="wl_default_realm"/>
              <FileRealm Name="wl_default_file_realm"/>
              <PasswordPolicy Name="wl_default_password_policy"/>
              <JMSServer Name="WSStoreForwardInternalJMSServerabcu012-ukzr"
              Store="FileStore" Targets="abcu012-ukzr">
              <JMSQueue CreationTime="1073401554039"
              JNDIName="jms.internal.queue.WSStoreForwardQueue"
              JNDINameReplicated="false" Name="WSInternaljms.internal.queue.WSStoreForwardQueueabcu012-ukzr"/>
              <JMSQueue CreationTime="1073401554605"
              JNDIName="jms.internal.queue.WSDupsEliminationHistoryQueue"
              JNDINameReplicated="false" Name="WSInternaljms.internal.queue.WSDupsEliminationHistoryQueueabcu012-ukzr"/>
              </JMSServer>
              <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
              InitialCapacity="5" MaxCapacity="25" Name="RolhPool"
              Password="{3DES}bz9CieW2/7g=" Properties="user=rolhdb"
              Targets="abcu012-ukzr" TestConnectionsOnCreate="false"
              TestConnectionsOnRelease="false"
              TestConnectionsOnReserve="false"
              TestTableName="SQL SELECT 1 FROM DUAL" URL="jdbc:oracle:thin:@XXXXX"/>
              <JDBCTxDataSource JNDIName="jdbc/rolh/ds" Name="RolhDS"
              PoolName="RolhPool" Targets="abcu012-ukzr"/>
              <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
              InitialCapacity="5" MaxCapacity="25" Name="qualificationsPool"
              Password="{3DES}wIVVxk0Zjk8=" Properties="user=qualdb"
              Targets="abcu012-ukzr" TestConnectionsOnCreate="false"
              TestConnectionsOnRelease="false"
              TestConnectionsOnReserve="false"
              TestTableName="SQL SELECT 1 FROM DUAL" URL="jdbc:oracle:thin:@XXXXX"/>
              <JDBCTxDataSource JNDIName="jdbc/qual/ds" Name="QualDS"
              PoolName="qualificationsPool" Targets="abcu012-ukzr"/>
              <JMSConnectionFactory JNDIName="abc.jms.connectionFactory"
              MessagesMaximum="-1" Name="abcJMSConnectionFactory" Targets="abcu012-ukzr"/>
              <JMSFileStore
              Directory="/apps/bea/user_projects/domains/abc/abcJMSFileStore" Name="abcJMSFileStore"/>
              <JMSServer Name="abcJMSServer" Targets="abcu012-ukzr">
              <JMSQueue CreationTime="1073406122951"
              JNDIName="abc.jms.queue.qualifications"
              JNDINameReplicated="false" Name="Qualifications"/>
              <JMSQueue CreationTime="1075485561981"
              JNDIName="abc.jms.queue.printService"
              JNDINameReplicated="false" Name="PrintQueue"/>
              <JMSQueue CreationTime="1075994883296"
              JNDIName="abc.jms.queue.applicationRejection"
              JNDINameReplicated="false" Name="ApplicationRejection"/>
              <JMSQueue CreationTime="1075994920032"
              JNDIName="abc.jms.queue.correspondence"
              JNDINameReplicated="false" Name="Correspondence"/>
              <JMSQueue CreationTime="1075994977728"
              JNDIName="abc.jms.queue.crbResponse"
              JNDINameReplicated="false" Name="CRBResponse"/>
              <JMSQueue CreationTime="1075995041107"
              JNDIName="abc.jms.queue.licenceReturn"
              JNDINameReplicated="false" Name="LicenceReturn"/>
              <JMSQueue CreationTime="1075995091920"
              JNDIName="abc.jms.queue.paymentApplications"
              JNDINameReplicated="false" Name="PaymentApplications"/>
              <JMSQueue CreationTime="1075995123366"
              JNDIName="abc.jms.queue.CardSecured"
              JNDINameReplicated="false" Name="CardSecured"/>
              <JMSQueue CreationTime="1075995158136"
              JNDIName="abc.jms.queue.CardsProduced"
              JNDINameReplicated="false" Name="CardsProduced"/>
              <JMSQueue CreationTime="1075995199128"
              JNDIName="abc.jms.queue.CardsDestroyed"
              JNDINameReplicated="false" Name="CardsDestroyed"/>
              <JMSQueue CreationTime="1112361191613"
              JNDIName="abc.jms.queue.basAccepted"
              JNDINameReplicated="false" Name="BASAccepted"/>
              <JMSQueue CreationTime="1121364464738"
              JNDIName="abc.jms.queue.faultLogging" Name="FaultLogging"/>
              </JMSServer>
              <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
              InitialCapacity="5" MaxCapacity="25" Name="PrintPool"
              Password="XXXXX" Properties="user=intdb"
              Targets="abcu012-ukzr" TestConnectionsOnCreate="false"
              TestConnectionsOnRelease="false"
              TestConnectionsOnReserve="false"
              TestTableName="SQL SELECT 1 FROM DUAL" URL="jdbc:oracle:thin:@XXXXX"/>
              <JDBCTxDataSource JNDIName="jdbc/print/ds" Name="PrintDS"
              PoolName="PrintPool" Targets="abcu012-ukzr"/>
              <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
              InitialCapacity="5" MaxCapacity="25" Name="intPool"
              Password="XXXXX" Properties="user=intdb"
              Targets="abcu012-ukzr" TestConnectionsOnCreate="false"
              TestConnectionsOnRelease="false"
              TestConnectionsOnReserve="false"
              TestTableName="SQL SELECT 1 FROM DUAL" URL="jdbc:oracle:thin:@XXXXXe"/>
              <Log FileName="/apps/bea/logs/abcu012-ukzr/abc/domain.log" Name="abc"/>
              <JDBCTxDataSource JNDIName="jdbc/dhc/ds" Name="dhcDS"
              PoolName="intPool" Targets="abcu012-ukzr"/>
              <JDBCTxDataSource JNDIName="jdbc/fault/ds" Name="FaultDS"
              PoolName="intPool" Targets="abcu012-ukzr"/>
              <JDBCTxDataSource JNDIName="jdbc/int/ds" Name="IntDS"
              PoolName="intPool" Targets="abcu012-ukzr"/>
              </Domain>
              CLASSPATH=::/apps/java/j2sdk_nb/j2sdk1.4.2/jre/lib/rt.jar:/server/lib/webservices.jar:/apps/dm/dmapp/dfc/dfc/conf/config:/app
              s/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-pki-api.jar:/apps/bea/user_projects/domains/XXXXX
              /XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-openpgp-provider.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/X
              XXXX/XXXXX/cryptix-message-api.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-jce-provid
              er.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-jce-api.jar:/apps/bea/user_projects/do
              mains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/X
              XXXX/certpath-api-compat.jar
              PATH=/apps/dm/dmapp/product/5.2/bin:/apps/dm/dmapp/dba:/apps/oracle/product/9.2/bin:/export/home/kicha/XXXXXTools:/usr/bin:/u
              sr/ucb:/etc:
              * To start WebLogic Server, use a username and *
              * password assigned to an admin-level user. For *
              * server administration, use the WebLogic Server *
              * console at http://[hostname]:[port]/console *
              LD_LIBRARY_PATH=/apps/java/j2sdk_nb/j2sdk1.4.2/lib:/apps/dm/dmapp/product/5.2/bin:/apps/dm/dmapp/fulltext/verity271/_ssol26/b
              in::oracle:/usr/lib:/apps/bea/weblogic81/server/lib/solaris:/apps/bea/weblogic81/server/lib/solaris/oci920_8
              * Warning: This script is DEPRECATED. Please *
              * don't start new Domains with this script. Use *
              * scripts generated by Domain Configuration *
              * Wizard instead. *
              CLASSPATH=/apps/bea/jdk141_03/lib/tools.jar:/apps/bea/weblogic81/server:/apps/bea/weblogic81/server/lib/weblogic_sp.jar:/apps
              /bea/weblogic81/server/lib/weblogic.jar:::/apps/java/j2sdk_nb/j2sdk1.4.2/jre/lib/rt.jar:/server/lib/webservices.jar:/apps/dm/
              dmapp/dfc/dfc/conf/config:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-pki-api.jar:/apps/b
              ea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-openpgp-provider.jar:/apps/bea/user_projects/domains
              /XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-message-api.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/
              XXXXX/XXXXX/cryptix-jce-provider.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-jce-api.
              jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix.jar:/apps/bea/user_projects/domains/XXXXX
              /XXXXXu014-ukcr/upload/XXXXX/XXXXX/certpath-api-compat.jar
              PATH=.:/apps/bea/weblogic81/server/bin:/apps/bea/jdk141_03/jre/bin:/apps/bea/jdk141_03/bin:/apps/bea/weblogic81/server/lib/so
              laris:/apps/dm/dmapp/product/5.2/bin:/apps/dm/dmapp/dba:/apps/oracle/product/9.2/bin:/export/home/kicha/XXXXXTools:/usr/bin:/
              usr/ucb:/etc:
              * To start WebLogic Server, use a username and *
              * password assigned to an admin-level user. For *
              * server administration, use the WebLogic Server *
              * console at http://<hostname>:<port>/console *
              + /apps/bea/jdk141_03/bin/java -server -Xms1280m -Xmx1280m -XX:NewSize=384m -XX:MaxNewSize=384m -XX:SurvivorRatio=15
              -Djava.library.path=/apps/bea/weblogic81/server/lib/solaris:/apps/dm/dmapp/dfc/dfc
              -DXXXXX.war=/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/XXXXX.war -classpath
              /apps/bea/jdk141_03/lib/tools.jar:/apps/bea/weblogic81/server:/apps/bea/weblogic81/server/lib/weblogic_sp.jar:/apps/bea/weblo
              gic81/server/lib/weblogic.jar:::/apps/java/j2sdk_nb/j2sdk1.4.2/jre/lib/rt.jar:/server/lib/webservices.jar:/apps/dm/dmapp/dfc/
              dfc/conf/config:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-pki-api.jar:/apps/bea/user_pr
              ojects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-openpgp-provider.jar:/apps/bea/user_projects/domains/XXXXX/XXX
              XXu014-ukcr/upload/sia/XXXXX/cryptix-message-api.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/
              cryptix-jce-provider.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-jce-api.jar:/apps/be
              a/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-u
              kcr/upload/XXXXX/XXXXX/certpath-api-compat.jar -Dweblogic.Name=XXXXXu012-ukzr -Dweblogic.management.username=kicha
              -Dweblogic.management.password=kicha_111 -Dweblogic.ProductionModeEnabled=
              -Djava.security.policy=/apps/bea/weblogic81/server/lib/weblogic.policy weblogic.Server
              <Jan 23, 2006 3:39:13 PM GMT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Server VM
              Version 1.4.1_03-b02 from Sun Microsystems Inc.>
              <Jan 23, 2006 3:39:14 PM GMT> <Info> <Configuration Management> <BEA-150016> <This server is being started as the
              administration server.>
              <Jan 23, 2006 3:39:14 PM GMT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 8.1 SP1 Fri Jun 20 23:06:40 PDT
              2003 271009
              WebLogic XMLX Module 8.1 SP1 Fri Jun 20 23:06:40 PDT 2003 271009>
              <Jan 23, 2006 3:39:15 PM GMT> <Notice> <Management> <BEA-140005> <Loading domain configuration from configuration repository
              at /apps/bea/user_projects/domains/XXXXX/./config.xml.>
              Full thread dump Java HotSpot(TM) Server VM (1.4.1_03-b02 mixed mode):
              "ExecuteThread: '6' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x3111e8 nid=0x4b in Object.wait()
              [9ba81000..9ba81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <aa5e8a28> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <aa5e8a28> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '5' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0xf87420 nid=0x4a in Object.wait()
              [9bb81000..9bb81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <aa5e8250> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <aa5e8250> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '4' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x1141418 nid=0x49 in Object.wait()
              [9bc81000..9bc81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <aa5e7a48> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <aa5e7a48> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '3' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0xe5b600 nid=0x48 in Object.wait()
              [9bd81000..9bd81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <aa5e7270> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <aa5e7270> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '2' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0xaa9998 nid=0x47 in Object.wait()
              [9be81000..9be81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <aa5e6a98> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <aa5e6a98> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '1' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x7c65f8 nid=0x46 in Object.wait()
              [9bf81000..9bf81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <aa5e62c0> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <aa5e62c0> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '0' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x3fccf8 nid=0x45 in Object.wait()
              [9ca81000..9ca81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <aa5e5ac8> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <aa5e5ac8> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '2' for queue: 'weblogic.socket.Muxer'" daemon prio=5 tid=0xf7efd8 nid=0x44 waiting for monitor entry
              [9c081000..9c081994]
                   at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:93)
                   - waiting to lock <bede1b00> (a java.lang.String)
                   at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
                   at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              "ExecuteThread: '1' for queue: 'weblogic.socket.Muxer'" daemon prio=5 tid=0x12737d0 nid=0x43 waiting for monitor entry
              [9c181000..9c181994]
                   at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:93)
                   - waiting to lock <bede1b00> (a java.lang.String)
                   at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
                   at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              "ExecuteThread: '0' for queue: 'weblogic.socket.Muxer'" daemon prio=5 tid=0xb70fd0 nid=0x42 in Object.wait()
              [9c281000..9c281994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <bede6ab8> (a [Lweblogic.socket.PosixSocketInfo$FdStruct;)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
                   - locked <bede6ab8> (a [Lweblogic.socket.PosixSocketInfo$FdStruct;)
                   - locked <bede1b00> (a java.lang.String)
                   at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
                   at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              "SSLListenThread.Default" prio=5 tid=0x7475a8 nid=0x41 runnable [9c381000..9c381994]
                   at java.net.PlainSocketImpl.socketAccept(Native Method)
                   at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
                   - locked <bedffc38> (a java.net.PlainSocketImpl)
                   at java.net.ServerSocket.implAccept(ServerSocket.java:448)
                   at javax.net.ssl.impl.SSLServerSocketImpl.accept(Unknown Source)
                   at weblogic.t3.srvr.ListenThread.accept(ListenThread.java:715)
                   at weblogic.t3.srvr.ListenThread.run(ListenThread.java:291)
              "ListenThread.Default" prio=5 tid=0x588628 nid=0x40 runnable [9c481000..9c481994]
                   at java.net.PlainSocketImpl.socketAccept(Native Method)
                   at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
                   - locked <bedeeb68> (a java.net.PlainSocketImpl)
                   at java.net.ServerSocket.implAccept(ServerSocket.java:448)
                   at java.net.ServerSocket.accept(ServerSocket.java:419)
                   at weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:24)
                   at weblogic.t3.srvr.ListenThread.accept(ListenThread.java:715)
                   at weblogic.t3.srvr.ListenThread.run(ListenThread.java:291)
              "Thread-9" daemon prio=5 tid=0xac6f28 nid=0x3f in Object.wait() [9c581000..9c581994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <bec9b7d0> (a java.util.TaskQueue)
                   at java.util.TimerThread.mainLoop(Timer.java:429)
                   - locked <bec9b7d0> (a java.util.TaskQueue)
                   at java.util.TimerThread.run(Timer.java:382)
              "ExecuteThread: '0' for queue: 'JMS.TimerTreePool'" daemon prio=5 tid=0x8967e0 nid=0x3e in Object.wait() [9c681000..9c681994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <bec26738> (a weblogic.jms.backend.BETimerTree)
                   at weblogic.jms.backend.BETimerTree.execute(BETimerTree.java:146)
                   - locked <bec26738> (a weblogic.jms.backend.BETimerTree)
                   at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              "Thread-8" prio=5 tid=0x5b0260 nid=0x3d in Object.wait() [9c781000..9c781994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <bec01568> (a java.util.TaskQueue)
                   at java.util.TimerThread.mainLoop(Timer.java:429)
                   - locked <bec01568> (a java.util.TaskQueue)
                   at java.util.TimerThread.run(Timer.java:382)
              "Thread-7" prio=5 tid=0x874ef8 nid=0x3c in Object.wait() [9c881000..9c881994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <bebe7048> (a java.util.TaskQueue)
                   at java.util.TimerThread.mainLoop(Timer.java:429)
                   - locked <bebe7048> (a java.util.TaskQueue)
                   at java.util.TimerThread.run(Timer.java:382)
              "Thread-6" prio=5 tid=0xdec010 nid=0x3b in Object.wait() [9c981000..9c981994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <bebbdb08> (a java.util.TaskQueue)
                   at java.util.TimerThread.mainLoop(Timer.java:429)
                   - locked <bebbdb08> (a java.util.TaskQueue)
                   at java.util.TimerThread.run(Timer.java:382)
              "weblogic.health.CoreHealthMonitor" daemon prio=5 tid=0x5eebd8 nid=0x39 waiting on condition [9dd81000..9dd81994]
                   at java.lang.Thread.sleep(Native Method)
                   at weblogic.t3.srvr.CoreHealthMonitorThread.run(CoreHealthMonitorThread.java:124)
              "Thread-4" prio=5 tid=0x665808 nid=0x38 in Object.wait() [9de81000..9de81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be635fa0> (a java.util.TaskQueue)
                   at java.util.TimerThread.mainLoop(Timer.java:429)
                   - locked <be635fa0> (a java.util.TaskQueue)
                   at java.util.TimerThread.run(Timer.java:382)
              "VDE Transaction Processor Thread" prio=2 tid=0xcc5480 nid=0x36 in Object.wait() [9df81000..9df81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be5537b8> (a com.octetstring.vde.backend.standard.TransactionProcessor)
                   at java.lang.Object.wait(Object.java:426)
                   at com.octetstring.vde.backend.standard.TransactionProcessor.waitChange(TransactionProcessor.java:355)
                   - locked <be5537b8> (a com.octetstring.vde.backend.standard.TransactionProcessor)
                   at com.octetstring.vde.backend.standard.TransactionProcessor.run(TransactionProcessor.java:215)
              "ExecuteThread: '2' for queue: 'weblogic.admin.RMI'" daemon prio=5 tid=0x2f6f68 nid=0x35 in Object.wait()
              [9e081000..9e081994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4c3e50> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <be4c3e50> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '1' for queue: 'weblogic.admin.RMI'" daemon prio=5 tid=0x64eb90 nid=0x34 in Object.wait()
              [9e181000..9e181994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4c3998> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <be4c3998> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '0' for queue: 'weblogic.admin.RMI'" daemon prio=5 tid=0x365e50 nid=0x33 in Object.wait()
              [9e281000..9e281994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4c34c0> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <be4c34c0> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '1' for queue: 'weblogic.admin.HTTP'" daemon prio=5 tid=0xcc3d88 nid=0x32 in Object.wait()
              [9e381000..9e381994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4c2a40> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <be4c2a40> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '0' for queue: 'weblogic.admin.HTTP'" daemon prio=5 tid=0x9e9708 nid=0x31 in Object.wait()
              [9e481000..9e481994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4c2560> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <be4c2560> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "weblogic.security.SpinnerRandomSource" daemon prio=5 tid=0xcc3fb8 nid=0x30 in Object.wait() [9e581000..9e581994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4b4410> (a java.lang.Object)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.security.SpinnerRandomBitsSource.run(SpinnerRandomBitsSource.java:60)
                   - locked <be4b4410> (a java.lang.Object)
                   at java.lang.Thread.run(Thread.java:536)
              "weblogic.time.TimeEventGenerator" daemon prio=9 tid=0x9d9550 nid=0x2f in Object.wait() [9e681000..9e681994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4b31a8> (a weblogic.time.common.internal.TimeTable)
                   at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:271)
                   - locked <be4b31a8> (a weblogic.time.common.internal.TimeTable)
                   at weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java:118)
                   at java.lang.Thread.run(Thread.java:536)
              "ExecuteThread: '4' for queue: 'weblogic.kernel.System'" daemon prio=5 tid=0x2d94e0 nid=0x2e in Object.wait()
              [9e781000..9e781994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4b2930> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <be4b2930> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '3' for queue: 'weblogic.kernel.System'" daemon prio=5 tid=0x2d8960 nid=0x2d in Object.wait()
              [9e881000..9e881994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4b2470> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <be4b2470> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '2' for queue: 'weblogic.kernel.System'" daemon prio=5 tid=0x52bd58 nid=0x2c in Object.wait()
              [9e981000..9e981994]
                   at java.lang.Object.wait(Native Method)
                   

    What about Red Hat 7.2 ?
    I do not understand very well if this version has anything to do with the
    ones mentioned on supported platforms
    thanks
    "Raj Alagumalai" <[email protected]> escribió en el mensaje
    news:[email protected]..
    Campot,
    Unfortunately WLS 8.1 sp1 is not supported on RedHat 7.1
    http://e-docs.bea.com/wls/certifications/certs_810/overview.html#1043408
    should provide you more information on this.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Campot" <[email protected]> wrote in message
    news:[email protected]..
    Can I install WebLogic Server 8.1 SP1 on Linux Redhat 7.1?
    I looked the documentation and it is not clear if the server runs on
    this
    Linux version
    Thanks

  • Install weblogic server 6 with sp1 failure in W2K

    When I install weblogic server 6 with sp1 in W2K,
    InstallAnyWhere display, when InstallAnyWhere process 100%,
    there is nothing in my display about the Install.
    there is weblogic600sp1_ and javaw in Windows Task manager->process.
    I have install JDK1.3

    If I remember correctly, you should make sure that the JDK is not in your
    path.
    Michael Girdley
    BEA Systems
    Learning WebLogic? http://learnweblogic.com
    "yshyang" <[email protected]> wrote in message
    news:[email protected]..
    When I install weblogic server 6 with sp1 in W2K,
    InstallAnyWhere display, when InstallAnyWhere process 100%,
    there is nothing in my display about the Install.
    there is weblogic600sp1_ and javaw in Windows Task manager->process.
    I have install JDK1.3

  • WLI V2.1 install error: WebLogic Server 6.1 SP1 is not installed.

    Hi,
    FYI
    I installed WLS 6.1 and then Service Pack 1 (separately).
    I then installed WLI V2.1 and got the error.
    WebLogic Server 6.1 SP1 is not installed.
    This is on Windows NT.
    The problem was due to the registry.xml file being empty of content. Thus the
    install did not know where the WLS 6.1 SP1 was. The Service Pack 1 for WLS 6.1
    emptied this file, incorrectly.
    I think if you download and install WLS 6.1 Service Pack 1 in one install and
    not separately the emptying of the registry.xml does not occur.
    To get around the problem, I got BEa Support to send me a registry.xml and I edited
    it to be my own machine and BEA_HOME directory. The WLI V2.1 install then worked.(Not
    the safest solution but it worked!)
    Regards,
    Kathryn

    Hi ,
    Installed OBIA & related components in the following Order
    OS: Windows-2008 R2
    OBIA: 11.1.17.1
    1. Oracle Database 11gR2
    1.2 Installed OBIEE 11g(11.1.1.7.0)
    2. Oracle Fusion Middleware RCU11g(11.1.1.7.0)
    3. ODI 11g(11.1.1.7.0) Using JDK 7 Update 21 for 64 Bits(ie jdk-7u21-windows-x64)
    4. Applied RCU for Oracle BI Application 11.1.1.7.1)
    ### Till now No Error, all the stages completed Successful.
    5. Installing Oracle BI Application(11.1.1.7.1) using JDK 7 Update 21 for 64 Bits(ie jdk-7u21-windows-x64)
    The installer running for all most 3 Hours, No Progress in the (Showing 0% Progress) and Copying.....
    We have doubted JDK/JRE version, So Cancelled installation.
    Without uninstalling the JDK7, We installed JDK 6 with 45 Updates(ie.jdk-6u45-windows-i586) into different folder.
    Attempted to re-install the OBA 11g by specifying the JDK6 update 45 Path._
    We get the error error INST-07515: oracle.bi.bishiphome is not found.
    Right now, we are struck, no idea how to proceed further.
    Forum support is required to resolve this hurdle.
    Thanks in advance.
    Regards,
    Basavanagowda M
    Edited by: BG on May 29, 2013 5:00 AM

  • How to configure SSL for Oracle Weblogic Server

    Hi,
    Please help me to configure SSL in oracle weblogic server.
    If possible, please provide step by step to configure SSL.

    this should help
    http://weblogic-wonders.com/weblogic/2010/05/19/configuring-ssl-on-weblogic-server-custom-identity-custom-trust/

  • How to configure SSL in standalone weblogic server for ADF apps

    Hello,
    I'm new to weblogic, Could anyone provide documentation/blog references to configuring SSL in weblogic for adf application. Currently adf application deploys on http I need it to deploy as https.
    Appreciate your response
    Thanks and Regards

    Expand Environment > Click on Server > Click on Keystores Tab
    Under Keystores you have some options like DemoIdentity & Demo Trust.
    If u want to use the default keystores, you dont have to modify these configuations.
    Just enable SSL and specify the listen port.
    Expand Environment > Click on Server > General
    SSL Listen Port Enabled
    SSL Listen Port:
    If u want to use your own keystore Select Custom Identity and Custom Trust besides Keystores Drop Down and specify the require values.
    If u need any clarification let me knw.
    HTH,
    Faisal
    http://download-llnw.oracle.com/docs/cd/E11035_01/wls100/secmanage/ssl.html

  • Problems deploying kodo.rar (2.4.0) to WebLogic Server 7.0 SP1

    I get the following errors in my WLS logs by dropping the kodo.rar into the
    application deploy directory.
    ####<Oct 19, 2002 2:35:15 PM EDT> <Notice> <Application Poller> <BENX22>
    <myserver> <Thread-7> <kernel identity> <> <149404> <Activate application
    appsdirkodo_rar on myserver - Running>
    ####<Oct 19, 2002 2:35:16 PM EDT> <Error> <Connector> <BENX22> <myserver>
    <ExecuteThread: '11' for queue: 'default'> <kernel identity> <> <190023> <<
    KodoJDO_kodo > Error invoking the ManagedConnectionFactory's "set" method
    for the configuration property "MaxPool". Reason:
    java.lang.NumberFormatException: .>
    ####<Oct 19, 2002 2:35:16 PM EDT> <Error> <Deployer> <BENX22> <myserver>
    <ExecuteThread: '11' for queue: 'default'> <kernel identity> <> <149201>
    <The Slave Deployer failed to complete the deployment task with id 1 for the
    application appsdirkodo_rar.>
    weblogic.management.ApplicationException: activate failed forkodo
    Module Name: kodo, Error: weblogic.management.DeploymentException:
    ResourceException when adding ManagedConnectionFactory for kodo
    at
    weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.jav
    a:1035)
    ####<Oct 19, 2002 2:35:16 PM EDT> <Info> <Deployer> <BENX22> <myserver>
    <ExecuteThread: '11' for queue: 'default'> <kernel identity> <> <149039>
    <Completing a deployment task with id 3 for application appsdirkodo_rar
    with status Failed>
    ####<Oct 19, 2002 2:35:17 PM EDT> <Notice> <Application Poller> <BENX22>
    <myserver> <Thread-7> <kernel identity> <> <149404> <Activate application
    appsdirkodo_rar on myserver - Failed>

    After getting my application deployed (see below), I am finding that the
    proper SQL is executing as expected through Kodo. The logs show the SQL
    statements as a consequence of the EJB method being called. The EJB extends
    com.solarmetric.kodo.ee.JDOSessionBean. The problem is that the container
    managed transaction (Required) is always rolling back at the end, despite
    everything succeeding. I suspect that I still have something configured
    incorrectly in the Kodo ra.xml. I played with
    "TransactionManagerName=javax/transaction/TransactionManager" as the value
    of ManagedRuntimeProperties without effect. I have attached the ra.xml. Is
    there something obviously wrong here? Am I missing something?
    Ben
    "Ben Eng" <[email protected]> wrote in message
    news:[email protected]...
    Never mind. I am an idiot. The ra.xml descriptor within the kodo.rar file
    must be edited, before deploying to WLS. This seems to deploy nicely.
    Now, I'm trying to use Kodo from a SessionBean, so I am packaging kodo.rar
    into the same EAR as my EJB-JAR. It is giving me the following error atruntime, even
    though the class is clearly present in kodo-jdo-runtime.jar within theRAR.
    >
    java.lang.NoClassDefFoundError:com/solarmetric/kodo/impl/jdbc/runtime/Connector
    >
    I found the following page in the WLS documentation.
    http://edocs.bea.com/wli/docs70/devadapt/2concpts.htm#1028215
    It appears as though I may need to move the Kodo JARs from the RAR intothe
    root directory of the EAR and reference them from the MANIFEST Class-Pathof both
    the RAR and the EJB-JAR. After putting up with all this ClassLoadercomplexity in
    J2EE, I sure hope the application packaged with Kodo becomes hot
    redeployable. :)
    Benbegin 666 ra.xml
    M/#]X;6P@=F5R<VEO;CTB,2XP(B!E;F-O9&EN9STB551&+3@B/SX*/"%$3T-4
    M65!%(&-O;FYE8W1O<B!054),24,@"B @(" G+2\O4W5N($UI8W)O<WES=&5M
    M<RP@26YC+B\O1%1$($-O;FYE8W1O<B Q+C O+T5.)R *(" @("=H='1P.B\O
    M:F%V82YS=6XN8V]M+V1T9"]C;VYN96-T;W)?,5\P+F1T9"<^"CPA+2T@"B @
    M("!297-O=7)C92!A9&%P=&]R(&1E<V-R:7!T;W(@9F]R('5S:6YG($MO9&\*
    M(" @($I$3R!I;B!A(&UA;F%G960@96YV:7)O;FUE;G0N"BTM/@H\8V]N;F5C
    M=&]R/@H@(" @/&1I<W!L87DM;F%M93Y+;V1O2D1//"]D:7-P;&%Y+6YA;64^
    M"B @(" \=F5N9&]R+6YA;64^4V]L87)M971R:6,L($EN8RX\+W9E;F1O<BUN
    M86UE/@H@(" @/'-P96,M=F5R<VEO;CXQ+C \+W-P96,M=F5R<VEO;CX*(" @
    M(#QE:7,M='EP93YJ9&\\+V5I<RUT>7!E/@H@(" @/'9E<G-I;VX^,2XP/"]V
    M97)S:6]N/@H@(" @/&QI8V5N<V4^"B @(" @(" @/&1E<V-R:7!T:6]N/@H@
    M(" @(" @(%-E92!H='1P.B\O=W=W+G-O;&%R;65T<FEC+F-O;2!F;W(@=&5R
    M;7,@86YD(&QI8V5N<V4@8V]N9&ET:6]N<RX*(" @(" @(" \+V1E<V-R:7!T
    M:6]N/@H@(" @(" @(#QL:6-E;G-E+7)E<75I<F5D/G1R=64\+VQI8V5N<V4M
    M<F5Q=6ER960^"B @(" \+VQI8V5N<V4^"B @(" \<F5S;W5R8V5A9&%P=&5R
    M/@H@(" @(" @"3QM86YA9V5D8V]N;F5C=&EO;F9A8W1O<GDM8VQA<W,^8V]M
    M+G-O;&%R;65T<FEC+FMO9&\N:6UP;"YJ9&)C+F5E+DUA;F%G961#;VYN96-T
    M:6]N1F%C=&]R>4EM<&P\+VUA;F%G961C;VYN96-T:6]N9F%C=&]R>2UC;&%S
    M<SX*(" @(" @(" \8V]N;F5C=&EO;F9A8W1O<GDM:6YT97)F86-E/FIA=F%X
    M+FID;RY097)S:7-T96YC94UA;F%G97)&86-T;W)Y/"]C;VYN96-T:6]N9F%C
    M=&]R>2UI;G1E<F9A8V4^"B @(" @(" @/&-O;FYE8W1I;VYF86-T;W)Y+6EM
    M<&PM8VQA<W,^8V]M+G-O;&%R;65T<FEC+FMO9&\N:6UP;"YJ9&)C+F5E+DI$
    M3T-O;FYE8W1I;VY&86-T;W)Y/"]C;VYN96-T:6]N9F%C=&]R>2UI;7!L+6-L
    M87-S/@H*"B @(" @(" @/&-O;FYE8W1I;VXM:6YT97)F86-E/FIA=F%X+FID
    M;RY097)S:7-T96YC94UA;F%G97(\+V-O;FYE8W1I;VXM:6YT97)F86-E/@H@
    M(" @(" @(#QC;VYN96-T:6]N+6EM<&PM8VQA<W,^8V]M+G-O;&%R;65T<FEC
    M+FMO9&\N964N145097)S:7-T96YC94UA;F%G97(\+V-O;FYE8W1I;VXM:6UP
    M;"UC;&%S<SX*"@H@(" @(" @(#QT<F%N<V%C=&EO;BUS=7!P;W)T/DQO8V%L
    M5')A;G-A8W1I;VX\+W1R86YS86-T:6]N+7-U<'!O<G0^"@H@(" @/&-O;F9I
    M9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^3&EC96YS94ME>3PO
    M9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/DQI
    M8V5N<V5+97D\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF
    M:6<M<')O<&5R='DM='EP93YJ879A+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O
    M<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/BHJ
    M*BHM*BHJ*BTJ*BHJ+2HJ*BHM*BHJ*CPO8V]N9FEG+7!R;W!E<G1Y+79A;'5E
    M/@H@(" @/"]C;VYF:6<M<')O<&5R='D^"B @(" \(2TM8V]N9FEG+7!R;W!E
    M<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY097)S:7-T96YC94UA;F%G97)#
    M;&%S<SPO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN
    M86UE/E!E<G-I<W1E;F-E36%N86=E<D-L87-S/"]C;VYF:6<M<')O<&5R='DM
    M;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:F%V82YL86YG
    M+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I
    M9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @
    M(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \(2TM8V]N9FEG+7!R;W!E<G1Y
    M/@H@(" @(" @(#QD97-C<FEP=&EO;CY097)S:7-T96YC94UA;F%G97)0<F]P
    M97)T:65S/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y
    M+6YA;64^4&5R<VES=&5N8V5-86YA9V5R4')O<&5R=&EE<SPO8V]N9FEG+7!R
    M;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA
    M=F$N;&%N9RY3=')I;F<\+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @
    M(#QC;VYF:6<M<')O<&5R='DM=F%L=64^/"]C;VYF:6<M<')O<&5R='DM=F%L
    M=64^"B @(" \+V-O;F9I9RUP<F]P97)T>2TM/@H@(" @/"$M+6-O;F9I9RUP
    M<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^1&%T84-A8VAE0VQA<W,\
    M+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y$
    M871A0V%C:&5#;&%S<SPO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\+V-O;F9I
    M9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L
    M=64^/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P
    M97)T>2TM/@H@(" @/"$M+6-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S
    M8W)I<'1I;VX^1&%T84-A8VAE4')O<&5R=&EE<SPO9&5S8W)I<'1I;VX^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D1A=&%#86-H95!R;W!E<G1I
    M97,\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O
    M<&5R='DM='EP93YJ879A+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O<&5R='DM
    M='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/CPO8V]N9FEG
    M+7!R;W!E<G1Y+79A;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='DM+3X*(" @
    M(#PA+2UC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/E!R
    M;WAY36%N86=E<D-L87-S/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG
    M+7!R;W!E<G1Y+6YA;64^4')O>'E-86YA9V5R0VQA<W,\+V-O;F9I9RUP<F]P
    M97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YJ879A
    M+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \
    M8V]N9FEG+7!R;W!E<G1Y+79A;'5E/CPO8V]N9FEG+7!R;W!E<G1Y+79A;'5E
    M/@H@(" @/"]C;VYF:6<M<')O<&5R='DM+3X*(" @(#PA+2UC;VYF:6<M<')O
    M<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/E!R;WAY36%N86=E<E!R;W!E
    M<G1I97,\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM
    M;F%M93Y0<F]X>4UA;F%G97)0<F]P97)T:65S/"]C;VYF:6<M<')O<&5R='DM
    M;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:F%V82YL86YG
    M+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I
    M9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @
    M(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \8V]N9FEG+7!R;W!E<G1Y/@H@
    M(" @(" @(#QD97-C<FEP=&EO;CY/<'1I;6ES=&EC/"]D97-C<FEP=&EO;CX*
    M(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA;64^3W!T:6UI<W1I8SPO8V]N
    M9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT
    M>7!E/F)O;VQE86X\+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC
    M;VYF:6<M<')O<&5R='DM=F%L=64^=')U93PO8V]N9FEG+7!R;W!E<G1Y+79A
    M;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='D^"B @(" \8V]N9FEG+7!R;W!E
    M<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY2971A:6Y686QU97,\+V1E<V-R
    M:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y2971A:6Y6
    M86QU97,\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM='EP93YB;V]L96%N/"]C;VYF:6<M<')O<&5R='DM='EP93X*
    M(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/G1R=64\+V-O;F9I9RUP
    M<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y/@H@(" @/&-O
    M;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^4F5S=&]R959A
    M;'5E<SPO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN
    M86UE/E)E<W1O<F5686QU97,\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @
    M(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YB;V]L96%N/"]C;VYF:6<M<')O
    M<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/G1R
    M=64\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E
    M<G1Y/@H@(" @/&-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I
    M;VX^26=N;W)E0V%C:&4\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM;F%M93Y)9VYO<F5#86-H93PO8V]N9FEG+7!R;W!E<G1Y+6YA
    M;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/F)O;VQE86X\+V-O
    M;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM
    M=F%L=64^9F%L<V4\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N
    M9FEG+7!R;W!E<G1Y/@H@(" @/&-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \
    M9&5S8W)I<'1I;VX^3F]N=')A;G-A8W1I;VYA;%)E860\+V1E<V-R:7!T:6]N
    M/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y.;VYT<F%N<V%C=&EO
    M;F%L4F5A9#PO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I
    M9RUP<F]P97)T>2UT>7!E/F)O;VQE86X\+V-O;F9I9RUP<F]P97)T>2UT>7!E
    M/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L=64^=')U93PO8V]N9FEG
    M+7!R;W!E<G1Y+79A;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='D^"B @(" \
    M8V]N9FEG+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY.;VYT<F%N
    M<V%C=&EO;F%L5W)I=&4\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM;F%M93Y.;VYT<F%N<V%C=&EO;F%L5W)I=&4\+V-O;F9I9RUP
    M<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YB
    M;V]L96%N/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG
    M+7!R;W!E<G1Y+79A;'5E/F9A;'-E/"]C;VYF:6<M<')O<&5R='DM=F%L=64^
    M"B @(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#QC;VYF:6<M<')O<&5R='D^
    M"B @(" @(" @/&1E<V-R:7!T:6]N/DUU;'1I=&AR96%D960\+V1E<V-R:7!T
    M:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y-=6QT:71H<F5A
    M9&5D/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R
    M;W!E<G1Y+71Y<&4^8F]O;&5A;CPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93YT<G5E/"]C;VYF:6<M<')O
    M<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#QC;VYF
    M:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/D-O;FYE8W1I;VY5
    M<V5R3F%M93PO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T
    M>2UN86UE/D-O;FYE8W1I;VY5<V5R3F%M93PO8V]N9FEG+7!R;W!E<G1Y+6YA
    M;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3
    M=')I;F<\+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM=F%L=64^8F5N/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @
    M(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#QC;VYF:6<M<')O<&5R='D^"B @
    M(" @(" @/&1E<V-R:7!T:6]N/D-O;FYE8W1I;VY087-S=V]R9#PO9&5S8W)I
    M<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D-O;FYE8W1I
    M;VY087-S=V]R9#PO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O
    M;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\+V-O;F9I9RUP
    M<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L=64^
    M<&%S<W=O<F0\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG
    M+7!R;W!E<G1Y/@H@(" @/&-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S
    M8W)I<'1I;VX^0V]N;F5C=&EO;E523#PO9&5S8W)I<'1I;VX^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UN86UE/D-O;FYE8W1I;VY54DP\+V-O;F9I9RUP
    M<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YJ
    M879A+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @
    M(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/FID8F,Z;7ES<6PZ+R]B96YX,C(O
    M9&5M;S]U<V5R/6)E;B9A;7 [<&%S<W=O<F0]<&%S<W=O<F0\+V-O;F9I9RUP
    M<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y/@H@(" @/&-O
    M;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^0V]N;F5C=&EO
    M;D1R:79E<DYA;64\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O
    M<&5R='DM;F%M93Y#;VYN96-T:6]N1')I=F5R3F%M93PO8V]N9FEG+7!R;W!E
    M<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N
    M;&%N9RY3=')I;F<\+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC
    M;VYF:6<M<')O<&5R='DM=F%L=64^8V]M+FUY<W%L+FID8F,N1')I=F5R/"]C
    M;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>3X*
    M(" @(#QC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/E!E
    M<G-I<W1E;F-E36%N86=E<D9A8W1O<GE#;&%S<SPO9&5S8W)I<'1I;VX^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/E!E<G-I<W1E;F-E36%N86=E
    M<D9A8W1O<GE#;&%S<SPO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\+V-O;F9I
    M9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L
    M=64^8V]M+G-O;&%R;65T<FEC+FMO9&\N:6UP;"YJ9&)C+DI$0D-097)S:7-T
    M96YC94UA;F%G97)&86-T;W)Y/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @
    M(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#PA+2UC;VYF:6<M<')O<&5R='D^
    M"B @(" @(" @/&1E<V-R:7!T:6]N/D-O;FYE8W1I;VY&86-T;W)Y3F%M93PO
    M9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D-O
    M;FYE8W1I;VY&86-T;W)Y3F%M93PO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\
    M+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R
    M='DM=F%L=64^/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I
    M9RUP<F]P97)T>2TM/@H@(" @/"$M+6-O;F9I9RUP<F]P97)T>3X*(" @(" @
    M(" \9&5S8W)I<'1I;VX^0V]N;F5C=&EO;D9A8W1O<GDR3F%M93PO9&5S8W)I
    M<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D-O;FYE8W1I
    M;VY&86-T;W)Y,DYA;64\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @
    M(#QC;VYF:6<M<')O<&5R='DM='EP93YJ879A+FQA;F<N4W1R:6YG/"]C;VYF
    M:6<M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A
    M;'5E/CPO8V]N9FEG+7!R;W!E<G1Y+79A;'5E/@H@(" @/"]C;VYF:6<M<')O
    M<&5R='DM+3X*(" @(#QC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R
    M:7!T:6]N/DUA>%!O;VP\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM;F%M93Y-87A0;V]L/"]C;VYF:6<M<')O<&5R='DM;F%M93X*
    M(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:6YT/"]C;VYF:6<M<')O
    M<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/C@P
    M/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T
    M>3X*(" @(#QC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N
    M/DUI;E!O;VP\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R
    M='DM;F%M93Y-:6Y0;V]L/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @
    M(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:6YT/"]C;VYF:6<M<')O<&5R='DM
    M='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/C \+V-O;F9I
    M9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y/@H@(" @
    M/&-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^37-786ET
    M/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA;64^
    M37-786ET/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG
    M+7!R;W!E<G1Y+71Y<&4^:6YT/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @
    M(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/C4P,# \+V-O;F9I9RUP<F]P
    M97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y/@H@(" @/&-O;F9I
    M9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^1&5F875L=$9E=&-H
    M5&AR97-H;VQD/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E
    M<G1Y+6YA;64^1&5F875L=$9E=&-H5&AR97-H;VQD/"]C;VYF:6<M<')O<&5R
    M='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:6YT/"]C
    M;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y
    M+79A;'5E/C,P/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I
    M9RUP<F]P97)T>3X*(" @(#QC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E
    M<V-R:7!T:6]N/D1E9F%U;'1&971C:$)A=&-H4VEZ93PO9&5S8W)I<'1I;VX^
    M"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D1E9F%U;'1&971C:$)A
    M=&-H4VEZ93PO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I
    M9RUP<F]P97)T>2UT>7!E/FEN=#PO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93XQ,#PO8V]N9FEG+7!R;W!E
    M<G1Y+79A;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='D^"B @(" \(2TM8V]N
    M9FEG+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY1=65R>49I;'1E
    M<DQI<W1E;F5R<SPO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P
    M97)T>2UN86UE/E%U97)Y1FEL=&5R3&ES=&5N97)S/"]C;VYF:6<M<')O<&5R
    M='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:F%V82YL
    M86YG+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O
    M;F9I9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*
    M(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \8V]N9FEG+7!R;W!E<G1Y
    M/@H@(" @(" @(#QD97-C<FEP=&EO;CY%;F%B;&51=65R>45X=&5N<VEO;G,\
    M+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y%
    M;F%B;&51=65R>45X=&5N<VEO;G,\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@
    M(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YB;V]L96%N/"]C;VYF:6<M
    M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E
    M/F9A;'-E/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP
    M<F]P97)T>3X*(" @(#PA+2UC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E
    M<V-R:7!T:6]N/D-A8VAE4F5F97)E;F-E4VEZ93PO9&5S8W)I<'1I;VX^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D-A8VAE4F5F97)E;F-E4VEZ
    M93PO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P
    M97)T>2UT>7!E/FEN=#PO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU
    M93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \(2TM8V]N9FEG+7!R
    M;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY5<V53;V9T5')A;G-A8W1I
    M;VY#86-H93PO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T
    M>2UN86UE/E5S95-O9G14<F%N<V%C=&EO;D-A8VAE/"]C;VYF:6<M<')O<&5R
    M='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^8F]O;&5A
    M;CPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P
    M97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N
    M9FEG+7!R;W!E<G1Y+2T^"B @(" \(2TM8V]N9FEG+7!R;W!E<G1Y/@H@(" @
    M(" @(#QD97-C<FEP=&EO;CY#;VYN96-T:6]N4')O<&5R=&EE<SPO9&5S8W)I
    M<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D-O;FYE8W1I
    M;VY0<F]P97)T:65S/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \
    M8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:F%V82YL86YG+E-T<FEN9SPO8V]N9FEG
    M+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU
    M93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E
    M<G1Y+2T^"B @(" \8V]N9FEG+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP
    M=&EO;CY!=71O4F5T=7)N5&EM96]U=#PO9&5S8W)I<'1I;VX^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UN86UE/D%U=&]2971U<FY4:6UE;W5T/"]C;VYF
    M:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y
    M<&4^:6YT/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG
    M+7!R;W!E<G1Y+79A;'5E/C$P/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @
    M(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#PA+2UC;VYF:6<M<')O<&5R='D^
    M"B @(" @(" @/&1E<V-R:7!T:6]N/D1I8W1I;VYA<GE#;&%S<SPO9&5S8W)I
    M<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D1I8W1I;VYA
    M<GE#;&%S<SPO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I
    M9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\+V-O;F9I9RUP<F]P
    M97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L=64^/"]C
    M;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>2TM
    M/@H@(" @/"$M+6-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I
    M;VX^4U%,17AE8W5T:6]N36%N86=E<D-L87-S/"]D97-C<FEP=&EO;CX*(" @
    M(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA;64^4U%,17AE8W5T:6]N36%N86=E
    M<D-L87-S/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG
    M+7!R;W!E<G1Y+71Y<&4^:F%V82YL86YG+E-T<FEN9SPO8V]N9FEG+7!R;W!E
    M<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93X\+V-O
    M;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^
    M"B @(" \(2TM8V]N9FEG+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO
    M;CY$:6-T:6]N87)Y4')O<&5R=&EE<SPO9&5S8W)I<'1I;VX^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UN86UE/D1I8W1I;VYA<GE0<F]P97)T:65S/"]C
    M;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y
    M+71Y<&4^:F%V82YL86YG+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^
    M"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P
    M97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \8V]N
    M9FEG+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY397%U96YC949A
    M8W1O<GE#;&%S<SPO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P
    M97)T>2UN86UE/E-E<75E;F-E1F%C=&]R>4-L87-S/"]C;VYF:6<M<')O<&5R
    M='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:F%V82YL
    M86YG+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O
    M;F9I9RUP<F]P97)T>2UV86QU93YC;VTN<V]L87)M971R:6,N:V]D;RYI;7!L
    M+FID8F,N<V-H96UA+D1"4V5Q=65N8V5&86-T;W)Y/"]C;VYF:6<M<')O<&5R
    M='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#PA+2UC;VYF
    M:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/E-E<75E;F-E1F%C
    M=&]R>5!R;W!E<G1I97,\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM;F%M93Y397%U96YC949A8W1O<GE0<F]P97)T:65S/"]C;VYF
    M:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y
    M<&4^:F%V82YL86YG+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T
    M>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \8V]N9FEG
    M+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY787)N3VY097)S:7-T
    M96YT5'EP949A:6QU<F4\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM;F%M93Y787)N3VY097)S:7-T96YT5'EP949A:6QU<F4\+V-O
    M;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM
    M='EP93YB;V]L96%N/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \
    M8V]N9FEG+7!R;W!E<G1Y+79A;'5E/G1R=64\+V-O;F9I9RUP<F]P97)T>2UV
    M86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y/@H@(" @/&-O;F9I9RUP<F]P
    M97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^57-E4')E<&%R9613=&%T96UE
    M;G1S/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA
    M;64^57-E4')E<&%R9613=&%T96UE;G1S/"]C;VYF:6<M<')O<&5R='DM;F%M
    M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^8F]O;&5A;CPO8V]N
    M9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UV
    M86QU93YT<G5E/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I
    M9RUP<F]P97)T>3X*(" @(#PA+2UC;VYF:6<M<')O<&5R='D^"B @(" @(" @
    M/&1E<V-R:7!T:6]N/E-Y;F-H<F]N:7IE4V-H96UA/"]D97-C<FEP=&EO;CX*
    M(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA;64^4WEN8VAR;VYI>F538VAE
    M;6$\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O
    M<&5R='DM='EP93YB;V]L96%N/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @
    M(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/CPO8V]N9FEG+7!R;W!E<G1Y
    M+79A;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='DM+3X*(" @(#PA+2UC;VYF
    M:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/E5S94)A=&-H9613
    M=&%T96UE;G1S/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E
    M<G1Y+6YA;64^57-E0F%T8VAE9%-T871E;65N=',\+V-O;F9I9RUP<F]P97)T
    M>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YB;V]L96%N
    M/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E
    M<G1Y+79A;'5E/CPO8V]N9FEG+7!R;W!E<G1Y+79A;'5E/@H@(" @/"]C;VYF
    M:6<M<')O<&5R='DM+3X*(" @(#QC;VYF:6<M<')O<&5R='D^"B @(" @(" @
    M/&1E<V-R:7!T:6]N/D9L871);FAE<FET86YC94UA<'!I;F<\+V1E<V-R:7!T
    M:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y&;&%T26YH97)I
    M=&%N8V5-87!P:6YG/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \
    M8V]N9FEG+7!R;W!E<G1Y+71Y<&4^8F]O;&5A;CPO8V]N9FEG+7!R;W!E<G1Y
    M+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93YT<G5E/"]C
    M;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>3X*
    M(" @(#PA+2UC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N
    M/E-T871E;65N=$-A8VAE36%X4VEZ93PO9&5S8W)I<'1I;VX^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UN86UE/E-T871E;65N=$-A8VAE36%X4VEZ93PO
    M8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T
    M>2UT>7!E/FEN=#PO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O
    M;F9I9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*
    M(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \(2TM8V]N9FEG+7!R;W!E
    M<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY3=&%T96UE;G1%>&5C=71I;VY4
    M:6UE;W5T/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y
    M+6YA;64^4W1A=&5M96YT17AE8W5T:6]N5&EM96]U=#PO8V]N9FEG+7!R;W!E
    M<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FEN=#PO
    M8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P97)T
    M>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG
    M+7!R;W!E<G1Y+2T^"B @(" \(2TM8V]N9FEG+7!R;W!E<G1Y/@H@(" @(" @
    M(#QD97-C<FEP=&EO;CY344Q%>&5C=71I;VY,:7-T96YE<D-L87-S/"]D97-C
    M<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA;64^4U%,17AE
    M8W5T:6]N3&ES=&5N97)#;&%S<SPO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\
    M+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R
    M='DM=F%L=64^/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I
    M9RUP<F]P97)T>2TM/@H@(" @/"$M+6-O;F9I9RUP<F]P97)T>3X*(" @(" @
    M(" \9&5S8W)I<'1I;VX^5')A;G-A8W1I;VY)<V]L871I;VX\+V1E<V-R:7!T
    M:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y4<F%N<V%C=&EO
    M;DES;VQA=&EO;CPO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O
    M;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\+V-O;F9I9RUP
    M<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L=64^
    M/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T
    M>2TM/@H@(" @/&-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I
    M;VX^36%N86=E9%)U;G1I;65#;&%S<SPO9&5S8W)I<'1I;VX^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UN86UE/DUA;F%G9612=6YT:6UE0VQA<W,\+V-O
    M;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM
    M='EP93YJ879A+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O<&5R='DM='EP93X*
    M(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/F-O;2YS;VQA<FUE=')I
    M8RYK;V1O+F5E+DI.1$E-86YA9V5D4G5N=&EM93PO8V]N9FEG+7!R;W!E<G1Y
    M+79A;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='D^"B @(" \8V]N9FEG+7!R
    M;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY-86YA9V5D4G5N=&EM95!R
    M;W!E<G1I97,\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R
    M='DM;F%M93Y-86YA9V5D4G5N=&EM95!R;W!E<G1I97,\+V-O;F9I9RUP<F]P
    M97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YJ879A
    M+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \
    M8V]N9FEG+7!R;W!E<G1Y+79A;'5E/E1R86YS86-T:6]N36%N86=E<DYA;64]
    M:F%V87@O=')A;G-A8W1I;VXO5')A;G-A8W1I;VY-86YA9V5R/"]C;VYF:6<M
    M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>3X*"B @(" @
    M(" @/&%U=&AE;G1I8V%T:6]N+6UE8VAA;FES;3X*(" @(" @(" @(" @/&%U
    M=&AE;G1I8V%T:6]N+6UE8VAA;FES;2UT>7!E/D)A<VEC4&%S<W=O<F0\+V%U
    M=&AE;G1I8V%T:6]N+6UE8VAA;FES;2UT>7!E/@H@(" @(" @(" @(" \8W)E
    M9&5N=&EA;"UI;G1E<F9A8V4^:F%V87@N<F5S;W5R8V4N<V5C=7)I='DN4&%S
    M<W=O<F1#<F5D96YT:6%L/"]C<F5D96YT:6%L+6EN=&5R9F%C93X*(" @(" @
    M(" @(" @/"]A=71H96YT:6-A=&EO;BUM96-H86YI<VT^"B @(" @(" @(" @
    M(#QR96%U=&AE;G1I8V%T:6]N+7-U<'!O<G0^9F%L<V4\+W)E875T:&5N=&EC
    M871I;VXM<W5P<&]R=#X*(" @(#PO<F5S;W5R8V5A9&%P=&5R/@H\+V-O;FYE
    &8W1O<CX*
    `
    end

  • Download weblogic server 6.1 upgrade from sp1 to sp2

    can u give me link to download the weblogic server 6.1 sp1 upgarde to sp2

    NSRao <[email protected]> wrote in message news:<[email protected]>...
    can u give me link to download the weblogic server 6.1 sp1 upgarde to sp2go to http://support.bea.com and login. then you will see a selection for
    service packs near the bottom of the center column. you must have an esupport
    account to get the service packs.
    Wayne

  • Calling WS from WebLogic server 8.1 that is behind a Proxy server

    Hi,
    I have a web application deployed on WebLogic server 8.1 sp1. And my server is
    behind a http proxy server. Now one of the components in the application makes
    a web service call to a service located external to the system, and it always
    throws "java.net.UnknownHostException". I have set the Java system properties
    http.proxyHost = my proxy server, http.proxySet = true and http.proxyPort = 80
    and it still does not help.
    If I try to evaluate the web service component as a stand alone client using WebLogic's
    webserviceclient.jar, everything works fine. I can't figure what I have to do
    to get this component working from within the WebLogic server. Can anybody provide
    me with inputs, comments or suggestions.
    Naveen.

    Found solution. Followed Part 2 of the solution as explained in http://support.bea.com/application?namespace=askbea&origin=ask_bea_answer.jsp&event=link.view_answer_page_solution&answerpage=solution&page=wlw/S-19283.htm
    What surprises me is that this solution to a common problem is hidden and hard
    to find. If I am correct, no part of WLS 8.1 documentation suggests this. Rather
    the doc says, set the system properties for the standard JDK 1.4 network properties
    and it should work fine. If it is actually supposed to work like this, is it a
    bug then?
    "Naveen Kumar" <[email protected]> wrote:
    >
    Hi,
    I have a web application deployed on WebLogic server 8.1 sp1. And my
    server is
    behind a http proxy server. Now one of the components in the application
    makes
    a web service call to a service located external to the system, and it
    always
    throws "java.net.UnknownHostException". I have set the Java system properties
    http.proxyHost = my proxy server, http.proxySet = true and http.proxyPort
    = 80
    and it still does not help.
    If I try to evaluate the web service component as a stand alone client
    using WebLogic's
    webserviceclient.jar, everything works fine. I can't figure what I have
    to do
    to get this component working from within the WebLogic server. Can anybody
    provide
    me with inputs, comments or suggestions.
    Naveen.

  • Trouble starting managed weblogic server on another machine in  acluster

    Hi,
              I was having trouble starting managed weblogic server on another machine in a cluster from the command prompt
              I have following setup:
              1) BEA weblogic is installed on 2 machines - local machine A with ip address 172.17.2.219 and another machine B with ip address 172.17.2.201
              2)node manager is running on both machines
              3)An admin server myserver on the local machine at port 7001
              4)In the admin tree under Machines a new machine is created 'Machine1' with Node manager Listen Address: 172.17.2.201
              5) The managed server 'BEAServerMan1 ' instance is created with listen Address 172.17.2.201 and port 7705. This Server is assigened to Machine1. The server also belongs to a cluster 'Cluster1' where the 172.17.2.201:7705 is part of the Cluster Address.
              I can start 'BEAServerMan1 from http://172.17.2.16:7001/console/
              But I am unable to start BEAServerMan1 from the console using the command :
              startManagedWebLogic BEAServerMan1 http://172.17.2.219:7001
              startManagedWebLogic.sh BEAServerMan1 http://172.17.2.219:7001
              CLASSPATH=/opt/BEA/j2sdk1.4.1_03/lib/tools.jar:/opt/BEA/weblogic81/server/lib/weblogic_sp.jar:/opt/BEA/weblogic81/server/lib/weblogic.jar:/opt/BEA/weblogic81/server/lib/ojdbc14.jar::/opt/BEA/weblogic81/common/eval/pointbase/lib/pbserver44.jar:/opt/BEA/weblogic81/common/eval/pointbase/lib/pbclient44.jar:/opt/BEA/j2sdk1.4.1_03/jre/lib/rt.jar:/opt/BEA/weblogic81/server/lib/webservices.jar:/opt/BEA/j2sdk1.4.1_03/bin:/opt/BEA/j2sdk1.4.1_03:/opt/BEA/j2re1.4.1_03/bin:/opt/BEA/j2re1.4.1_03:/opt/BEA/j2sdk1.4.1_03/lib/tools.jar:/opt/oracle/OraHome1/jdbc/lib/classes111.jar:/opt/oracle/OraHome1/jdbc/lib/nls_charset11.jarx:/opt/BEA/user_projects/domains/mydomain/myserver/stage/_appsdir_dyn_ear/dyn.war:/opt/BEA/user_projects/domains/mydomain/./myserver/.wlnotdelete/extract/myserver__appsdir_dyn_ear_dyn/jarfiles/WEB-INF/lib/dspjspTaglib1_036773.jar:/usr/bin/j2re1_3_1_11/bin:/usr/bin/j2sdk1_3_1_11/bin:/usr/bin/j2sdk1_3_1_11:/usr/bin/j2sdk1_3_1_11/lib/tools.jar
              PATH=/opt/BEA/weblogic81/server/bin:/opt/BEA/j2sdk1.4.1_03/jre/bin:/opt/BEA/j2sdk1.4.1_03/bin:/opt/BEA/j2sdk1.4.1_03/bin:/opt/BEA/j2sdk1.4.1_03:/opt/BEA/j2re1.4.1_03/bin:/opt/BEA/j2re1.4.1_03:/opt/BEA/ATG6.2.0/home/bin:/usr/xpg4/bin:/opt/bmc/Patrol3/Solaris28-sun4/bin:/usr/bin::/usr/openwin/bin:/bin:/usr/ucb:/usr/local/sbin:/usr/dt/bin:/opt/RICHPse/bin:/usr/bin/j2re1_3_1_11/bin:/usr/bin/j2sdk1_3_1_11/bin
              * To start WebLogic Server, use a username and *
              * password assigned to an admin-level user. For *
              * server administration, use the WebLogic Server *
              * console at http://<hostname>:<port>/console *
              <13-Jan-2005 3:22:20 o'clock PM EST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 1.4.1_03-b02 from Sun Microsystems Inc.>
              <13-Jan-2005 3:22:21 o'clock PM EST> <Info> <Management> <BEA-141140> <The managed server is going to contact the admin server at http://172.17.2.219:7001 to check if there exists a running admin server at this URL.>
              <13-Jan-2005 3:22:22 o'clock PM EST> <Info> <Configuration Management> <BEA-150017> <This server is being started as a dependent managed server.>
              <13-Jan-2005 3:22:22 o'clock PM EST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 8.1 SP1 Fri Jun 20 23:06:40 PDT 2003 271009
              WebLogic XMLX Module 8.1 SP1 Fri Jun 20 23:06:40 PDT 2003 271009>
              <13-Jan-2005 3:22:22 o'clock PM EST> <Info> <Configuration Management> <BEA-150015> <Connecting to the administration server http://172.17.2.219:7001 to retrieve the initial configuration.>
              <13-Jan-2005 3:22:27 o'clock PM EST> <Notice> <Log Management> <BEA-170019> <The server log file /opt/BEA/user_projects/domains/mydomain/BEAServerMan1 /BEAServerMan1 .log is opened. All server side log events will be written to this file.>
              <13-Jan-2005 3:22:37 o'clock PM EST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
              <13-Jan-2005 3:22:38 o'clock PM EST> <Notice> <WebLogicServer> <BEA-000328> <Starting WebLogic Managed Server "BEAServerMan1 " for domain "mydomain">
              <13-Jan-2005 3:22:50 o'clock PM EST> <Notice> <Cluster> <BEA-000138> <Listening for announcements from cluster Cluster1 on 237.0.0.1:7001.>
              <13-Jan-2005 3:22:50 o'clock PM EST> <Notice> <Cluster> <BEA-000133> <Waiting to synchronize with other running members of Cluster1.>
              <13-Jan-2005 3:23:24 o'clock PM EST> <Emergency> <WebLogicServer> <BEA-000350> <Unable to create a server socket on Channel Default for: 172.17.2.201, port: 7705. java.net.BindException: Cannot assign requested address Perhaps the address 172.17.2.201 is incorrect or another process is using port 7705.>
              <13-Jan-2005 3:23:24 o'clock PM EST> <Emergency> <Security> <BEA-090085> <Server failed to bind to the configured port. The port may already be used by another process.>
              <13-Jan-2005 3:23:24 o'clock PM EST> <Emergency> <WebLogicServer> <BEA-000342> <Unable to initialize the server: Server failed to bind to the requested port. See preceeding log message for details.>
              The WebLogic Server did not start up properly.
              Exception raised: 'weblogic.server.ServerLifecycleException: Server failed to bind to the requested port. See preceeding log message for details.'
              Reason: Server failed to bind to the requested port. See preceeding log message for details.
              ***************************************************************************

    Hi
              i am also facing the same problem.kindly reply for th solution if you got.
              D:\bea1\user_projects_cluster\mydomain>startManagedWebLogic server2 10.16.96.21:
              7001
              D:\bea1\user_projects_cluster\mydomain>echo off
              CLASSPATH=d:\bea1\jdk131_03\lib\tools.jar;d:\bea1\weblogic700\server\lib\weblogi
              c_sp.jar;d:\bea1\weblogic700\server\lib\weblogic.jar;F:\bea\weblogic81\server\li
              b;D:\;c:\
              PATH=.;d:\bea1\weblogic700\server\bin;d:\bea1\jdk131_03\bin;E:\oracle\product\10
              .2.0\client_1\bin;C:\Program Files\Common Files\NetSarang;C:\WINDOWS\system32;C:
              \WINDOWS;C:\WINDOWS\System32\Wbem;F:\bea\jdk142_05\bin;C:\PROGRA~1\IBM\CLIENT~1;
              C:\PROGRA~1\IBM\CLIENT~1\Shared;C:\PROGRA~1\IBM\CLIENT~1\Emulator;
              * To start WebLogic Server, use a username and *
              * password assigned to an admin-level user. For *
              * server administration, use the WebLogic Server *
              * console at http://[hostname]:[port]/console *
              D:\bea1\user_projects_cluster\mydomain>"d:\bea1\jdk131_03\bin\java" -hotspot -Xm
              s32m -Xmx200m -Dweblogic.security.SSL.trustedCAKeyStore=d:\bea1\weblogic700\serv
              er\lib\cacerts -Dweblogic.Name="server2" -Dbea.home="d:\bea1" -Dweblogic.managem
              ent.username= -Dweblogic.management.password= -Dweblogic.management.server="10.1
              6.96.21:7001" -Dweblogic.ProductionModeEnabled= -Djava.security.policy="d:\bea1\
              weblogic700\server\lib\weblogic.policy" weblogic.Server
              <Sep 20, 2007 1:47:13 PM IST> <Info> <Security> <090065> <Getting boot identity
              from user.>
              Enter username to boot WebLogic server:weblogic
              Enter password to boot WebLogic server:
              Starting WebLogic Server...
              Connecting to http://10.16.96.21:7001...
              <Sep 20, 2007 1:47:25 PM IST> <Notice> <Security> <090082> <Security initializin
              g using realm myrealm.>
              <Sep 20, 2007 1:47:25 PM IST> <Notice> <WebLogicServer> <000328> <Starting WebLo
              gic Managed Server "server2" for domain "mydomain">
              Starting Cluster Service...
              <Sep 20, 2007 1:47:46 PM IST> <Notice> <Cluster> <000138> <Listening for announc
              ements from cluster mycluster on 237.0.0.1:7777>
              <Sep 20, 2007 1:47:46 PM IST> <Notice> <Cluster> <000133> <Waiting to synchroniz
              e with other running members of mycluster>
              <Sep 20, 2007 1:48:16 PM IST> <Notice> <Cluster> <000134> <Discovered and synchr
              onized with 1 other running members of mycluster>
              <Sep 20, 2007 1:48:17 PM IST> <Emergency> <WebLogicServer> <000350> <Unable to c
              reate a server socket on Channel Default for: 10.16.96.24/10.16.96.24, port: 900
              1. java.net.BindException: Cannot assign requested address: JVM_Bind Perhaps the
              address 10.16.96.24/10.16.96.24 is incorrect or another process is using port 9
              001.>
              <Sep 20, 2007 1:48:18 PM IST> <Emergency> <Security> <090085> <Server failed to
              bind to any port such that it is not reachable from the console.>
              <Sep 20, 2007 1:48:18 PM IST> <Emergency> <WebLogicServer> <000342> <Unable to i
              nitialize the server: Fatal initialization exception>
              The WebLogic Server did not start up properly.
              Reason: Fatal initialization exception
              D:\bea1\user_projects_cluster\mydomain>goto finish
              D:\bea1\user_projects_cluster\mydomain>ENDLOCAL
              D:\bea1\user_projects_cluster\mydomain>ENDLOCAL
              D:\bea1\user_projects_cluster\mydomain>

  • Getting error while hitting weblogic server from EBS client instance

    Hi,
    We are trying to hit weblogic server from EBS client instance.
    Steps Done from our side :-
    1. Created a self signed key store and certificate (.cer file) with server host name and used it for SSL enabling on weblogic server.
    2. Created a self signed key store and certificate (.cer file) with client host name and used it for SSL enabling on oracle EBS client.
    3. Imported client certificate .cer file in Server Side Trust Store.
    4. Used Server keystore for client side verification.
    We are getting these logs from Client Side (Oracle EBS AS) :-
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=Entrust Root Certification Authority - G2,OU=(c) 2009 Entrust\, Inc. - for authorized use only,OU=See www.entrust.net/legal-terms,O=Entrust\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=thawte Primary Root CA - G3,OU=(c) 2008 thawte\, Inc. - For authorized use only,OU=Certification Services Division,O=thawte\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\,LTD.,C=JP". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=VeriSign Universal Root Certification Authority,OU=(c) 2008 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:34 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=KEYNECTIS ROOT CA,OU=ROOT,O=KEYNECTIS,C=FR". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:34 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GeoTrust Primary Certification Authority - G3,OU=(c) 2008 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:34 AM AST> <Warning> <Security> <BEA-090542> <Certificate chain received from whjed-ebspay.nmc.com - 192.168.100.169 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.>
    <Nov 9, 2012 10:40:34 AM AST> <Warning> <Security> <BEA-090542> <Certificate chain received from whjed-ebspay.nmc.com - 192.168.100.169 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.>
    <Nov 9, 2012 10:40:34 AM AST> <Warning> <Security> <BEA-090542> <Certificate chain received from whjed-ebspay.nmc.com - 192.168.100.169 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.>
    javax.net.ssl.SSLKeyException: [Security:090542]Certificate chain received from whjed-ebspay.nmc.com - 192.168.100.169 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireException(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.ClientStateReceivedServerHello.handle(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.MessageInterpreter.interpretContent(Unknown Source)
    at com.certicom.tls.record.MessageInterpreter.decryptMessage(Unknown Source)
    at com.certicom.tls.record.ReadHandler.processRecord(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 com.certicom.io.OutputSSLIOStreamWrapper.write(Unknown Source)
    at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65)
    at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123)
    at java.io.FilterOutputStream.flush(FilterOutputStream.java:123)
    at weblogic.net.http.HttpURLConnection.writeRequests(HttpURLConnection.java:158)
    at weblogic.net.http.HttpURLConnection.getInputStream(HttpURLConnection.java:363)
    at oracle.apps.nmc.filetransmission.DigitalSigner.sendSignedFileToBank(DigitalSigner.java:532)
    at oracle.apps.nmc.filetransmission.DigitalSigner.signXmlFile(DigitalSigner.java:330)
    at oracle.apps.nmc.filetransmission.DigitalSigner.invokerInit(DigitalSigner.java:437)
    at oracle.apps.nmc.filetransmission.DigitalSigner.runProgram(DigitalSigner.java:390)
    at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    We are getting these logs from Server Side (Weblogic server) :-
    <Nov 9, 2012 10:34:51 AM AST> <Warning> <Security> <BEA-090482> <BAD_CERTIFICATE alert was received from whjed-apstest3.nmc.com - 192.168.100.246. Check the peer to determine why it rejected the certificate chain (trusted CA configuration, hostname verification). SSL debug tracing may be required to determine the exact reason the certificate was rejected.>
    Kindly suggest on this.
    Regards
    Deepak Gupta

    Hi;
    Please make a search BEA-090482 Check the peer to determine why it rejected at metalink. There are 8 docs avaliable, please review them
    Regard
    Helios

  • WebLogic Server 6.1:Incompatible service packs in CLASSPATH

    Hi,
    When I tried to start weblogic 6.1,I got the following exception.Please let me know,how to go ahead.
    The WebLogic Server did not start up properly.
    Exception raised: weblogic.common.internal.VersioningError: Incompatible service
    packs in CLASSPATH: (BEA Systems, WebLogic Server 6.1 SP1 09/18/2001 14:28:44
    #138716 , 6.1.1.0) not compatible with (BEA Systems, WebLogic XML Module 6.1 SP4
    11/08/2002 22:04:40 #221641 , 6.1.4.0)
    weblogic.common.internal.VersioningError: Incompatible service packs in CLASSPAT
    H: (BEA Systems, WebLogic Server 6.1 SP1 09/18/2001 14:28:44 #138716 , 6.1.1.0)
    not compatible with (BEA Systems, WebLogic XML Module 6.1 SP4 11/08/2002 22:04
    :40 #221641 , 6.1.4.0)
    at weblogic.common.internal.VersionInfo.verifyPackages(VersionInfo.java:
    126)
    at weblogic.common.internal.VersionInfo.<init>(VersionInfo.java:58)
    at weblogic.version.<clinit>(version.java:18)
    at weblogic.t3.srvr.T3Srvr.checkAccess(T3Srvr.java:277)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:340)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
    at weblogic.Server.main(Server.java:35)
    Reason: Fatal initialization exception
    Edited by: user13282066 on Jul 29, 2010 4:37 AM

    It looks like you are mixing SP1 and SP4 components in the server classpath.
    Leaving aside the issue of supporting WL 6.1 ( nearly 10 years old! ), you should look at the classpath which will be listed in the server's log file when it starts up.
    If this error has just recently started, has there been a modification to the startup scripts, or has there been a new patch installed?

  • .p12 Certificate import in weblogic server 10.3.6.0

    Hi,
    I am facing a issue regarding certificate import in weblogic server 10.3.6.0. In my project I built a java webservice where a https url  is invoked with xml input(correct format).Https url is restricted. I can not open this url from my browser. I got '403 : Forbidden' error in browser as well as webservice log in server. I asked my client. They gave me one .jks and one .p12 certificated file and password. When I installed this .p12 (giving password) in my local windows computer, I am able to open that https in my browser.I have imported this .p12 certificate in 'cacerts' as well as 'DemoTrust.jks' in weblogic server and restarted the server. But i am getting the same error(403 : Forbidden) in weblogic server.
    Where should I import this .p12 in weblogic server? I mean in which key store.
    FYI,
    This code is running fine in 10g production server.I haven't developed this code. I have migrated this code to 11.1.1.7.0.
    I am using this .jks() in the java code.       
            System.setProperty("javax.net.ssl.keyStore", keyStore.jks);
            System.setProperty("javax.net.ssl.keyStorePassword", "<password>");
    Weblogic server is running in unix environment.
    Read many posts... But did not any find right solution. Can anybody please help me solve this.

    If i remember correctly, .p12 will have both the public and private key.
    You need to convert it to a jks and configure the server to use this jks
    Converting certificate formats | Middleware wonders!!
    Weblogic SSL configuration
    Thanks,
    Faisal

  • Weblogic server 10.3.6 or 10.3.5?

    Hi
    We are currently on web logic server 10.3.5. JDK 1.6 is certified for this.
    As part of OBIEE upgrade from 11.1.1.5 to 11.1.1.6.2 we are looking at upgrading web logic server to 10.3.6.
    If we do this then we must also upgrade JDK to 1.7.
    Has anyone done this? Are there significant benefits to doing so, or should we just leave WLS to 10.3.5 and save ourselves having to upgrade JDK too?
    Thanks for any tips,
    DA.

    Hi,
    For the Oracle Certification Matrix ref:(just check your jdk version)
    Please check OBIEE11.1.1..6.0(Current System Certification matrix)
    http://www.oracle.com/technetwork/middleware/bi-enterprise-edition/bi-11gr1certmatrix-166168.xls
    Patch for weblogic 10.3.6.0 version
    You Can downloaded upgrade installer for 10.3.6 from support.oracle.com - Patch 13529639: PLACEHOLDER BUG FOR WEBLOGIC SERVER 11GR1 (10.3.6) UPGRADE INSTALLER
    the webLogic server 10.3.6.0 patch set to be applied to existing bugs fixed in WebLogic Server 10.3.5.0 installations, or prior WebLogic Server 10.3.X installations like Jdeveloper,ADF bugs resolved
    Note:Oracle WebLogic Server to either version 10.3.6 or 10.3.5 (both are supported in Release OBIEE 11.1.1.6.0)
    just refer the upgrade steps
    Re: upgrade 11.1.1.5 to 11.1.1.6 which Oracle BI Product Installer?
    Upgrade 11.1.1.5 to 11.1.1.6
    Thanks
    Deva

Maybe you are looking for

  • How do multiple developers share the same application module

    Is there a suggested method for multiple developers to share the same application module? We have 2 developers that will have EOs in the same directory and would like to know how they can share an application module but do development on different pi

  • Firefox will not open in Vista after upgrading to 9.

    I updated FF to ver. 9, now it will not open at all. I have tried downloading it and re-installing, but I get an error message that: FF is already running and that it must be shutdown first. Then I tried to uninstall FF in completely, but again I get

  • Enter sctivities by ship-to location

    Is it possible to start entering activities by ship-to location (i.e. store number)? Where would that information go, so that we could sort by it, or locate all activities for that store number/location when required? Is this possible?

  • Reg : custom infotype

    hi friends.. i m working in abap wit hr module.. i hav som basic doubts.. is it possible to create our own custom infotype ? is it possible to delete the already created custom infotype? plz can u tell me the ways to create and delete the custom info

  • XML Deserialization Error

    Hi, I'm workin on a prototyp based on the netweaver developer studio preview. after i've steped to the several tutorial for webservices und webdynpro. I've implemented a ejb/webservice combination for selecting a insurance contract from our databases