Weblogic server is not responding when executing pl/sql procedure from jdev

Dear Sir,
i am using jdeveloper11g and oracle database with oracle spatial and i wrote procedure in database and executed perfect from sql plus
but same procedure when i am trying to execute from jdeveloper its like hanging and giving following error here i am posting my jdeveloper code
and error
public String cb1_action() {
// Add event code here...
String tbName = (String)FacesContext.getCurrentInstance().getApplication().createValueBinding("#{bindings.tb}").getValue(FacesContext.getCurrentInstance());
String colName = (String)FacesContext.getCurrentInstance().getApplication().createValueBinding("#{bindings.col}").getValue(FacesContext.getCurrentInstance());
try {
Context cnx = new InitialContext();
Class.forName("oracle.jdbc.OracleDriver");
RmiDataSource rds =
(RmiDataSource)cnx.lookup("java:comp/env/jdbc/db1DS");
//(RmiDataSource)cnx.lookup("env/jdbc/db1DS");
Connection cn = rds.getConnection();
System.out.println("table name " + tbName);
System.out.println("column name " + colName);
PreparedStatement delStmt = cn.prepareStatement("delete from geometry_errors");
delStmt.execute();
System.out.println("delStmt = " + delStmt);
cn.commit();
delStmt.close();
CallableStatement ps = cn.prepareCall("{call validate_geom(?,?)}");
ps.setString(1, tbName);
ps.setString(2, colName);
ps.execute();
ps.close();
cn.close();
cnx.close();
System.out.println("Done validating geom ....");
} catch (Exception sqle) {
sqle.printStackTrace();
BindingContainer bc = getBindings();
OperationBinding oper = bc.getOperationBinding("Execute");
oper.execute();
System.out.println("done.....");
return null;
Target URL -- http://127.0.0.1:7101/kabtest-ViewController1-context-root/faces/test1.jsp
table name JEDDAH_SECTORS_8307
column name GEOM
<Jul 29, 2010 1:22:49 PM AST> <Error> <WebLogicServer> <BEA-000337> <[STUCK] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "621" seconds working on the request "weblogic.servlet.internal.ServletRequestImpl@13a7ecf[
POST /kabtest-ViewController1-context-root/faces/test1.jsp?_adf.ctrl-state=xumczak86_4 HTTP/1.1
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://127.0.0.1:7101/kabtest-ViewController1-context-root/faces/test1.jsp?_afrLoop=1305015256967&_afrWindowMode=0&_adf.ctrl-state=xumczak86_4
Cookie: JSESSIONID=7qmnMRTWld4BzJDnLB4BF1hvxgl0NYTJrg9lT3VnWNYJpCmzGYJm!-1863071826
Content-Type: application/x-www-form-urlencoded
Content-Length: 247
]", which is more than the configured time (StuckThreadMaxTime) of "600" seconds. Stack trace:
     java.net.SocketInputStream.socketRead0(Native Method)
     java.net.SocketInputStream.read(SocketInputStream.java:129)
     oracle.net.ns.Packet.receive(Packet.java:293)
     oracle.net.ns.DataPacket.receive(DataPacket.java:92)
     oracle.net.ns.NetInputStream.getNextPacket(NetInputStream.java:174)
     oracle.net.ns.NetInputStream.read(NetInputStream.java:119)
     oracle.net.ns.NetInputStream.read(NetInputStream.java:94)
     oracle.net.ns.NetInputStream.read(NetInputStream.java:79)
     oracle.jdbc.driver.T4CSocketInputStreamWrapper.readNextPacket(T4CSocketInputStreamWrapper.java:122)
     oracle.jdbc.driver.T4CSocketInputStreamWrapper.read(T4CSocketInputStreamWrapper.java:78)
     oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:1040)
     oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:1016)
     oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:589)
     oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
     oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:953)
     oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1223)
     oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)
     oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3487)
     oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)
     weblogic.jdbc.wrapper.PreparedStatement.execute(PreparedStatement.java:98)
     view.backing.Test1.cb1_action(Test1.java:132)
     sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     java.lang.reflect.Method.invoke(Method.java:597)
     com.sun.el.parser.AstValue.invoke(AstValue.java:157)
     com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
     org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)
     com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
     org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
     javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
     javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
     oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:698)
     oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:285)
     oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
     javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
     weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
     weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
     org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
     oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
     org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
     org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
     org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
     org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
     java.security.AccessController.doPrivileged(Native Method)
     oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
     oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
     oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
     oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:326)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
     weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
     weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
     weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
     weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
     weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
     weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
>
<Jul 29, 2010 1:22:49 PM AST> <Notice> <Diagnostics> <BEA-320068> <Watch 'StuckThread' with severity 'Notice' on server 'DefaultServer' has triggered at Jul 29, 2010 1:22:49 PM AST. Notification details:
WatchRuleType: Log
WatchRule: (SEVERITY = 'Error') AND (MSGID = 'BEA-000337')
WatchData: DATE = Jul 29, 2010 1:22:49 PM AST SERVER = DefaultServer MESSAGE = [STUCK] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "621" seconds working on the request "weblogic.servlet.internal.ServletRequestImpl@13a7ecf[
POST /kabtest-ViewController1-context-root/faces/test1.jsp?_adf.ctrl-state=xumczak86_4 HTTP/1.1
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://127.0.0.1:7101/kabtest-ViewController1-context-root/faces/test1.jsp?_afrLoop=1305015256967&_afrWindowMode=0&_adf.ctrl-state=xumczak86_4
Cookie: JSESSIONID=7qmnMRTWld4BzJDnLB4BF1hvxgl0NYTJrg9lT3VnWNYJpCmzGYJm!-1863071826
Content-Type: application/x-www-form-urlencoded
Content-Length: 247
]", which is more than the configured time (StuckThreadMaxTime) of "600" seconds. Stack trace:
     java.net.SocketInputStream.socketRead0(Native Method)
     java.net.SocketInputStream.read(SocketInputStream.java:129)
     oracle.net.ns.Packet.receive(Packet.java:293)
     oracle.net.ns.DataPacket.receive(DataPacket.java:92)
     oracle.net.ns.NetInputStream.getNextPacket(NetInputStream.java:174)
     oracle.net.ns.NetInputStream.read(NetInputStream.java:119)
     oracle.net.ns.NetInputStream.read(NetInputStream.java:94)
     oracle.net.ns.NetInputStream.read(NetInputStream.java:79)
     oracle.jdbc.driver.T4CSocketInputStreamWrapper.readNextPacket(T4CSocketInputStreamWrapper.java:122)
     oracle.jdbc.driver.T4CSocketInputStreamWrapper.read(T4CSocketInputStreamWrapper.java:78)
     oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:1040)
     oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:1016)
     oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:589)
     oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
     oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:953)
     oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1223)
     oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)
     oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3487)
     oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)
     weblogic.jdbc.wrapper.PreparedStatement.execute(PreparedStatement.java:98)
     view.backing.Test1.cb1_action(Test1.java:132)
     sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     java.lang.reflect.Method.invoke(Method.java:597)
     com.sun.el.parser.AstValue.invoke(AstValue.java:157)
     com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
     org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)
     com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
     org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
     javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
     javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
     oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:698)
     oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:285)
     oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
     javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
     weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
     weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
     org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
     oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
     org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
     org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
     org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
     org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
     java.security.AccessController.doPrivileged(Native Method)
     oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
     oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
     oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
     oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:326)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
     weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
     weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
     weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
     weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
     weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
     weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
