Weblogic GC activity

Hello,
We have some performance issue with our weblogic server. Upon investigation, I notice something related to GC which I am not sure is a normal behavior or not.
In the Server logs, I am seeing the following line periodically
<server name>.log00105:####<Jan 22, 2009 5:23:55 AM GMT> <Info> <Health> <host name> <server name> <weblogic.GCMonitor> <<anonymous>> <> <> <1232601835522> <BEA-310002> <10% of the total memory in the server is free>
Before our server went in to a bad state, this line was disappearing in the logs for almost 5 days.
Would like to know whether the absence of this line means the JVM did not perform the GC activity for those 5 days or is it like Weblogic not necessarily need to log this line but GC activity would be carried out by JVM periodically in the background?
Any pointers will be of great help for our investigation. Thank you.
Our server details are
OS - HP-UX
OSVersion: B.11.23
Java Vendor: Hewlett-Packard Company
Weblogic Version: WebLogic Server 9.2 MP1

The garbage collection cycles in the JVM and the report from the WebLogic GC Monitor are two different things. The JVM will go on executing GC cycles whether the GC Monitor runs at all. I have no idea why you wouldn't have seen this report in the logs.
Also note that if you're concerned that the free memory gets to such a low level, if you're not using a generational collector, or you end up with a very large young generation, it's perfectly natural for the free memory to get very low, just before the GC that bumps it way up to 60-70 % free.

