Creation of Weblogic Domain in console mode not working

Hi All,
I've installed the Middleware home with ADF Runtime installer (Installer was 12.1.2.0.0). Now, I'm trying to create and configure a domain based on the JRF Template.  I'm executing the following command from Putty
Step1. Navigate to MW_HOME/wlserver/common/bin
Step2. execute "./config.sh -mode=console"
Its throwing the following error :
2014-07-21 17:03:41,643 WARNING [WizardController] com.oracle.cie.wizard.internal.engine.WizardControllerEngine - Duplicate action cause encountered: java.awt.HeadlessException:
No X11 DISPLAY variable was set, but this program performed an operation which requires it.
2014-07-21 17:03:41,643 SEVERE [WizardController] com.oracle.cie.wizard.internal.engine.WizardControllerEngine - Wizard error cause
java.awt.HeadlessException:
No X11 DISPLAY variable was set, but this program performed an operation which requires it.
  at java.awt.GraphicsEnvironment.checkHeadless(GraphicsEnvironment.java:207)
at java.awt.Frame.<init>(Frame.java:420)
  at java.awt.Frame.<init>(Frame.java:385)
  at javax.swing.SwingUtilities$SharedOwnerFrame.<init>(SwingUtilities.java:1757)
  at javax.swing.SwingUtilities.getSharedOwnerFrame(SwingUtilities.java:1832)
  at javax.swing.JOptionPane.getRootFrame(JOptionPane.java:1697)
  at javax.swing.JOptionPane.showOptionDialog(JOptionPane.java:863)
  at javax.swing.JOptionPane.showConfirmDialog(JOptionPane.java:796)
  at javax.swing.JOptionPane.showConfirmDialog(JOptionPane.java:758)
  at com.oracle.cie.wizard.internal.cont.GUIContext.handleFatalErrorMessage(GUIContext.java:1141)
  at com.oracle.cie.wizard.internal.cont.GUITaskContainer$MethodRunner.run(GUITaskContainer.java:188)
  at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:302)
  at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:733)
  at java.awt.EventQueue.access$200(EventQueue.java:103)
  at java.awt.EventQueue$3.run(EventQueue.java:694)
  at java.awt.EventQueue$3.run(EventQueue.java:692)
  at java.security.AccessController.doPrivileged(Native Method)
  at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
  at java.awt.EventQueue.dispatchEvent(EventQueue.java:703)
  at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
  at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
  at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
  at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)
2014-07-21 17:03:41,643 WARNING [WizardController] com.oracle.cie.wizard.internal.engine.WizardControllerEngine - Given state 'ERROR' does not follow current 'ERROR'
This vaguely means that its trying to open a GUI wizard, which is not what I intended to do. The argument -mode=console should run the installer in console mode, but its trying to launch it in GUI mode.
I searched online, but I have not found anything useful on this issue yet.
Am I missing something?  Has anyone faced this problem before.
Any thoughts on this would be helpful  !!
Thanks,
Shiva Shankar B N