SUBSYSTEM = WebLogicServer USERID = <WLS Kernel> SEVERITY = Error THREAD = [ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)' MSGID = BEA-000337 MACHINE = lpt09-mkabeer TXID = CONTEXTID = TIMESTAMP = 1280398969203
WatchAlarmType: AutomaticReset
WatchAlarmResetPeriod: 600000
>
<JMXWatchNotificationListener><handleNotification> failure creating incident from WLDF notification
oracle.dfw.incident.IncidentCreationException: DFW-40116: failure creating incident
Cause: DFW-40112: There was an error executing adrci commands; the following errors have been found "DIA-48415: Syntax error found in string [create home base=C:\\Documents and Settings\\mkabeer\\Application] at column [65]
DIA-48447: The input path [C:\\Documents and Settings\\mkabeer\\Application Data\\JDeveloper\\system11.1.1.2.36.55.36\\DefaultDomain\\servers\\DefaultServer\\adr] does not contain any ADR homes
DIA-48447: The input path [diag\ofm\defaultdomain\defaultserver] does not contain any ADR homes
DIA-48494: ADR home is not set, the corresponding operation cannot be done
Action: Ensure that command line tool "adrci" can be executed from the command line.
     at oracle.dfw.impl.incident.DiagnosticsDataExtractorImpl.createADRIncident(DiagnosticsDataExtractorImpl.java:708)
     at oracle.dfw.impl.incident.DiagnosticsDataExtractorImpl.createIncident(DiagnosticsDataExtractorImpl.java:246)
     at oracle.dfw.spi.weblogic.JMXWatchNotificationListener.handleNotification(JMXWatchNotificationListener.java:195)
     at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor$ListenerWrapper.handleNotification(DefaultMBeanServerInterceptor.java:1732)
     at javax.management.NotificationBroadcasterSupport.handleNotification(NotificationBroadcasterSupport.java:257)
     at javax.management.NotificationBroadcasterSupport$SendNotifJob.run(NotificationBroadcasterSupport.java:322)
     at javax.management.NotificationBroadcasterSupport$1.execute(NotificationBroadcasterSupport.java:307)
     at javax.management.NotificationBroadcasterSupport.sendNotification(NotificationBroadcasterSupport.java:229)
     at weblogic.management.jmx.modelmbean.WLSModelMBean.sendNotification(WLSModelMBean.java:824)
     at weblogic.diagnostics.watch.JMXNotificationProducer.postJMXNotification(JMXNotificationProducer.java:79)
     at weblogic.diagnostics.watch.JMXNotificationProducer.sendNotification(JMXNotificationProducer.java:104)
     at com.bea.diagnostics.notifications.JMXNotificationService.send(JMXNotificationService.java:122)
     at weblogic.diagnostics.watch.JMXNotificationListener.processWatchNotification(JMXNotificationListener.java:103)
     at weblogic.diagnostics.watch.Watch.performNotifications(Watch.java:621)
     at weblogic.diagnostics.watch.Watch.evaluateLogRuleWatch(Watch.java:546)
     at weblogic.diagnostics.watch.WatchManager.evaluateLogEventRulesAsync(WatchManager.java:765)
     at weblogic.diagnostics.watch.WatchManager.run(WatchManager.java:525)
     at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
Caused by: oracle.dfw.common.DiagnosticsException: DFW-40112: failed to execute the adrci commands "create home base=C:\\Documents and Settings\\mkabeer\\Application Data\\JDeveloper\\system11.1.1.2.36.55.36\\DefaultDomain\\servers\\DefaultServer\\adr product_type=ofm product_id=defaultdomain instance_id=defaultserver
set base C:\\Documents and Settings\\mkabeer\\Application Data\\JDeveloper\\system11.1.1.2.36.55.36\\DefaultDomain\\servers\\DefaultServer\\adr
set homepath diag\ofm\defaultdomain\defaultserver
create incident problem_key="BEA-337 [WebLogicServer]" error_facility="BEA" error_number=337 error_message="null" create_time="2010-07-29 13:22:49.219 +03:00" ecid="0000IcTiSfuEKQWzLwbQ8A1CKL6r00000V"
Cause: There was an error executing adrci commands; the following errors have been found "DIA-48415: Syntax error found in string [create home base=C:\\Documents and Settings\\mkabeer\\Application] at column [65]
DIA-48447: The input path [C:\\Documents and Settings\\mkabeer\\Application Data\\JDeveloper\\system11.1.1.2.36.55.36\\DefaultDomain\\servers\\DefaultServer\\adr] does not contain any ADR homes
DIA-48447: The input path [diag\ofm\defaultdomain\defaultserver] does not contain any ADR homes
DIA-48494: ADR home is not set, the corresponding operation cannot be done
Action: Ensure that command line tool "adrci" can be executed from the command line.
     at oracle.dfw.impl.incident.ADRHelper.invoke(ADRHelper.java:1052)
     at oracle.dfw.impl.incident.ADRHelper.createIncident(ADRHelper.java:786)
     at oracle.dfw.impl.incident.DiagnosticsDataExtractorImpl.createADRIncident(DiagnosticsDataExtractorImpl.java:688)
     ... 19 more