Similar Messages

  • Weblogic with Active Directory Authentication provider problem: DN for user ....: null

    I have a java application (SSO via SAML2) that uses Weblogic as a Identity Service Provider. All works well using users created directly in Weblogic. However, I need to add support for Active Directory. So, as per documentation:
    - I defined an Active Directory Authentication provider
    - changed it's order in the Authentication Providers list so that it comes first
    - set the control flag to SUFFICIENT and configured the Provider Specific; here's the concerned part in config.xml:
    <sec:authentication-provider xsi:type="wls:active-directory-authenticatorType">
            <sec:name>MyOwnADAuthenticator</sec:name>
            <sec:control-flag>SUFFICIENT</sec:control-flag>
            <wls:propagate-cause-for-login-exception>true</wls:propagate-cause-for-login-exception>
            <wls:host>10.20.150.4</wls:host>
            <wls:port>5000</wls:port>
            <wls:ssl-enabled>false</wls:ssl-enabled>
            <wls:principal>CN=tadmin,CN=wl,DC=at,DC=com</wls:principal>
            <wls:user-base-dn>CN=wl,DC=at,DC=com</wls:user-base-dn>
            <wls:credential-encrypted>{AES}deleted</wls:credential-encrypted>
            <wls:cache-enabled>false</wls:cache-enabled>
            <wls:group-base-dn>CN=wl,DC=at,DC=com</wls:group-base-dn>
    </sec:authentication-provider>
    I configured a AD LDS instance(Active Directory Lightweight Directory Services) on a Windows Server 2008 R2. I created users and one admin user "tadmin" which was added to Administrators members. I also made sure to set msDS-UserAccountDisabled property to FALSE.
    After restarting Weblogic I can see that the AD LDS's users and groups are correctly fetched in Weblogic. But, when I try to connect with my application, using Username:tadmin and Password:<...> it does not work.
    Here's what I see in the log file:
    <BEA-000000> <LDAP Atn Login username: tadmin>
    <BEA-000000> <authenticate user:tadmin>
    <BEA-000000> <getConnection return conn:LDAPConnection {ldaps://10.20.150.4:5000 ldapVersion:3 bindDN:"CN=tadmin,CN=wl,DC=at,DC=com"}>
    <BEA-000000> <getDNForUser search("CN=wl,DC=at,DC=com", "(&(&(cn=tadmin)(objectclass=user))(!(userAccountControl:1.2.840.113556.1.4.803:=2)))", base DN & below)>
    <BEA-000000> <DN for user tadmin: null>
    <BEA-000000> <returnConnection conn:LDAPConnection {ldaps://10.20.150.4:5000 ldapVersion:3 bindDN:"CN=tadmin,CN=wl,DC=at,DC=com"}>
    <BEA-000000> <getConnection return conn:LDAPConnection {ldaps://10.20.150.4:5000 ldapVersion:3 bindDN:"CN=tadmin,CN=wl,DC=at,DC=com"}>
    <BEA-000000> <getDNForUser search("CN=wl,DC=at,DC=com", "(&(&(cn=tadmin)(objectclass=user))(!(userAccountControl:1.2.840.113556.1.4.803:=2)))", base DN & below)>
    <BEA-000000> <DN for user tadmin: null>
    <BEA-000000> <returnConnection conn:LDAPConnection {ldaps://10.20.150.4:5000 ldapVersion:3 bindDN:"CN=tadmin,CN=wl,DC=at,DC=com"}>
    <BEA-000000> <javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User tadmin denied
      at weblogic.security.providers.authentication.LDAPAtnLoginModuleImpl.login(LDAPAtnLoginModuleImpl.java:229)
      at com.bea.common.security.internal.service.LoginModuleWrapper$1.run(LoginModuleWrapper.java:110)
    So, I tried to look why do I have: <DN for user tadmin: null>. Using Apache Directory Studio I reproduced the ldap search request used in Weblogic and, sure enough, I get no results. But, changing the filter to only "(&(cn=tadmin)(objectclass=user))" (NOTICE, no userAccountControl), it works; here's the result from Apache Directory Studio:
    #!SEARCH REQUEST (145) OK
    #!CONNECTION ldap://10.20.150.4:5000
    #!DATE 2014-01-23T14:52:09.324
    # LDAP URL     : ldap://10.20.150.4:5000/CN=wl,DC=at,DC=com?objectClass?sub?(&(cn=tadmin)(objectclass=user))
    # command line : ldapsearch -H ldap://10.20.150.4:5000 -x -D "[email protected]" -W -b "CN=wl,DC=at,DC=com" -s sub -a always -z 1000 "(&(cn=tadmin)(objectclass=user))" "objectClass"
    # baseObject   : CN=wl,DC=at,DC=com
    # scope        : wholeSubtree (2)
    # derefAliases : derefAlways (3)
    # sizeLimit    : 1000
    # timeLimit    : 0
    # typesOnly    : False
    # filter       : (&(cn=tadmin)(objectclass=user))
    # attributes   : objectClass
    #!SEARCH RESULT DONE (145) OK
    #!CONNECTION ldap://10.20.150.4:5000
    #!DATE 2014-01-23T14:52:09.356
    # numEntries : 1
    (the "[email protected]" is defined as userPrincipalName in the tadmin user on AD LDS)
    As you can see, "# numEntries : 1" (and I can see as result the entry "CN=tadmin,CN=wl,DC=at,DC=com"  in Apache Directory Studio's interface); if I add the userAccountControl filter I get 0.
    I've read that the AD LDS does not use userAccountControl but "uses several individual attributes to hold the information that is contained in the flags of the userAccountControl attribute"; among those attributes is msDS-UserAccountDisabled which, as I said, I already set to FALSE.
    So, my question is, how do I make it work? Why do I have "<DN for user tadmin: null>" ? Is it the userAccountControl ? If it is, do I need to do some other configuration on my AD LDS ? Or, how can I get rid of the userAccountControl filter in Weblogic?
    I didn't seem to find it in config files or in the interface: I only have "User From Name Filter: (&(cn=%u)(objectclass=user))", there's no userAccountControl.
    Another difference I noticed is that, even though in Weblogic I have set ssl-enabled flag to false, in the logs I see ldaps and not ldap ( I'm not looking to setup something production-ready and I don't want SSL for the moment ).
    Here are some other things I tried but did not change anything:
    - the other "msDS-" attributes were not set so I tried initializing them to some value
    - I tried other users defined in AD LDS, not tadmin
    - in Weblogic I added users that were imported from AD LDS in Roles and Policies> Realm Roles > Global Roles > Roles > Admin
    - I removed all userAccountControl occurrences that I found in xml files in Weblogic (schema.ms.xml, schema.msad2003.xml)
    Any thoughts?
    Thanks.

    I managed to narrow it down: the AD LDS does not support the userAccountControl.
    Anyone knows how I can configure my Active Directory Authentication Provider in Weblogic so that it does not implicitly use userAccountControl as filter?
    <BEA-000000> <getDNForUser search("CN=wl,DC=at,DC=com", "(&(&(cn=tadmin)(objectclass=user))(!(userAccountControl:1.2.840.113556.1.4.803:=2)))", base DN & below)> 

  • Weblogic 10.3.3 and Windows Active Directory connection error

    Hi,
    A i am trying to set up Windows AD LDAP realm.
    But the connection is not working. I have already double checked the passwords, user names and host. Everything is correct - but the only thing that i got in the log file is this (with enabled debug):
    <Debug> <JMXCore> <srv-13> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <Administrator> <> <4b403cde0296f14d:-16ba72e6:12edd7cc453:-8000-0000000000000060> <1300804098113> <BEA-000000> <Invoking method listUsers with (java.lang.String,java.lang.Integer,)>
    <Debug> <SecurityAtn> <srv-13> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <4b403cde0296f14d:-16ba72e6:12edd7cc453:-8000-0000000000000060> <1300804098113> <BEA-000000> <list users, user:*,max:1001>
    <Debug> <SecurityAtn> <srv-13> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <4b403cde0296f14d:-16ba72e6:12edd7cc453:-8000-0000000000000060> <1300804098113> <BEA-000000> <new LDAP connection to host 192.168.10.253 port 389 use local connection is false>
    <Debug> <SecurityAtn> <srv-13> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <4b403cde0296f14d:-16ba72e6:12edd7cc453:-8000-0000000000000060> <1300804098113> <BEA-000000> <created new LDAP connection LDAPConnection { ldapVersion:2 bindDN:""}>
    <Debug> <DiagnosticContext> <srv-13> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <Administrator> <> <4b403cde0296f14d:-16ba72e6:12edd7cc453:-8000-0000000000000060> <1300804098128> <BEA-000000> <new localDiagnosticContext for thread [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'>
    <Debug> <WorkContext> <srv-13> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <Administrator> <> <4b403cde0296f14d:-16ba72e6:12edd7cc453:-8000-0000000000000060> <1300804098128> <BEA-000000> <copyThreadContexts(weblogic.management.JMXContext, | SOAP)>
    <Debug> <WorkContext> <srv-13> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <Administrator> <> <4b403cde0296f14d:-16ba72e6:12edd7cc453:-8000-0000000000000060> <1300804098128> <BEA-000000> <copyThreadContexts(weblogic.diagnostics.DiagnosticContext, | MIME_HEADER)>
    <Debug> <SecurityAtn> <srv-13> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <4b403cde0296f14d:-16ba72e6:12edd7cc453:-8000-0000000000000060> <1300804098144> <BEA-000000> <connection failed netscape.ldap.LDAPException: error result (49); 80090308: LdapErr: DSID-0C0903AA, comment: AcceptSecurityContext error, data 525, v1772 >
    <Error> <Console> <srv-13> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <Administrator> <> <4b403cde0296f14d:-16ba72e6:12edd7cc453:-8000-0000000000000060> <1300804098160> <BEA-240003> <Console encountered the following error weblogic.security.providers.authentication.LDAPAtnDelegateException: [Security:090294]could not get connection
         at weblogic.security.providers.authentication.LDAPAtnDelegate.getConnection(LDAPAtnDelegate.java:3479)
         at weblogic.security.providers.authentication.LDAPAtnDelegate.getConnection(LDAPAtnDelegate.java:3466)
         at weblogic.security.providers.authentication.LDAPAtnDelegate.listUsers(LDAPAtnDelegate.java:2251)
         at weblogic.security.providers.authentication.LDAPAuthenticatorImpl.listUsers(LDAPAuthenticatorImpl.java:178)
         at weblogic.security.providers.authentication.ActiveDirectoryAuthenticatorMBeanImpl.listUsers(ActiveDirectoryAuthenticatorMBeanImpl.java:227)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.management.jmx.modelmbean.WLSModelMBean.invoke(WLSModelMBean.java:437)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:836)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:761)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:449)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:447)
         at weblogic.management.mbeanservers.internal.JMXContextInterceptor.invoke(JMXContextInterceptor.java:268)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:449)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:447)
         at weblogic.management.mbeanservers.internal.SecurityInterceptor.invoke(SecurityInterceptor.java:444)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServer.invoke(WLSMBeanServer.java:323)
         at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$11$1.run(JMXConnectorSubjectForwarder.java:663)
         at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$11.run(JMXConnectorSubjectForwarder.java:661)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder.invoke(JMXConnectorSubjectForwarder.java:654)
         at javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1426)
         at javax.management.remote.rmi.RMIConnectionImpl.access$200(RMIConnectionImpl.java:72)
         at javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1264)
         at javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1366)
         at javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:788)
         at javax.management.remote.rmi.RMIConnectionImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
         at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:222)
         at javax.management.remote.rmi.RMIConnectionImpl_1033_WLStub.invoke(Unknown Source)
         at javax.management.remote.rmi.RMIConnector$RemoteMBeanServerConnection.invoke(RMIConnector.java:993)
         at weblogic.management.jmx.MBeanServerInvocationHandler.doInvoke(MBeanServerInvocationHandler.java:544)
         at weblogic.management.jmx.MBeanServerInvocationHandler.invoke(MBeanServerInvocationHandler.java:380)
         at $Proxy149.listUsers(Unknown Source)
         at com.bea.console.utils.security.UserUtils.getUsers(UserUtils.java:78)
         at com.bea.console.actions.security.users.UserTableAction.getCollection(UserTableAction.java:100)
         at com.bea.console.actions.security.ManagementBaseTableAction.execute(ManagementBaseTableAction.java:82)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:97)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2044)
         at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:91)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2121)
         at com.bea.console.internal.ConsolePageFlowRequestProcessor.processActionPerform(ConsolePageFlowRequestProcessor.java:261)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:556)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:853)
         at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:631)
         at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:159)
         at com.bea.console.internal.ConsoleActionServlet.process(ConsoleActionServlet.java:257)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:416)
         at com.bea.console.internal.ConsoleActionServlet.doGet(ConsoleActionServlet.java:134)
         at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1199)
         at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:686)
         at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.renderInternal(ScopedContentCommonSupport.java:266)
         at com.bea.portlet.adapter.scopedcontent.StrutsStubImpl.render(StrutsStubImpl.java:107)
         at com.bea.netuix.servlets.controls.content.NetuiContent.preRender(NetuiContent.java:292)
         at com.bea.netuix.nf.ControlLifecycle$6.visit(ControlLifecycle.java:429)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:727)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:146)
         at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:395)
         at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
         at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:208)
         at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:162)
         at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:389)
         at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:258)
         at com.bea.netuix.servlets.manager.UIServlet.doGet(UIServlet.java:212)
         at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:196)
         at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:253)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:821)
         at com.bea.console.utils.MBeanUtilsInitSingleFileServlet.service(MBeanUtilsInitSingleFileServlet.java:47)
         at weblogic.servlet.AsyncInitServlet.service(AsyncInitServlet.java:131)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.reflect.InvocationTargetException
         at weblogic.security.providers.authentication.LDAPAtnDelegate$LDAPFactory.newInstance(LDAPAtnDelegate.java:4153)
         at weblogic.security.utils.Pool.newInstance(Pool.java:37)
         at weblogic.security.utils.Pool.getInstance(Pool.java:33)
         at weblogic.security.providers.authentication.LDAPAtnDelegate.getConnection(LDAPAtnDelegate.java:3474)
         ... 117 more
    Caused by: netscape.ldap.LDAPException: error result (49); 80090308: LdapErr: DSID-0C0903AA, comment: AcceptSecurityContext error, data 525, v1772
         at netscape.ldap.LDAPConnection.checkMsg(LDAPConnection.java:4871)
         at netscape.ldap.LDAPConnection.simpleBind(LDAPConnection.java:1766)
         at netscape.ldap.LDAPConnection.authenticate(LDAPConnection.java:1264)
         at netscape.ldap.LDAPConnection.authenticate(LDAPConnection.java:1273)
         at netscape.ldap.LDAPConnection.bind(LDAPConnection.java:1562)
         at weblogic.security.providers.authentication.LDAPAtnDelegate$LDAPFactory.newInstance(LDAPAtnDelegate.java:4130)
         ... 120 more
    >
    could any one know where is the problem or do i need some patch to apply? I am running out of ideas what could be the cause to it.
    Thanks in advance!

    Hi ,
    From the error stack trace I could find the below error.
    Caused by: netscape.ldap.LDAPException: error result (49); 80090308: LdapErr: DSID-0C0903AA, comment: AcceptSecurityContext error, data 525, v1772
    This error occurs if there is a LDAP authentication issue for the user used to bind to Active Directory, the value
    Data 525, refers to user not found error that is used to bind to the Active Directory.
    Make sure you have the correct credentials to connect to the Active Directory.
    You can simplify the test using the LDAP Broswer, which helps you to connect to the LDAP servers.
    A sample usage of LDAP Broswer is given below.
    http://weblogic-wonders.com/weblogic/2010/05/20/connecting-to-weblogic-server-embedded-ldap-using-ldap-browser/
    Note: The LDAP Browsers help us to traverse the LDAP Tree, there are many LDAP Broswers available in the market.
    You can download a sample version of softerra.
    http://www.ldapbrowser.com/download.htm
    You can also refer the below link for details about WebLogic and Active Directory configuration.
    http://weblogic-wonders.com/weblogic/2010/12/04/configuring-active-directory-authenticator-with-weblogic-server/
    For more details about different LDAP Issues.
    http://weblogic-wonders.com/weblogic/2010/11/08/common-ldap-server-issues/
    Regards,
    Anandraj
    http://weblogic-wonders.com

  • Error starting managed server weblogic 10.3.5

    hi my jdeveloper is 11.1.2.0 and my weblogic is 10.3.5 am having error when trying to start my managed server
    the error am geting is
    or
            at weblogic.jdbc.common.internal.XAConnectionEnvFactory.makeConnection(X
    AConnectionEnvFactory.java:494)
            at weblogic.jdbc.common.internal.XAConnectionEnvFactory.createResource(X
    AConnectionEnvFactory.java:177)
            at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourceP
    oolImpl.java:1249)
            at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourceP
    oolImpl.java:1166)
            at weblogic.common.resourcepool.ResourcePoolImpl.start(ResourcePoolImpl.
    java:249)
            Truncated. see log file for complete stacktrace
    >
    <24 Jan 2014 11:03:14 AM> <Warning> <JDBC> <BEA-001129> <Received exception whil
    e creating connection for pool "jdbc/HRDS": Listener refused the connection with
    the following error:
    ORA-12505, TNS:listener does not currently know of SID given in connect descript
    or
    >
    <24 Jan 2014 11:03:15 AM> <Error> <Deployer> <BEA-149205> <Failed to initialize
    the application 'jdbc/HRDS' due to error weblogic.application.ModuleException: .
    weblogic.application.ModuleException:
            at weblogic.jdbc.module.JDBCModule.prepare(JDBCModule.java:302)
            at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(Modu
    leListenerInvoker.java:199)
            at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(Depl
    oymentCallbackFlow.java:517)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
            at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(Dep
    loymentCallbackFlow.java:159)
            Truncated. see log file for complete stacktrace
    Caused By: weblogic.common.ResourceException: Listener refused the connection wi
    th the following error:
    ORA-12505, TNS:listener does not currently know of SID given in connect descript
    or
            at weblogic.jdbc.common.internal.XAConnectionEnvFactory.makeConnection(X
    AConnectionEnvFactory.java:494)
            at weblogic.jdbc.common.internal.XAConnectionEnvFactory.createResource(X
    AConnectionEnvFactory.java:177)
            at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourceP
    oolImpl.java:1249)
            at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourceP
    oolImpl.java:1166)
            at weblogic.common.resourcepool.ResourcePoolImpl.start(ResourcePoolImpl.
    java:249)
            Truncated. see log file for complete stacktrace
    >
    <24 Jan 2014 11:03:17 AM> <Error> <Deployer> <BEA-149205> <Failed to initialize
    the application 'wsm-pm' due to error weblogic.management.DeploymentException: [
    J2EE:160149]Error while processing library references. Unresolved application li
    brary references, defined in weblogic-application.xml: [Extension-Name: oracle.w
    sm.seedpolicies, Specification-Version: 11.1.1, Implementation-Version: 11.1.1,
    exact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: oracle.wsm.seedpolicies, Specification-Version
    : 11.1.1, Implementation-Version: 11.1.1, exact-match: false].
            at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
            at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:613)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
            at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:184)
            at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:58)
            Truncated. see log file for complete stacktrace
    >
    <24 Jan 2014 11:03:18 AM> <Notice> <SipServer.Resource> <BEA-332401> <Initializi
    ng SipServer Resource with configuration com.bea.wcp.sip.management.descriptor.b
    eans.SipServerBeanImpl>
    <24 Jan 2014 11:03:18 AM> <Notice> <WLSS.Engine> <BEA-330071> <WebLogic Sip Serv
    er "madimad-b533821" patch version: WebLogic Server 10.3.4.0  Fri Dec 17 20:47:3
    3 PST 2010 1384255
    Javax Server Pages  Client Capable 1.2 Tue Jul 13 02:43:41 EDT 2010
    Expression Language 2.1 for JSP 1.0 Sun Jul 18 23:17:34 PDT 2010
    Javax Enterprise Servlets  Client Capable 1.0 Thu Aug 2 12:41:25 EDT 2007
    Eclipse Java Development Tools 3.5.2 Thu Sep 2 09:47:11 EDT 2010
    WebLogic java compiler utils package Client Capable 1.2 Thu Feb 11 03:38:50 EST
    2010
    WebLogic WebApp Container Public API Client Capable 1.4 Fri Oct 1 20:01:15 PDT 2
    010
    Oracle WebLogic Server Module Dependencies 10.3 Thu Oct 28 06:03:12 PDT 2010
    ANTLR Java based compiler generator Client 2.7 Mon Jun 11 12:19:48 EDT 2007
    WebLogic Descriptors for J2EE 1.5 Wed May 5 14:32:58 EDT 2010
    WebLogic Descriptors for J2EE 1.5 Binding Bundle
    WebLogic Specific Descriptors 1.3 Tue Sep 14 18:48:42 PDT 2010
    WebLogic Specific Descriptors 1.3 Binding Bundle
    WebLogic Datasource 1.9 Tue Oct 26 13:50:26 PDT 2010
    WebLogic Datasource 1.9 Binding Bundle
    WebLogic Beangen Client Capable 1.7 Wed Feb 24 16:02:48 PST 2010
    WebLogic Beangen 1.7 Binding Bundle
    WLDF Accessor Client Capable 1.5 Fri Sep 3 17:10:52 EDT 2010
    WLDF Accessor 1.5 Binding Bundle
    WebLogic Management Core Interfaces Client Capable 2.8 Wed Aug 11 08:20:03 PDT 2
    010
    WebLogic Management Core Interfaces 2.8 Binding Bundle
    WebLogic EJBGen Client Capable 1.1 Thu Jun 3 13:17:07 EDT 2010
    Apache Byte Code Engineering Library (BCEL) extracted from 5.2.zip from http://j
    akarta.apache.org/site/downloads/downloads_bcel.cgi with packages renamed from o
    rg.apache.bcel to com.bea.core.repackaged.apache.bcel Client 5.2 Tue May 15 09:5
    2:37 EDT 2007
    Apache commons collections package 3.2 Tue Mar 20 15:48:25 MDT 2007
    Apache commons lang package 2.1 Tue Mar 20 15:48:30 MDT 2007
    Apache commons pool package 1.3 Tue Mar 20 15:48:36 MDT 2007
    Apache commons io 1.4 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache commons fileupload 1.2.1 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache DOM implementation 1.0 Tue Mar 20 15:36:46 MDT 2007
    Apache Logging Support 1.0 Tue Mar 20 15:36:50 MDT 2007
    Apache OpenJPA classes 1.2 Thu Jul 22 05:16:07 EDT 2010
    XMLBeans - Apache SVN rev 962560 2.1 Thu Jul 15 09:52:54 EDT 2010
    BEA Logging Runtime Support Client Capable 1.8 Mon Jun 7 12:07:02 PDT 2010
    BEA Common Security Open SAML 1.0 Fri May 14 20:18:10 PDT 2010
    BEA OpenSAML 2.0 1.0 Wed Mar 24 13:18:27 PDT 2010
    bea-harvester-api2.0 Client Capable 2.3 Mon Feb 15 14:41:06 EST 2010
    bea-harvester-jmx2.0 Client Capable 2.3 Wed Feb 3 11:54:03 PST 2010
    bea-harvester-utils Client Capable 1.4 Mon Feb 15 14:41:06 EST 2010
    bea-mbean-typing-util 1.4 Wed Feb 24 19:15:33 EST 2010
    Javolution 3.7.19 3.7 Tue Aug 28 17:32:21 PDT 2007
    Joda-time 1.2.1 1.2 Tue Aug 28 17:32:27 PDT 2007
    BEA STAX Build Time Support 1.5 Tue May 4 07:32:25 PDT 2010
    BEA STAX Runtime Time Support Client Capable 1.7 Wed Aug 4 19:40:47 EDT 2010
    BEA Generic Annotations Client Capable 1.3 Sat Jul 11 00:30:54 EDT 2009
    BEA Kodo 1.3 Tue Dec 7 12:34:59 PST 2010
    BEA Kodo Integration Client Capable 1.6 Sun Nov 22 16:29:06 PST 2009
    BEA Kodo Integration 1.6 Binding Bundle
    BEA Kodo Integration Tools 1.3 Sat Feb 13 09:30:33 PST 2010
    XML Beans Marshalling (package renamed com.bea) SVN 962560 2.2 Thu Jul 15 09:52:
    54 EDT 2010
    WebLogic Utils Client Capable 1.9 Thu Nov 11 13:50:07 PST 2010
    Aspect 5.3 Fri Jun 4 14:55:18 PDT 2010
    BEA Apache Commons Logging Repackaged 1.2 Mon Jun 11 12:47:12 EDT 2007
    Spring Framework  1.1 Thu Dec 3 12:21:08 EST 2009
    Pitchfork 1.3 Thu Jun 3 13:17:07 EDT 2010
    ${description} 1.2 Fri Jun 25 16:25:26 EDT 2010
    CSS i18n 1.0 Fri Oct 8 10:32:52 EDT 2010
    CSS xacml 1.0 Fri Oct 8 10:32:52 EDT 2010
    SAML2 Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Engine Implementation 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Engine Interfaces 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security API 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Implementation 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security JDK Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    Common Security SAML 2.0 1.0 Fri Oct 8 10:32:52 EDT 2010
    Common Security SAML 2.0 Management JavaBeans 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Provider Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    SAML Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    XACML Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Provider Environment 1.0 Fri Oct 8 10:32:52 EDT 2010
    RSA certj 3.1 Wed May 5 15:11:55 PDT 2010
    Netscape LDAP JDK 1.2 Mon Jun 7 15:56:47 EDT 2010
    Commons Networking Utilty classes 1.0 Wed Feb 6 15:01:03 PST 2008
    WebLogic SAAJ 1.6 Wed Jun 16 22:02:31 EDT 2010
    WebLogic STAX Client Capable 1.8 Sat May 15 16:38:03 EDT 2010
    jaxb-impl.jar taken from Glassfish JAXB 2.1.9 1.0 Fri Aug 20 14:37:07 EDT 2010
    jaxb-impl.jar taken from Glassfish JAXB 2.1.12 1.0 Thu May 6 16:10:04 PDT 2010
    resolver.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:24 EST 2009
    Fastinfoset.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:27 EST 2009
    jaxws-rt.jar taken from Glassfish JAXWS 2.1.5 1.1 Wed Oct 13 20:37:41 PDT 2010
    Java.net implementation of MimePull.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu
    Dec 3 11:46:33 EST 2009
    Codehaus STaX Interfaces 3.0.1 1.0 Mon Mar 8 20:49:50 PST 2010
    Woodstox STaX Parser 4.0.5 1.0 Thu Dec 3 11:35:43 EST 2009
    jaxws-tools.jar taken from Glassfish JAXWS 2.1.5 1.1 Fri Sep 24 17:55:05 PDT 201
    0
    Java.net Stax Extensions 1.0 Tue Jun 3 07:12:06 PDT 2008
    Java.net xml stream buffer 1.0 Tue Mar 17 05:24:12 PDT 2009
    Jakarta ORO  1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Enterprise Activation 1.1 Tue Apr 8 09:31:17 PDT 2008
    Javax Annotation 1.0 Fri Dec 25 09:02:47 PST 2009
    Javax Interceptor 1.0 Tue Mar 20 15:37:16 MDT 2007
    Javax Enterprise Beans  3.0 Mon Jun 11 12:21:01 EDT 2007
    Java Data Objects 2.0 Mon Jun 11 12:20:56 EDT 2007
    Java Enterprise Deployment APIs  1.2 Tue Mar 20 15:37:28 MDT 2007
    Java Enterprise Messaging  1.1 Mon Jun 11 12:21:11 EDT 2007
    Java Web Services  2.0 Tue Mar 20 15:37:37 MDT 2007
    Javax Enterprise Mail 1.1 Mon Jul 6 10:41:09 MDT 2009
    Java Enterprise Management APIs  1.0 Tue Mar 20 15:37:49 MDT 2007
    Java Persistence Client Capable 1.0 Tue Oct 7 12:18:34 PDT 2008
    Java Connector  1.5 Mon Jun 11 12:22:07 EDT 2007
    Java Authorization Contract for Containers 1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Transaction APIs  Client Capable 1.0 Thu Aug 2 12:42:14 EDT 2007
    JAXB 2.1 Mon Jun 11 12:22:53 EDT 2007
    Java XML Registry 1.0 Wed Feb 6 15:01:03 PST 2008
    Java XML Soap Extensions 1.3 Mon Jun 11 12:22:59 EDT 2007
    Java Stream XML Extensions 1.1 Mon Jun 11 12:23:05 EDT 2007
    JAX-WS APIs 2.1 Mon Jun 11 12:23:16 EDT 2007
    Java API for XML-based RPC   1.2 Mon Jun 11 12:23:10 EDT 2007
    Monfox Dynamic SNMP Agent 1.1 Fri Mar 19 05:46:27 MDT 2010
    Serp bytecode manipulation framework 1.14.3 Fri Jun 11 12:06:08 PDT 2010
    WebLogic Apache Classes Client Capable 1.2 Thu Feb 18 22:06:19 PST 2010
    WebLogic BeanInfo Caching and Discovery Client Capable 2.4 Sat Oct 25 20:46:29 P
    DT 2008
    WebLogic Descriptor Client Capable 1.9 Tue Jul 20 16:03:09 EDT 2010
    Repackaged ASM-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-commons-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-tree-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-util-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Oracle JFR 1.0 Thu Feb 18 19:06:33 PST 2010
    WebLogic Diagnostics Core Interfaces Client Capable 2.5 Thu Jun 3 05:20:41 PDT 2
    010
    WebLogic Diagnostics Logging Client Capable 1.2 Fri Dec 12 11:37:59 MST 2008
    WebLogic Diagnostics Query Module Client Capable 1.2 Tue Oct 27 02:48:36 PDT 200
    9
    WebLogic Diagnostics Instrumentor Tool 1.7 Tue May 18 03:51:46 PDT 2010
    WebLogic Diagnostics Instrumentor Config Tool 1.7 Tue Jun 29 16:41:19 EDT 2010
    WebLogic Diagnostics JRockit Flight Recorder Interfaces Client Capable 1.1 Fri O
    ct 29 16:32:05 EDT 2010
    Diagnostics Notifications Module Client Capable 1.4 Sun Nov 22 16:03:32 PST 2009
    BEA Logging Runtime Support Client Capable 1.5 Thu Apr 29 20:43:42 EDT 2010
    WebLogic i18n Runtime Support Client Capable 1.8 Fri Sep 10 08:12:34 EDT 2010
    WebLogic i18n Build Support Client Capable 1.5 Fri Feb 19 15:03:15 EST 2010
    WebLogic I18N tools Client Capable 1.3 Sun Nov 22 16:03:32 PST 2009
    WebLogic Management JMX Interfaces 1.4 Thu Aug 12 11:16:22 PDT 2010
    WebLogic Security Provider Generation Tool 1.5 Wed Oct 14 16:39:28 MDT 2009
    WebLogic Security Provider Generation Tool Client Capable 1.5 Wed Oct 14 16:39:2
    8 MDT 2009
    WebLogic Messaging Kernel Client Capable 1.8 Mon Aug 23 21:42:11 EDT 2010
    WebLogic Resource Pool Client Capable 1.7 Mon Sep 27 12:00:08 EDT 2010
    WebLogic Socket Muxer API Client Capable 1.2 Thu Apr 1 21:16:27 EDT 2010
    WebLogic RMI Client Capable 1.8 Fri Sep 24 18:35:21 EDT 2010
    Common Security WebLogic Server Integration Support  1.0 Fri Oct 8 10:32:52 EDT
    2010
    Server Lifecycle Interfaces Client Capable 1.4 Fri Feb 19 15:03:15 EST 2010
    WebLogic Store Client Capable 1.7 Fri Dec 17 16:52:31 EST 2010
    WebLogic STORE GXA Client Capable 1.6 Mon Aug 23 21:16:10 EDT 2010
    WebLogic Store Admin Tool Client Capable 1.2 Thu Jan 21 10:24:18 PST 2010
    WebLogic JDBC Store Client Capable 1.3 Mon May 17 10:46:33 PDT 2010
    WebLogic JTA implementation Client Capable 2.7 Fri Sep 17 12:19:45 PDT 2010
    WebLogic Utils 1.9 Thu Nov 11 13:50:07 PST 2010
    Agent Utililities 1.1 Tue Feb 16 00:16:03 EST 2010
    WebLogic Utility Classloader implementations Client Capable 1.8 Mon Jun 28 19:28
    :16 PDT 2010
    WebLogic Utils for working with Expressions Client Capable 1.4 Tue Sep 29 14:45:
    53 EDT 2009
    WebLogic Utils for Dynamically Generated Class Wrappers Client Capable 1.4 Fri F
    eb 13 14:44:23 MST 2009
    WebLogic Timers Client Capable 1.7 Thu Feb 18 13:08:44 EST 2010
    WebLogic Work Manager Client Capable 1.9 Mon Oct 11 18:25:35 EDT 2010
    WebLogic Workarea Client Capable 1.7 Wed Feb 24 17:18:56 PST 2010
    WebLogic XML XPath Implementation Client Capable 1.4 Mon Feb 22 15:07:14 PST 201
    0
    Weblogic Tuxedo Connector Core Client Capable 1.5 Sat Jul 3 19:05:38 EDT 2010
    WebLogic Security 1.0 Fri Oct 8 10:32:52 EDT 2010
    Weblogic Server Java Authentication Helper Classes Client Capable 1.1 Mon Jul 5
    20:42:35 EDT 2010
    Weblogic Server Message Digest Utilities Client Capable 1.0 Thu Aug 2 12:51:30 E
    DT 2007
    Weblogic Server Authenticated Subject Client Capable 1.1 Thu Oct 28 05:46:37 PDT
    2010
    Weblogic Server Authenticated Subject Client Capable 1.5 Thu Sep 9 10:23:21 MDT
    2010
    PrintingSecurityManager - PSM 1.1 Tue Feb 16 05:30:08 PST 2010
    WebLogic security ssl classes 1.0 Tue Jun 15 17:39:53 EDT 2010
    WebLogic Nodemanager Plugin Client Capable 1.3 Tue Nov 18 18:23:10 EST 2008
    nodemanager module for managed processes 1.0 Thu Apr 8 15:14:38 PDT 2010
    WebLogic JMS Pool Client Capable 1.7 Mon Sep 27 12:00:08 EDT 2010
    Contains compiled schema type from WLS 9.0 for WLP compatibility 1.3 Wed Feb 24
    19:15:33 EST 2010
    WebLogic Http Pub/Sub Module Client Capable 1.6 Mon Jul 12 02:31:07 EDT 2010
    Class Redefinition Project 1.5 Mon May 10 19:48:21 EDT 2010
    Class Redefinition Project Client Capable 1.5 Mon Apr 5 17:00:52 PDT 2010
    Class Redefinition Project 1.5 Binding Bundle
    Commonj SDO 1.0 Wed Sep 24 19:11:23 PDT 2008
    WebLogic Coherence Descriptor 1.1 Wed May 5 15:17:47 EDT 2010
    WebLogic Coherence Descriptor 1.1 Binding Bundle
    This module contains all message catalogs 1.1 Fri Dec 17 08:04:35 PST 2010
    WebLogic WebService Public API's 1.1 Tue Sep 21 22:15:05 EDT 2010
    WebLogic EclipseLink Integration 1.0 Thu Feb 25 14:56:43 PST 2010
    WebLogic SCA Client 1.0 Thu Feb 25 00:27:10 EST 2010
    WebLogic RAC Module UCP Client Capable 1.0 Mon Sep 13 09:03:00 PDT 2010
    Oracle WebLogic Server on JRockit Virtual Edition Module Dependencies 10.3 Thu S
    ep 23 15:02:15 PDT 2010
    BEA Patches of apache ant Client Capable 1.2 Wed Jan 13 08:48:17 PST 2010
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server Datatier 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    WebLogic SIPServer Extension API 10.3.4.0 at 709997 built on 2010/09/27
    WebLogic SIPServer Extension API 10.3.4 at 709997 built on 2010/09/27
    WebLogic SIPServer CallState 10.3.4 at 709997 built on 2010/09/27
    Oracle WebLogic Communications SCTP 10.3.1 at 688160 built on 2009/03/11
    WebLogic WebService Databinding Plugins 1.2 Fri Oct 15 07:38:46 PDT 2010
    WebLogic WebService Databinding 1.2 Fri Oct 15 06:35:13 PDT 2010
    WebLogic SIP Activator 10.3.4 at 710163 built on 2010/09/30
    >
    <24 Jan 2014 11:03:25 AM> <Error> <WLSS.Engine> <BEA-330075> <There are no sip n
    or diameter channels targeted to server "madimad-b533821">
    <24 Jan 2014 11:03:25 AM> <Error> <WLSS.Engine> <BEA-330049> <Failed to start th
    e sip service, shutting down>
    C:\mydomain\base_domain\bin>

    i did but there is no respond
    i started the database
    C:\mydomain\base_domain\bin>startManagedWebLogic.cmd madimad-b533821
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=
    128m  -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;C
    :\PROGRA~1\Java\JDK16~1.0_2\lib\tools.jar;C:\mywls\wlserver\server\lib\weblogic_
    sp.jar;C:\mywls\wlserver\server\lib\weblogic.jar;C:\mywls\modules\features\weblo
    gic.server.modules_10.3.4.0.jar;C:\mywls\wlserver\server\lib\webservices.jar;C:\
    mywls\modules\ORGAPA~1.1/lib/ant-all.jar;C:\mywls\modules\NETSFA~1.0_1/lib/ant-c
    ontrib.jar;C:\oracle\Middleware\wlserver_10.3\sip\server\lib\weblogic_sip.jar;C:
    \Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\mywls\wlserver\co
    mmon\derby\lib\derbyclient.jar;C:\mywls\wlserver\server\lib\xqrl.jar
    PATH=;C:\mywls\wlserver\server\native\win\32;C:\mywls\wlserver\server\bin;C:\myw
    ls\modules\ORGAPA~1.1\bin;C:\PROGRA~1\Java\JDK16~1.0_2\jre\bin;C:\PROGRA~1\Java\
    JDK16~1.0_2\bin;C:\Program Files\PC Connectivity Solution\;C:\product\11.2.0\dbh
    ome_1\bin;C:\product\11.2.0\dbhome_1;C:\forms;C:\DevSuiteHome_1\jlib;C:\Program
    Files\PHP;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Fil
    es\Common Files\Roxio Shared\DLLShared;C:\Program Files\Common Files\Roxio Share
    d\DLLShared;C:\Program Files\Common Files\Roxio Shared\9.0\DLLShared;C:\Program
    Files\Common Files\DivX Shared;c:\Program Files\Java\jdk1.6.0_21\bin;C:\Program
    Files\Common Files\Roxio Shared\10.0\DLLShared;C:\Program Files\Common Files\Rox
    io Shared\DLLShared;C:\Program Files\Common Files\Roxio Shared\10.0\DLLShared;C:
    \mywls;C:\mydomain\base_domain\bin;C:\Program Files\Java\jre6\bin\client;C:\Prog
    ram Files\Java\jre6\bin;C:\Program Files\Java\jdk1.6.0_21\jre\bin;C:\Program Fil
    es\Java\jdk1.6.0_21\bin;C:\Program Files\Java\jdk1.6.0_21;C:\Program Files\Java\
    jre6;C:\DevSuiteHome_1\forms;C:\DevSuiteHome_1\cgenf61\admin;C:\DevSuiteHome_1\f
    orms;C:\forms\sms_code.pll;C:\mywls\wlserver;C:\Java\jdk1.6.0_21;C:\mywls\wlserv
    er\server\native\win\32\oci920_8
    *  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        *
    starting weblogic with Java version:
    java version "1.6.0_21"
    Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
    Java HotSpot(TM) Client VM (build 17.0-b17, mixed mode)
    Starting WLS with line:
    C:\PROGRA~1\Java\JDK16~1.0_2\bin\java -client   -Xms256m -Xmx512m -XX:CompileThr
    eshold=8000 -XX:PermSize=128m  -XX:MaxPermSize=512m -Dweblogic.Name=madimad-b533
    821 -Djava.security.policy=C:\mywls\wlserver\server\lib\weblogic.policy -Dweblog
    ic.security.SSL.trustedCAKeyStore="C:\mywls\wlserver\server\lib\cacerts"  -Xveri
    fy:none -ea:com.bea.wcp...   -da -Dplatform.home=C:\mywls\wlserver -Dwls.home=C:
    \mywls\wlserver\server -Dweblogic.home=C:\mywls\wlserver\server  -Dcommon.compon
    ents.home=C:\Oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.
    logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=C:\mydomai
    n\BASE_D~1 -Djrockit.optfile=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1
    .1\jrocket_optfile.txt -Doracle.server.config.dir=C:\mydomain\BASE_D~1\config\FM
    WCON~1\servers\madimad-b533821 -Doracle.domain.config.dir=C:\mydomain\BASE_D~1\c
    onfig\FMWCON~1  -Digf.arisidbeans.carmlloc=C:\mydomain\BASE_D~1\config\FMWCON~1\
    carml  -Digf.arisidstack.home=C:\mydomain\BASE_D~1\config\FMWCON~1\arisidprovide
    r -Doracle.security.jps.config=C:\mydomain\BASE_D~1\config\fmwconfig\jps-config.
    xml -Doracle.deployed.app.dir=C:\mydomain\BASE_D~1\servers\madimad-b533821\tmp\_
    WL_user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirectory=C:\Oracl
    e\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\Oracle\MIDDLE~1\ORACLE~1\mo
    dules\oracle.oamprovider_11.1.1 -Djava.protocol.handler.pkgs=oracle.mds.net.prot
    ocol  -Dweblogic.jdbc.remoteEnabled=false  -Dweblogic.management.discover=false
    -Dweblogic.management.server=http://madimad-b533821:7001  -Dwlw.iterativeDev=fal
    se -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false  weblogic.Server
    <24 Jan 2014 12:52:41 PM> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE
    Provider self-integrity check for better startup performance. To enable this che
    ck, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <24 Jan 2014 12:52:42 PM> <Info> <Security> <BEA-090906> <Changing the default R
    andom Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable thi
    s change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <24 Jan 2014 12:52:42 PM> <Notice> <WebLogicServer> <BEA-000395> <Following exte
    nsions directory contents added to the end of the classpath:
    C:\mydomain\base_domain\lib\sipactivator.jar>
    <24 Jan 2014 12:52:42 PM> <Info> <Server> <BEA-002647> <The service plugin, com.
    oracle.core.sip.activator, was added from C:\mydomain\base_domain\lib\sipactivat
    or.jar.>
    <24 Jan 2014 12:52:42 PM> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogi
    c Server with Java HotSpot(TM) Client VM Version 17.0-b17 from Sun Microsystems
    Inc.>
    <24 Jan 2014 12:52:45 PM> <Info> <Security> <BEA-090065> <Getting boot identity
    from user.>
    Enter username to boot WebLogic server:tshifhiwa
    Enter password to boot WebLogic server:
    <24 Jan 2014 12:52:57 PM> <Info> <Management> <BEA-141107> <Version: WebLogic Se
    rver 10.3.4.0  Fri Dec 17 20:47:33 PST 2010 1384255 >
    <24 Jan 2014 12:53:01 PM> <Error> <Management> <BEA-141252> <The domain version,
    10.3.5.0, is greater than the release version, 10.3.4.0, of this server.>
    <24 Jan 2014 12:53:01 PM> <Error> <Configuration Management> <BEA-150001> <An er
    ror occurred while connecting to the admin server to bootstrap through URL: http
    ://madimad-b533821:7001/bea_wls_management_internal2/Bootstrap, user: tshifhiwa
    weblogic.management.configuration.ConfigurationException: [Management:141252]The
    domain version, 10.3.5.0, is greater than the release version, 10.3.4.0, of thi
    s server.
            at weblogic.management.provider.internal.BootStrapHelper.getBootStrapStr
    uct(BootStrapHelper.java:147)
            at weblogic.management.provider.internal.RuntimeAccessImpl.initialize(Ru
    ntimeAccessImpl.java:432)
            at weblogic.management.provider.internal.RuntimeAccessService.start(Runt
    imeAccessService.java:49)
            at weblogic.t3.srvr.ServerServicesManager.startService(ServerServicesMan
    ager.java:461)
            at weblogic.t3.srvr.ServerServicesManager.startInStandbyState(ServerServ
    icesManager.java:166)
            at weblogic.t3.srvr.T3Srvr.initializeStandby(T3Srvr.java:879)
            at weblogic.t3.srvr.T3Srvr.startup(T3Srvr.java:566)
            at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:467)
            at weblogic.Server.main(Server.java:71)
    >
    <24 Jan 2014 12:53:01 PM> <Notice> <WebLogicServer> <BEA-000365> <Server state c
    hanged to STARTING>
    <24 Jan 2014 12:53:01 PM> <Info> <WorkManager> <BEA-002900> <Initializing self-t
    uning thread pool>
    <24 Jan 2014 12:53:02 PM> <Notice> <LoggingService> <BEA-320400> <The log file C
    :\mydomain\base_domain\servers\madimad-b533821\logs\madimad-b533821.log will be
    rotated. Reopen the log file if tailing has stopped. This can happen on some pla
    tforms like Windows.>
    <24 Jan 2014 12:53:02 PM> <Notice> <LoggingService> <BEA-320401> <The log file h
    as been rotated to C:\mydomain\base_domain\servers\madimad-b533821\logs\madimad-
    b533821.log00007. Log messages will continue to be logged in C:\mydomain\base_do
    main\servers\madimad-b533821\logs\madimad-b533821.log.>
    <24 Jan 2014 12:53:02 PM> <Notice> <Log Management> <BEA-170019> <The server log
    file C:\mydomain\base_domain\servers\madimad-b533821\logs\madimad-b533821.log i
    s opened. All server side log events will be written to this file.>
    <24 Jan 2014 12:54:25 PM> <Critical> <WebLogicServer> <BEA-000386> <Server subsy
    stem failed. Reason: java.lang.AssertionError: Assertion violated
    java.lang.AssertionError: Assertion violated
            at weblogic.utils.Debug.assertion(Debug.java:57)
            at weblogic.server.channels.ChannelService.getServerChannel(ChannelServi
    ce.java:2060)
            at weblogic.server.channels.ChannelService.getServerChannel(ChannelServi
    ce.java:1998)
            at weblogic.protocol.ServerChannelManager.findServerChannel(ServerChanne
    lManager.java:76)
            at weblogic.ldap.EmbeddedLDAP.findLdapURL(EmbeddedLDAP.java:1482)
            Truncated. see log file for complete stacktrace
    >
    <24 Jan 2014 12:54:26 PM> <Notice> <WebLogicServer> <BEA-000365> <Server state c
    hanged to FAILED>
    <24 Jan 2014 12:54:26 PM> <Error> <WebLogicServer> <BEA-000383> <A critical serv
    ice failed. The server will shut itself down>
    <24 Jan 2014 12:54:26 PM> <Notice> <WebLogicServer> <BEA-000365> <Server state c
    hanged to FORCE_SHUTTING_DOWN>

  • Permgen error while launching the weblogic server in windows

    Hi,
    While starting the weblogic server from the windows, I am getting the below error 'Permgen space error' for Sip Server. Please let me know how can I avoid running the sip server while starting the weblogic server or how can I avoid the permgen error.
    <21 Apr, 2012 7:33:33 AM IST> <Warning> <J2EE> <BEA-160195> <The application ver
    sion lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLif
    ecycleListener is ignored because the application em is not versioned.>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <SipServer.Resource> <BEA-332401> <Initia
    lizing SipServer Resource with configuration com.bea.wcp.sip.management.descript
    or.beans.SipServerBeanImpl>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <SipServer.Resource> <BEA-332404> <Engine
    AdminServer is in NON-REPLICATED mode>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <WLSS.Engine> <BEA-330071> <WebLogic Sip
    Server "AdminServer" patch version: WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06
    PDT 2011 1398638
    Javax Server Pages Client Capable 1.2 Tue Jul 13 02:43:41 EDT 2010
    Expression Language 2.1 for JSP 1.0 Sun Jul 18 23:17:34 PDT 2010
    Javax Enterprise Servlets Client Capable 1.0 Thu Aug 2 12:41:25 EDT 2007
    Eclipse Java Development Tools 3.5.2 Thu Sep 2 09:47:11 EDT 2010
    WebLogic java compiler utils package Client Capable 1.2 Thu Feb 11 03:38:50 EST
    2010
    WebLogic WebApp Container Public API Client Capable 1.4 Fri Oct 1 20:01:15 PDT 2
    010
    Oracle WebLogic Server Module Dependencies 10.3 Thu Mar 3 14:37:52 PST 2011
    Oracle WebLogic Server on JRockit Virtual Edition Module Dependencies 10.3 Thu F
    eb 3 16:30:47 EST 2011
    ANTLR Java based compiler generator Client 2.7 Mon Jun 11 12:19:48 EDT 2007
    WebLogic Descriptors for J2EE 1.5 Wed May 5 14:32:58 EDT 2010
    WebLogic Descriptors for J2EE 1.5 Binding Bundle
    WebLogic Specific Descriptors 1.3 Tue Sep 14 18:48:42 PDT 2010
    WebLogic Specific Descriptors 1.3 Binding Bundle
    WebLogic Datasource 1.9 Tue Oct 26 13:50:26 PDT 2010
    WebLogic Datasource 1.9 Binding Bundle
    WebLogic Beangen Client Capable 1.7 Wed Feb 24 16:02:48 PST 2010
    WebLogic Beangen 1.7 Binding Bundle
    WLDF Accessor Client Capable 1.5 Fri Sep 3 17:10:52 EDT 2010
    WLDF Accessor 1.5 Binding Bundle
    WebLogic Management Core Interfaces Client Capable 2.8 Thu Mar 3 12:10:10 EST 20
    11
    WebLogic Management Core Interfaces 2.8 Binding Bundle
    WebLogic EJBGen Client Capable 1.1 Thu Jun 3 13:17:07 EDT 2010
    Apache Byte Code Engineering Library (BCEL) extracted from 5.2.zip from http://j
    akarta.apache.org/site/downloads/downloads_bcel.cgi with packages renamed from o
    rg.apache.bcel to com.bea.core.repackaged.apache.bcel Client 5.2 Tue May 15 09:5
    2:37 EDT 2007
    Apache commons collections package 3.2 Tue Mar 20 15:48:25 MDT 2007
    Apache commons lang package 2.1 Tue Mar 20 15:48:30 MDT 2007
    Apache commons pool package 1.3 Tue Mar 20 15:48:36 MDT 2007
    Apache commons io 1.4 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache commons fileupload 1.2.1 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache DOM implementation 1.0 Tue Mar 20 15:36:46 MDT 2007
    Apache Logging Support 1.0 Tue Mar 20 15:36:50 MDT 2007
    Apache OpenJPA classes 1.2 Thu Jul 22 05:16:07 EDT 2010
    XMLBeans - Apache SVN rev 962560 2.1 Thu Jul 15 09:52:54 EDT 2010
    BEA Logging Runtime Support Client Capable 1.8 Mon Jun 7 12:07:02 PDT 2010
    BEA Common Security Open SAML 1.0 Fri May 14 20:18:10 PDT 2010
    BEA OpenSAML 2.0 1.0 Wed Mar 24 13:18:27 PDT 2010
    bea-harvester-api2.0 Client Capable 2.3 Mon Feb 15 14:41:06 EST 2010
    bea-harvester-jmx2.0 Client Capable 2.3 Wed Feb 3 11:54:03 PST 2010
    bea-harvester-utils Client Capable 1.4 Mon Feb 15 14:41:06 EST 2010
    bea-mbean-typing-util 1.4 Wed Feb 24 19:15:33 EST 2010
    Javolution 3.7.19 3.7 Tue Aug 28 17:32:21 PDT 2007
    Joda-time 1.2.1 1.2 Tue Aug 28 17:32:27 PDT 2007
    BEA STAX Build Time Support 1.5 Tue May 4 07:32:25 PDT 2010
    BEA STAX Runtime Time Support Client Capable 1.7 Wed Aug 4 19:40:47 EDT 2010
    BEA Generic Annotations Client Capable 1.3 Sat Jul 11 00:30:54 EDT 2009
    BEA Kodo 1.4 Mon Feb 7 16:22:04 PST 2011
    BEA Kodo Integration Client Capable 1.6 Sun Nov 22 16:29:06 PST 2009
    BEA Kodo Integration 1.6 Binding Bundle
    BEA Kodo Integration Tools 1.4 Thu Feb 3 16:07:53 EST 2011
    XML Beans Marshalling (package renamed com.bea) SVN 962560 2.3 Thu Mar 3 12:10:1
    0 EST 2011
    WebLogic Utils Client Capable 1.9 Thu Mar 3 12:10:10 EST 2011
    Aspect 5.3 Fri Jun 4 14:55:18 PDT 2010
    BEA Apache Commons Logging Repackaged 1.2 Mon Jun 11 12:47:12 EDT 2007
    Spring Framework 1.1 Thu Dec 3 12:21:08 EST 2009
    Pitchfork 1.3 Thu Jun 3 13:17:07 EDT 2010
    ${description} 1.2 Fri Jun 25 16:25:26 EDT 2010
    CSS i18n 1.0 Fri Oct 8 10:32:52 EDT 2010
    CSS xacml 1.0 Fri Oct 8 10:32:52 EDT 2010
    SAML2 Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Engine Implementation 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Engine Interfaces 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security API 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Implementation 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security JDK Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    Common Security SAML 2.0 1.0 Fri Oct 8 10:32:52 EDT 2010
    Common Security SAML 2.0 Management JavaBeans 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Provider Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    SAML Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    XACML Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Provider Environment 1.0 Fri Oct 8 10:32:52 EDT 2010
    RSA certj 3.1 Wed May 5 15:11:55 PDT 2010
    Netscape LDAP JDK 1.2 Mon Jun 7 15:56:47 EDT 2010
    Commons Networking Utilty classes 1.0 Wed Feb 6 15:01:03 PST 2008
    WebLogic SAAJ 1.6 Wed Jun 16 22:02:31 EDT 2010
    WebLogic STAX Client Capable 1.9 Thu Feb 10 18:00:52 PST 2011
    jaxb-impl.jar taken from Glassfish JAXB 2.1.9 1.0 Fri Aug 20 14:37:07 EDT 2010
    jaxb-impl.jar taken from Glassfish JAXB 2.1.12 1.0 Thu May 6 16:10:04 PDT 2010
    resolver.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:24 EST 2009
    Fastinfoset.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:27 EST 2009
    jaxws-rt.jar taken from Glassfish JAXWS 2.1.5 1.2 Mon Feb 28 17:53:01 PST 2011
    Java.net implementation of MimePull.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu
    Dec 3 11:46:33 EST 2009
    Codehaus STaX Interfaces 3.0.1 1.0 Mon Mar 8 20:49:50 PST 2010
    Woodstox STaX Parser 4.0.5 1.0 Thu Dec 3 11:35:43 EST 2009
    jaxws-tools.jar taken from Glassfish JAXWS 2.1.5 1.1 Fri Sep 24 17:55:05 PDT 201
    0
    Java.net Stax Extensions 1.0 Tue Jun 3 07:12:06 PDT 2008
    Java.net xml stream buffer 1.0 Tue Mar 17 05:24:12 PDT 2009
    Jakarta ORO 1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Enterprise Activation 1.1 Tue Apr 8 09:31:17 PDT 2008
    Javax Annotation 1.0 Fri Dec 25 09:02:47 PST 2009
    Javax Interceptor 1.0 Tue Mar 20 15:37:16 MDT 2007
    Javax Enterprise Beans 3.0 Mon Jun 11 12:21:01 EDT 2007
    Java Data Objects 2.0 Mon Jun 11 12:20:56 EDT 2007
    Java Enterprise Deployment APIs 1.2 Tue Mar 20 15:37:28 MDT 2007
    Java Enterprise Messaging 1.1 Mon Jun 11 12:21:11 EDT 2007
    Java Web Services 2.0 Tue Mar 20 15:37:37 MDT 2007
    Javax Enterprise Mail 1.1 Mon Jul 6 10:41:09 MDT 2009
    Java Enterprise Management APIs 1.0 Tue Mar 20 15:37:49 MDT 2007
    Java Persistence Client Capable 1.0 Tue Oct 7 12:18:34 PDT 2008
    Java Connector 1.5 Mon Jun 11 12:22:07 EDT 2007
    Java Authorization Contract for Containers 1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Transaction APIs Client Capable 1.0 Thu Aug 2 12:42:14 EDT 2007
    JAXB 2.1 Mon Jun 11 12:22:53 EDT 2007
    Java XML Registry 1.0 Wed Feb 6 15:01:03 PST 2008
    Java XML Soap Extensions 1.3 Mon Jun 11 12:22:59 EDT 2007
    Java Stream XML Extensions 1.1 Mon Jun 11 12:23:05 EDT 2007
    JAX-WS APIs 2.1 Mon Jun 11 12:23:16 EDT 2007
    Java API for XML-based RPC 1.2 Mon Jun 11 12:23:10 EDT 2007
    Monfox Dynamic SNMP Agent 1.1 Fri Mar 19 05:46:27 MDT 2010
    Serp bytecode manipulation framework 1.14.3 Fri Jun 11 12:06:08 PDT 2010
    WebLogic Apache Classes Client Capable 1.2 Thu Feb 18 22:06:19 PST 2010
    WebLogic BeanInfo Caching and Discovery Client Capable 2.4 Sat Oct 25 20:46:29 P
    DT 2008
    WebLogic Descriptor Client Capable 1.9 Tue Jul 20 16:03:09 EDT 2010
    Repackaged ASM-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-commons-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-tree-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-util-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Oracle JFR 1.0 Thu Feb 18 19:06:33 PST 2010
    WebLogic Diagnostics Core Interfaces Client Capable 2.5 Thu Jun 3 05:20:41 PDT 2
    010
    WebLogic Diagnostics Logging Client Capable 1.2 Fri Dec 12 11:37:59 MST 2008
    WebLogic Diagnostics Query Module Client Capable 1.2 Tue Oct 27 02:48:36 PDT 200
    9
    WebLogic Diagnostics Instrumentor Tool 1.7 Tue May 18 03:51:46 PDT 2010
    WebLogic Diagnostics Instrumentor Config Tool 1.7 Tue Jun 29 16:41:19 EDT 2010
    WebLogic Diagnostics JRockit Flight Recorder Interfaces Client Capable 1.1 Fri O
    ct 29 16:32:05 EDT 2010
    Diagnostics Notifications Module Client Capable 1.4 Sun Nov 22 16:03:32 PST 2009
    BEA Logging Runtime Support Client Capable 1.5 Thu Apr 29 20:43:42 EDT 2010
    WebLogic i18n Runtime Support Client Capable 1.8 Fri Sep 10 08:12:34 EDT 2010
    WebLogic i18n Build Support Client Capable 1.5 Fri Feb 19 15:03:15 EST 2010
    WebLogic I18N tools Client Capable 1.3 Sun Nov 22 16:03:32 PST 2009
    WebLogic Management JMX Interfaces 1.4 Thu Aug 12 11:16:22 PDT 2010
    WebLogic Security Provider Generation Tool 1.5 Wed Oct 14 16:39:28 MDT 2009
    WebLogic Security Provider Generation Tool Client Capable 1.5 Wed Oct 14 16:39:2
    8 MDT 2009
    WebLogic Messaging Kernel Client Capable 1.8 Mon Aug 23 21:42:11 EDT 2010
    WebLogic Resource Pool Client Capable 1.7 Mon Sep 27 12:00:08 EDT 2010
    WebLogic Socket Muxer API Client Capable 1.2 Thu Apr 1 21:16:27 EDT 2010
    WebLogic RMI Client Capable 1.10 Tue Mar 22 16:56:32 PDT 2011
    Common Security WebLogic Server Integration Support 1.0 Fri Oct 8 10:32:52 EDT
    2010
    Server Lifecycle Interfaces Client Capable 1.4 Fri Feb 19 15:03:15 EST 2010
    WebLogic Store Client Capable 1.7 Fri Dec 17 16:52:31 EST 2010
    WebLogic STORE GXA Client Capable 1.6 Mon Aug 23 21:16:10 EDT 2010
    WebLogic Store Admin Tool Client Capable 1.2 Thu Jan 21 10:24:18 PST 2010
    WebLogic JDBC Store Client Capable 1.3 Mon May 17 10:46:33 PDT 2010
    WebLogic JTA implementation Client Capable 2.7 Fri Sep 17 12:19:45 PDT 2010
    WebLogic Utils 1.9 Thu Mar 3 12:10:10 EST 2011
    Agent Utililities 1.1 Tue Feb 16 00:16:03 EST 2010
    WebLogic Utility Classloader implementations Client Capable 1.9 Wed Mar 2 14:10:
    04 PST 2011
    WebLogic Utils for working with Expressions Client Capable 1.4 Tue Sep 29 14:45:
    53 EDT 2009
    WebLogic Utils for Dynamically Generated Class Wrappers Client Capable 1.4 Fri F
    eb 13 14:44:23 MST 2009
    WebLogic Timers Client Capable 1.7 Thu Feb 18 13:08:44 EST 2010
    WebLogic Work Manager Client Capable 1.10 Thu Feb 17 10:25:54 PST 2011
    WebLogic Workarea Client Capable 1.7 Wed Feb 24 17:18:56 PST 2010
    WebLogic XML XPath Implementation Client Capable 1.4 Mon Feb 22 15:07:14 PST 201
    0
    Weblogic Tuxedo Connector Core Client Capable 1.5 Sat Jul 3 19:05:38 EDT 2010
    WebLogic Security 1.0 Fri Oct 8 10:32:52 EDT 2010
    Weblogic Server Java Authentication Helper Classes Client Capable 1.1 Mon Jul 5
    20:42:35 EDT 2010
    Weblogic Server Message Digest Utilities Client Capable 1.0 Thu Aug 2 12:51:30 E
    DT 2007
    Weblogic Server Authenticated Subject Client Capable 1.1 Thu Oct 28 05:46:37 PDT
    2010
    Weblogic Server Authenticated Subject Client Capable 1.5 Thu Sep 9 10:23:21 MDT
    2010
    PrintingSecurityManager - PSM 1.1 Tue Feb 16 05:30:08 PST 2010
    WebLogic security ssl classes 1.0 Tue Jun 15 17:39:53 EDT 2010
    WebLogic Nodemanager Plugin Client Capable 1.3 Tue Nov 18 18:23:10 EST 2008
    nodemanager module for managed processes 1.0 Thu Apr 8 15:14:38 PDT 2010
    WebLogic JMS Pool Client Capable 1.8 Thu Mar 3 14:11:40 PST 2011
    Contains compiled schema type from WLS 9.0 for WLP compatibility 1.3 Wed Feb 24
    19:15:33 EST 2010
    WebLogic Http Pub/Sub Module Client Capable 1.6 Mon Jul 12 02:31:07 EDT 2010
    Class Redefinition Project 1.5 Mon May 10 19:48:21 EDT 2010
    Class Redefinition Project Client Capable 1.5 Mon Apr 5 17:00:52 PDT 2010
    Class Redefinition Project 1.5 Binding Bundle
    Commonj SDO 1.0 Wed Sep 24 19:11:23 PDT 2008
    WebLogic Coherence Descriptor 1.1 Wed May 5 15:17:47 EDT 2010
    WebLogic Coherence Descriptor 1.1 Binding Bundle
    This module contains all message catalogs 1.1 Fri Dec 17 08:04:35 PST 2010
    WebLogic WebService Public API's 1.1 Tue Sep 21 22:15:05 EDT 2010
    WebLogic EclipseLink Integration 1.0 Thu Feb 25 14:56:43 PST 2010
    WebLogic SCA Client 1.0 Thu Feb 25 00:27:10 EST 2010
    WebLogic RAC Module UCP Client Capable 1.0 Mon Sep 13 09:03:00 PDT 2010
    BEA Patches of apache ant Client Capable 1.2 Wed Jan 13 08:48:17 PST 2010
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server Datatier 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    WebLogic SIPServer Extension API 10.3.4.0 at 709997 built on 2010/09/27
    WebLogic SIPServer Extension API 10.3.4 at 709997 built on 2010/09/27
    WebLogic SIPServer CallState 10.3.4 at 709997 built on 2010/09/27
    Oracle WebLogic Communications SCTP 10.3.1 at 688160 built on 2009/03/11
    ALSB Client 1.3 Mon Apr 12 19:21:38 PDT 2010
    WebLogic WebService Databinding 1.2 Fri Oct 15 06:35:13 PDT 2010
    WebLogic WebService Databinding Plugins 1.2 Fri Oct 15 07:38:46 PDT 2010
    WebLogic SCA Engine 1.2 Mon Aug 16 20:42:39 EDT 2010
    WebLogic WebService Databinding Plugins 1.2 Fri Oct 15 07:38:46 PDT 2010
    WebLogic WebService Databinding 1.2 Fri Oct 15 06:35:13 PDT 2010
    WebLogic SIP Activator 10.3.4 at 710163 built on 2010/09/30
    >
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <WLSS.Engine> <BEA-330065> <SIP server re
    plication is DISABLED>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <WLSS.Engine> <BEA-330000> <WebLogic SIP
    Server "sipserver" has started.>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <WLSS.Transport> <BEA-330687> <Thread "SI
    P Message processor (Transport TCP)" is listening on port 5060>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <WLSS.Transport> <BEA-330687> <Thread "SI
    P Message processor (Transport TCP)" is listening on port 5061>
    <21 Apr, 2012 7:34:40 AM IST> <Error> <WLSS.Setup> <BEA-331210> <Skip SIP relate
    d logic, because error occurs when parsing sip related annotations of "em"
    com.bea.wcp.sip.engine.server.setup.SipAnnotationParsingException:
    at com.bea.wcp.sip.engine.server.setup.SipAnnotationData.<init>(SipAnnot
    ationData.java:146)
    at com.bea.wcp.sip.util.DeploymentUtil.getOrCreateAnnotationData(Deploym
    entUtil.java:70)
    at com.bea.wcp.sip.util.DeploymentUtil.isSipModule(DeploymentUtil.java:9
    6)
    at com.bea.wcp.sip.engine.server.SipServerTailModule$1.visit(SipServerTa
    ilModule.java:127)
    at com.bea.wcp.sip.engine.server.SipServerTailModule.visitAllContexts(Si
    pServerTailModule.java:112)
    Truncated. see log file for complete stacktrace
    Caused By: java.lang.OutOfMemoryError: PermGen space
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClassCond(ClassLoader.java:630)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:614)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:14
    1)
    at weblogic.utils.classloaders.GenericClassLoader.defineClass(GenericCla
    ssLoader.java:343)
    Truncated. see log file for complete stacktrace
    >
    <21 Apr, 2012 7:35:05 AM IST> <Warning> <J2EE> <BEA-160181> <An error was encoun
    tered and ignored during undeployment. The error was: weblogic.utils.ErrorCollec
    tionException:
    There are 2 nested errors:
    java.lang.OutOfMemoryError: PermGen space
    and
    java.lang.OutOfMemoryError: PermGen space
    weblogic.utils.ErrorCollectionException:
    There are 2 nested errors:
    java.lang.OutOfMemoryError: PermGen space
    and
    java.lang.OutOfMemoryError: PermGen space
    at weblogic.application.utils.StateMachineDriver.previousState(StateMach
    ineDriver.java:227)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:63)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.
    java:205)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.ja
    va:58)
    at weblogic.application.internal.DeploymentStateChecker.activate(Deploym
    entStateChecker.java:161)
    Truncated. see log file for complete stacktrace
    >

    What options have you selected when you set-up WebLogic?
    You can increase the PermSize and MaxPermSize parameters of the JVM to avoid java.lang.OutOfMemoryError: PermGen space.
    These parameters can be set in the setDomainEnv file.

  • The Weblogic Server not start.

    Weblogic 10.3.6.0 For SOA 11.1.1.6
    When I start the weblogic server it does not start, the message that the server is running is not displayed.
    Can anyone help me?
    $ pwd
    /app/oracle/product/fwm11g/user_projects/domains/fwm_domain/bin
    $ nohup ./startWebLogic.sh > /app/oracle/logs/weblogic.log 2>&1 &
    ]$ cat /app/oracle/logs/weblogic.log
    ** Setting up SOA specific environment...
    EXTRA_JAVA_PROPERTIES= -da:org.apache.xmlbeans...
    LD_LIBRARY_PATH=/app/oracle/product/fwm11g/patch_wls1036/profiles/default/native:/app/oracle/product/fwm11g/wlserver_10.3/server/native/linux/x86_64:/app/oracle/product/fwm11g/wlserver_10.3/server/native/linux/x86_64/oci920_8:/app/oracle/product/fwm11g/wlserver_10.3/sip/server/native/linux/x86_64:/app/oracle/product/fwm11g/wlserver_10.3/sip/server/native/linux/x86_64/oci920_8:/app/oracle/product/fwm11g/Oracle_SOA1/soa/thirdparty/edifecs/XEngine/bin
    USER_MEM_ARGS=-Xms768m -Xmx1536m -XX:PermSize=256m -XX:MaxPermSize=512m
    ** End SOA specific environment setup
    ** SOA specific environment is already set, skipping...
    JAVA Memory arguments: -Xms768m -Xmx1536m -XX:PermSize=256m -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=/app/oracle/product/fwm11g/oracle_common/modules/oracle.jdbc_11.1.1/ojdbc6dms.jar:/app/oracle/product/fwm11g/Oracle_SOA1/soa/modules/user-patch.jar:/app/oracle/product/fwm11g/Oracle_SOA1/soa/modules/soa-startup.jar::/app/oracle/product/fwm11g/patch_wls1036/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/usr/java/jdk1.6.0_25/lib/tools.jar:/app/oracle/product/fwm11g/wlserver_10.3/server/lib/weblogic_sp.jar:/app/oracle/product/fwm11g/wlserver_10.3/server/lib/weblogic.jar:/app/oracle/product/fwm11g/modules/features/weblogic.server.modules_10.3.6.0.jar:/app/oracle/product/fwm11g/wlserver_10.3/server/lib/webservices.jar:/app/oracle/product/fwm11g/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/app/oracle/product/fwm11g/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/app/oracle/product/fwm11g/wlserver_10.3/sip/server/lib/weblogic_sip.jar:/app/oracle/product/fwm11g/oracle_common/soa/modules/commons-cli-1.1.jar:/app/oracle/product/fwm11g/oracle_common/soa/modules/oracle.soa.mgmt_11.1.1/soa-infra-mgmt.jar:/app/oracle/product/fwm11g/Oracle_SOA1/soa/modules/oracle.soa.common.adapters_11.1.1/oracle.soa.common.adapters.jar:/app/oracle/product/fwm11g/oracle_common/webcenter/modules/oracle.portlet.server_11.1.1/oracle-portlet-api.jar:/app/oracle/product/fwm11g/Oracle_SOA1/communications/modules/usermessaging-config_11.1.1.jar:/app/oracle/product/fwm11g/oracle_common/modules/oracle.xdk_11.1.0/xsu12.jar:/app/oracle/product/fwm11g/modules/features/weblogic.server.modules.xquery_10.3.1.0.jar:/app/oracle/product/fwm11g/Oracle_SOA1/soa/modules/db2jcc4.jar:/app/oracle/product/fwm11g/user_projects/domains/fwm_domain/config/soa-infra:/app/oracle/product/fwm11g/Oracle_SOA1/soa/modules/fabric-url-handler_11.1.1.jar:/app/oracle/product/fwm11g/Oracle_SOA1/soa/modules/quartz-all-1.6.5.jar:/app/oracle/product/fwm11g/Oracle_SOA1/soa/modules/oracle.soa.fabric_11.1.1/oracle.soa.fabric.jar:/app/oracle/product/fwm11g/Oracle_SOA1/soa/modules/oracle.soa.fabric_11.1.1/fabric-runtime-ext-wls.jar:/app/oracle/product/fwm11g/Oracle_SOA1/soa/modules/oracle.soa.adapter_11.1.1/oracle.soa.adapter.jar:/app/oracle/product/fwm11g/Oracle_SOA1/soa/modules/oracle.soa.b2b_11.1.1/oracle.soa.b2b.jar:/app/oracle/product/fwm11g/oracle_common/modules/oracle.jrf_11.1.1/jrf.jar:/app/oracle/product/fwm11g/wlserver_10.3/common/derby/lib/derbyclient.jar:/app/oracle/product/fwm11g/wlserver_10.3/server/lib/xqrl.jar
    PATH=/app/oracle/product/fwm11g/wlserver_10.3/server/bin:/app/oracle/product/fwm11g/modules/org.apache.ant_1.7.1/bin:/usr/java/jdk1.6.0_25/jre/bin:/usr/java/jdk1.6.0_25/bin:/usr/kerberos/bin:/usr/java/default/bin:/usr/local/bin:/bin:/usr/bin:/home/appsoa/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 *
    starting weblogic with Java version:
    java version "1.6.0_25"
    Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
    Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)
    Starting WLS with line:
    /usr/java/jdk1.6.0_25/bin/java -client -Xms768m -Xmx1536m -XX:PermSize=256m -XX:MaxPermSize=512m -Dweblogic.Name=AdminServer -Djava.security.policy=/app/oracle/product/fwm11g/wlserver_10.3/server/lib/weblogic.policy -Xverify:none -ea:com.bea.wcp... -da -Dplatform.home=/app/oracle/product/fwm11g/wlserver_10.3 -Dwls.home=/app/oracle/product/fwm11g/wlserver_10.3/server -Dweblogic.home=/app/oracle/product/fwm11g/wlserver_10.3/server -Dcommon.components.home=/app/oracle/product/fwm11g/oracle_common -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=/app/oracle/product/fwm11g/user_projects/domains/fwm_domain -Djrockit.optfile=/app/oracle/product/fwm11g/oracle_common/modules/oracle.jrf_11.1.1/jrocket_optfile.txt -Doracle.server.config.dir=/app/oracle/product/fwm11g/user_projects/domains/fwm_domain/config/fmwconfig/servers/AdminServer -Doracle.domain.config.dir=/app/oracle/product/fwm11g/user_projects/domains/fwm_domain/config/fmwconfig -Digf.arisidbeans.carmlloc=/app/oracle/product/fwm11g/user_projects/domains/fwm_domain/config/fmwconfig/carml -Digf.arisidstack.home=/app/oracle/product/fwm11g/user_projects/domains/fwm_domain/config/fmwconfig/arisidprovider -Doracle.security.jps.config=/app/oracle/product/fwm11g/user_projects/domains/fwm_domain/config/fmwconfig/jps-config.xml -Doracle.deployed.app.dir=/app/oracle/product/fwm11g/user_projects/domains/fwm_domain/servers/AdminServer/tmp/_WL_user -Doracle.deployed.app.ext=/- -Dweblogic.alternateTypesDirectory=/app/oracle/product/fwm11g/oracle_common/modules/oracle.ossoiap_11.1.1,/app/oracle/product/fwm11g/oracle_common/modules/oracle.oamprovider_11.1.1 -Djava.protocol.handler.pkgs=oracle.mds.net.protocol|oracle.fabric.common.classloaderurl.handler|oracle.fabric.common.uddiurl.handler|oracle.bpm.io.fs.protocol -Dweblogic.jdbc.remoteEnabled=false -Doracle.security.jps.policy.migration.validate.principal=false -Dportlet.oracle.home=/app/oracle/product/fwm11g/oracle_common -da:org.apache.xmlbeans... -Dbpm.enabled=true -Dsoa.archives.dir=/app/oracle/product/fwm11g/Oracle_SOA1/soa -Dsoa.oracle.home=/app/oracle/product/fwm11g/Oracle_SOA1 -Dsoa.instance.home=/app/oracle/product/fwm11g/user_projects/domains/fwm_domain -Dtangosol.coherence.clusteraddress=227.7.7.9 -Dtangosol.coherence.clusterport=9778 -Dtangosol.coherence.log=jdk -Djavax.xml.soap.MessageFactory=oracle.j2ee.ws.saaj.soap.MessageFactoryImpl -Dweblogic.transaction.blocking.commit=true -Dweblogic.transaction.blocking.rollback=true -Djavax.net.ssl.trustStore=/app/oracle/product/fwm11g/wlserver_10.3/server/lib/DemoTrust.jks -Dem.oracle.home=/app/oracle/product/fwm11g/oracle_common -Djava.awt.headless=true -Dbam.oracle.home=/app/oracle/product/fwm11g/Oracle_SOA1 -Dums.oracle.home=/app/oracle/product/fwm11g/Oracle_SOA1 -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=/app/oracle/product/fwm11g/patch_wls1036/profiles/default/sysext_manifest_classpath weblogic.Server
    <Jul 26, 2012 3:39:30 AM BRT> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Jul 26, 2012 3:39:30 AM BRT> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Jul 26, 2012 3:39:30 AM BRT> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    /app/oracle/product/fwm11g/user_projects/domains/fwm_domain/lib/sipactivator.jar>
    <Jul 26, 2012 3:39:31 AM BRT> <Info> <Server> <BEA-002647> <The service plugin, com.oracle.core.sip.activator, was added from /app/oracle/product/fwm11g/user_projects/domains/fwm_domain/lib/sipactivator.jar.>
    <Jul 26, 2012 3:39:31 AM BRT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 20.0-b11 from Sun Microsystems Inc.>
    <Jul 26, 2012 3:39:31 AM BRT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.6.0 Tue Nov 15 08:52:36 PST 2011 1441050 >
    <Jul 26, 2012 3:39:34 AM BRT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Jul 26, 2012 3:39:34 AM BRT> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Jul 26, 2012 3:39:34 AM BRT> <Notice> <LoggingService> <BEA-320400> <The log file /app/oracle/product/fwm11g/user_projects/domains/fwm_domain/servers/AdminServer/logs/AdminServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Jul 26, 2012 3:39:34 AM BRT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to /app/oracle/product/fwm11g/user_projects/domains/fwm_domain/servers/AdminServer/logs/AdminServer.log00006. Log messages will continue to be logged in /app/oracle/product/fwm11g/user_projects/domains/fwm_domain/servers/AdminServer/logs/AdminServer.log.>
    <Jul 26, 2012 3:39:34 AM BRT> <Notice> <Log Management> <BEA-170019> <The server log file /app/oracle/product/fwm11g/user_projects/domains/fwm_domain/servers/AdminServer/logs/AdminServer.log is opened. All server side log events will be written to this file.>
    <Jul 26, 2012 3:39:42 AM BRT> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Jul 26, 2012 3:39:48 AM BRT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Jul 26, 2012 3:39:48 AM BRT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Jul 26, 2012 3:39:53 AM BRT> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application em is not versioned.>
    <Jul 26, 2012 3:39:57 AM BRT> <Notice> <SipServer.Resource> <BEA-332401> <Initializing SipServer Resource with configuration com.bea.wcp.sip.management.descriptor.beans.SipServerBeanImpl>
    <Jul 26, 2012 3:39:57 AM BRT> <Notice> <SipServer.Resource> <BEA-332404> <Engine AdminServer is in NON-REPLICATED mode>
    <Jul 26, 2012 3:39:58 AM BRT> <Notice> <WLSS.Engine> <BEA-330071> <WebLogic Sip Server "AdminServer" patch version: WebLogic Server 10.3.6.0 Tue Nov 15 08:52:36 PST 2011 1441050
    Javax Server Pages Client Capable 1.3 Tue Jun 21 09:59:39 EDT 2011
    Expression Language 2.1 for JSP 1.1 Tue Jun 21 10:21:26 EDT 2011
    Javax Enterprise Servlets Client Capable 1.0 Thu Aug 2 12:41:25 EDT 2007
    Eclipse Java Development Tools 3.5.3 Fri May 20 04:56:54 EDT 2011
    WebLogic java compiler utils package Client Capable 1.2 Thu Feb 11 03:38:50 EST 2010
    WebLogic WebApp Container Public API Client Capable 1.4 Fri Oct 1 20:01:15 PDT 2010
    Oracle WebLogic Server Module Dependencies 10.3 Thu Sep 29 17:47:37 EDT 2011
    Oracle WebLogic Server on JRockit Virtual Edition Module Dependencies 10.3 Wed Jun 15 17:54:24 EDT 2011
    ANTLR Java based compiler generator Client 2.7 Mon Jun 11 12:19:48 EDT 2007
    WebLogic Descriptors for J2EE 1.6 Wed Dec 1 17:14:50 EST 2010
    WebLogic Descriptors for J2EE 1.6 Binding Bundle
    WebLogic Specific Descriptors 1.4 Mon Aug 8 09:26:15 MDT 2011
    WebLogic Specific Descriptors 1.4 Binding Bundle
    WebLogic Datasource 1.10 Sat Nov 12 08:11:09 PST 2011
    WebLogic Datasource 1.10 Binding Bundle
    WebLogic Beangen Client Capable 1.7 Wed Feb 24 16:02:48 PST 2010
    WebLogic Beangen 1.7 Binding Bundle
    WLDF Accessor Client Capable 1.5 Fri Sep 3 17:10:52 EDT 2010
    WLDF Accessor 1.5 Binding Bundle
    WebLogic Management Core Interfaces Client Capable 2.9 Thu Aug 11 17:17:14 PDT 2011
    WebLogic Management Core Interfaces 2.9 Binding Bundle
    WebLogic EJBGen Client Capable 1.1 Tue Nov 2 03:30:53 PDT 2010
    Apache Byte Code Engineering Library (BCEL) extracted from 5.2.zip from http://jakarta.apache.org/site/downloads/downloads_bcel.cgi with packages renamed from org.apache.bcel to com.bea.core.repackaged.apache.bcel Client 5.2 Fri May 20 04:58:21 EDT 2011
    Apache commons collections package 3.2 Tue Mar 20 15:48:25 MDT 2007
    Apache commons lang package 2.1 Tue Mar 20 15:48:30 MDT 2007
    Apache commons pool package 1.3 Tue Mar 20 15:48:36 MDT 2007
    Apache commons io 1.4 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache commons fileupload 1.2.1 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache DOM implementation 1.0 Tue Mar 20 15:36:46 MDT 2007
    Apache Logging Support 1.0 Tue Mar 20 15:36:50 MDT 2007
    Apache OpenJPA classes 1.3 Thu Sep 22 01:28:26 PDT 2011
    XMLBeans - Apache SVN rev 1102771 2.2 Thu Sep 1 08:05:25 PDT 2011
    BEA Logging Runtime Support Client Capable 1.9 Wed Jul 27 14:54:39 EDT 2011
    BEA Common Security Open SAML 1.0 Sat Jul 16 04:41:59 MDT 2011
    BEA OpenSAML 2.0 1.0 Fri Aug 19 08:44:53 MDT 2011
    bea-harvester-api2.0 Client Capable 2.3 Mon Feb 15 14:41:06 EST 2010
    bea-harvester-jmx2.0 Client Capable 2.4 Wed Aug 10 20:11:27 PDT 2011
    bea-harvester-utils Client Capable 1.4 Mon Feb 15 14:41:06 EST 2010
    bea-mbean-typing-util 1.4 Wed Feb 24 19:15:33 EST 2010
    Javolution 3.7.19 3.7 Tue Aug 28 17:32:21 PDT 2007
    Joda-time 1.2.1 1.2 Tue Aug 28 17:32:27 PDT 2007
    BEA STAX Build Time Support 1.6 Tue Apr 19 13:32:59 EDT 2011
    BEA STAX Runtime Time Support Client Capable 1.8 Thu Sep 1 08:05:25 PDT 2011
    BEA Generic Annotations Client Capable 1.4 Thu Jun 2 23:58:32 EDT 2011
    BEA Kodo 1.5 Wed Oct 12 03:50:17 EDT 2011
    BEA Kodo Integration Client Capable 1.7 Tue Jul 19 08:57:22 MDT 2011
    BEA Kodo Integration 1.7 Binding Bundle
    BEA Kodo Integration Tools 1.3 Sat Feb 13 09:30:33 PST 2010
    XML Beans Marshalling (package renamed com.bea) SVN 1102771 2.5 Thu Sep 1 08:05:25 PDT 2011
    WebLogic Utils Client Capable 1.10 Sat Oct 29 15:34:23 MDT 2011
    Aspect 5.3 Fri May 20 05:19:03 EDT 2011
    BEA Apache Commons Logging Repackaged 1.2 Fri Sep 9 15:46:56 EDT 2011
    Spring Framework 1.2 Fri May 20 05:19:03 EDT 2011
    Pitchfork 1.4 Tue Sep 6 13:38:59 EDT 2011
    ${description} 1.3 Wed Jun 29 20:42:12 EDT 2011
    CSS i18n 1.0 Fri Aug 19 08:44:53 MDT 2011
    CSS xacml 1.0 Fri Aug 19 08:44:53 MDT 2011
    SAML2 Utils 1.0 Fri Aug 19 08:44:53 MDT 2011
    BEA Common Security Engine Implementation 1.0 Fri Aug 19 08:44:53 MDT 2011
    BEA Common Security Engine Interfaces 1.0 Fri Aug 19 08:44:53 MDT 2011
    BEA Common Security API 1.0 Fri Aug 19 08:44:53 MDT 2011
    BEA Common Security Implementation 1.0 Fri Aug 19 08:44:53 MDT 2011
    BEA Common Security JDK Utilities 1.0 Fri Aug 19 08:44:53 MDT 2011
    Security Utilities 1.0 Fri Aug 19 08:44:53 MDT 2011
    Common Security SAML 2.0 1.0 Fri Aug 19 08:44:53 MDT 2011
    Common Security SAML 2.0 Management JavaBeans 1.0 Fri Aug 19 08:44:53 MDT 2011
    Security Provider Utilities 1.0 Fri Aug 19 08:44:53 MDT 2011
    SAML Utils 1.0 Fri Aug 19 08:44:53 MDT 2011
    XACML Utils 1.0 Fri Aug 19 08:44:53 MDT 2011
    Security Provider Environment 1.0 Fri Aug 19 08:44:53 MDT 2011
    RSA certj 5.2 Wed Aug 31 17:49:27 PDT 2011
    Netscape LDAP JDK 1.3 Mon Apr 11 20:11:21 PDT 2011
    Commons Networking Utilty classes 1.0 Wed Feb 6 15:01:03 PST 2008
    WebLogic SAAJ 1.8 Mon Oct 17 02:49:29 PDT 2011
    WebLogic STAX Client Capable 1.10 Wed Jun 8 09:12:28 EDT 2011
    jaxb-impl.jar taken from Glassfish JAXB 2.1.14 1.1 Wed Oct 12 19:46:41 PDT 2011
    jaxb-impl.jar taken from Glassfish JAXB 2.1.14 1.2 Wed Oct 12 19:46:43 PDT 2011
    resolver.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:24 EST 2009
    Fastinfoset.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:27 EST 2009
    jaxws-rt.jar taken from Glassfish JAXWS 2.1.5 1.3 Fri Oct 14 19:19:11 EDT 2011
    Java.net implementation of MimePull.jar taken from Glassfish JAXWS 2.1.5 1.1 Wed Jul 27 16:50:24 MDT 2011
    Codehaus STaX Interfaces 3.0.1 1.0 Mon Mar 8 20:49:50 PST 2010
    Woodstox STaX Parser 4.0.5 1.0 Thu Dec 3 11:35:43 EST 2009
    jaxws-tools.jar taken from Glassfish JAXWS 2.1.5 1.2 Sat Apr 2 00:42:47 PDT 2011
    Java.net Stax Extensions 1.0 Tue Jun 3 07:12:06 PDT 2008
    Java.net xml stream buffer 1.0 Fri Oct 22 10:08:31 PDT 2010
    Jakarta ORO 1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Enterprise Activation 1.1 Tue Apr 8 09:31:17 PDT 2008
    Javax Annotation 1.0 Fri Dec 25 09:02:47 PST 2009
    Javax Interceptor 1.0 Tue Mar 20 15:37:16 MDT 2007
    Javax Enterprise Beans 3.0 Mon Jun 11 12:21:01 EDT 2007
    Java Data Objects 2.0 Mon Jun 11 12:20:56 EDT 2007
    Java Enterprise Deployment APIs 1.2 Tue Mar 20 15:37:28 MDT 2007
    Java Enterprise Messaging 1.1 Mon Jun 11 12:21:11 EDT 2007
    Java Web Services 2.0 Tue Mar 20 15:37:37 MDT 2007
    Javax Enterprise Mail 1.1 Mon Jul 6 10:41:09 MDT 2009
    Java Enterprise Management APIs 1.0 Tue Mar 20 15:37:49 MDT 2007
    Java Persistence Client Capable 1.0 Tue Oct 7 12:18:34 PDT 2008
    Java Connector 1.5 Mon Jun 11 12:22:07 EDT 2007
    Java Authorization Contract for Containers 1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Transaction APIs Client Capable 1.0 Thu Aug 2 12:42:14 EDT 2007
    JAXB 2.1 Mon Jun 11 12:22:53 EDT 2007
    Java XML Registry 1.0 Wed Feb 6 15:01:03 PST 2008
    Java XML Soap Extensions 1.3 Mon Jun 11 12:22:59 EDT 2007
    Java Stream XML Extensions 1.1 Mon Jun 11 12:23:05 EDT 2007
    JAX-WS APIs 2.1 Mon Jun 11 12:23:16 EDT 2007
    Java API for XML-based RPC 1.2 Mon Jun 11 12:23:10 EDT 2007
    Monfox Dynamic SNMP Agent 1.1 Fri Mar 19 05:46:27 MDT 2010
    Serp bytecode manipulation framework 1.14.4 Thu Oct 6 01:32:56 EDT 2011
    WebLogic Apache Classes Client Capable 1.3 Mon Sep 19 23:58:26 EDT 2011
    WebLogic BeanInfo Caching and Discovery Client Capable 2.4 Sat Oct 25 20:46:29 PDT 2008
    WebLogic Descriptor Client Capable 1.10 Wed Aug 10 12:59:06 PDT 2011
    Repackaged ASM-3.2 1.1 Fri May 20 04:56:54 EDT 2011
    Repackaged asm-commons-3.2 1.1 Fri May 20 04:56:54 EDT 2011
    Repackaged asm-tree-3.2 1.1 Fri May 20 04:56:54 EDT 2011
    Repackaged asm-util-3.2 1.1 Fri May 20 04:56:54 EDT 2011
    Oracle JFR 1.0 Thu Feb 18 19:06:33 PST 2010
    WebLogic Diagnostics Core Interfaces Client Capable 2.6 Thu Oct 6 01:11:08 EDT 2011
    WebLogic Diagnostics Logging Client Capable 1.2 Fri Dec 12 11:37:59 MST 2008
    WebLogic Diagnostics Query Module Client Capable 1.3 Fri Jul 1 07:32:00 PDT 2011
    WebLogic Diagnostics Instrumentor Tool 1.8 Thu Oct 6 01:11:08 EDT 2011
    WebLogic Diagnostics Instrumentor Config Tool 1.8 Thu Oct 6 01:11:08 EDT 2011
    WebLogic Diagnostics JRockit Flight Recorder Interfaces Client Capable 1.2 Wed Dec 1 17:41:28 EST 2010
    Diagnostics Notifications Module Client Capable 1.4 Sun Nov 22 16:03:32 PST 2009
    BEA Logging Runtime Support Client Capable 1.5 Thu Apr 29 20:43:42 EDT 2010
    WebLogic i18n Runtime Support Client Capable 1.9 Thu Sep 1 07:41:47 PDT 2011
    WebLogic i18n Build Support Client Capable 1.5 Fri Feb 19 15:03:15 EST 2010
    WebLogic I18N tools Client Capable 1.4 Thu Sep 1 07:41:47 PDT 2011
    WebLogic Management JMX Interfaces 1.4 Fri Sep 16 16:19:28 EDT 2011
    WebLogic Security Provider Generation Tool 1.5 Wed Oct 14 16:39:28 MDT 2009
    WebLogic Security Provider Generation Tool Client Capable 1.5 Wed Oct 14 16:39:28 MDT 2009
    WebLogic Messaging Kernel Client Capable 1.8 Mon Aug 23 21:42:11 EDT 2010
    WebLogic Resource Pool Client Capable 1.8 Thu Oct 6 16:06:35 PDT 2011
    WebLogic Socket Muxer API Client Capable 1.3 Thu Aug 18 16:24:35 EDT 2011
    WebLogic RMI Client Capable 1.11 Tue Sep 20 15:07:37 EDT 2011
    Common Security WebLogic Server Integration Support 1.0 Fri Aug 19 08:44:53 MDT 2011
    Server Lifecycle Interfaces Client Capable 1.5 Fri Dec 10 00:36:46 EST 2010
    WebLogic Store Client Capable 1.8 Mon Oct 3 09:57:28 PDT 2011
    WebLogic STORE GXA Client Capable 1.7 Fri Apr 1 14:30:50 PDT 2011
    WebLogic Store Admin Tool Client Capable 1.3 Thu Apr 28 09:32:45 PDT 2011
    WebLogic JDBC Store Client Capable 1.3 Fri Sep 16 08:41:14 MDT 2011
    WebLogic JTA implementation Client Capable 2.7 Sat Oct 15 07:12:58 PDT 2011
    WebLogic Utils 1.10 Sat Oct 29 15:34:23 MDT 2011
    Agent Utililities 1.1 Tue Feb 16 00:16:03 EST 2010
    WebLogic Utility Classloader implementations Client Capable 2.0 Wed May 18 10:00:41 PDT 2011
    WebLogic Utils for working with Expressions Client Capable 1.4 Tue Sep 29 14:45:53 EDT 2009
    WebLogic Utils for Dynamically Generated Class Wrappers Client Capable 1.4 Fri Feb 13 14:44:23 MST 2009
    WebLogic Timers Client Capable 1.7 Fri Feb 4 14:23:26 MST 2011
    WebLogic Work Manager Client Capable 1.11 Thu Oct 6 11:12:55 PDT 2011
    WebLogic Workarea Client Capable 1.8 Tue Jun 28 04:08:48 EDT 2011
    WebLogic XML XPath Implementation Client Capable 1.5 Thu Sep 1 22:11:12 EDT 2011
    Weblogic Tuxedo Connector Core Client Capable 1.6 Sat Jul 16 15:02:56 MDT 2011
    WebLogic Security 1.0 Fri Aug 19 08:44:53 MDT 2011
    Weblogic Server Java Authentication Helper Classes Client Capable 1.1 Mon Jul 5 20:42:35 EDT 2010
    Weblogic Server Message Digest Utilities Client Capable 1.0 Thu Aug 2 12:51:30 EDT 2007
    Weblogic Server Authenticated Subject Client Capable 1.2 Wed Dec 1 17:41:28 EST 2010
    Weblogic Server Authenticated Subject Client Capable 1.6 Wed Oct 19 14:48:23 PDT 2011
    PrintingSecurityManager - PSM 1.1 Tue Feb 16 05:30:08 PST 2010
    WebLogic security ssl classes 1.0 Tue Jun 15 17:39:53 EDT 2010
    WebLogic Nodemanager Plugin Client Capable 1.3 Tue Nov 18 18:23:10 EST 2008
    nodemanager module for managed processes 1.1 Thu Sep 29 17:28:28 EDT 2011
    WebLogic JMS Pool Client Capable 1.9 Wed Apr 13 13:03:26 EDT 2011
    Contains compiled schema type from WLS 9.0 for WLP compatibility 1.4 Thu Sep 1 08:29:31 PDT 2011
    WebLogic Http Pub/Sub Module Client Capable 1.7 Fri Jul 8 13:06:46 EDT 2011
    Class Redefinition Project 1.6 Tue Jul 19 08:57:22 MDT 2011
    Class Redefinition Project Client Capable 1.6 Tue Jul 19 08:57:22 MDT 2011
    Class Redefinition Project 1.6 Binding Bundle
    Commonj SDO 1.0 Wed Sep 24 19:11:23 PDT 2008
    WebLogic Coherence Descriptor 1.2 Thu Sep 1 08:29:31 PDT 2011
    WebLogic Coherence Descriptor 1.2 Binding Bundle
    This module contains all message catalogs 1.2 Wed Aug 24 03:32:14 EDT 2011
    WebLogic WebService Public API's 1.1 Tue Sep 21 22:15:05 EDT 2010
    WebLogic EclipseLink Integration 1.0 Thu Feb 25 14:56:43 PST 2010
    WebLogic SCA Client 1.0 Thu Feb 25 00:27:10 EST 2010
    WebLogic RAC Module UCP Client Capable 1.1 Thu Oct 6 16:06:35 PDT 2011
    BEA Patches of apache ant Client Capable 1.2 Wed Jan 13 08:48:17 PST 2010
    Oracle WebLogic Server 10.3.6.0 at 728648 built on: 2011/09/13
    Oracle WebLogic Server 10.3.6.0 at 728648 built on: 2011/09/13
    Oracle WebLogic Server Datatier 10.3.6.0 at 728648 built on: 2011/09/13
    Oracle WebLogic Server 10.3.6.0 at 728648 built on: 2011/09/13
    WebLogic SIPServer Extension API 10.3.6.0 at 727725 built on 2011/08/25
    WebLogic SIPServer Extension API 10.3.6 at 727725 built on 2011/08/25
    WebLogic SIPServer CallState 10.3.6 at 727725 built on 2011/08/25
    Oracle WebLogic Communications SCTP 10.3.1 at 688160 built on 2009/03/11
    ALSB Client 1.3 Mon Apr 12 19:21:38 PDT 2010
    WebLogic SCA Engine 1.3 Thu Jul 28 14:17:02 MDT 2011
    WebLogic WebService Databinding Plugins 1.3 Wed Dec 1 17:41:28 EST 2010
    WebLogic WebService Databinding 1.3 Tue Oct 18 16:38:56 EDT 2011
    WebLogic SIP Activator 10.3.6 at 729166 built on 2011/09/22
    >
    <Jul 26, 2012 3:39:58 AM BRT> <Notice> <WLSS.Engine> <BEA-330065> <SIP server replication is DISABLED>
    <Jul 26, 2012 3:39:58 AM BRT> <Notice> <WLSS.Engine> <BEA-330000> <WebLogic SIP Server "AdminServer" has started.>
    <Jul 26, 2012 3:39:58 AM BRT> <Notice> <WLSS.Transport> <BEA-330687> <Thread "SIP Message processor (Transport TCP)" is listening on port 5060>
    <Jul 26, 2012 3:39:58 AM BRT> <Notice> <WLSS.Transport> <BEA-330687> <Thread "SIP Message processor (Transport TCP)" is listening on port 5061>
    <Jul 26, 2012 3:39:59 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "oracle_soainfra:total_faults" has no key column. It will not be collected.>
    <Jul 26, 2012 3:39:59 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "discussion:Response" has no key column. It will not be collected.>
    <Jul 26, 2012 3:39:59 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "oracle_oim:overall" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "portal:portal_page_engine_response_codes_delta" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "portal:portal_page_engine_response_codes" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "portal:portal_page_engine" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "reports:Reports_Server_Information" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "reports:Reports_Server_Performance" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "reports:Reports_Server_Response" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "reports:Reports_Servlet_Response" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "reports:Remote_Bridge_Elements" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "oracle_federation:protocol_profiles_rollup" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "oracle_federation:protocol_profiles_events_rollup" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "oracle_federation:protocol_profiles_protocol_phase_events_rollup" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "domain_oracle_oaam:OAAM_Datasource" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "activitygraph:Response" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "domain_oracle_oim:jdbc" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "webcache:request_filter_denied_stats" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "oracle_forms:aggr_FormsResourceUsage" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "oracle_forms:NumberOfSessions" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "oracle_forms:JVMResourceUsage" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:00 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "oracle_forms:servlet_rollup_agg" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:01 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "analytics:Response" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:01 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "personalization:Response" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:01 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "portaltools:Response" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:01 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "weblogic_j2eeserver:jvm_runtime" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:01 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "weblogic_j2eeserver:jvm_compilation_time" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:01 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "weblogic_j2eeserver:jvm_memory_usage" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:01 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "weblogic_j2eeserver:jvm_class_loading" has no key column. It will not be collected.>
    <Jul 26, 2012 3:40:01 AM BRT> <Warning> <oracle.dms.collector> <BEA-000000> <Metric table "weblogic_j2eeserver:jvm_threads" has no key column. It will not be collected.>

    check the server log;
    /app/oracle/product/fwm11g/user_projects/domains/fwm_domain/servers/AdminServer/logs/AdminServer.log
    you can launch the console and see if it is running; http://<server>:<port>/console

  • WebLogic Halts while starting Admin Server

    Hi All,
    I have installed Weblogic 10.3.4 and installed SOA suite 11.1.1.4.0 to it. The system is solaris 64 bit system. When i try to start the admin server the weblogic server halts at the below lines.
    WebLogic SIP Activator 10.3.4 at 710163 built on 2010/09/30
    >
    <Mar 9, 2011 3:38:48 AM PST> <Notice> <WLSS.Engine> <BEA-330065> <SIP server replication is DISABLED>
    <Mar 9, 2011 3:38:48 AM PST> <Notice> <WLSS.Engine> <BEA-330000> <WebLogic SIP Server "sipserver" has started.>
    <Mar 9, 2011 3:38:48 AM PST> <Notice> <WLSS.Transport> <BEA-330687> <Thread "SIP Message processor (Transport TCP)" is listening on port 5060>
    <Mar 9, 2011 3:38:48 AM PST> <Notice> <WLSS.Transport> <BEA-330687> <Thread "SIP Message processor (Transport TCP)" is listening on port 5061>
    The Admin server never comes to RUNNING mode. I dont know what is this SIP all about. Please help.
    Thanks in Advance
    Edited by: user10255311 on Mar 9, 2011 4:42 AM

    Can anyone help on this...am tottally stuck on this

  • Create dynamic Topics in WebLogic 12c?

    I am new to both JMS and WebLogic, and I can't seem to figure out how to properly run my JMS solution in WebLogic. I have developed my proof-of-concept with Active MQ, but the application will eventually need to run on WebLogic.
    Active MQ allowed me to create Topics dynamically, by simply calling createTopic() on TopicSession. If the Topic doesn't exist, it is created, which is exactly what I need. I can't figure out an easy way to do this in WebLogic. I know that createTopic() won't work as per the documentation:
       Note: The createQueue() and createTopic() methods do not create destinations dynamically; they create only references to destinations that already exist.
       For information about creating destinations dynamically, see Chapter 7, "Using JMS Module Helper to Manage Applications."
    I am aware that there is a `JMSModuleHelper` class, but the javadoc says the following:
       Note: Oracle recommends that the use of the create (distributed)queue/topic methods be strictly limited, as they directly modify the associated
       JMS Module configuration (your-jms.xml) file and provide minimal feedback for detecting success or failure.
    In addition to this warning, the usage of this class involves complex manipulation of MBeans and requires the knowledge of which server my application is running on. This is very inconvenient, since my app will be deployed to multiple servers based on the desired environment (ie. Integration Test, System Test, UAT, Prod, etc).
    Is there really no easy way to use dynamic Destinations in WebLogic?
    This makes me wonder if my entire JMS based design might be misguided... The idea is that I have 5 different applications, but these applications share a large user base among themselves. These users have consistent IDs among the applications. Some events within any of the applications trigger a JMS message that is broadcast to a Topic with a name derived from the currently logged in USER_ID. Every time a user logs into any of the apps, the app subscribes to that USER_ID_Topic, with the application name being the Subscription ID. This way the message is broadcast to all users when they log in to any of the 5 applications, yet there is a well defined, centralized Topic for all applications to push their user events into.
    Is there a way to do this in WebLogic, or is this a bad approach?
    Any advice would be appreciated!
    Val

    I think what your question boils down to is whether you can call Session.createTopic(topicName) to create new topics on-the-fly. The JMS specification doesn't require this to be possible, but many vendors including Glassfish Message Queue do allow this.
    If your JMS provider doesn't allow dynamically-created topics you can achieve the same effect by using a standard topic name and then a message selector to "filter" the topic. A message selector allows the consumer to specify that they want to receive only those messages which match some specified condition based on a message property.
    Nigel

  • OBIEE on RHEL5.5 using clustering of 4 nodes deployed on weblogic

    It is my first experiance of installaing OBI in production enviornament. I have to install OBIEE 10.1.3.4.1 on four IBM HS22 Blade Servers, under RHEL 5.5, deployed on Weblogic in active/active configuration. Weblogic will be clustered. I am confused of steps of installation, please rectify me if following steps are wrong:
    Step 1: install Weblogic on Node1, and configure clustering of Weblogic on other 3 nodes.
    Setp 2: Install OBIEE on all 4 nodes. Complete installation, not specific products, using Advanced installation type. so that all componets are installed on all the nodes
    Step 3: Configure clustering of OBIEE keeping Node1 as Master BI Server, Primary Cluster Controler, Primary scheduler.

    i am plaining for complete installation on all the nodes but while doing configuration in files NQSConfig.INI and NQClusterConfig.INI etc, i will do like
    Node1 as primary node for cluster and scheduler and Presentation Services and Master BI Server
    Node2 as secondary node for cluster and scheduler and Presentation Services and BI Server
    Node3 as BI Server
    Node4 as BI Server
    I can install only one component BI Server on Node3 and Node4, but to keep my installation straight farward i am installing complete on all nodes. please suggest will it work. Or shall I proceed with complete install on Node1 and Node2, but custom install on Node3 and Node4
    Regarding load balancing this has to be done by the cluster controler, please suggest if i am wrong. I have a separate WebServer which i need to configure.

  • WLS 10.3.5 Managed server is not starting in Windows 7

    Hello there,
    I had installed SOA suite 11 and weblogic server 10.3.5. setDomainEnv is setting environment variables like below.
    Path
    C:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\native;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\native;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1\bin;C:\Oracle\MIDDLE~1\JDK160~1\jre\bin;C:\Oracle\MIDDLE~1\JDK160~1\bin;C:\Oracle\instantclient_11_2;C:\Oracle\oraclexe\app\oracle\product\10.2.0\server\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files\CREDANT\Shield v7.1\;C:\Program Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia AUX;C:\Program Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia AUX\Support binaries;C:\Program Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia Broker;C:\Program Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia Client;C:\Oracle\Middleware\jdeveloper\ant\bin;C:\Oracle\Middleware\jdk160_24\bin;C:\Oracle\product\10.2.0.1\BIN;C:\Program Files\Java\jre7\bin;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920_8
    Classpath
    C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;C:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\JDK160~1\lib\tools.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;C:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;C:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\Oracle\Middleware\wlserver_10.3\sip\server\lib\weblogic_sip.jar;C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\common\derby\lib\derbyclient.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar;.;C:\Oracle\Middleware\jdk160_24\lib;C:\Oracle\Middleware\jdeveloper\ant\lib;
    Now i have given this command in user_domains/../bin folder
    startManagedWebLogic.cmd soa_managed_server01 http://suchalam-ws:7002
    But the managed server is shutting down. below is the trace from windows7 command prompt.
    this server is being started in managed server independence mode in the absence of
    the admin server.>
    <Aug 30, 2012 1:13:28 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STARTING>
    <Aug 30, 2012 1:13:28 AM IST> <Info> <WorkManager> <BEA-002900> <Initializing se
    lf-tuning thread pool>
    <Aug 30, 2012 1:13:28 AM IST> <Notice> <LoggingService> <BEA-320400> <The log fi
    le C:\Oracle\Middleware\user_projects\domains\sudheers_domain\servers\soa_manage
    d_server01\logs\soa_managed_server01.log will be rotated. Reopen the log file if
    tailing has stopped. This can happen on some platforms like Windows.>
    <Aug 30, 2012 1:13:28 AM IST> <Notice> <LoggingService> <BEA-320401> <The log fi
    le has been rotated to C:\Oracle\Middleware\user_projects\domains\sudheers_domai
    n\servers\soa_managed_server01\logs\soa_managed_server01.log00011. Log messages
    will continue to be logged in C:\Oracle\Middleware\user_projects\domains\sudheer
    s_domain\servers\soa_managed_server01\logs\soa_managed_server01.log.>
    <Aug 30, 2012 1:13:28 AM IST> <Notice> <Log Management> <BEA-170019> <The server
    log file C:\Oracle\Middleware\user_projects\domains\sudheers_domain\servers\soa
    managedserver01\logs\soa_managed_server01.log is opened. All server side log e
    vents will be written to this file.>
    Aug 30, 2012 1:13:30 AM oracle.security.jps.internal.common.util.XmlSchemaValida
    tionUtil$StrictErrorHandler warning
    WARNING: Failed to validate the xml content. SchemaLocation: schemaLocation valu
    e = 'http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd' must have e
    ven number of URI's. Location: line 2 column 272.
    <Aug 30, 2012 1:13:39 AM IST> <Notice> <Security> <BEA-090082> <Security initial
    izing using security realm myrealm.>
    <Aug 30, 2012 1:13:51 AM IST> <Warning> <JTA> <BEA-110503> <The migrator(the Adm
    inServer for manual JTA migration policy, or the Singleton Master for automatic
    JTA migration policy) is not available. Will skip JTA TRS failback because isStr
    ictOwnershipCheck is [false]. This may lead to potencial TLOG corruption if TRS
    of soa_managed_server01 has been migrated to backup server and the backup server
    is accessing the TLOG of soa_managed_server01. More safety can be achieved by s
    etting isStrictOwnershipCheck to [true].>
    <Aug 30, 2012 1:13:52 AM IST> <Warning> <Management> <BEA-141277> <The JMX MBean
    PlatformMBeanServerUsed attribute is true, but the Platform MBeanServer was cre
    ated without the hooks for the WLS security infrastructure. The Platform MBeanSe
    rver will NOT be used and Platform MBeans will NOT be available via the WLS Runt
    ime or Domain Runtime MBeanServers. This can occur if you have defined Platform
    MBeanServer system properties or JVM options (-Dcom.sun.management.jmxremote or
    JRockit -XManagement).
    To allow the Platform MBeanServer to be used, you must either remove the system
    properties/JVM options or start WLS with the following system property:
    -Djavax.management.builder.initial=weblogic.management.jmx.mbeanserver.WLSMBean
    ServerBuilder
    If you want to eliminate this log error and do not need Platform MBeans to be a
    vailable via WLS, then set the PlatformMBeanUsed attribute in the JMXMBean to fa
    lse.>
    <Aug 30, 2012 1:14:01 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STANDBY>
    <Aug 30, 2012 1:14:01 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STARTING>
    <Aug 30, 2012 1:14:04 AM IST> <Error> <Deployer> <BEA-149205> <Failed to initial
    ize the application 'wsm-pm' due to error weblogic.management.DeploymentExceptio
    n: [J2EE:160149]Error while processing library references. Unresolved applicatio
    n library references, defined in weblogic-application.xml: [Extension-Name: orac
    le.wsm.seedpolicies, Specification-Version: 11.1.1, Implementation-Version: 11.1
    .1, exact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: oracle.wsm.seedpolicies, Specification-Version
    : 11.1.1, Implementation-Version: 11.1.1, exact-match: false].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:613)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:184)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:58)
    Truncated. see log file for complete stacktrace
    >
    <Aug 30, 2012 1:14:04 AM IST> <Notice> <SipServer.Resource> <BEA-332401> <Initia
    lizing SipServer Resource with configuration com.bea.wcp.sip.management.descript
    or.beans.SipServerBeanImpl>
    <Aug 30, 2012 1:14:08 AM IST> <Notice> <WLSS.Engine> <BEA-330071> <WebLogic Sip
    Server "soa_managed_server01" patch version: WebLogic Server 10.3.5.0 Fri Apr 1
    20:20:06 PDT 2011 1398638
    Javax Server Pages Client Capable 1.2 Tue Jul 13 02:43:41 EDT 2010
    Expression Language 2.1 for JSP 1.0 Sun Jul 18 23:17:34 PDT 2010
    Javax Enterprise Servlets Client Capable 1.0 Thu Aug 2 12:41:25 EDT 2007
    Eclipse Java Development Tools 3.5.2 Thu Sep 2 09:47:11 EDT 2010
    WebLogic java compiler utils package Client Capable 1.2 Thu Feb 11 03:38:50 EST
    2010
    WebLogic WebApp Container Public API Client Capable 1.4 Fri Oct 1 20:01:15 PDT 2
    010
    Oracle WebLogic Server Module Dependencies 10.3 Thu Mar 3 14:37:52 PST 2011
    Oracle WebLogic Server on JRockit Virtual Edition Module Dependencies 10.3 Thu F
    eb 3 16:30:47 EST 2011
    ANTLR Java based compiler generator Client 2.7 Mon Jun 11 12:19:48 EDT 2007
    WebLogic Descriptors for J2EE 1.5 Wed May 5 14:32:58 EDT 2010
    WebLogic Descriptors for J2EE 1.5 Binding Bundle
    WebLogic Specific Descriptors 1.3 Tue Sep 14 18:48:42 PDT 2010
    WebLogic Specific Descriptors 1.3 Binding Bundle
    WebLogic Datasource 1.9 Tue Oct 26 13:50:26 PDT 2010
    WebLogic Datasource 1.9 Binding Bundle
    WebLogic Beangen Client Capable 1.7 Wed Feb 24 16:02:48 PST 2010
    WebLogic Beangen 1.7 Binding Bundle
    WLDF Accessor Client Capable 1.5 Fri Sep 3 17:10:52 EDT 2010
    WLDF Accessor 1.5 Binding Bundle
    WebLogic Management Core Interfaces Client Capable 2.8 Thu Mar 3 12:10:10 EST 20
    11
    WebLogic Management Core Interfaces 2.8 Binding Bundle
    WebLogic EJBGen Client Capable 1.1 Thu Jun 3 13:17:07 EDT 2010
    Apache Byte Code Engineering Library (BCEL) extracted from 5.2.zip from http://j
    akarta.apache.org/site/downloads/downloads_bcel.cgi with packages renamed from o
    rg.apache.bcel to com.bea.core.repackaged.apache.bcel Client 5.2 Tue May 15 09:5
    2:37 EDT 2007
    Apache commons collections package 3.2 Tue Mar 20 15:48:25 MDT 2007
    Apache commons lang package 2.1 Tue Mar 20 15:48:30 MDT 2007
    Apache commons pool package 1.3 Tue Mar 20 15:48:36 MDT 2007
    Apache commons io 1.4 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache commons fileupload 1.2.1 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache DOM implementation 1.0 Tue Mar 20 15:36:46 MDT 2007
    Apache Logging Support 1.0 Tue Mar 20 15:36:50 MDT 2007
    Apache OpenJPA classes 1.2 Thu Jul 22 05:16:07 EDT 2010
    XMLBeans - Apache SVN rev 962560 2.1 Thu Jul 15 09:52:54 EDT 2010
    BEA Logging Runtime Support Client Capable 1.8 Mon Jun 7 12:07:02 PDT 2010
    BEA Common Security Open SAML 1.0 Fri May 14 20:18:10 PDT 2010
    BEA OpenSAML 2.0 1.0 Wed Mar 24 13:18:27 PDT 2010
    bea-harvester-api2.0 Client Capable 2.3 Mon Feb 15 14:41:06 EST 2010
    bea-harvester-jmx2.0 Client Capable 2.3 Wed Feb 3 11:54:03 PST 2010
    bea-harvester-utils Client Capable 1.4 Mon Feb 15 14:41:06 EST 2010
    bea-mbean-typing-util 1.4 Wed Feb 24 19:15:33 EST 2010
    Javolution 3.7.19 3.7 Tue Aug 28 17:32:21 PDT 2007
    Joda-time 1.2.1 1.2 Tue Aug 28 17:32:27 PDT 2007
    BEA STAX Build Time Support 1.5 Tue May 4 07:32:25 PDT 2010
    BEA STAX Runtime Time Support Client Capable 1.7 Wed Aug 4 19:40:47 EDT 2010
    BEA Generic Annotations Client Capable 1.3 Sat Jul 11 00:30:54 EDT 2009
    BEA Kodo 1.4 Mon Feb 7 16:22:04 PST 2011
    BEA Kodo Integration Client Capable 1.6 Sun Nov 22 16:29:06 PST 2009
    BEA Kodo Integration 1.6 Binding Bundle
    BEA Kodo Integration Tools 1.4 Thu Feb 3 16:07:53 EST 2011
    XML Beans Marshalling (package renamed com.bea) SVN 962560 2.3 Thu Mar 3 12:10:1
    0 EST 2011
    WebLogic Utils Client Capable 1.9 Thu Mar 3 12:10:10 EST 2011
    Aspect 5.3 Fri Jun 4 14:55:18 PDT 2010
    BEA Apache Commons Logging Repackaged 1.2 Mon Jun 11 12:47:12 EDT 2007
    Spring Framework 1.1 Thu Dec 3 12:21:08 EST 2009
    Pitchfork 1.3 Thu Jun 3 13:17:07 EDT 2010
    ${description} 1.2 Fri Jun 25 16:25:26 EDT 2010
    CSS i18n 1.0 Fri Oct 8 10:32:52 EDT 2010
    CSS xacml 1.0 Fri Oct 8 10:32:52 EDT 2010
    SAML2 Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Engine Implementation 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Engine Interfaces 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security API 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Implementation 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security JDK Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    Common Security SAML 2.0 1.0 Fri Oct 8 10:32:52 EDT 2010
    Common Security SAML 2.0 Management JavaBeans 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Provider Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    SAML Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    XACML Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Provider Environment 1.0 Fri Oct 8 10:32:52 EDT 2010
    RSA certj 3.1 Wed May 5 15:11:55 PDT 2010
    Netscape LDAP JDK 1.2 Mon Jun 7 15:56:47 EDT 2010
    Commons Networking Utilty classes 1.0 Wed Feb 6 15:01:03 PST 2008
    WebLogic SAAJ 1.6 Wed Jun 16 22:02:31 EDT 2010
    WebLogic STAX Client Capable 1.9 Thu Feb 10 18:00:52 PST 2011
    jaxb-impl.jar taken from Glassfish JAXB 2.1.9 1.0 Fri Aug 20 14:37:07 EDT 2010
    jaxb-impl.jar taken from Glassfish JAXB 2.1.12 1.0 Thu May 6 16:10:04 PDT 2010
    resolver.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:24 EST 2009
    Fastinfoset.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:27 EST 2009
    jaxws-rt.jar taken from Glassfish JAXWS 2.1.5 1.2 Mon Feb 28 17:53:01 PST 2011
    Java.net implementation of MimePull.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu
    Dec 3 11:46:33 EST 2009
    Codehaus STaX Interfaces 3.0.1 1.0 Mon Mar 8 20:49:50 PST 2010
    Woodstox STaX Parser 4.0.5 1.0 Thu Dec 3 11:35:43 EST 2009
    jaxws-tools.jar taken from Glassfish JAXWS 2.1.5 1.1 Fri Sep 24 17:55:05 PDT 201
    0
    Java.net Stax Extensions 1.0 Tue Jun 3 07:12:06 PDT 2008
    Java.net xml stream buffer 1.0 Tue Mar 17 05:24:12 PDT 2009
    Jakarta ORO 1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Enterprise Activation 1.1 Tue Apr 8 09:31:17 PDT 2008
    Javax Annotation 1.0 Fri Dec 25 09:02:47 PST 2009
    Javax Interceptor 1.0 Tue Mar 20 15:37:16 MDT 2007
    Javax Enterprise Beans 3.0 Mon Jun 11 12:21:01 EDT 2007
    Java Data Objects 2.0 Mon Jun 11 12:20:56 EDT 2007
    Java Enterprise Deployment APIs 1.2 Tue Mar 20 15:37:28 MDT 2007
    Java Enterprise Messaging 1.1 Mon Jun 11 12:21:11 EDT 2007
    Java Web Services 2.0 Tue Mar 20 15:37:37 MDT 2007
    Javax Enterprise Mail 1.1 Mon Jul 6 10:41:09 MDT 2009
    Java Enterprise Management APIs 1.0 Tue Mar 20 15:37:49 MDT 2007
    Java Persistence Client Capable 1.0 Tue Oct 7 12:18:34 PDT 2008
    Java Connector 1.5 Mon Jun 11 12:22:07 EDT 2007
    Java Authorization Contract for Containers 1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Transaction APIs Client Capable 1.0 Thu Aug 2 12:42:14 EDT 2007
    JAXB 2.1 Mon Jun 11 12:22:53 EDT 2007
    Java XML Registry 1.0 Wed Feb 6 15:01:03 PST 2008
    Java XML Soap Extensions 1.3 Mon Jun 11 12:22:59 EDT 2007
    Java Stream XML Extensions 1.1 Mon Jun 11 12:23:05 EDT 2007
    JAX-WS APIs 2.1 Mon Jun 11 12:23:16 EDT 2007
    Java API for XML-based RPC 1.2 Mon Jun 11 12:23:10 EDT 2007
    Monfox Dynamic SNMP Agent 1.1 Fri Mar 19 05:46:27 MDT 2010
    Serp bytecode manipulation framework 1.14.3 Fri Jun 11 12:06:08 PDT 2010
    WebLogic Apache Classes Client Capable 1.2 Thu Feb 18 22:06:19 PST 2010
    WebLogic BeanInfo Caching and Discovery Client Capable 2.4 Sat Oct 25 20:46:29 P
    DT 2008
    WebLogic Descriptor Client Capable 1.9 Tue Jul 20 16:03:09 EDT 2010
    Repackaged ASM-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-commons-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-tree-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-util-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Oracle JFR 1.0 Thu Feb 18 19:06:33 PST 2010
    WebLogic Diagnostics Core Interfaces Client Capable 2.5 Thu Jun 3 05:20:41 PDT 2
    010
    WebLogic Diagnostics Logging Client Capable 1.2 Fri Dec 12 11:37:59 MST 2008
    WebLogic Diagnostics Query Module Client Capable 1.2 Tue Oct 27 02:48:36 PDT 200
    9
    WebLogic Diagnostics Instrumentor Tool 1.7 Tue May 18 03:51:46 PDT 2010
    WebLogic Diagnostics Instrumentor Config Tool 1.7 Tue Jun 29 16:41:19 EDT 2010
    WebLogic Diagnostics JRockit Flight Recorder Interfaces Client Capable 1.1 Fri O
    ct 29 16:32:05 EDT 2010
    Diagnostics Notifications Module Client Capable 1.4 Sun Nov 22 16:03:32 PST 2009
    BEA Logging Runtime Support Client Capable 1.5 Thu Apr 29 20:43:42 EDT 2010
    WebLogic i18n Runtime Support Client Capable 1.8 Fri Sep 10 08:12:34 EDT 2010
    WebLogic i18n Build Support Client Capable 1.5 Fri Feb 19 15:03:15 EST 2010
    WebLogic I18N tools Client Capable 1.3 Sun Nov 22 16:03:32 PST 2009
    WebLogic Management JMX Interfaces 1.4 Thu Aug 12 11:16:22 PDT 2010
    WebLogic Security Provider Generation Tool 1.5 Wed Oct 14 16:39:28 MDT 2009
    WebLogic Security Provider Generation Tool Client Capable 1.5 Wed Oct 14 16:39:2
    8 MDT 2009
    WebLogic Messaging Kernel Client Capable 1.8 Mon Aug 23 21:42:11 EDT 2010
    WebLogic Resource Pool Client Capable 1.7 Mon Sep 27 12:00:08 EDT 2010
    WebLogic Socket Muxer API Client Capable 1.2 Thu Apr 1 21:16:27 EDT 2010
    WebLogic RMI Client Capable 1.10 Tue Mar 22 16:56:32 PDT 2011
    Common Security WebLogic Server Integration Support 1.0 Fri Oct 8 10:32:52 EDT
    2010
    Server Lifecycle Interfaces Client Capable 1.4 Fri Feb 19 15:03:15 EST 2010
    WebLogic Store Client Capable 1.7 Fri Dec 17 16:52:31 EST 2010
    WebLogic STORE GXA Client Capable 1.6 Mon Aug 23 21:16:10 EDT 2010
    WebLogic Store Admin Tool Client Capable 1.2 Thu Jan 21 10:24:18 PST 2010
    WebLogic JDBC Store Client Capable 1.3 Mon May 17 10:46:33 PDT 2010
    WebLogic JTA implementation Client Capable 2.7 Fri Sep 17 12:19:45 PDT 2010
    WebLogic Utils 1.9 Thu Mar 3 12:10:10 EST 2011
    Agent Utililities 1.1 Tue Feb 16 00:16:03 EST 2010
    WebLogic Utility Classloader implementations Client Capable 1.9 Wed Mar 2 14:10:
    04 PST 2011
    WebLogic Utils for working with Expressions Client Capable 1.4 Tue Sep 29 14:45:
    53 EDT 2009
    WebLogic Utils for Dynamically Generated Class Wrappers Client Capable 1.4 Fri F
    eb 13 14:44:23 MST 2009
    WebLogic Timers Client Capable 1.7 Thu Feb 18 13:08:44 EST 2010
    WebLogic Work Manager Client Capable 1.10 Thu Feb 17 10:25:54 PST 2011
    WebLogic Workarea Client Capable 1.7 Wed Feb 24 17:18:56 PST 2010
    WebLogic XML XPath Implementation Client Capable 1.4 Mon Feb 22 15:07:14 PST 201
    0
    Weblogic Tuxedo Connector Core Client Capable 1.5 Sat Jul 3 19:05:38 EDT 2010
    WebLogic Security 1.0 Fri Oct 8 10:32:52 EDT 2010
    Weblogic Server Java Authentication Helper Classes Client Capable 1.1 Mon Jul 5
    20:42:35 EDT 2010
    Weblogic Server Message Digest Utilities Client Capable 1.0 Thu Aug 2 12:51:30 E
    DT 2007
    Weblogic Server Authenticated Subject Client Capable 1.1 Thu Oct 28 05:46:37 PDT
    2010
    Weblogic Server Authenticated Subject Client Capable 1.5 Thu Sep 9 10:23:21 MDT
    2010
    PrintingSecurityManager - PSM 1.1 Tue Feb 16 05:30:08 PST 2010
    WebLogic security ssl classes 1.0 Tue Jun 15 17:39:53 EDT 2010
    WebLogic Nodemanager Plugin Client Capable 1.3 Tue Nov 18 18:23:10 EST 2008
    nodemanager module for managed processes 1.0 Thu Apr 8 15:14:38 PDT 2010
    WebLogic JMS Pool Client Capable 1.8 Thu Mar 3 14:11:40 PST 2011
    Contains compiled schema type from WLS 9.0 for WLP compatibility 1.3 Wed Feb 24
    19:15:33 EST 2010
    WebLogic Http Pub/Sub Module Client Capable 1.6 Mon Jul 12 02:31:07 EDT 2010
    Class Redefinition Project 1.5 Mon May 10 19:48:21 EDT 2010
    Class Redefinition Project Client Capable 1.5 Mon Apr 5 17:00:52 PDT 2010
    Class Redefinition Project 1.5 Binding Bundle
    Commonj SDO 1.0 Wed Sep 24 19:11:23 PDT 2008
    WebLogic Coherence Descriptor 1.1 Wed May 5 15:17:47 EDT 2010
    WebLogic Coherence Descriptor 1.1 Binding Bundle
    This module contains all message catalogs 1.1 Fri Dec 17 08:04:35 PST 2010
    WebLogic WebService Public API's 1.1 Tue Sep 21 22:15:05 EDT 2010
    WebLogic EclipseLink Integration 1.0 Thu Feb 25 14:56:43 PST 2010
    WebLogic SCA Client 1.0 Thu Feb 25 00:27:10 EST 2010
    WebLogic RAC Module UCP Client Capable 1.0 Mon Sep 13 09:03:00 PDT 2010
    BEA Patches of apache ant Client Capable 1.2 Wed Jan 13 08:48:17 PST 2010
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server Datatier 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    WebLogic SIPServer Extension API 10.3.4.0 at 709997 built on 2010/09/27
    WebLogic SIPServer Extension API 10.3.4 at 709997 built on 2010/09/27
    WebLogic SIPServer CallState 10.3.4 at 709997 built on 2010/09/27
    Oracle WebLogic Communications SCTP 10.3.1 at 688160 built on 2009/03/11
    WebLogic WebService Databinding Plugins 1.3 Wed Dec 1 17:41:28 EST 2010
    WebLogic WebService Databinding 1.3 Tue Oct 18 16:38:56 EDT 2011
    WebLogic SIP Activator 10.3.4 at 710163 built on 2010/09/30
    >
    <Aug 30, 2012 1:14:08 AM IST> <Error> <WLSS.Engine> <BEA-330075> <There are no s
    ip nor diameter channels targeted to server "soa_managed_server01">
    <Aug 30, 2012 1:14:08 AM IST> <Error> <WLSS.Engine> <BEA-330049> <Failed to star
    t the sip service, shutting down>
    C:\Oracle\Middleware\user_projects\domains\sudheers_domain\bin
    Thanks in advance,
    Sudheer

    Hi Vlad, Kalyan
    Thanks for the response. Actually i am not planning to configure weblogic SIP... as it may need little insight. I just created domain including everything.
    Now i have created a new domain with basic functionality with default configuration. Now everything is working fine. I can see the Admin console as well.
    But i have stuck up in running the EM console. Below is the CMD prompt trace.
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.
    C:\Users\suchalam>cd C:\Oracle\Middleware\user_projects\domains\sudheer_domain\b
    in
    C:\Oracle\Middleware\user_projects\domains\sudheer_domain\bin>startManagedWebLog
    ic.cmd soa_server1
    ** Setting up SOA specific environment for win...
    PATH=C:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\native;C:\Oracle\MIDDLE~1
    \patch_jdev1111\profiles\default\native;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\nat
    ive\win\32;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~1\modules\O
    RGAPA~1.1\bin;C:\Oracle\MIDDLE~1\JDK160~1\jre\bin;C:\Oracle\MIDDLE~1\JDK160~1\bi
    n;C:\Oracle\instantclient_11_2;C:\Oracle\oraclexe\app\oracle\product\10.2.0\serv
    er\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System
    32\WindowsPowerShell\v1.0\;C:\Program Files\CREDANT\Shield v7.1\;C:\Program File
    s (x86)\SSH Communications Security\SSH Tectia\SSH Tectia AUX;C:\Program Files (
    x86)\SSH Communications Security\SSH Tectia\SSH Tectia AUX\Support binaries;C:\P
    rogram Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia Broker;C:\P
    rogram Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia Client;C:\O
    racle\Middleware\jdeveloper\ant\bin;C:\Oracle\product\10.2.0.1\BIN;C:\Oracle\Mid
    dleware\jdk160_24\bin;;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920
    _8;C:\Oracle\Middleware\Oracle_SOA1\soa\thirdparty\edifecs\XEngine\bin
    USER_MEM_ARGS=-Xms512m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=512m
    JAVA_OPTIONS=-Dweblogic.security.SSL.trustedCAKeyStore="C:\Oracle\Middleware\wls
    erver_10.3\server\lib\cacerts" -Xverify:none
    ** End SOA Specific environment setup for win.
    ** SOA specific environment is already set. Skipping ...
    JAVA Memory arguments: -Xms512m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;C
    :\Oracle\Middleware\Oracle_SOA1\soa\modules\user-patch.jar;C:\Oracle\Middleware\
    Oracle_SOA1\soa\modules\soa-startup.jar;;C:\Oracle\MIDDLE~1\patch_wls1035\profil
    es\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\patch_jd
    ev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDD
    LE~1\JDK160~1\lib\tools.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp
    .jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;C:\Oracle\MIDDLE~1\mo
    dules\features\weblogic.server.modules_10.3.5.0.jar;C:\Oracle\MIDDLE~1\WLSERV~1.
    3\server\lib\webservices.jar;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.j
    ar;C:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\Oracle\MIDDLE~
    1\ORACLE~1\soa\modules\commons-cli-1.1.jar;C:\Oracle\MIDDLE~1\ORACLE~1\soa\modul
    es\oracle.soa.mgmt_11.1.1\soa-infra-mgmt.jar;C:\Oracle\Middleware\Oracle_SOA1\so
    a\modules\oracle.soa.common.adapters_11.1.1\oracle.soa.common.adapters.jar;C:\Or
    acle\Middleware\Oracle_SOA1\communications\modules\usermessaging-config_11.1.1.j
    ar;C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.xdk_11.1.0\xsu12.jar;C:\Oracle\MID
    DLE~1\modules\features\weblogic.server.modules.xquery_10.3.1.0.jar;C:\Oracle\Mid
    dleware\Oracle_SOA1\soa\modules\db2jcc4.jar;C:\Oracle\MIDDLE~1\USER_P~1\domains\
    SUDHEE~2\config\soa-infra;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\fabric-ur
    l-handler_11.1.1.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\quartz-all-1.6
    .5.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\oracle.soa.fabric_11.1.1\ora
    cle.soa.fabric.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\oracle.soa.fabri
    c_11.1.1\fabric-runtime-ext-wls.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules
    \oracle.soa.adapter_11.1.1\oracle.soa.adapter.jar;C:\Oracle\Middleware\Oracle_SO
    A1\soa\modules\oracle.soa.b2b_11.1.1\oracle.soa.b2b.jar;C:\Oracle\MIDDLE~1\ORACL
    E~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\common\derby
    \lib\derbyclient.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar;C:\Oracle
    \Middleware\jdeveloper\ant\lib;C:\Oracle\Middleware\jdk160_24\lib;
    PATH=C:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\native;C:\Oracle\MIDDLE~1
    \patch_jdev1111\profiles\default\native;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\nat
    ive\win\32;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~1\modules\O
    RGAPA~1.1\bin;C:\Oracle\MIDDLE~1\JDK160~1\jre\bin;C:\Oracle\MIDDLE~1\JDK160~1\bi
    n;C:\Oracle\instantclient_11_2;C:\Oracle\oraclexe\app\oracle\product\10.2.0\serv
    er\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System
    32\WindowsPowerShell\v1.0\;C:\Program Files\CREDANT\Shield v7.1\;C:\Program File
    s (x86)\SSH Communications Security\SSH Tectia\SSH Tectia AUX;C:\Program Files (
    x86)\SSH Communications Security\SSH Tectia\SSH Tectia AUX\Support binaries;C:\P
    rogram Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia Broker;C:\P
    rogram Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia Client;C:\O
    racle\Middleware\jdeveloper\ant\bin;C:\Oracle\product\10.2.0.1\BIN;C:\Oracle\Mid
    dleware\jdk160_24\bin;;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920
    _8;C:\Oracle\Middleware\Oracle_SOA1\soa\thirdparty\edifecs\XEngine\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 *
    starting weblogic with Java version:
    java version "1.6.0_24"
    Java(TM) SE Runtime Environment (build 1.6.0_24-b50)
    Java HotSpot(TM) Client VM (build 19.1-b02, mixed mode)
    Starting WLS with line:
    C:\Oracle\MIDDLE~1\JDK160~1\bin\java -client -Xms512m -Xmx512m -XX:PermSize=12
    8m -XX:MaxPermSize=512m -Dweblogic.Name=soa_server1 -Djava.security.policy=C:\Or
    acle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Dweblogic.security.SSL.trus
    tedCAKeyStore="C:\Oracle\Middleware\wlserver_10.3\server\lib\cacerts" -Xverify:
    none -da -Dplatform.home=C:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=C:\Oracle\MID
    DLE~1\WLSERV~1.3\server -Dweblogic.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -D
    common.components.home=C:\Oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.ap
    ache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.ho
    me=C:\Oracle\MIDDLE~1\USER_P~1\domains\SUDHEE~2 -Djrockit.optfile=C:\Oracle\MIDD
    LE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.server.conf
    ig.dir=C:\Oracle\MIDDLE~1\USER_P~1\domains\SUDHEE~2\config\FMWCON~1\servers\soa_
    server1 -Doracle.domain.config.dir=C:\Oracle\MIDDLE~1\USER_P~1\domains\SUDHEE~2\
    config\FMWCON~1 -Digf.arisidbeans.carmlloc=C:\Oracle\MIDDLE~1\USER_P~1\domains\
    SUDHEE~2\config\FMWCON~1\carml -Digf.arisidstack.home=C:\Oracle\MIDDLE~1\USER_P
    ~1\domains\SUDHEE~2\config\FMWCON~1\arisidprovider -Doracle.security.jps.config=
    C:\Oracle\MIDDLE~1\USER_P~1\domains\SUDHEE~2\config\fmwconfig\jps-config.xml -Do
    racle.deployed.app.dir=C:\Oracle\MIDDLE~1\USER_P~1\domains\SUDHEE~2\servers\soa_
    server1\tmp\_WL_user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirec
    tory=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\Oracle\MIDDLE~
    1\ORACLE~1\modules\oracle.oamprovider_11.1.1 -Djava.protocol.handler.pkgs=oracle
    .mds.net.protocol"|"oracle.fabric.common.classloaderurl.handler"|"oracle.fabric.
    common.uddiurl.handler"|"oracle.bpm.io.fs.protocol -Dweblogic.jdbc.remoteEnable
    d=false -Doracle.security.jps.policy.migration.validate.principal=false -da:org
    .apache.xmlbeans... -Dsoa.archives.dir=C:\Oracle\Middleware\Oracle_SOA1\soa -Dso
    a.oracle.home=C:\Oracle\Middleware\Oracle_SOA1 -Dsoa.instance.home=C:\Oracle\MID
    DLE~1\USER_P~1\domains\SUDHEE~2 -Dtangosol.coherence.clusteraddress=227.7.7.9 -D
    tangosol.coherence.clusterport=9778 -Dtangosol.coherence.log=jdk -Djavax.xml.soa
    p.MessageFactory=oracle.j2ee.ws.saaj.soap.MessageFactoryImpl -Dweblogic.transact
    ion.blocking.commit=true -Dweblogic.transaction.blocking.rollback=true -Djavax.n
    et.ssl.trustStore=C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoTrust.jks -Dem.or
    acle.home=C:\Oracle\Middleware\oracle_common -Djava.awt.headless=true -Dbam.orac
    le.home=C:\Oracle\Middleware\Oracle_SOA1 -Dums.oracle.home=C:\Oracle\Middleware\
    Oracle_SOA1 -Dweblogic.management.discover=false -Dweblogic.management.server=ht
    tp://SUCHALAM-WS:7001 -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.lo
    gErrorsToConsole=false -Dweblogic.ext.dirs=C:\Oracle\MIDDLE~1\patch_wls1035\prof
    iles\default\sysext_manifest_classpath;C:\Oracle\MIDDLE~1\patch_jdev1111\profile
    s\default\sysext_manifest_classpath weblogic.Server
    <Sep 2, 2012 6:51:28 PM IST> <Info> <Security> <BEA-090905> <Disabling CryptoJ J
    CE Provider self-integrity check for better startup performance. To enable this
    check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Sep 2, 2012 6:51:29 PM IST> <Info> <Security> <BEA-090906> <Changing the defaul
    t Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable
    this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Sep 2, 2012 6:51:30 PM IST> <Info> <WebLogicServer> <BEA-000377> <Starting WebL
    ogic Server with Java HotSpot(TM) Client VM Version 19.1-b02 from Sun Microsyste
    ms Inc.>
    <Sep 2, 2012 6:51:32 PM IST> <Info> <Security> <BEA-090065> <Getting boot identi
    ty from user.>
    Enter username to boot WebLogic server:weblogic
    Enter password to boot WebLogic server:
    <Sep 2, 2012 6:51:42 PM IST> <Info> <Management> <BEA-141107> <Version: WebLogic
    Server 10.3.5.0 Fri Apr 1 20:20:06 PDT 2011 1398638 >
    <Sep 2, 2012 6:51:45 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server stat
    e changed to STARTING>
    <Sep 2, 2012 6:51:45 PM IST> <Info> <WorkManager> <BEA-002900> <Initializing sel
    f-tuning thread pool>
    <Sep 2, 2012 6:51:46 PM IST> <Notice> <Log Management> <BEA-170019> <The server
    log file C:\Oracle\Middleware\user_projects\domains\sudheer_domain\servers\soa_s
    erver1\logs\soa_server1.log is opened. All server side log events will be writte
    n to this file.>
    <Sep 2, 2012 6:51:59 PM IST> <Notice> <Security> <BEA-090082> <Security initiali
    zing using security realm myrealm.>
    <Sep 2, 2012 6:53:56 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server stat
    e changed to STANDBY>
    <Sep 2, 2012 6:53:56 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server stat
    e changed to STARTING>
    <Sep 2, 2012 7:19:07 PM IST> <Warning> <J2EE> <BEA-160140> <Unresolved optional
    package references (in META-INF/MANIFEST.MF): [Extension-Name: oracle.applcore.m
    odel, Specification-Version: 0.1, Implementation-Version: 11.1.1.0.0, referenced
    from: C:\Oracle\Middleware\user_projects\domains\sudheer_domain\servers\soa_ser
    ver1\tmp\_WL_user\usermessagingserver\y73z7z]. Make sure the referenced optional
    package has been deployed as a library.>
    <Sep 2, 2012 7:19:12 PM IST> <Warning> <EJB> <BEA-015036> <In the EJB MessageRec
    eiverBean(Application: usermessagingserver, EJBComponent: sdpmessagingengine.jar
    ), the value for the activation config property 'connectionFactoryJNDIName' will
    be ignored since it is overridden with the value 'OraSDPM/QueueConnectionFactor
    y';>
    It kept on waiting here for so long. Can u please suggest me what is missing here.
    Thanks in advance,
    Sudheer

  • File2File scenario is not working

    Hi,
    I configured the File to File scenario which has given in the Weblog.
    I done exactly the way in the weblog and activated everything.
    But the scenario is executed, I have checked in the message monitoring no messages in it.
    My File Adopter spooling interval is 60s.
    Can anybody tell me the procedure to execute a scenario.
    Thanks
    Srinivas Sandaka

    Hi,
    Thanks for you quick response.
    Adapter in RWB in green status.
    Environment->Cache
         Cache Update Status is in red status
         Perform Notification status is in green.
    Pool interval is 2 seconds.
    Processing mode is delete.
    In the file Adapter testing the following fields are mandatory.
              Send Message To, Sender, Interface,
               Namespace, Quality of Service.
    can you give me the which objects I have to give in thier fields.
    Thanks
    Srinivas Sandaka

  • Jsf 1.2 to 2.0 migration

    Hello,
    my applications are running on jsf 2.0 but my standalone weblogic v10.3.6 server on 1.2 version.
    I search around for solutions but with no luck on step by  step for new users like me. I know how
    to deploy the library on the server but it doesnt let me since they have the same name "jsf"
    and i dont believe changing the 2.0's name would be the solution but a pain since will need to configure
    the jsf settings on each new project (right?). Was hoping someone explain me or point me somewhere
    where it shows on detailed step-by-step how to delete the old version, upload the new, and point EM at the new
    version.
    thanks in advance.

    Thanks a lot for the help.
    I managed to make it work with alternative way. I choose the update button in weblogic console, and choose the new version. Successfully i bypass the error while deploying, but keep in mind now i have both 1.2 and 2.0 in my weblogic libraries active. I point all the config files from 1.2 to 2.0.
    Said that, i have a application error now. Looks like one of my view objects throwing an exception inside weblogic, my application shows up online and i can navigate to it, but its not functional (pressing buttons, menus and nothing happens etc). I checked the view object that the errors are referring to, but i don't see any extra definitions that need to be removed (i may create and delete a bind variable, or value to the object, and the code stayed there or something). The one thing that annoyed me if i deployed it in integrated weblogic (jdeveloper run time) everything works fine with no error, not even the integrated weblogic logs inside jdeveloper. I noticed integrated weblogic and stand alone weblogic have some different libraries, like jackson etc. Should i try uploading the same libraries from integrated weblogic?
    *i started a new topic about it at https://forums.oracle.com/thread/2561749

  • Use of JIKES

    I know that this isn't strictly a weblogic issue, but I also get the
    impression that a lot of the people who use this newsgroup also speed up
    their development process by using the Jikes compiler.
    Anyway...although using my current classpath I can compile with javac with
    no problems when I try with jikes I get the error listed at the bottom of
    the page. I imagine that javac is more tolerant of something than jikes is,
    but does anyone know what.
    My classpath is
    classpath=c:\jdk1.2.2\lib\tools.jar;d:\weblogic\license;d:\weblogic\classes;
    d:\weblogic\lib\weblogicaux.jar;d:\weblogic\lib\m
    ail.jar;d:\weblogic\lib\activation.jar;d:\weblogic\lib\cos.jar;d:\weblogic\m
    yserver\clientclasses;d:\weblogic\myserver\server
    classes
    (I haven't set a jikespath)
    The error is:-
    D:\weblogic\classes\e3\classes>jikes *.java
    Found 2 system errors:
    *** Error: Could not find package named:
    c:\jdk1.2.2\lib\tools.jar(java/util),
    d:\weblogic\license/java/util,
    d:\weblogic\classes/java/util,
    d:\weblogic\lib\weblogicaux.jar(java/util),
    d:\weblogic\lib\mail.jar(java/util),
    d:\weblogic\lib\activation.jar(java/util),
    d:\weblogic\lib\cos.jar(java/util),
    d:\weblogic\myserver\clientclasses/java/util or
    d:\weblogic\myserver\serverclasses/java/util
    *** Error: Could not find package named:
    c:\jdk1.2.2\lib\tools.jar(java/lang),
    d:\weblogic\license/java/lang,
    d:\weblogic\classes/java/lang,
    d:\weblogic\lib\weblogicaux.jar(java/lang),
    d:\weblogic\lib\mail.jar(java/lang),
    d:\weblogic\lib\activation.jar(java/lang),
    d:\weblogic\lib\cos.jar(java/lang),
    d:\weblogic\myserver\clientclasses/java/lang or
    d:\weblogic\myserver\serverclasses/java/lang

    thank you very much, a combination of your suggestion, and adding rt.jar and
    '.' to the jikespath seems to have worked. Hurrah
    terry
    Gunnar <[email protected]> wrote in message
    news:[email protected]...
    It seems jikes need / instead of \ .
    I tried to compile with the -classpath attribute, and got the same error
    when using \, but it worked fine when I used /.
    I would have declared jikespath. Then you can use both javac and jikes
    without changign classpath.
    good luck
    Gunnar
    Terry <[email protected]> skrev i
    meldingsnyheter:[email protected]...
    I know that this isn't strictly a weblogic issue, but I also get the
    impression that a lot of the people who use this newsgroup also speed up
    their development process by using the Jikes compiler.
    Anyway...although using my current classpath I can compile with javac
    with
    no problems when I try with jikes I get the error listed at the bottomof
    the page. I imagine that javac is more tolerant of something than jikesis,
    but does anyone know what.
    My classpath is
    classpath=c:\jdk1.2.2\lib\tools.jar;d:\weblogic\license;d:\weblogic\classes;
    d:\weblogic\lib\weblogicaux.jar;d:\weblogic\lib\m
    ail.jar;d:\weblogic\lib\activation.jar;d:\weblogic\lib\cos.jar;d:\weblogic\m
    yserver\clientclasses;d:\weblogic\myserver\server
    classes
    (I haven't set a jikespath)
    The error is:-
    D:\weblogic\classes\e3\classes>jikes *.java
    Found 2 system errors:
    *** Error: Could not find package named:
    c:\jdk1.2.2\lib\tools.jar(java/util),
    d:\weblogic\license/java/util,
    d:\weblogic\classes/java/util,
    d:\weblogic\lib\weblogicaux.jar(java/util),
    d:\weblogic\lib\mail.jar(java/util),
    d:\weblogic\lib\activation.jar(java/util),
    d:\weblogic\lib\cos.jar(java/util),
    d:\weblogic\myserver\clientclasses/java/util or
    d:\weblogic\myserver\serverclasses/java/util
    *** Error: Could not find package named:
    c:\jdk1.2.2\lib\tools.jar(java/lang),
    d:\weblogic\license/java/lang,
    d:\weblogic\classes/java/lang,
    d:\weblogic\lib\weblogicaux.jar(java/lang),
    d:\weblogic\lib\mail.jar(java/lang),
    d:\weblogic\lib\activation.jar(java/lang),
    d:\weblogic\lib\cos.jar(java/lang),
    d:\weblogic\myserver\clientclasses/java/lang or
    d:\weblogic\myserver\serverclasses/java/lang

  • ACE- 4710 graceful disconnect timeout (no FIN ACK)

    I have below 4 real servers into a single serverfarm and serverfarm is being reported by huge number of drop. Below is the log coming in the ACE buffer.Please suggest what may be the pobable reason for such behavior.
    Sep 13 2011 11:31:47 : %ACE-3-251010: Health probe failed for server 172.18.104.128 on port 8001, graceful disconnect timeout (no FIN ACK)
    Sep 13 2011 11:32:05 : %ACE-3-251010: Health probe failed for server 172.18.104.126 on port 8001, graceful disconnect timeout (no FIN ACK)
    Sep 13 2011 11:32:08 : %ACE-3-251010: Health probe failed for server 172.18.104.125 on port 8001, graceful disconnect timeout (no FIN ACK)
    Sep 13 2011 11:32:09 : %ACE-3-251010: Health probe failed for server 172.18.104.127 on port 8001, graceful disconnect timeout (no FIN ACK)

    Hi Plz find required config,
    =~=~=~=~=~=~=~=~=~=~=~= PuTTY log 2011.09.14 13:37:31 =~=~=~=~=~=~=~=~=~=~=~=
    APP-ACE/Admin# sh serverfarm App_MIS
    serverfarm     : App_MIS, type: HOST
    total rservers : 9
                                                    ----------connections-----------
           real                  weight state        current    total      failures
       ---+---------------------+------+------------+----------+----------+---------
       rserver: Application-Server-123
           172.18.104.123:8001   8      OPERATIONAL  135        65809      460
       rserver: Application-Server-124
           172.18.104.124:8001   8      OPERATIONAL  135        69809      124
       rserver: Application-Server-125
           172.18.104.125:8001   8      PROBE-FAILED 135        69956      56
       rserver: Application-Server-126
           172.18.104.126:8001   8      OPERATIONAL  135        71015      27
       rserver: Application-Server-127
           172.18.104.127:8001   8      OPERATIONAL  135        73187      33
       rserver: Application-Server-128
           172.18.104.128:8001   8      OPERATIONAL  135        69613      33
       rserver: Application-Server-129
           172.18.104.129:8001   8      OPERATIONAL  135        75545      74
       rserver: Application-Server-42
           172.18.104.42:8001    8      OPERATIONAL  134        73487      35
       rserver: Application-Server-46
           172.18.104.46:8001    8      OPERATIONAL  134        78237      48
    APP-ACE/Admin# sh serverfarm App_MIS detail
    serverfarm     : App_MIS, type: HOST
    total rservers : 9
    active rservers: 8
    description    : Application Zone Load Balancer for Weblogic
    state          : ACTIVE
    predictor      : LEASTCONNS
       slowstart    : 0 secs
    failaction     : -
    back-inservice    : 0
    partial-threshold : 0
    num times failover       : 0
    num times back inservice : 0
    total conn-dropcount : 0
    Probe(s) :
        ICMP-ICMP-Probe,  type = ICMP
        TCP-8001,  type = TCP
                                                    ----------connections-----------
           real                  weight state        current    total      failures
       ---+---------------------+------+------------+----------+----------+---------
       rserver: Application-Server-123
           172.18.104.123:8001   8      OPERATIONAL  133        65812      460
             description          : -
             max-conns            : -         , out-of-rotation count : -
             min-conns            : -        
             conn-rate-limit      : -         , out-of-rotation count : -
             bandwidth-rate-limit : -         , out-of-rotation count : -
             retcode out-of-rotation count : -
       rserver: Application-Server-124
           172.18.104.124:8001   8      OPERATIONAL  134        69810      124
             description          : -
             max-conns            : -         , out-of-rotation count : -
             min-conns            : -        
             conn-rate-limit      : -         , out-of-rotation count : -
             bandwidth-rate-limit : -         , out-of-rotation count : -
             retcode out-of-rotation count : -
       rserver: Application-Server-125
           172.18.104.125:8001   8      PROBE-FAILED 135        69956      56
             description          : -
             max-conns            : -         , out-of-rotation count : -
             min-conns            : -        
             conn-rate-limit      : -         , out-of-rotation count : -
             bandwidth-rate-limit : -         , out-of-rotation count : -
             retcode out-of-rotation count : -
       rserver: Application-Server-126
           172.18.104.126:8001   8      OPERATIONAL  133        71015      27
             description          : -
             max-conns            : -         , out-of-rotation count : -
             min-conns            : -        
             conn-rate-limit      : -         , out-of-rotation count : -
             bandwidth-rate-limit : -         , out-of-rotation count : -
             retcode out-of-rotation count : -
       rserver: Application-Server-127
           172.18.104.127:8001   8      OPERATIONAL  135        73187      33
             description          : -
             max-conns            : -         , out-of-rotation count : -
             min-conns            : -        
             conn-rate-limit      : -         , out-of-rotation count : -
             bandwidth-rate-limit : -         , out-of-rotation count : -
             retcode out-of-rotation count : -
       rserver: Application-Server-128
           172.18.104.128:8001   8      OPERATIONAL  133        69622      33
             description          : -
             max-conns            : -         , out-of-rotation count : -
             min-conns            : -        
             conn-rate-limit      : -         , out-of-rotation count : -
             bandwidth-rate-limit : -         , out-of-rotation count : -
             retcode out-of-rotation count : -
       rserver: Application-Server-129
           172.18.104.129:8001   8      OPERATIONAL  131        75553      74
             description          : -
             max-conns            : -         , out-of-rotation count : -
             min-conns            : -        
             conn-rate-limit      : -         , out-of-rotation count : -
             bandwidth-rate-limit : -         , out-of-rotation count : -
             retcode out-of-rotation count : -
       rserver: Application-Server-42
           172.18.104.42:8001    8      OPERATIONAL  133        73489      35
             description          : -
             max-conns            : -         , out-of-rotation count : -
             min-conns            : -        
             conn-rate-limit      : -         , out-of-rotation count : -
             bandwidth-rate-limit : -         , out-of-rotation count : -
             retcode out-of-rotation count : -
       rserver: Application-Server-46
           172.18.104.46:8001    8      OPERATIONAL  133        78244      48
             description          : -
             max-conns            : -         , out-of-rotation count : -
             min-conns            : -        
             conn-rate-limit      : -         , out-of-rotation count : -
             bandwidth-rate-limit : -         , out-of-rotation count : -
             retcode out-of-rotation count : -
    serverfarm host App_MIS
      description Application Zone Load Balancer for Weblogic
      predictor leastconns
      probe ICMP-ICMP-Probe
      probe TCP-8001
      rserver Application-Server-123 8001
        inservice
      rserver Application-Server-124 8001
        inservice
      rserver Application-Server-125 8001
        inservice
      rserver Application-Server-126 8001
        inservice
      rserver Application-Server-127 8001
        inservice
      rserver Application-Server-128 8001
        inservice
      rserver Application-Server-129 8001
        inservice
      rserver Application-Server-42 8001
        inservice
      rserver Application-Server-46 8001
        inservice
    APP-ACE/Admin#sh running-config probe
    Generating configuration....
    probe icmp ICMP-ICMP-Probe
      interval 2
      faildetect 2
      passdetect interval 60
    probe tcp TCP-8001
      port 8001
      interval 2
      faildetect 2
      passdetect interval 15
      passdetect count 2
      open 1

  • EjbTimeout() and transactions

    Hello all-
    First time poster here, long question, please be gentle....
    We are running a weblogic 10.0 MP1 install here, and our application employs the EJB3 timer service to schedule processing.
    What we need to happen is for the ejbTimeout() method to be called periodically (this is working fine) but not start a transaction when it is invoked. (this is not)
    The processing that our ejbTimeout() method does can be very time consuming (talking to external, 3rd party services) so we do not want a weblogic transaction active while this is taking place. If a transaction is active, it will frequently time out. The idea is that the ejbTimeout() invoke other stateless session bean method(s) that begin a transaction to record the results of the conversation after the long delay is done.
    (Note that I am aware that I could increase the allowable timeout for transactions, but this seems like a poor solution, correct me if I am wrong)
    I have the ejbTimeout() method annotated as TransactionAttributeType.NOT_SUPPORTED. What I would expect to see is that because of this, the ejbTimeout method can linger as long as it wants before calling a TransactionAttributeType.REQUIRES_NEW method to start a transaction to record the results. However I see errors like:
    javax.ejb.EJBTransactionRolledbackException: EJB Exception: : javax.transaction.TransactionRolledbackException: EJB Exception: : weblogic.transaction.internal.TimedOutException: Transaction timed out after 31 seconds
    <many lines omitted>
    at com.......RetrieveEmailBusiness.retrieveEmail(RetrieveEmailBusiness.java:82)
    at com......EmailRetrievalSchedulerBean.ejbTimeout(EmailRetrievalSchedulerBean.java:96)
    Suggesting that there WAS a transaction active while ejbTimeout() was running. How can I prevent ejbTimeout() from being called in the context of a transaction? Do I not understand something about the semantics of NOT_SUPPORTED?
    Another side question: The documentation I have says that a NOT_SUPPORTED method when called will "suspend" any transaction that is active for the calling method, and not participate in it. By suspend, does that include stopping the clock? In other words, if the transaction timeout is 30 seconds, and the calling method is 5 seconds into the transaction when it calls the NOT_SUPPORTED method, and that method takes 26 seconds to run, will that cause the outer transaction to roll back when the calling method exits?
    Thank you all in advance.

    At the moment (Production 1.0.4.3 and Beta 9.0.0.0.0) the XSQL action handler implementation for <xsql:insert-request> does an explicit commit.
    I've filed a bug (#1727863) to get a similar commit="yes|no" attribute added to the <xsql:insert-request>, just like there is now one supported on <xsql:dml>
    In the interim, you'd need to write a custom action handler that uses the XML SQL Utility's OracleXMLSave class to have the behavior you want.

Maybe you are looking for