Weblogic 12C (12.1.2 to be precise), currently does not support console mode Domain creation. It supports only GUI mode and Silent mode.
Possible solution to create a 12.1.2  Weblogic domain fully qualified enough to deploy ADF Applications :
1. Install Xming, and enable X11 forwarding on Putty
2. Silent Mode installation: The Configuration wizard. ./config.sh -mode=silent  -silent_script=xyz . Yes, it needs a silent script, not silent.xml. I did not try this way and instead resorted to WLST.  Still there are not enough blogs that clearly tell you how to install domain based on JRF template. I stumbled upon a similar OTN forum post.
Here is the bunch of WLST commands if anyone is interested
#======================================================================================= 
# Open a domain template. 
#======================================================================================= 
readTemplate("/u01/app/mw/Oracle_Home/wlserver/common/templates/wls/wls.jar") 
#======================================================================================= 
# Update the domain to enable the WebLogic Server domain with JRF and EM. 
#======================================================================================= 
addTemplate('/u01/app/mw/Oracle_Home/oracle_common/common/templates/wls/oracle.jrf_template_12.1.2.jar') 
addTemplate('/u01/app/mw/Oracle_Home/em/common/templates/wls/oracle.em_wls_template_12.1.2.jar') 
#======================================================================================= 
# Configure the Administration Server and SSL port. 
# To enable access by both local and remote processes, you should not set the 
# listen address for the server instance (that is, it should be left blank or not set). 
# In this case, the server instance will determine the address of the machine and 
# listen on it. 
#======================================================================================= 
cd('Servers/AdminServer') 
set('ListenAddress','') 
set('ListenPort', 7001) 
create('AdminServer','SSL') 
cd('SSL/AdminServer') 
set('Enabled', 'True') 
set('ListenPort', 7002) 
#======================================================================================= 
# Define the user password for weblogic. 
#======================================================================================= 
cd('/') 
cd('Security/base_domain/User/weblogic') 
# Please set password here before using this script, e.g. cmo.setPassword('value') 
cmo.setPassword('password') 
# Create and configure a JDBC Data Source, and sets the JDBC user.   Provide the Schema Credentials of the Service table
# Get RCU Configuration using RCU service table (STB) schema credentials 
cd('/') 
cd('JDBCSystemResource/LocalSvcTblDataSource/JdbcResource/LocalSvcTblDataSource') 
cd('JDBCDriverParams/NO_NAME_0') 
set('DriverName','oracle.jdbc.OracleDriver') 
set('URL','jdbc:oracle:thin:@XX.XX.XX.XX:1521/xe.yourdomain.com') 
set('PasswordEncrypted', 'schemaPassword') 
set('UseXADataSourceInterface', 'false') 
cd('Properties/NO_NAME_0') 
cd('Property/user') 
cmo.setValue('DEV_STB') 
getDatabaseDefaults() 
#======================================================================================= 
# Write the domain and close the domain template. 
#======================================================================================= 
setOption('OverwriteDomain', 'true') 
writeDomain('/u01/data/user_projects/domains/your_domain') 
closeTemplate() 
#======================================================================================= 
# Exit WLST. 
#======================================================================================= 
exit() 
Hoping to write a blog post soon..
Thanks,
Shiva Shankar B N