<Jul 29, 2010 1:23:49 PM AST> <Error> <WebLogicServer> <BEA-000337> <[STUCK] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "681" seconds working on the request "weblogic.servlet.internal.ServletRequestImpl@13a7ecf[
POST /kabtest-ViewController1-context-root/faces/test1.jsp?_adf.ctrl-state=xumczak86_4 HTTP/1.1
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://127.0.0.1:7101/kabtest-ViewController1-context-root/faces/test1.jsp?_afrLoop=1305015256967&_afrWindowMode=0&_adf.ctrl-state=xumczak86_4
Cookie: JSESSIONID=7qmnMRTWld4BzJDnLB4BF1hvxgl0NYTJrg9lT3VnWNYJpCmzGYJm!-1863071826
Content-Type: application/x-www-form-urlencoded
Content-Length: 247
]", which is more than the configured time (StuckThreadMaxTime) of "600" seconds. Stack trace:
     java.net.SocketInputStream.socketRead0(Native Method)
     java.net.SocketInputStream.read(SocketInputStream.java:129)
     oracle.net.ns.Packet.receive(Packet.java:293)
     oracle.net.ns.DataPacket.receive(DataPacket.java:92)
     oracle.net.ns.NetInputStream.getNextPacket(NetInputStream.java:174)
     oracle.net.ns.NetInputStream.read(NetInputStream.java:119)
     oracle.net.ns.NetInputStream.read(NetInputStream.java:94)
     oracle.net.ns.NetInputStream.read(NetInputStream.java:79)
     oracle.jdbc.driver.T4CSocketInputStreamWrapper.readNextPacket(T4CSocketInputStreamWrapper.java:122)
     oracle.jdbc.driver.T4CSocketInputStreamWrapper.read(T4CSocketInputStreamWrapper.java:78)
     oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:1040)
     oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:1016)
     oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:589)
     oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
     oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:953)
     oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1223)
     oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)
     oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3487)
     oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)
     weblogic.jdbc.wrapper.PreparedStatement.execute(PreparedStatement.java:98)
     view.backing.Test1.cb1_action(Test1.java:132)
     sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     java.lang.reflect.Method.invoke(Method.java:597)
     com.sun.el.parser.AstValue.invoke(AstValue.java:157)
     com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
     org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)
     com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
     org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
     javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
     javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
     oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:698)
     oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:285)
     oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
     javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
     weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
     weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
     org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
     oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
     org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
     org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
     org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
     org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
     java.security.AccessController.doPrivileged(Native Method)
     oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
     oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
     oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
     oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:326)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
     weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
     weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
     weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
     weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
     weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
     weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
     weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
please some one help me to solve this problem either this problem from java code or weblogic server... because i am sure about oracle database is
not having any problem because the same procedure i executed through the sql plus and its give me results just in time
Thanks
Kabeer