Similar Messages

  • Getting Error in creating weblogic domain in silent mode.

    Hi,
    I want to create a weblogic domain in silent mode. When I execute the command  ./config.sh -mode=silent -silent_xml=/home/oracle/silent.xml, I am getting the error given below.
    bash-3.00$ cd /apps/Oracle/Middleware/oracle_common/common/bin
    bash-3.00$ ./config.sh -mode=silent -silent_xml=/home/oracle/silent.xml
    ** Could not find default script file under home directory: "/apps/Oracle/Middleware/wlserver_10.3/configscript.txt"
    Please let me know what could be the issue
    Thanks in Advance!
    Regards,
    Roshni Shankar

    Hi Roshni,
    What is the version of wls you are using ?
    There is no silent mode of domain configuration. There is silent mode of wls installation.
    You can refer to :
    Introduction - 11g Release 1 (10.3.6)
    Thanks,
    Sharmela

  • Configuring Weblogic Domain in Offline Mode

    Hi,
    I wrote a java code which invoke wlst command required for configuring weblogic domain in offline mode.
    please give any idea even i do not know exactly what are the required jar file but i have used weblogic.jar,wlfullclient.jar,jython.jar,and some jar files from modules folder which has given in someone post
    i am getting the following error
    java.lang.reflect.InvocationTargetException
    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.scripting.utils.WLSTUtil.initOfflineContext(WLSTUtil.java:291)
    at weblogic.management.scripting.utils.WLSTUtil.setupOfflineInternal(WLSTUtil.java:267)
    at weblogic.management.scripting.utils.WLSTUtil.setupOffline(WLSTUtil.java:234)
    at weblogic.management.scripting.utils.WLSTInterpreter.<init>(WLSTInterpreter.java:134)
    at weblogic.management.scripting.utils.WLSTInterpreter.<init>(WLSTInterpreter.java:76)
    at DomainConfiguration.<init>(DomainConfiguration.java:15)
    at DomainConfiguration.main(DomainConfiguration.java:61)
    Caused by: java.lang.NoClassDefFoundError: com/oracle/cie/wizard/ControllerProxy
    at java.lang.Class.getDeclaredMethods0(Native Method)
    at java.lang.Class.privateGetDeclaredMethods(Class.java:2427)
    at java.lang.Class.getMethod0(Class.java:2670)
    at java.lang.Class.getMethod(Class.java:1603)
    at com.oracle.cie.domain.AbstractManager.getInstanceObject(AbstractManager.java:88)
    at com.oracle.cie.domain.AbstractManager.load(AbstractManager.java:46)
    at com.oracle.cie.domain.ConfigManager.<clinit>(ConfigManager.java:37)
    at com.oracle.cie.domain.DomainConstants.<clinit>(DomainConstants.java:20)
    at com.oracle.cie.domain.script.jython.WLScriptContext.init(WLScriptContext.java:220)
    at com.oracle.cie.domain.script.jython.WLScriptContext.setup(WLScriptContext.java:162)
    at com.oracle.cie.domain.script.jython.WLST_offline.setupContext(WLST_offline.java:105)
    ... 11 more
    thanks in advance

    Hi,
    Make sure that you have weblogic.jar and jython-modules.jar
    You will find weblogic.jar under %BEA_Home% / server / lib
    and you will find jython-modules.jar under %BEA_Home% / common / wlst/modules
    Regards,
    Kal

  • Console -f not working in ALOM

    Hi,
    I connected to ALOM on V240 installed with Solaris 10.
    console -f does not give me console on screen.
    Sun(tm) Advanced Lights Out Manager 1.6.8
    sc> console -f
    Enter #. to return to ALOM. ...I pressed ENTER a lot of times but does not give me console.
    Another observation in this case is that I found server is connected to KVM and the console is working there currently.
    output-device=screen
    input-device=keyboard
    for other server with same eeprom values, ALOM>console -f shows console login prompt. but KVM console is not working for this server.
    Any ideas ?
    Thanks

    Set your input-device and output-device to 'ttya' to force the system console via the ALOM.
    The default settings of screen/keyboard will still route the console to ALOM when there is not actually a screen and keyboard attached, but when they are attached, well, they become the console.
    hth

  • Console port not working.

    Hello!
    I would like to know if there's some situation what a console port could be disabled, or something like that.
    I'm trying to configure a Catalyst 2960 Series PoE-24 by the console port using the hyperterminal, but it's not working. I verified the cable and the COM port, and everything works with another switch (same model).
    Does anyone knows what could possibly be happening?

    My colleagues have focused on the usual issues that cause the console to not work - possible issues with the terminal emulator or more likely is mis match in the speed setting of the console. If you work through those possibilities and the console still does not work then I have another possibility to suggest. Perhaps someone configure the command no exec under line con 0. This would cause the console to not work. It would display messages during bootup but would not accept any commands.
    Does the switch seem to boot up normally? Was it configured with an IP address that you could potentially telnet to? This would give you a way to investigate the configuration.
    If my suggestion is correct and the issue is that no exec was configured then you should be able to use password recovery to bypass the existing config and this could restore normal operation for the switch.
    HTH
    Rick

  • Widgets on my desktop using dev-mode not working in Lion

    I'm trying to get iStat back ontop of my desktop like I had in Snow Leopard. Dev-mode not working to bring widgets forward anymore. Any Ideas how to do this in lion? In Snow Leopard it was defaults write com.apple.sashboard devmode YES now that isn't working.

    When I connect my MBP (mid 2010) to iMac 27" (mid 2010), via Mini DisplayPorts, after pressing Command+F2, iMac screen went "blank" while MBP screen stays "blue" for few seconds and went back to normal. How to solve this problem?

  • Blue screen on start up. Safe mode not working?

    Blue screen on start up. Safe mode not working, any suggestions?

    Thank you, I had forgotten about target mode. I was able to back up all of my files. I also copied some additional 50 GB of files of the disk as a stress test and the hard drive worked fine and quick (and because it was quicker than retrieving the same files from a network drive to my desktop).
    I was hoping to also unpack the Applejack files on my desktop and put them back so I could run them in single user mode without running /etc/rc. However I haven't been able to get my Linux desktop to mount the iBook in Read-Write instead of Read-Only yet (I don't have access to another Mac at the moment).

  • Weblogic Portal Admin Console is not displayed after the ear deployment

    Hi
    There is a Weblogic portal application deployed in the Weblogic Server 9.2 mp3 . The application is fine , when opened with the browser, but the problem is the portal admnistrator console is not opened.
    The application is deployed in a clustered environment with an Admin server and one managed server. The domain is configured for Production Mode and running in an Solaris environment.
    I had another similar kind of domain where the application is running fine and the weblogic portal admin console is also fine.
    The following difference is observed in both the server logs. I see that there is some problem with the initialization of /WEB-INF/beehive-netui-config.xml. The log continues with the messages like "< Pushing body text '" etc.
    ####<Apr 13, 2010 1:25:53 PM EEST> <Warning> <com.bea.wlw.netui.pageflow.internal.WebLogicURLTemplateFactory> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <> <1271154353777> <000000> <In webapp <WebLogic Portal Producer Application>, the url template <{url:scheme}://{url:domain}:{url:port}/{url:prefix}/{url:path}?{url:queryString}{url:currentPage}> uses the {url:port} token. The system may not pick up the correct ports if you are using a proxy server. Consider hardcoding the ports in a production environment.>
    ####<Apr 13, 2010 1:25:54 PM EEST> <Info> <netuix> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154354990> <BEA-423101> <[admin-rportal/portalAppAdmin] Initializing the NetUIx container>
    ####<Apr 13, 2010 1:26:04 PM EEST> <Info> <PortletServer> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154364405> <BEA-420666> <[admin-rportal/portalAppAdmin] Undeploying the portlet application in webapp [WEB-INF/portlet.xml].>
    ####<Apr 13, 2010 1:26:09 PM EEST> <Warning> <org.apache.beehive.netui.pageflow.AutoRegisterActionServlet> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154369699> <000000> <Found module-config-locators list in context-parameter moduleConfigLocators, which is deprecated. Please use the <module-config-locators> element in /WEB-INF/beehive-netui-config.xml instead.>
    ####<Apr 13, 2010 1:26:09 PM EEST> <Debug> <org.apache.beehive.netui.util.internal.DiscoveryUtils> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154369701> <000000> <Trying to load implementor class for interface org.apache.beehive.netui.pageflow.AutoRegisterActionServlet$ModuleConfigLocator: com.bea.netuix.servlets.controls.content.StrutsContentModuleConfigLocator>
    ####<Apr 13, 2010 1:26:09 PM EEST> <Trace> <org.apache.struts.util.PropertyMessageResources> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154369867> <000000> <Initializing, config='org.apache.struts.action.ActionResources', returnNull=true>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370088> <000000> <register('-//Apache Software Foundation//DTD Struts Configuration 1.0//EN', 'zip:/opt/rp/instance/wl/rportal/dom/dom-v1.0.3/rportaldomain/servers/wl-rp-rportal-1/tmp/_WL_user/struts-1.2/d8diym/WEB-INF/lib/struts.jar!/org/apache/struts/resources/struts-config_1_0.dtd'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370093> <000000> <register('-//Apache Software Foundation//DTD Struts Configuration 1.1//EN', 'zip:/opt/rp/instance/wl/rportal/dom/dom-v1.0.3/rportaldomain/servers/wl-rp-rportal-1/tmp/_WL_user/struts-1.2/d8diym/WEB-INF/lib/struts.jar!/org/apache/struts/resources/struts-config_1_1.dtd'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370097> <000000> <register('-//Apache Software Foundation//DTD Struts Configuration 1.2//EN', 'zip:/opt/rp/instance/wl/rportal/dom/dom-v1.0.3/rportaldomain/servers/wl-rp-rportal-1/tmp/_WL_user/struts-1.2/d8diym/WEB-INF/lib/struts.jar!/org/apache/struts/resources/struts-config_1_2.dtd'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370101> <000000> <register('-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN', 'zip:/opt/rp/instance/wl/rportal/dom/dom-v1.0.3/rportaldomain/servers/wl-rp-rportal-1/tmp/_WL_user/struts-1.2/d8diym/WEB-INF/lib/struts.jar!/org/apache/struts/resources/web-app_2_2.dtd'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370105> <000000> <register('-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN', 'zip:/opt/rp/instance/wl/rportal/dom/dom-v1.0.3/rportaldomain/servers/wl-rp-rportal-1/tmp/_WL_user/struts-1.2/d8diym/WEB-INF/lib/struts.jar!/org/apache/struts/resources/web-app_2_3.dtd'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.struts.action.ActionServlet> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370127> <000000> <Scanning web.xml for controller servlet mapping>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370331> <000000> <setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@11a731d)>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370331> <000000> <startDocument()>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370333> <000000> <startPrefixMapping(,http://java.sun.com/xml/ns/j2ee)>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370333> <000000> <startPrefixMapping(xsi,http://www.w3.org/2001/XMLSchema-instance)>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370334> <000000> <startElement(http://java.sun.com/xml/ns/j2ee,web-app,web-app)>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370334> <000000> < Pushing body text ''>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370334> <000000> < New match='web-app'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370335> <000000> < No rules found matching 'web-app'.>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370336> <000000> <characters(
    )>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370336> <000000> <startElement(http://java.sun.com/xml/ns/j2ee,display-name,display-name)>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370336> <000000> < Pushing body text '
    '>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370337> <000000> < New match='web-app/display-name'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370337> <000000> < No rules found matching 'web-app/display-name'.>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370338> <000000> <characters(WebLogic Portal Producer Application)>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370338> <000000> <endElement(http://java.sun.com/xml/ns/j2ee,display-name,display-name)>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370338> <000000> < match='web-app/display-name'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370339> <000000> < bodyText='WebLogic Portal Producer Application'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370339> <000000> < No rules found matching 'web-app/display-name'.>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370340> <000000> < Popping body text '
    '>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370340> <000000> <characters(
    )>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370341> <000000> <startElement(http://java.sun.com/xml/ns/j2ee,context-param,context-param)>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370341> <000000> < Pushing body text '
    '>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370341> <000000> < New match='web-app/context-param'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370342> <000000> < No rules found matching 'web-app/context-param'.>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370342> <000000> <characters(
    )>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370343> <000000> <startElement(http://java.sun.com/xml/ns/j2ee,description,description)>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370343> <000000> < Pushing body text '
    '>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370343> <000000> < New match='web-app/context-param/description'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370344> <000000> < No rules found matching 'web-app/context-param/description'.>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370344> <000000> <characters(Period of timer (millisecs) to delete proxy portlets.)>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370345> <000000> <endElement(http://java.sun.com/xml/ns/j2ee,description,description)>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370345> <000000> < match='web-app/context-param/description'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370345> <000000> < bodyText='Period of timer (millisecs) to delete proxy portlets.'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370346> <000000> < No rules found matching 'web-app/context-param/description'.>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370346> <000000> < Popping body text '
    '>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370346> <000000> <characters(
    )>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370347> <000000> <startElement(http://java.sun.com/xml/ns/j2ee,param-name,param-name)>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370347> <000000> < Pushing body text '
    '>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370348> <000000> < New match='web-app/context-param/param-name'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370348> <000000> < No rules found matching 'web-app/context-param/param-name'.>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370348> <000000> <characters(timerPeriod)>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester.sax> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370349> <000000> <endElement(http://java.sun.com/xml/ns/j2ee,param-name,param-name)>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370349> <000000> < match='web-app/context-param/param-name'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370350> <000000> < bodyText='timerPeriod'>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370350> <000000> < No rules found matching 'web-app/context-param/param-name'.>
    ####<Apr 13, 2010 1:26:10 PM EEST> <Debug> <org.apache.commons.digester.Digester> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1271154370350> <000000> < Popping body text '
    Please let us know , if we were missing any configuaration in creating the domain or configuring the application.Please provide any links or forums related to this problems.
    Also observed another difference is that
    ####<Apr 13, 2010 1:25:43 PM EEST> <Debug> <J2EE> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1271154343381> <BEA-160058> <Cannot find JDBC DataSource at portalFrameworkPoolAlwaysXA>
    ####<Apr 13, 2010 1:25:43 PM EEST> <Debug> <J2EE> <saerpord12> <wl-rp-rportal-1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1271154343389> <BEA-160058> <Cannot find JDBC DataSource at portalFrameworkPoolAlwaysXA>
    Regards
    Edited by: user11285785 on Apr 13, 2010 6:42 AM

    how did you create this domain? Is this dataSource defined - portalFrameworkPoolAlwaysXA? is it targetted to cluster? did you get errors on startup related to this dataSource?

  • Password encription error while creating SOA domain in console mode

    Hi,
    I am creating SOA domaing in console mode in Solaris server. While Configure JDBC Data Sources for SOA metadata and SOAINFRA schema i am getting bellow error.
    Error:
    Configure JDBC Data Sources:
    Edit the configuration of JDBC data sources. A data source contains a pool of database connections. Applications look up a data source in the JNDI tree, request a
    connection, use it, and return it to the connection pool.
    | Name |
    _|______________________|
    1->| SOADataSource |
    2| EDNLocalTxDataSource |
    3| mds-soa |
    4| wlsbjmsrpDataSource |
    5| mds-owsm |
    6| EDNDataSource |
    7| SOALocalTxDataSource |
    8| OraSDPMDataSource |
    Use above value or select another option:
    1 - Modify
    2 - Discard Changes
    ** CFGFWK-60050: Property "ConfirmUserPasswordEncrypted" of JDBCDriverParams "" is invalid.
    ** CFGFWK-64014: The property value is required.
    I understand that we need to give the encrypted schema password. but how to create encrypted password.

    Hi Anuj,
    I go through the below url link, and I accepted SOADataSource default values, but i ma getting "ConfirmUserPasswordEncrypted" of JDBCDriverParams "" is invalid error. I think we need to enter the Encrypted password for DB schema. Oracle don't given SOA domain creation in unix console mode. I got struck on my development environment, Please help me on this.
    SOA+OSB 11g in same domain (linux)
    Thanks,
    Reddy.

  • Weblogic Server Administration Console does not open

    hi,
    I am using EM Grid Control and Weblogic Server is added in the Middleware Targets...when I click on "Weblogic Server Administration Console" to open the Admin Server console it directs me to old IP address in the browser and console does not open...it goes on old IP address...
    it gets open when I put the Ip address myself in the browser like:
    https://10.254.166.141:7102/conole
    it gets open there...means that server is okay and working properly...
    I have seen the logs and it is giving the following message:
    <<anonymous>><BEA-220103> <Async web service support is not fully configured. The async response web
    service /AsyncResponseServiceSoap12 for this server was not fully deployed because the JMS reliability queue was not
    defined/deployed:
    any help will be appreciated...
    thanx
    Edited by: user13672598 on May 23, 2011 4:55 AM

    Hi,
    Can you check the EM configuration whenther it has updated the changes made by you i.e. the ip address.
    Can you try rebooting the EM application,as this seems to be that the EM has not the changes reflected to it's configuration.
    Hope this helps
    Regards,
    Rohit Jaiswal

  • IBook G4 startsup in console mode,not in the login window?

    This g4 with mac osx 10.4.8 worked fine but suddenly when i turned it on,after the blue screen & the spinning wheel come on,then instead of openning the login window normally,it opens console mode in blk screen.I can log in at the prompt,but don"t know how to get it back to normal & working again.Would really appreciate any formula..THS..

    Thank-you!!!
    you don't know how hard this was to find! you are a savior niel.
    cheers.
    ~g
    Macbook Mac OS X (10.4.8)
    Macbook Mac OS X (10.4.8)

  • Admin Server Console is not working

    Hi,
    I have installed weblogic server 9.2 wirh SIP server on win2k the created domain successfully. With "Admin Server Console", I can not do anything because I get following errors;
    It seems XML to HTML transform is not working? Any help is appreciated.
    "The template you provided at /WEB-INF/templates/form.xml could not be processed"
    "ERROR: 'Instruction unknown: loadinstruction'
    FATAL ERROR: 'Could not compile stylesheet'

    You are getting below exception when trying to start Weblogic Server or while accessing the Weblogic console URL?
    - - Weblogic Consultant

  • SAP NW702 SP6 - SAP console is not working

    Dear Team,
    I have installed SAP NW702 trail version in Windows Server 2008 R2, after a weeks i have encountered this issue. SAP MMC console is not started and still in idle status.
    Please find the below error messages,
    "SAP Basis System: Initialization           DB-Connect Failed, Return Code  008192"
    Could you please help me to resolve this issue.
    Thanks
    S.Jeeva

    Hi,
    Please find the dev_w0 log details,
    trc file: "dev_w0", trc level: 1, release: "720"
    ++*
    +  ACTIVE TRACE LEVEL           1+*
    +  ACTIVE TRACE COMPONENTS      all, MJ+*
    ++*
    M sysno      00
    M sid        NSP
    M systemid   562 (PC with Windows NT)
    M relno      7200
    M patchlevel 0
    M patchno    46
    M intno      20020600
    M make       multithreaded, Unicode, 64 bit, optimized
    M profile   
    DEV2K10\sapmnt\NSP\SYS\profile\NSP_DVEBMGS00_DEV2K10
    M pid        2240
    M
    M
    M Thu Jul 07 16:12:59 2011
    M  kernel runs with dp version 125000(ext=118000) (@(#) DPLIB-INT-VERSION-125000-UC)
    M  length of sys_adm_ext is 588 bytes
    *M  ***LOG Q0Q=> tskh_init, WPStart (Workp. 0 2240) [dpxxdisp.c   1314]*
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is active
    M  DpIPCInit2: read dp-profile-values from sys_adm_ext
    M  DpShMCreate: sizeof(wp_adm)          31696     (2264)
    M  DpShMCreate: sizeof(tm_adm)          5517056     (27448)
    M  DpShMCreate: sizeof(wp_ca_adm)          64000     (64)
    M  DpShMCreate: sizeof(appc_ca_adm)     64000     (64)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/16/584064/584080
    M  DpShMCreate: sizeof(comm_adm)          584080     (1144)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=512/48/65600/90416/156064
    M  DpShMCreate: sizeof(slock_adm)          156064     (104)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=2800/16/268864/268880
    M  DpShMCreate: sizeof(file_adm)          268880     (80)
    M  DpShMCreate: sizeof(vmc_adm)          30128     (2152)
    M  DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: sizeof(j2ee_adm)     3936
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 000000000DE40050, size: 6812336)
    M  DpShMCreate: allocated sys_adm at 000000000DE40060
    M  DpShMCreate: allocated wp_adm_list at 000000000DE43030
    M  DpShMCreate: allocated wp_adm at 000000000DE43220
    M  DpShMCreate: allocated tm_adm_list at 000000000DE4AE00
    M  DpShMCreate: allocated tm_adm at 000000000DE4AE50
    M  DpShMCreate: allocated wp_ca_adm at 000000000E38DD60
    M  DpShMCreate: allocated appc_ca_adm at 000000000E39D770
    M  DpShMCreate: allocated comm_adm at 000000000E3AD180
    M  DpShMCreate: allocated slock_adm at 000000000E43BB20
    M  DpShMCreate: allocated file_adm at 000000000E461CD0
    M  DpShMCreate: allocated vmc_adm_list at 000000000E4A3730
    M  DpShMCreate: allocated vmc_adm at 000000000E4A37E0
    M  DpShMCreate: allocated gw_adm at 000000000E4AADA0
    M  DpShMCreate: allocated j2ee_adm at 000000000E4AADE0
    M  DpShMCreate: allocated ca_info at 000000000E4ABD50
    M  DpShMCreate: allocated wall_adm at 000000000E4ABD70
    M  DpCommAttachTable: attached comm table (header=000000000E3AD180/ft=000000000E3AD190)
    M  DpSesCreateTable: attached session table at 00000000029C0050 (len=161328)
    M  DpRqQInit: use protect_queue / slots_per_queue 0 / 2001 from sys_adm
    M  rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  DpVmcSetActive: set vmc state DP_VMC_ENABLED
    M  DpVmcSetActive: set vmc state DP_VMC_ACTIVE
    M  DpVmcInit2: o.k.
    M  ThStart: taskhandler started
    M
    M Thu Jul 07 16:13:00 2011
    M  ThInit: initializing DIA work process W0
    M
    M Thu Jul 07 16:13:04 2011
    M  ThInit: running on host DEV2K10
    M  calling db_connect ...
    B  create_con (con_name=R/3)
    *B  *** ERROR => Invalid profile parameter dbms/type (or environment variable dbms_type) = <undef>, cannot load DB library*
    [dbcon.c      5070]
    *M  ***LOG R19=> ThInit, db_connect ( DB-Connect 008192) [thxxhead.c   1461]*
    M  in_ThErrHandle: 1
    M
    M Thu Jul 07 16:13:05 2011
    *M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   11087]*
    M
    M  Info for wp 0
    M
    M    pid = 2240
    M    severity = 0
    M    status = 0
    M    stat = WP_NEW
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    req.req_info =
    M    req.tid = -1
    M    req.uid = 4294967295
    M    req.mode = 255
    M    req.len = -1
    M    req.rq_id = 65535
    M    req.rq_source =
    M    req.vm = no VM
    M    last_tid = 0
    M    last_uid = 0
    M    last_mode = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    attachedVm = no VM
    M
    M  ThIErrHandle: current request:
    M
    M  -IN-- sender_id ?                 tid  -1    wp_ca_blk   -1      wp_id -1
    M  -IN-- action    -                 uid  -1    appc_ca_blk -1      type  -
    M  -IN-- new_stat  NO_CHANGE         mode 255   len         -1      rq_id -1
    M
    *M  ******************************************************************************
    *M  **
    *M  *  LOCATION    SAP-Server DEV2K10_NSP_00 on host DEV2K10 (wp 0)*
    *M  *  ERROR       ThInit: db_connect*
    *M  **
    *M  *  TIME        Thu Jul 07 16:13:05 2011*
    *M  *  RELEASE     720*
    *M  *  COMPONENT   Taskhandler*
    *M  *  VERSION     1*
    *M  *  RC          13*
    *M  *  MODULE      thxxhead.c*
    *M  *  LINE        11364*
    *M  *  COUNTER     1*
    *M  **
    *M  ******************************************************************************
    M
    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrBtcCallLgCl< for event BEFORE_DUMP
    M  ThCallHooks: hook >ThrBtcCallLgCl< o.k.
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    *M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   779]*
    *M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  303]*
    M  ThCallHooks: hook >ThrSaveSPAFields< o.k.
    M  ThIErrHandle: entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    *M  ***LOG Q02=> wp_halt, WPStop (Workp. 0 2240) [dpnttool.c   339]*
    Edited by: MOSSSAP on Jul 7, 2011 12:55 PM

  • 6509 Console port not working

    We have a 6509 running 5.4(2). We have set up a hyperterm session and connect to multiple devices, then we get to the 6509 and it will not work. When we reload the 6509 and we are consoled into it, we get data until it is finished reloading. Then the console connections is no longer there. Any help will be appreciated.

    Erfrahim,
    I have two supervisor in the chassis and the same problem. Console not work after format bootflash, reload IOS cat6000-sup2k8.7-6-7.bin and reeset in rommon mode. Pls help me
    Hong Linh
    Email: [email protected]

  • Web Service Client(Console App) not working on Windows Server 2008 R2 Standard Edition

    I am trying to consume an ASMX Web Service in a console app, its working fine in Windows 7,Windows Server 2012 Standard,Windows Server 2008 R2 DataCenter,Windows Server 2008 R2 Enterprise, But its not working in Windows Server 2008 R2 Standard Edition which
    is the deployment server.
    I tried consuming the ASMX web service using Web Reference and Service Reference as well but its not helping. Its throwing up the following error,
    Message:There is an error in XML document (1, 331491).
    Inner Exception : System.Xml.XmlException: '.', hexadecimal value 0x00, is an invalid character. Line 1, position 331491.
    The scenario is that i call the web service and it returns me an XML i am not able to receive the XML on Windows Server 2008 R2 Standard Edition.
    Please provide suggestions on this I need to resolve this ASAP.

    Hi,
    This question is better asked here:
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=asmxandxml
    Experts here are more familiar about it and they can give you more efficient suggestion.
    Thank you.

Maybe you are looking for