Hi, Nodex,
Avoid implicit conversions.
For example:
TO_CHAR(TRUNC(NEXT_DAY(ADD_MONTHS(substr(partition_name, -8, length(partition_name)), -3), 'MONDAY')-7), 'YYYYMMDD')ADD_MONTHS expects a DATE as its first argument.
SUBSTR returns a VARCHAR2, so you're calling ADD_MONTHS with a VARCHAR2 where it expects a DATE.
For good or ill, the system tries to avoid raising an error in this case by implicitly converting the VARCHAR2 to a DATE. Exactly how it does that depends on
(a) the tool you are using (SQL*Plus or Toad, for example),
(b) the version (Oracle 10 behaved quite different form Oracle 9),
(c) environmental settings (such as NLS_DATE_FORMAT), which in turn may depend on initialization parameneters, and
(d) who knows what else.
When you have to convert, do so explicitly.
You can convert a VARCHAR2 to a DATE using TO_DATE, like this:
TO_CHAR ( TRUNC ( NEXT_DAY ( ADD_MONTHS ( TO_DATE ( SUBSTR ( partition_name
                                                   , -8
                                      , LENGTH (partition_name)
                                 , 'YYYYMMDD'     -- or whatever
                         , -3
                  , 'MONDAY'
          - 7
     , 'YYYYMMDD'
     )

Similar Messages

  • Lion Clients 10.7.4 show network accounts are unavailable and server is not responding when binding to Snow Leopard server 10.6.8

    Hello,
    I am running Snow Leopard Server 10.6.8 and my clients are Lion 10.7.4.  While testing I had no issues binding 10.7.4 to our 10.6.8 server's OD.  I created a 10.7.4 image to push to all of our machines and in the beginning of last week I was able to push the image and get the machines to bind with OD and apply preferences on these machines through workgroup manager.  Towards the end of the week though this stopped working.  Now any time I bind a 10.7.4 client to OD it allows me to perform an authenticated bind and the machine shows up in workgroup manager but immediatley after binding the client the status jelly next to the OD server in the directory list is red and says "This server is not responding".  If I reboot the client I get a notification that "Network accounts are unavailable" at the login screen.  My preferences from workgroup manager are also not applying, which is my main concern because without workgroup manager my mac server is somewhat pointless as we use it for very little else. 
    I've since tried to bind a snow leopard machine (10.6.8) and this still is working with a green status jelly.  I've also built a lion machine from scratch, updated to the 10.7.4 combined update and am still getting the same issue where it shows the server is not responding when binding to OD.  I then applied the subsiquent OS update after the 10.7.4 combined update but the problem still persists.
    Is anyone else having this issue?  Any help would help me keep my sanity.
    Thanks,
    Dane

    Have you had any luck finding a solution to this?  The only thing I have found was to unbind and then bind without authentication.  Any help with progress on your end would be appreciated!
    Nick.

  • I keep getting " server did not reply " when sending picture in email from iPhoto ?

    MAC/ Yosemite / Iphoto :  I keep getting " server did not reply " when trying to send picture using the email function in iPhoto ?

    in the iPhoto preferences ==> accounts delete your e-mail account and reenter it
    OR
    IMHO the better solution is to set Apple mail as the email client in the iPhoto preferences
    LN

  • HT1338 server will not respond when trying to update

    The Software Update Server (macupdate.cg.ac.uk) is not responding.
    Please help this is the message i get every time i try and update my software now i have an iphone 5 my itunes needs to be updated but it wont because i need the latest software update so i can download the new version of i tunes. I am using Mac OS X 10.6.7 i am running fine on internet and am connected with good broadband speed.
    Thanks in advance

    You're saying that there is an issue when trying to use Software Update to get to 10.6.8, correct? An alternate way to apply that update is to download the 10.6.8 update from the Apple download site.
    Before running it, bring up Disk Utility, repair permissions, apply the update, and repair permissions again when done. With that, you can now install iTunes 7.

  • Weblogic server is not responding

    Hi Friends, I installed weblogic server 10.3 on Rec Hat Linux 5.
    My hardware configuration is 3 GB RAM , 150 GB hard drive, pentium 4 , DELL OPTIPLUX DX520.
    32 Bit OS.
    I installed weblogic on this ,created a domain, and started the weblogic server. Created 2 machines and assgined nodemanagers.After that started nodemanager, and created 2 managed servers and added those managed servers to the machine , so that I can start them from console using the nodemanager.
    Now I created 1 cluster, added the above mentioned managed server to this cluster.
    The problem with the system is every 10 mins my admin console, stops working. (by the way i started the console on firefox), If we clcik any thing , the cursor shows waiting mode of the cursor ,but no response, then I need to kill the process and again need to restart the admin server, next , again restart the admin console and do the next 10 mins work after that again it stops, then again same process , killing the admin server's process and restart the server and again , do 10 mins work.
    I am not able to understad , why it was happning to my server, every 10 mins I need to start the admin server again and again.
    Am I doing any thing wrong , pelase advice, to sovle this problem.
    Thanks a lot
    Peter.

    Hi Thanks a lot for your response,
    (1) I tried to take the thread dumps for admin server by fidning the PID and used the kill -3 command as well, but it is not giving any informartion.
    I gave as shown below
    kill -3 <pid> > ./threads.txt but no use. It is creating file with '0' size.
    (2)The below is the AdminServer.log file.
    line
    ####<Feb 8, 2010 10:15:57 PM CST> <Info> <WebLogicServer> <localhost.localdomain> <> <Main Thread> <> <> <> <1265688957348> <BEA-000214> <WebLogic Server "AdminServer" version:
    WebLogic Server 10.3.2.0 Tue Oct 20 12:16:15 PDT 2009 1267925 Copyright (c) 1995, 2009, Oracle and/or its affiliates. All rights reserved.>
    ####<Feb 8, 2010 10:15:57 PM CST> <Notice> <Log Management> <localhost.localdomain> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1265688957616> <BEA-170019> <The server log file /usr/local/Oracle/Middleware/user_projects/domains/base_domain/servers/AdminServer/logs/AdminServer.log is opened. All server side log events will be written to this file.>
    ####<Feb 8, 2010 10:15:57 PM CST> <Info> <Log Management> <localhost.localdomain> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1265688957642> <BEA-170023> <The Server Logging is initialized with Java Logging API implementation.>
    ####<Feb 8, 2010 10:15:57 PM CST> <Info> <Diagnostics> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688957784> <BEA-320001> <The ServerDebug service initialized successfully.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Store> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958119> <BEA-280050> <Persistent store "WLS_DIAGNOSTICS" opened: directory="/usr/local/Oracle/Middleware/user_projects/domains/base_domain/servers/AdminServer/data/store/diagnostics" writePolicy="Disabled" blockSize=512 directIO=false driver="wlfileio2">
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Server> <localhost.localdomain> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958392> <BEA-002622> <The protocol "t3" is now configured.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Server> <localhost.localdomain> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958393> <BEA-002622> <The protocol "t3s" is now configured.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Server> <localhost.localdomain> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958393> <BEA-002622> <The protocol "http" is now configured.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Server> <localhost.localdomain> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958393> <BEA-002622> <The protocol "https" is now configured.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Server> <localhost.localdomain> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958394> <BEA-002622> <The protocol "iiop" is now configured.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Server> <localhost.localdomain> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958395> <BEA-002622> <The protocol "iiops" is now configured.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Server> <localhost.localdomain> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958396> <BEA-002622> <The protocol "ldap" is now configured.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Server> <localhost.localdomain> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958397> <BEA-002622> <The protocol "ldaps" is now configured.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Server> <localhost.localdomain> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958398> <BEA-002622> <The protocol "cluster" is now configured.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Server> <localhost.localdomain> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958400> <BEA-002622> <The protocol "clusters" is now configured.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Server> <localhost.localdomain> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958416> <BEA-002622> <The protocol "snmp" is now configured.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Server> <localhost.localdomain> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958416> <BEA-002622> <The protocol "admin" is now configured.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Server> <localhost.localdomain> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958417> <BEA-002624> <The administration protocol is "t3s" and is now configured.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <RJVM> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958479> <BEA-000570> <Network Configuration for Channel "AdminServer"
    Listen Address :7001
    Public Address N/A
    Http Enabled true
    Tunneling Enabled false
    Outbound Enabled false
    Admin Traffic Enabled true>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Server> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958576> <BEA-002609> <Channel Service initialized.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Socket> <localhost.localdomain> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958684> <BEA-000436> <Allocating 3 reader threads.>
    ####<Feb 8, 2010 10:15:58 PM CST> <Info> <Socket> <localhost.localdomain> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688958687> <BEA-000446> <Native IO Enabled.>
    ####<Feb 8, 2010 10:15:59 PM CST> <Info> <IIOP> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688959251> <BEA-002014> <IIOP subsystem enabled.>
    ####<Feb 8, 2010 10:16:01 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688961950> <BEA-000000> <Starting OpenJPA 1.1.1-SNAPSHOT>
    ####<Feb 8, 2010 10:16:02 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688962102> <BEA-000000> <StoreServiceImpl.initJDO - StoreService is initialized with Id = ldap_0chd9TLuyI2FMidSlnoptUL+LVM=>
    ####<Feb 8, 2010 10:16:02 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688962261> <BEA-090516> <The Authenticator provider has preexisting LDAP data.>
    ####<Feb 8, 2010 10:16:02 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688962858> <BEA-090516> <The Authorizer provider has preexisting LDAP data.>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963299> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Top".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963389> <BEA-000000> <Parsing class "com.bea.common.security.store.data.DomainRealmScope".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963399> <BEA-000000> <Parsing class "com.bea.common.security.store.data.RegistryScope".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963400> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PKITypeScope".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963401> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLTypeScope".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963401> <BEA-000000> <Parsing class "com.bea.common.security.store.data.BEASAMLPartner".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963402> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Credential".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963403> <BEA-000000> <Parsing class "com.bea.common.security.store.data.CredentialMap".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963405> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLEntry".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963410> <BEA-000000> <Parsing class "com.bea.common.security.store.data.BEASAMLAssertingParty".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963418> <BEA-000000> <Parsing class "com.bea.common.security.store.data.BEASAMLRelyingParty".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963420> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PasswordCredential".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963422> <BEA-000000> <Parsing class "com.bea.common.security.store.data.UserPasswordCredential".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963423> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PasswordCredentialMap".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963424> <BEA-000000> <Parsing class "com.bea.common.security.store.data.ResourceMap".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963426> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PKIResourceMap".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963428> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSCertRegEntry".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963429> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSCredMapCollectionInfo".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963431> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSPolicyCollectionInfo".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963432> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSRoleCollectionInfo".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963434> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLAuthorizationPolicy".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963435> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLRoleAssignmentPolicy".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963437> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Endpoint".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963439> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Partner".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963442> <BEA-000000> <Parsing class "com.bea.common.security.store.data.SPPartner".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963446> <BEA-000000> <Parsing class "com.bea.common.security.store.data.IdPPartner".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963450> <BEA-000000> <Parsing class "com.bea.common.security.store.data.SAML2CacheEntry".>
    ####<Feb 8, 2010 10:16:03 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688963451> <BEA-000000> <Parsing class "com.bea.common.security.store.data.SchemaVersion".>
    ####<Feb 8, 2010 10:16:04 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688964403> <BEA-090516> <The CredentialMapper provider has preexisting LDAP data.>
    ####<Feb 8, 2010 10:16:04 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688964419> <BEA-090516> <The RoleMapper provider has preexisting LDAP data.>
    ####<Feb 8, 2010 10:16:04 PM CST> <Info> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688964752> <BEA-090093> <No pre-WLS 8.1 Keystore providers are configured for server AdminServer for security realm myrealm.>
    ####<Feb 8, 2010 10:16:04 PM CST> <Notice> <Security> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688964753> <BEA-090082> <Security initializing using security realm myrealm.>
    ####<Feb 8, 2010 10:16:05 PM CST> <Info> <Server> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688965811> <BEA-002622> <The protocol "[snmp, https, t3, cluster-broadcast-secure, ldaps, cluster-broadcast, ldap, http, iiop, admin, t3s, iiops]" is now configured.>
    ####<Feb 8, 2010 10:16:05 PM CST> <Info> <XML> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688965903> <BEA-130036> <Initializing XMLRegistry.>
    ####<Feb 8, 2010 10:16:05 PM CST> <Info> <messaging.interception> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688965921> <BEA-400000> <Initializing message interception service>
    ####<Feb 8, 2010 10:16:06 PM CST> <Info> <Store> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688966791> <BEA-280050> <Persistent store "_WLS_AdminServer" opened: directory="/usr/local/Oracle/Middleware/user_projects/domains/base_domain/servers/AdminServer/data/store/default" writePolicy="Direct-Write" blockSize=512 directIO=true driver="wlfileio2">
    ####<Feb 8, 2010 10:16:07 PM CST> <Info> <JDBC> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688967062> <BEA-001135> <Initializing the JDBC service.>
    ####<Feb 8, 2010 10:16:07 PM CST> <Info> <JDBC> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688967090> <BEA-001137> <Initialization complete.>
    ####<Feb 8, 2010 10:16:07 PM CST> <Info> <JDBC> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688967091> <BEA-001138> <Resuming the JDBC service.>
    ####<Feb 8, 2010 10:16:07 PM CST> <Info> <JDBC> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688967095> <BEA-001140> <Resume complete.>
    ####<Feb 8, 2010 10:16:07 PM CST> <Info> <Connector> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688967205> <BEA-190000> <Initializing J2EE Connector Service>
    ####<Feb 8, 2010 10:16:07 PM CST> <Info> <Connector> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688967206> <BEA-190001> <J2EE Connector Service initialized successfully>
    ####<Feb 8, 2010 10:16:07 PM CST> <Info> <JMS> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688967410> <BEA-040305> <JMS service is initialized and in standby mode.>
    ####<Feb 8, 2010 10:16:07 PM CST> <Info> <JMS> <localhost.localdomain> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1265688967483> <BEA-040090> <Deployed 8 default connection factories.>
    Continue in the below post

  • Cannot get email - the server is not responding, when I check it is correctly setup - any advice?

    Can anyone give me pointers as to how I can overcome this issue?

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    Server does not allow relaying email error, fix
    http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/
    Why Does My iPad Say "Cannot Connect to Server"?
    http://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.html
    iOS: 'Mailbox Locked', account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Configuration problems with IMAP e-mail on iOS with a non-standard SSL port.
    http://colinrobbins.me/2013/02/09/configuration-problems-with-imap-e-mail-on-ios -with-a-non-standard-ssl-port/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

  • Imovie does "not respond " when trying to input videos from iphoto?

    On My IMAC when I click on iPhoto Videos to be able to use in a slide show the iMovie application quits responding and the curser spins until I force quit iMovie. What's going on? Thanks

    Welcome to Apple Support Communities
    Open System Preferences > iCloud and mark Mail

  • Strange problem with executing PL/SQL procedure from sqlplus.

    Hello,
    basicly, I'm strugling with executing a procedure written in PL/SQL from sqlplus.
    It's all because I convert a data in procedure by other function.
    SELECT partition_name
    INTO strpartition
    FROM user_tab_partitions
    WHERE table_name = tablename_in
    and substr(partition_name, -8, length(partition_name)) = (SELECT F_CONVERT_DATE(tablename_in,p_date) from dual);
    /tablename_in and p_date are input parameters/
    Function F_CONVERT_DATE looks more less like :
    select
    TO_CHAR(TRUNC(NEXT_DAY(ADD_MONTHS(substr(partition_name, -8, length(partition_name)), -3), 'MONDAY')-7), 'YYYYMMDD')
    END
    AS p_date
    INTO v_okr
    FROM user_tab_partitions
    where substr(partition_name, -8, length(partition_name)) = p_date;
    Well, the thing is that procedure is executable from TOAD without any errors !! But when I try to execute it straight from sqlplus it returns:
    ORA-01861: literal does not match format string
    ORA-06512: at "F_CONVERT_DATE", line 13
    ORA-06512: at "NAME_OF_PROCEDURE", line 17
    Tip: When I don't use functions ADD_MONTHS, NEXT_DAY and TO_CHAR in function F_CONVERT_DATE sqlplus can execute it. But only when I use them it returns an error.
    Anybody has a clue how to solve it?
    Regards !

    Hi, Nodex,
    Avoid implicit conversions.
    For example:
    TO_CHAR(TRUNC(NEXT_DAY(ADD_MONTHS(substr(partition_name, -8, length(partition_name)), -3), 'MONDAY')-7), 'YYYYMMDD')ADD_MONTHS expects a DATE as its first argument.
    SUBSTR returns a VARCHAR2, so you're calling ADD_MONTHS with a VARCHAR2 where it expects a DATE.
    For good or ill, the system tries to avoid raising an error in this case by implicitly converting the VARCHAR2 to a DATE. Exactly how it does that depends on
    (a) the tool you are using (SQL*Plus or Toad, for example),
    (b) the version (Oracle 10 behaved quite different form Oracle 9),
    (c) environmental settings (such as NLS_DATE_FORMAT), which in turn may depend on initialization parameneters, and
    (d) who knows what else.
    When you have to convert, do so explicitly.
    You can convert a VARCHAR2 to a DATE using TO_DATE, like this:
    TO_CHAR ( TRUNC ( NEXT_DAY ( ADD_MONTHS ( TO_DATE ( SUBSTR ( partition_name
                                                       , -8
                                          , LENGTH (partition_name)
                                     , 'YYYYMMDD'     -- or whatever
                             , -3
                      , 'MONDAY'
              - 7
         , 'YYYYMMDD'
         )

  • Weblogic server is not getting started.

    Hi
    We are getting problem in starting weblogic server 10.2 .
    We have two machine they switch each other by cluster.
    On one machine , Weblogic server does not start when cluster switch to this machine.
    When server starts , it hangs. We get following eroor:
    s*tarting weblogic with Java version:*
    The Autonomy executable IDOLserver/DiSH/AutonomyDiSH.exe is not executable.  Cannot start the search engine.
    ERROR: transport error 202: bind failed: Address already in use ["transport.c",L41]
    ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510) ["debugInit.c",L500]
    JDWP exit error JVMTI_ERROR_INTERNAL(113): No transports initializedFATAL ERROR in native method: JDWP No transports initialized, jvmtiError=JVMTI_ERROR_INTERNAL(113)
    Starting WLS with line:
    */home/bea/bea102/jdk150_11/bin/java -client -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8453,server=y,suspend=n -Djava.compiler=NONE -Xms256m -Xmx2048m -XX:CompileThreshold=8000 -XX:PermSize=48m -XX:MaxPermSize=256m -Xverify:none -ea -da:com.bea... -da:javelin... -da:weblogic... -ea:com.bea.wli... -ea:com.bea.broker... -ea:com.bea.sbconsole... -Dplatform.home=/home/bea/bea102/wlserver_10.0 -Dwls.home=/home/bea/bea102/wlserver_10.0/server -Dweblogic.home=/home/bea/bea102/wlserver_10.0/server -Dwli.home=/home/bea/bea102/wlserver_10.0/integration -Dweblogic.wsee.bind.suppressDeployErrorMessage=true -Dweblogic.wsee.skip.async.response=true -Dweblogic.management.discover=true -Dwlw.iterativeDev=true -Dwlw.testConsole=true -Dwlw.logErrorsToConsole=true -Dweblogic.ext.dirs=/home/bea/bea102/patch_wss110/profiles/default/sysext_manifest_classpath:/home/bea/bea102/patch_wlw1020/profiles/default/sysext_manifest_classpath:/home/bea/bea102/patch_wls1001/profiles/default/sysext_manifest_classpath:/home/bea/bea102/patch_wlp1020/profiles/default/sysext_manifest_classpath:/home/bea/bea102/patch_cie640/profiles/default/sysext_manifest_classpath -Dweblogic.Name=AdminServer -Djava.security.policy=/home/bea/bea102/wlserver_10.0/server/lib/weblogic.policy weblogic.Server*
    ERROR: transport error 202: bind failed: Address already in use ["transport.c",L41]
    ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510) ["debugInit.c",L500]
    JDWP exit error JVMTI_ERROR_INTERNAL(113): No transports initializedFATAL ERROR in native method: JDWP No transports initialized, jvmtiError=JVMTI_ERROR_INTERNAL(113)
    This issue is in our production environment. So plaese help me considering it URGENT.
    Thanks

    Nice to help me.
    We observe the server start up log. We did all that you suggested.
    Still I am not able to start the production server. As we get very lesser chance to RND on production server.
    The new problem is now  , when we start the server, its hangs, and did not start.
    I am posting the sever startup log:
    J*AVA Memory arguments: -Xms256m -Xmx2048m -XX:MaxPermSize=256m*
    WLS Start Mode=Production
    CLASSPATH=""
    PATH=""
    ** 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:
    The Autonomy executable IDOLserver/DiSH/AutonomyDiSH.exe is not executable.  Cannot start the search engine.
    java version "1.5.0_11"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_11-b03)
    Java HotSpot(TM) Server VM (build 1.5.0_11-b03, mixed mode)
    Starting WLS with line:
    */home/bea/bea102/jdk150_11/bin/java -server -Xms256m -Xmx2048m -XX:MaxPermSize=256m -da -Dplatform.home=/home/bea/bea102/wlserver_10.0 -Dwls.home=/home/bea/bea102/wlserver_10.0/server -Dweblogic.home=/home/bea/bea102/wlserver_10.0/server -Dwli.home=/home/bea/bea102/wlserver_10.0/integration -Dweblogic.wsee.bind.suppressDeployErrorMessage=true -Dweblogic.wsee.skip.async.response=true -Dweblogic.management.discover=true -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=true -Dweblogic.ext.dirs=/home/bea/bea102/patch_wss110/profiles/default/sysext_manifest_classpath:/home/bea/bea102/patch_wlw1020/profiles/default/sysext_manifest_classpath:/home/bea/bea102/patch_wls1001/profiles/default/sysext_manifest_classpath:/home/bea/bea102/patch_wlp1020/profiles/default/sysext_manifest_classpath:/home/bea/bea102/patch_cie640/profiles/default/sysext_manifest_classpath -Dweblogic.Name=AdminServer -Djava.security.policy=/home/bea/bea102/wlserver_10.0/server/lib/weblogic.policy weblogic.Server*
    *<Sep 1, 2009 1:14:12 AM LKT> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:*
    */home/bea/bea102/wlserver_10.0/platform/lib/cm/content_system.jar:/home/bea/bea102/wlserver_10.0/platform/lib/p13n/p13n-schemas.jar:/home/bea/bea102/wlserver_10.0/platform/lib/p13n/p13n_common.jar:/home/bea/bea102/wlserver_10.0/platform/lib/p13n/p13n_system.jar:/home/bea/bea102/wlserver_10.0/platform/lib/p13n/wlp_services.jar:/home/bea/bea102/wlserver_10.0/platform/lib/wlp/analytics_sys.jar:/home/bea/bea102/wlserver_10.0/platform/lib/wlp/commerce_system.jar:/home/bea/bea102/wlserver_10.0/platform/lib/wlp/groupspace_system.jar:/home/bea/bea102/wlserver_10.0/platform/lib/wlp/netuix_common.jar:/home/bea/bea102/wlserver_10.0/platform/lib/wlp/netuix_schemas.jar:/home/bea/bea102/wlserver_10.0/platform/lib/wlp/netuix_system-full.jar:/home/bea/bea102/wlserver_10.0/platform/lib/wlp/netuix_system.jar:/home/bea/bea102/wlserver_10.0/platform/lib/wlp/nf-jspcmods.jar:/home/bea/bea102/wlserver_10.0/platform/lib/wlp/nf-system.jar:/home/bea/bea102/wlserver_10.0/platform/lib/wlp/wlp-schemas.jar:/home/bea/bea102/wlserver_10.0/platform/lib/wlp/wlp_content_system.jar:/home/bea/bea102/wlserver_10.0/platform/lib/wlp/wps_system.jar:/home/bea/bea102/wlserver_10.0/platform/lib/wlp/wsrp-client.jar:/home/bea/bea102/wlserver_10.0/platform/lib/wlp/wsrp-common.jar>*
    *<Sep 1, 2009 1:14:12 AM LKT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Server VM Version 1.5.0_11-b03 from Sun Microsystems Inc.>*
    *<Sep 1, 2009 1:14:13 AM LKT> <Info> <Management> <BEA-141107> <Version: WebLogic Server Temporary Patch for CR348244 Fri Oct 19 11:57:37 PDT 2007*
    WebLogic Server Temporary Patch for CR346064 Fri Oct 19 13:27:18 PDT 2007
    WebLogic Server Temporary Patch for CR346063 Fri Oct 05 14:48:13 PDT 2007
    WebLogic Server Temporary Patch for Cr346061 Thu Oct 18 15:38:04 PDT 2007
    WebLogic Server Temporary Patch for Cr346061 Thu Oct 18 15:38:04 PDT 2007
    WebLogic Server Temporary Patch for CR346060 Thu Oct 18 15:28:01 PDT 2007
    WebLogic Server Temporary Patch for CR350528 Fri Nov 02 16:19:36 PDT 2007
    WebLogic Server Temporary Patch for CR354048 Thu Dec 06 13:52:09 IST 2007
    WebLogic Server Temporary Patch for CR348229 Wed Oct 24 13:49:07 PDT 2007
    WebLogic Server Temporary Patch for CR356295 Wed Dec 19 15:37:45 EST 2007
    WebLogic Server 10.0 MP1  Thu Oct 18 20:17:44 EDT 2007 1005184 >
    *<Sep 1, 2009 1:14:15 AM LKT> <Info> <WebLogicServer> <BEA-000215> <Loaded License : /home/bea/bea102/license.bea>*
    *<Sep 1, 2009 1:14:15 AM LKT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>*
    *<Sep 1, 2009 1:14:15 AM LKT> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>*
    *<Sep 1, 2009 1:14:15 AM LKT> <Notice> <Log Management> <BEA-170019> <The server log file /home/bea/bea102/user_projects/domains/tmpasldomain/servers/AdminServer/logs/AdminServer.log is opened. All server side log events will be written to this file.>*
    Sever hangs on the line
    */home/bea/bea102/user_projects/domains/tmpasldomain/servers/AdminServer/logs/AdminServer.log is opened. All server side log events will be written to this file.>*
    please give some more suggestion.
    Thnaks

  • Problems with Tomcat Server : Does not respond (Sometimes) - Plz Need Help

    I have a web application running on Tomcat 4.1.31. (SUN/Solaris)
    Clients access through iPlanet Web Proxy (SUN/Solaris).
    Theres a class that build a generic form (it return html codes) then it's affected in the JSP page :
    MyClass class = new MyClass();
    <%= class.getHtmlCode() %>
    the size of the form is variable (100Ko to 1,5Mo)
    When i m using the proxy, sometimes the server does not respond when he do the affectation <%= class.getHtmlCode() %>.
    If i call the page without proxy it work.
    The problem seem not depending of the size of the form. Without proxy it always work. And with proxy sometimes the server does not work.
    Please need help

    Originally Posted by scum
    Hey All,
    Need some help with ZDM7 PXE preboot services.
    Currently running a netware 6.5 server in VLAN1
    PXE client sitting in VLAN2.
    DHCP Server is running on VLAN3
    IPHelper is running
    DTS.ini, PDHCP.ini and TFTP.ini are unmodified.
    I have had networks put an IPHelper in place and my client successfully picks up an IP address. The screen displays the "BOOT SERVER IP" correctly and the clients IP details are correct.
    I watch the top of the screen where the Timeout counts down and eventually gives this error.
    "Error: The server did not respond as requested in time
    ZENworks shutting down...
    Press any key to continue..."
    This happens on every machine i have tested. If i hold down the Ctrl+Alt keys, then the imaging menu appears, i can select maintenance and the client will pull down the initrd, etc.. fine.
    if i disable the IPHelper, move the client to the same VLAN as the server, then the whole process works perfectly.
    not sure where to go from here.
    help please ;)
    leon
    Hi Leon,
    If you are getting the ZENworks menu when holding down the Ctrl-Alt keys, PXE/PDHCP seems to be doing the right thing. Routing issues also don't seem the case as you can pull down the first PXE boot files....
    The server running PXE, I assume it also runs the TFTP and Imaging services?
    These services are also running a recent version of Zen 7 (IR3/IR4)? A little more info on these components and what server they are on would be good :)
    Cheers,
    Willem

  • How to use wlappc on a build machine where weblogic server is not installed

    All,
    We have a build environment where Weblogic server is not installed. We are currently moving from WL8 to WL10 but because of the relative paths in the weblogic.jar for version 10 I cannot figure out what jars I need in order to use the compile utilities without actually having to have the entire WL10 Application server installed on my build machine.
    In WL8 we just needed the Weblogic.jar, webservices.jar, and wlManagement.jar.
    Now it seems we need wlfullclient.jar webservices.jar and the weblogic.jar and all the jars in the relative classpath for the weblogic.jar, which is a very long list.
    Is this really so? Seems shortsighted on Bea's/Oracle's part if we now need to have a full installation of the application server just to use the compile utilities on our build machine.
    Any help on what jars to include so as to use wlappc or wlcompile on a build machine where weblogic 10 server is not installed would be appreciated.
    Todd Flora

    I no longer need help with this, as I have determined to load weblogic on our build machine.

  • Selected default is not recogized when I want to print from stored photos

    I have 2 printers with wireless connections, connected to my Dell 1737 laptop 64bit operating system. Printer #1 is  a Dell Model 305 and Printer #2 is a new HP ENVY5530 all in one. When I select the HP printer as the default printer it will not respond when I try to print from the pictures folders I have stored in the computers hardrive, it will default to the Dell 305 instead. I have elimated the Fire Wall as the problem. Note: Otherwise It does respond if designated for other tasks.
    This question was solved.
    View Solution.

    Hello @REB54,
    Welcome to the HP Forums!
    I understand your Envy 5530 is not letting you set as default on your computer. I will do my best to assist you! Please follow this entire thread from @SuperMario1 on: Re: HP1510 0x00000709 can't set as default printer.
    Please post your results, as I will be looking forward to hearing from you. Have a great night!
    I worked on behalf of HP.

  • "Update server not responding" when trying to update Acrobat 9 Pro

    I just installed Acrobat 9 Pro on my desktop computer and on my laptop. I was able to download and install the latest updates to the copy on my desktop computer (so that it is now version 9.3.0), using Help>Check for Updates.
    When I try the same command on my laptop, I get and error message that states "The update server is not responding, which means it may be offline at the moment, or the Internet or firlewall settings may be incorrect. Please try again later." I tried several times yesterday and today with the same error. The message pops up immediatley; it doesn't even seem to actually try to connect.
    I disabled my firewall and antivirus software and still get the same result. I uninstalled then reinstalled Acrobat and still get the same result.
    I looked online at Adobe.com to see about downloading and installing the updates manually, but it's difficult for me to tell which updates I need. Some are for other languages and some are for 64-bit but I have Windows 7 32-bit.
    A call to tech support was no help. The agent seemed to think because I installed verison 9.0 that I only needed the one English update listed on the download page under 9.0, and not any of the later updates. . . And he said that Adobe recommends manually installing updates from Adobe.com rather than using the Check for Updates command (?!).
    Anyway, does anyone know what might be causing this problem with the adobe updater? Maybe I need to reinstall the updater (where do I find it?).
    OR
    Can someone tell me which of the updates listed on the Acrobat dowload page I should manually install to bring my product up to date?
    [Running Windows 7 32-bit on both machines]
    Thanks.

    Hi,
    Which version of Acrobat do you have ?
    (Launch Acrobat and Go to Acrobat->About Adobe Acrobat menu item and check the version )
    Also, can you ping following urls ?
    armmf.adobe.com
    armdl.adobe.com
    ardownload.adobe.com
    Are these urls reachable ?
    Also, you can check the contents of host file /etc/defaults/host to see that none of the ips are redirected.
    One more thing that you could try:
    If you have firewall on, could you please disable the firewall and then try the update. Does it works now ?

  • Why is OD Server not responding when added to authentication search policy?

    Howdy All,
    I'm using Mac OS X Server (10.5.6) to connect to an LDAP server in the organisation (not sure what it is running on). The Mac is not running as a master or mirror just a client.
    When I configure the connection to the LDAP server in Directory Utility it says "This server is responding normally. This server is not in your authentication search policy." That's ok.
    Whowever, when I add the connection to the authentication (or contacts) search policy in Directory Utility is says "This server is not responding."
    What would this specifically indicate? This machine is not allowed to connect? The mapping is incorrect? There is some sort of mismatch between client and server?
    Others have used Macs to connect to this LDAP server. I've followed their specific configuration suggestions. I've also tried turning off/on the firewall, DNS server, etc.
    Thanks for any assistance.
    Cheers,
    Ashley.

    Hi Jeff,
    Thanks for your post. That said, I'm not sure how you got the impression that I wish to go to Maine I'm happy here in Perth, Western Australia.
    Jeff Kelleher wrote:
    Connecting a Mac to an LDAP server is a far cry from connecting a OS X Server to an existing LDAP server. Not that I could necessarily help, but asking how to connect an OS X Server to an LDAP server is a bit like asking "guess where I am now, how do I get to Maine?"
    You need to provide as much info as you can.
    Seriously though, I'm not sure of the difference. I am using Directory Utility to allow this OS X Server to get authentication information from an LDAP server just like an OS X Client would.
    I have Open Directory in Server Admin just setup to connect to a directory system (i.e. the organisation LDAP server), not a master or replica.
    My final goal is to allow access to an OS X TeamsServer Wiki by users who are authenticated against the LDAP server (rather than having to have separate accounts, logins, on the OSXS.)
    I am hoping that I can use a group from the LDAP server to define the team, but perhaps I will have to run a standalone OD. I hope then I can add LDAP users to the OD group.
    What other information would help?
    Thanks,
    Ashley.
    OS X Server 10.5.6

  • My screen says VPN connection you were disconnected because the ppp server is not responding try reconnecting.  When I hit "O.K." IPad shuts down.  Any suggestions, please?

    My screen says VPN connection you were disconnected because the PPP server is not responding.  Try reconnecting.  When I touch "O.K." screen goes dark after a couple of seconds.  Any ideas to solve this, please? 

    I have no solution. I am using Lion on Mac Air connecting to 3g using a Huawei 156 dongle modem and  i keep getting cut off with this message
    You were disconnected because the PPP server is not responding.
    I need a solution too

Maybe you are looking for

  • Jabber for iphone on CUCM 8.6.2

    We have jabber for Iphone configured on CUCM 8.6.2, Everything is working fine except voicemail (CUC 9.1.2) It shows status " Not signed", but when you try to enter credentials manually, it doesn't allow to enter Voicemail server. It is greyed out. S

  • Urgent: how to cancel orders in OM using API.oe_order_pub

    Hi All, I have written API - oe_order_pub, its compiling successfully but the orders are not getting cancelled. Do I need to add few more things for the following code... Please help create or replace package body apcx_test_cancel_order is PROCEDURE

  • Excel file upload to internal table

    Hi Guys, I want to upload excel file into an internal table in BW. I am using the FM TEXT_CONVERT_XLS_TO_SAP in the code below. REPORT  ZUPLOAD_EXCEL_TO_ITAB. TYPE-POOLS: truxs. PARAMETERS: p_file TYPE rlgrap-filename. TYPES: BEGIN OF t_datatab,     

  • USB Wireless Headset Not Working

    I am a medical transcriptionist and I use a Plantronics CS50 USB wireless head set to listen to my dictations. Ever since I installed the latest upgrade for Bootcamp a few days ago, I cannot plug in my USB plug and have the sound coming through the h

  • System status _ complete

    Dear all, I've got a question concerning standard status management. Our client requirement is to have a final 'state' to the service request. In other word, when the service request is set to the user statuts 'Answered', the system status is complet