SOS Problem with GUI login

Please answer me as fast as you can because I have the following serious problem:
I had install the SAP WEB AS 6.10 (and SAPDB) test version which I took it from the book ABAP OPJECTS THE OFFICIAL REFERENCE. Unfortunatelly, it did not work well when I was off line of the network of my company, I also installed the network adapter of MS LOOPBACK (as the instructions are saying) but again I couldn't login, so I uninstall from my PC the SAP WEB AS. Next day when I went to my company I could not logon to SAP and the error message is: SERVICE 'SAPDP00' UNKNOWN. I check the fileservice which is under the directory C:\WINNT\SYSTEM32\DRIVERS\ETC and there is a line with SAPDP00 3200/tcp. I reinstall GUI 7 times but the problem still exists.
Well I hope that I will find a solution during weekend because if not I will forced to format my pc and reinstall all my aplication, sth which is very painfull.
My pc is working with WinXP SP1.
The error details are:
service 'sapdp00' unknown
time: Sat Jul 03 10:51:16 2004
component: NI(Network Interface)
release: 620
version: 36
module: ninti.c
line: 428
method: NiPServToNo
return code:  -3
System Call: getservbyname
counter: 1
Message was edited by: s0003198291

Finally I found what cause this problem and the temporary solution plus the permanent one.
My PC was hit by a virus (new version of QHOSTS-1 see at the end) which is changing the registry file HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
"DatabasePath"= %SystemRoot%\nsdb
So it is creating a host file under C:\WINNT\NSDB which it put it to the registry.
So the permanent solution is to change the Registry.
The temporary one is to run the following command from the dos:
   sapgui /H/<address of the SAP server>/S/3200.
You can find more information on:
http://www.sapfans.com/forums/viewtopic.php?t=83386&highlight=servicesapdp00unknown
  Information about the virus you can find in:
http://vil.nai.com/vil/content/v_100719.htm
   Thanks

Similar Messages

  • Problem with GUI in applet

    Hai to all,
    I am having a problem with GUI in applets
    My first class extends a JPanel named A_a
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    public class A_a extends JPanel
    JButton jb;
    JTextArea text;
    public A_a()
    setLayout(new FlowLayout());
    jb=new JButton("Click me");
    //add(jb);
    text=new JTextArea(5,20);
    add(text);
    public void text_appendText(String aa)
    System.out.println("I AM IN A_a");
    text.append(aa);
    text.revalidate();
    revalidate();
    /*public static void main(String ags[])
    A_a a = new A_a();
    JFrame frame=new JFrame();
    frame.getContentPane().add(a);
    frame.pack();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) { System.exit(0); }
    frame.setSize(200,200);
    frame.show();
    and then I am using other class B_b which is an applet carries a exitsing panel (A_a) inside it .
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class B_b extends JApplet
    public A_a a;
    public void init()
    a=new A_a();
    getContentPane().add(a);
    public void text_appendText(String aa)
    final String aaa =aa;
    new Thread(new Runnable()
    public void run()
    a=new A_a();
    a.setBackground(new java.awt.Color(255,200,200));
    System.out.println("I AM IN B_b");
    a.text.append(aaa);
    a.text.revalidate();
    getContentPane().remove(a);
    resize(500,500);
    }).start();
    and the I am using the second applet C_c in which by performing a button action the old panel A_a should get removed and replace the new panel D_a (which is not here )in the applet B_b with all other components(namely button , text fields etc)
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.util.*;
    public class C_c extends JApplet implements ActionListener
    JButton jbt;
    JTextArea jta;
    public void init()
    getContentPane().setLayout(new FlowLayout());
    jbt=new JButton("Click me");
    jbt.addActionListener(this);
    getContentPane().add(jbt);
    jta=new JTextArea(5,20);
    getContentPane().add(jta);
    public void actionPerformed(ActionEvent ae)
    Enumeration e = getAppletContext().getApplets();
    Applet applets = null;
    while(e.hasMoreElements())
    applets=(Applet)e.nextElement();
    if ( applets instanceof B_b)
    System.out.println("I AM CLASS C_c");
    ((B_b)applets).text_appendText(jta.getText());
    ((B_b)applets).remove());
    ((B_b)applets).getContentPane().add(D_d);
    both the applets C_c and B_b are in same browser page
    How can i achive that pls help .

    Just to make the code readable...
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    public class A_a extends JPanel
    JButton jb;
    JTextArea text;
    public A_a()
    setLayout(new FlowLayout());
    jb=new JButton("Click me");
    //add(jb);
    text=new JTextArea(5,20);
    add(text);
    public void text_appendText(String aa)
    System.out.println("I AM IN A_a");
    text.append(aa);
    text.revalidate();
    revalidate();
    /*public static void main(String ags[])
    A_a a = new A_a();
    JFrame frame=new JFrame();
    frame.getContentPane().add(a);
    frame.pack();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) { System.exit(0); }
    frame.setSize(200,200);
    frame.show();
    }and then I am using other class B_b which is an applet carries a exitsing panel (A_a) inside it .
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class B_b extends JApplet
    public A_a a;
    public void init()
    a=new A_a();
    getContentPane().add(a);
    public void text_appendText(String aa)
    final String aaa =aa;
    new Thread(new Runnable()
    public void run()
    a=new A_a();
    a.setBackground(new java.awt.Color(255,200,200));
    System.out.println("I AM IN B_b");
    a.text.append(aaa);
    a.text.revalidate();
    getContentPane().remove(a);
    resize(500,500);
    }).start();
    }and the I am using the second applet C_c in which by performing a button action the old panel A_a should get removed and replace the new panel D_a (which is not here )in the applet B_b with all other components(namely button , text fields etc)
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.util.*;
    public class C_c extends JApplet implements ActionListener
    JButton jbt;
    JTextArea jta;
    public void init()
    getContentPane().setLayout(new FlowLayout());
    jbt=new JButton("Click me");
    jbt.addActionListener(this);
    getContentPane().add(jbt);
    jta=new JTextArea(5,20);
    getContentPane().add(jta);
    public void actionPerformed(ActionEvent ae)
    Enumeration e = getAppletContext().getApplets();
    Applet applets = null;
    while(e.hasMoreElements())
    applets=(Applet)e.nextElement();
    if ( applets instanceof B_b)
    System.out.println("I AM CLASS C_c");
    ((B_b)applets).text_appendText(jta.getText());
    ((B_b)applets).remove());
    ((B_b)applets).getContentPane().add(D_d);
    }

  • Problem with AppleID login password

    Hi - I'm from Europe. How can I contact talk to a real live person from "nonstop " customer support service - I need help - have problem with AppleID login password

    DanielBuggati wrote:
    Hi - I'm from Europe. How can I contact talk to a real live person from "nonstop " customer support service - I need help - have problem with AppleID login password
    Have you tried MyAppleID <<== click this
    There is a link there for "Forgot your Password?"

  • Design Problem with GUI sub vi

    Hello community,
    in general, I would like to separate the GUI from the data, but I get
    a problem with this design approach in LabView:
    I often have sub VIs that are supposed to control something.
    Therefore, these VIs consist of a control loop. A GUI window should
    show the regulation process (showing how the tracking error is
    hopefully approaching zero etc.). As I said, this GUI should be a
    separate VI (separate from the control loop VI). Since the GUI has to
    be updated on each sample, it is clear that the GUI VI should be
    inside the control loop, and therefore, it should be a sub VI of the
    control loop VI.
    Now, the problem is that the control loop VI itsself is a sub VI
    because the whole regulation is just a subsystem of the whole program
    (The main VI doesn't have a GUI, but first starts a (GUI) input mask
    for the same reason: separate the GUI from the rest).
    But back to the GUI VI inside the control loop. I must check the 'Show
    Front Panel When Called' option. But I can't check the 'Close
    Afterwards if Originally Closed' option since the GUI VI would appear
    and disappear in the control loop - according to the loop's sample
    rate. However, if I don't check the 'Close Afterwards if Originally
    Closed' option then the GUI VI will continue to show, even after the
    control process is finished.
    So in other words: I need the possiblity to close the GUI VI
    programatically, after the control process is finished.
    Any ideas?
    Regards
    Johannes

    Hi tmh,
    thanks for your answer
    On Tue, 11 Nov 2003 10:26:32 -0600 (CST), tmh wrote:
    >I think you're on the wrong track trying to put your 'GUI VI' inside
    >your control loop. It might be a better design to have the control and
    >GUI handled by separate loops and use an appropriate method to pass
    >data between the two, e.g. a global variable to pass the setpoint from
    >GUI to control...
    I try to avoid globals. Now, suppose I had multiple unrelated control
    loops. I had to suppose a global variable for each of these
    subsystems. I already use globals for the GPIB device IDs. I wouldn't
    like more.
    >and a queue to pass readings from control to GUI. In
    >fact, you could even split the GUI into two loops: one to read user
    >input from the front pa
    nel controls and one to display data returned
    >by the control loop.
    But if I split the GUI: How can I view them simultaneously? The user
    must see input and output simultaneously, in one window.
    >You may find it's more convenient to make the GUI
    >the top-level VI and make the control loop a subVI of that (but
    >outside the GUI loops).
    Your approach sounds interesting. Is there a sample for this
    architecture in the examples?
    Anyway, I have to point out that I have several unrelated GUI windows
    in my application. There is no notion of a main GUI in my application.
    The control loop is just one feature of my application, so it doesn't
    make sense to use the control GUI as the top-level VI. At application
    startup a user input form is displayed (it also has some sort of menu
    selection). But even this window can't be toplevel since it provides
    an Option radio button (that shows and hides controls, accordingly) a
    CONTINUE button, and a STOP button which implies that the input
    form.vi must be
    in a loop.
    The problem is that I can't send messages to windows in LabView as I
    am used to in Win32/VC++.
    Johannes

  • JDeveloper Problem with GUI

    Hi All,
    I'm running JDev 3.1 on Win2000, and I'm having a bit of a problem with redraws of the GUI.
    When I click anywhere on the JDev GUI and trigger and action that involves a GUI redraw the little piece of the GUI under the mouse pointer graphic is not redrawn. It does not effect the functionality but it is annoying and will make the other developers I work with less keen about using it.
    Does anyone else have this problem? Is it a JDev or Win2k problem?
    Cheers
    d

    Probably an issue with the JRE used by JDev. on Win 2k. Have you tried 3.2x? I haven't seen that type of issue with it on Win 2k.

  • Loaded atv 4.2.2 problem with netflix login.  Has anyone solved this problem?

    Cannot login to Netflix on Apple TV after the 4.2.2 update.  Ihave done a restore, unplugged and restarted, called netflix and they changed password.  Was able to login to Netflix on Mac Air.  Netflix says call apple.

    I am also having this, and I am 4.4.3.  I'm guessing it's a problem with the Netflix app and how it send the password.  It seems that only passwords containing all numbers work, but I would like to have a more secure password protecting my Netflix account. 

  • BEx Analyzer 3.x language problem with GUI 710

    Hi All,
    We are having trouble to login to BEx Analyzer 3.x with GUI 710 with English language, even if we set language as EN in the logon pad by default it is logging into Japanese language. But 7.x Analyser is working fine.
    We have BI 7.0 and BW 3.5 systems. 
    SAP GUI 710 installed with latest available Frontend Patch ( bi710sp10_1000-10004472 , gui710_15-10002995 and bw350gui710_7-10004473 ) and we are using Excel 2003 on XP Professional.
    Installed .Net Framework 2.0, Microsoft office patch - office2003-KB907417
    Your help is very much appreciated.
    Regards,
    MKR

    Hi,
    Are you using different backend systems to connect for 3.x and 7.x? Because the file which prompts the SAP Logon is a common file used by both 3.x and 7.x.It shouldn't behave differently for the same system.
    You can uninstall the SAPGui and Front End patch and then reinstall it.
    The BW 3.5  patch  8  in SAP GUI 7.10 is released to the SMP now and is available for download.
    Rgds,
    Murali

  • Problem with Application Login after upgrading to Oracle 11g

    I have a home-grown application with Oracle 10g database running under Windows XP Pro. Recently, I installed Oracle 11g and imported the application database from 10g to 11g (still want to keep the 10g running for a while). However, I now having problem with the application logging into the new 11g database. (Keep getting invalid user/name message).
    BTW, I have no problem accessing the 11g database through SQLPlus (logging in with the same name and password that I use for the application), and the connection test of NetManager (again using the same name and password that I use for the application) was successful.
    The application itself uses the old Borland BDE (Borland Database Engine) to access the 10g and 11g database. Testing confirms that BDE can access Oracle 11g with no problems.
    Any idea about the probable cause(s) of the problem?
    Thanks in advance,
    sg2000

    11g by default is case sensitive username/password.
    You can disable that with setting parameter SEC_CASE_SENSITIVE_LOGON to false.
    SQL> SHOW PARAMETER SEC_CASE_SENSITIVE_LOGON
    SQL> ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE;

  • Problem With GUI ( Who can help me! )

    Hallo,
    It�s a very simple program to See the Clock on a panel. The program works well, but if I want to include a GUI to my program, it don�t want. I use runable action and I think that is be the problem.
    Here below you can see the code�s. I�m sure there is someone who can help me.
    Thanks a lot,
    Seyyed
    The code:
    public class Clock_maken extends java.applet.Applet
    implements Runnable {
    public volatile Thread clockThread = null;
    JLabel           Datuum_label;
    DateFormat      formatter;
    Locale           locale;
    Date           currentDate;
    String          today;
    public void init(){ 
    locale = Locale.getDefault();
    Datuum_label = new JLabel("date");
    public void start() {       
    Datuum_label.setForeground(Color.black);
    add(Datuum_label);
    if(clockThread == null) {
    clockThread = new Thread(this);
    clockThread.start();
    public void run() {
         Thread myThread = Thread.currentThread();
         while (clockThread == myThread) {
         currentDate = new Date();
    formatter =                     DateFormat.getDateTimeInstance(DateFormat.FULL,
              DateFormat.MEDIUM, locale);
    today = formatter.format(currentDate);
    Datuum_label.setText(today);
    try {
    Thread.sleep(1000);
    } catch (InterruptedException e){ }
    public void stop() {clockThread = null;}
    public static void main(String[] args){
    JFrame.setDefaultLookAndFeelDecorated(true);
    JFrame      lunarPhasesFrame = new JFrame("Lunar Phases");
    lunarPhasesFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Clock_maken phases = new Clock_maken();
    phases.init();
    phases.start();
    lunarPhasesFrame.pack();
    lunarPhasesFrame.setVisible(true);
    Now i want to create a GUI like folowing, but it dont work. Do u know wat is de probleem of mijn prograam.
    private static void createAndShowGUI() {
    JFrame.setDefaultLookAndFeelDecorated(true);
         /*     JFrame      lunarPhasesFrame = new JFrame("Lunar Phases");
              lunarPhasesFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    */ Clock_maken phases = new Clock_maken();
         /*     phases.init();
              phases.start();
              lunarPhasesFrame.pack();
         lunarPhasesFrame.setVisible(true);*/
    public static void main(String[] args) {
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    }

    Continued here, with formatted code:
    http://forum.java.sun.com/thread.jspa?threadID=725022

  • Problem with the login in analysis

    Hi All,
    I am trying to login to analysis page as an admin user using the credentials of weblogic which i gave during the installation of OBIEE but the login process fails giving an error"Invalid username and Pssword".
    the same credentials when i am providing in em or console the login gets successful. even i have created a new user through console but that user credentials are also not getting validated. in a sense my analysis login page is completely freezed. initially everything was wroking fine but when i saved a rpd using "copy as" and then replaced the old rpd with the same name the problem started.
    even when i am trying to open my current rpd in online mode i get the error of username and paasword but the same rpd opens up in offline mode using same password. Please help me out as i dont know what has happened.

    Hi,
    as far as the sawlog is concerned PFB the entire saw log file.
    i m not able to get out the error from it. Can you please help me out with this and tell the solution.
    Below are the contents of my sawlog.
    [2013-10-13T20:49:17.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:20.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:22.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.subsystem.catalog.initialize.upgrade] [ecid: ] [tid: ] Starting to update Account GUIDs[[
    File:initializecatalog.cpp
    Line:1046
    Location:
      saw.subsystem.catalog.initialize.upgrade
      saw.subsystem.catalog.initialize
      saw.subsystems.catalogbootstrapper.loadcatalog
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:22.000+05:30] [OBIPS] [ERROR:10] [] [saw.subsystem.catalog.initialize.upgrade] [ecid: ] [tid: ] Error reading object: /shared/Sample Lite/KPIs/Revenue KPI
    Element doesn't contain required attribute treatNoDataAs.
    Node: <sawkpi:thresholds xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sawkpi="com.siebel.analytics.web/kpi/v1" xmlns:saw="com.siebel.analytics.web/report/v1.1" goal="high"><sawkpi:thresholdRange ID="80ecc300-0b96-1000-8567-0ae4eb540000" value="100" assessmentStateKey="OK"><sawkpi:statusText><saw:caption><saw:text>OK</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="greater"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Revenue&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">95</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="green" icon="fmap:common/kpi_ok_status.gif"/></sawkpi:thresholdRange><sawkpi:thresholdRange ID="80ecc301-0b96-1000-8567-0ae4eb540000" value="50" assessmentStateKey="WARNING"><sawkpi:statusText><saw:caption><saw:text>WARNING</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="greater"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Revenue&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">50</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="yellow" icon="fmap:common/kpi_warning_status.gif"/></sawkpi:thresholdRange><sawkpi:thresholdRange ID="80ecc302-0b96-1000-8567-0ae4eb540000" value="0" assessmentStateKey="CRITICAL"><sawkpi:statusText><saw:caption><saw:text>CRITICAL</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="lessOrEqual"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Revenue&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">50</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="red" icon="fmap:common/kpi_critical_status.gif"/></sawkpi:thresholdRange></sawkpi:thresholds>[[
    File:catalogimpl.cpp
    Line:1214
    Location:
      saw.subsystem.catalog.initialize.upgrade
      saw.subsystem.catalog.initialize
      saw.subsystems.catalogbootstrapper.loadcatalog
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:22.000+05:30] [OBIPS] [ERROR:10] [] [saw.subsystem.catalog.initialize.upgrade] [ecid: ] [tid: ] Error reading object: /shared/Sample Lite/KPIs/Sample KPI
    Element doesn't contain required attribute treatNoDataAs.
    Node: <sawkpi:thresholds xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sawkpi="com.siebel.analytics.web/kpi/v1" xmlns:saw="com.siebel.analytics.web/report/v1.1" goal="high"><sawkpi:thresholdRange ID="80ecc300-0b96-1000-8567-0ae4eb540000" value="100" assessmentStateKey="OK"><sawkpi:statusText><saw:caption><saw:text>OK</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="greater"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Revenue&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">95</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="green" icon="fmap:common/kpi_ok_status.gif"/></sawkpi:thresholdRange><sawkpi:thresholdRange ID="80ecc301-0b96-1000-8567-0ae4eb540000" value="50" assessmentStateKey="WARNING"><sawkpi:statusText><saw:caption><saw:text>WARNING</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="greater"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Revenue&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">50</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="yellow" icon="fmap:common/kpi_warning_status.gif"/></sawkpi:thresholdRange><sawkpi:thresholdRange ID="80ecc302-0b96-1000-8567-0ae4eb540000" value="0" assessmentStateKey="CRITICAL"><sawkpi:statusText><saw:caption><saw:text>CRITICAL</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="lessOrEqual"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Revenue&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">50</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="red" icon="fmap:common/kpi_critical_status.gif"/></sawkpi:thresholdRange></sawkpi:thresholds>[[
    File:catalogimpl.cpp
    Line:1214
    Location:
      saw.subsystem.catalog.initialize.upgrade
      saw.subsystem.catalog.initialize
      saw.subsystems.catalogbootstrapper.loadcatalog
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:22.000+05:30] [OBIPS] [ERROR:10] [] [saw.subsystem.catalog.initialize.upgrade] [ecid: ] [tid: ] Error reading object: /shared/Sample Lite/KPIs/Unit Price
    Element doesn't contain required attribute treatNoDataAs.
    Node: <sawkpi:thresholds xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sawkpi="com.siebel.analytics.web/kpi/v1" xmlns:saw="com.siebel.analytics.web/report/v1.1" goal="high"><sawkpi:thresholdRange ID="81c15110-0b96-1000-8567-0ae4eb540000" value="100" assessmentStateKey="OK"><sawkpi:statusText><saw:caption><saw:text>OK</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="greater"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Actual Unit Price&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">90</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="green" icon="fmap:common/kpi_ok_status.gif"/></sawkpi:thresholdRange><sawkpi:thresholdRange ID="81c15111-0b96-1000-8567-0ae4eb540000" value="50" assessmentStateKey="WARNING"><sawkpi:statusText><saw:caption><saw:text>WARNING</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="greater"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Actual Unit Price&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">50</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="yellow" icon="fmap:common/kpi_warning_status.gif"/></sawkpi:thresholdRange><sawkpi:thresholdRange ID="81c17820-0b96-1000-8567-0ae4eb540000" value="0" assessmentStateKey="CRITICAL"><sawkpi:statusText><saw:caption><saw:text>CRITICAL</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="lessOrEqual"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Actual Unit Price&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">50</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="red" icon="fmap:common/kpi_critical_status.gif"/></sawkpi:thresholdRange></sawkpi:thresholds>[[
    File:catalogimpl.cpp
    Line:1214
    Location:
      saw.subsystem.catalog.initialize.upgrade
      saw.subsystem.catalog.initialize
      saw.subsystems.catalogbootstrapper.loadcatalog
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:22.000+05:30] [OBIPS] [WARNING:16] [] [saw.catalog.item.properties.set] [ecid: ] [tid: ] Adding property Desc with value Data Source: BIP WS getFolderContent
    [http://localhost:7001/xmlpserver/services/v2/CatalogService?wsdl]
    Parameters: User ID, Password, Folder Path --
    Note: Edit the data set and change host name & port to match the BIP server's host and port in your environment. exceeds an entry's the maximum size soft limit 256. There are 263 bytes in this property for item /shared/Sample Lite/Published Reporting/Data Models/WS getFolderContent DM.xdm.[[
    File:itemimpl.cpp
    Line:1555
    Location:
      saw.catalog.item.properties.set
      saw.catalog.impl.read
      saw.catalog.impl.scour
      saw.subsystem.catalog.initialize.upgrade
      saw.subsystem.catalog.initialize
      saw.subsystems.catalogbootstrapper.loadcatalog
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:23.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.subsystem.catalog.initialize.upgrade] [ecid: ] [tid: ] Succeeded in updating account GUIDs from back end user population store[[
    File:initializecatalog.cpp
    Line:1131
    Location:
      saw.subsystem.catalog.initialize.upgrade
      saw.subsystem.catalog.initialize
      saw.subsystems.catalogbootstrapper.loadcatalog
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:36.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:51:47.000+05:30] [OBIPS] [WARNING:16] [] [saw.subsystem.security.getMasterSession] [ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-000000000000009b,0:1] [tid: 2268] Server accessed with unsupported UA (Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322))[[
    File:ssdevice.cpp
    Line:1454
    Location:
      saw.subsystem.security.getMasterSession
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-000000000000009b,0:1
    ThreadID: 2268
    [2013-10-13T20:52:07.000+05:30] [OBIPS] [WARNING:16] [] [saw.subsystem.security.getMasterSession] [ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000a5,0:1] [tid: 2268] Server accessed with unsupported UA (Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322))[[
    File:ssdevice.cpp
    Line:1454
    Location:
      saw.subsystem.security.getMasterSession
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000a5,0:1
    ThreadID: 2268
    [2013-10-13T20:57:21.000+05:30] [OBIPS] [WARNING:16] [] [saw.subsystem.security.getMasterSession] [ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000b7,0:1] [tid: 2268] Server accessed with unsupported UA (Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322))[[
    File:ssdevice.cpp
    Line:1454
    Location:
      saw.subsystem.security.getMasterSession
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000b7,0:1
    ThreadID: 2268
    [2013-10-13T20:57:27.000+05:30] [OBIPS] [WARNING:16] [] [saw.subsystem.security.getMasterSession] [ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000c1,0:1] [tid: 2268] Server accessed with unsupported UA (Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Firefox/24.0)[[
    File:ssdevice.cpp
    Line:1454
    Location:
      saw.subsystem.security.getMasterSession
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000c1,0:1
    ThreadID: 2268
    [2013-10-13T20:57:41.000+05:30] [OBIPS] [WARNING:16] [] [saw.subsystem.security.getMasterSession] [ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000d1,0:1] [tid: 2268] Server accessed with unsupported UA (Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Firefox/24.0)[[
    File:ssdevice.cpp
    Line:1454
    Location:
      saw.subsystem.security.getMasterSession
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000d1,0:1
    ThreadID: 2268
    [2013-10-13T21:02:19.000+05:30] [OBIPS] [WARNING:16] [] [saw.subsystem.security.getMasterSession] [ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000dc,0:1] [tid: 2268] Server accessed with unsupported UA (Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Firefox/24.0)[[
    File:ssdevice.cpp
    Line:1454
    Location:
      saw.subsystem.security.getMasterSession
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000dc,0:1
    ThreadID: 2268
    [2013-10-13T21:15:13.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T21:15:14.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T21:15:21.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T21:15:41.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.session.logon] [ecid: 585eecf65d051a4f:-1b61c7d:141b27ba80a:-8000-0000000000000894,0:1:1] [tid: 4020] User weblogic logged in (session ID: 0ohicbclpat90s0amqt8u2as2nhsd0ftcrrl0bi  ). [[
    File:masterclientsession.cpp
    Line:366
    Location:
      saw.securitysubsystem.session.logon
      saw.securitysubsystem.checkauthentication.runimpl
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:-1b61c7d:141b27ba80a:-8000-0000000000000894,0:1:1
    ThreadID: 4020
    [2013-10-13T21:15:42.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.security.userpopulationcache.getparentapproles] [ecid: 585eecf65d051a4f:-1b61c7d:141b27ba80a:-8000-000000000000089a,0:1] [tid: 3808] Populating application role hierarchy for the first time.[[
    File:userpopulationcache.cpp
    Line:202
    Location:
      saw.security.userpopulationcache.getparentapproles
      saw.security.securityimpl.getPermissions
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: 0ohicbclpat90s0amqt8u2as2nhsd0ftcrrl0bi
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:-1b61c7d:141b27ba80a:-8000-000000000000089a,0:1
    ThreadID: 3808
    HttpCommand: bieehome
    RemoteIP: 169.254.25.129
    HttpArgs: icharset='windows-1252',startPage='1'
    [2013-10-13T21:15:42.000+05:30] [OBIPS] [WARNING:16] [] [saw.catalog.item.properties.set] [ecid: 585eecf65d051a4f:-1b61c7d:141b27ba80a:-8000-000000000000089a,0:1] [tid: 3808] Adding property Desc with value Data Source: BIP WS getFolderContent
    [http://localhost:7001/xmlpserver/services/v2/CatalogService?wsdl]
    Parameters: User ID, Password, Folder Path --
    Note: Edit the data set and change host name & port to match the BIP server's host and port in your environment. exceeds an entry's the maximum size soft limit 256. There are 263 bytes in this property for item /shared/Sample Lite/Published Reporting/Data Models/WS getFolderContent DM.xdm.[[
    File:itemimpl.cpp
    Line:1555
    Location:
      saw.catalog.item.properties.set
      saw.catalog.impl.read
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: 0ohicbclpat90s0amqt8u2as2nhsd0ftcrrl0bi
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:-1b61c7d:141b27ba80a:-8000-000000000000089a,0:1
    ThreadID: 3808
    HttpCommand: bieehome
    RemoteIP: 169.254.25.129
    [2013-10-13T21:22:07.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHnU5hIsp3FCw70FyWMF0000S4000006,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHnU5hIsp3FCw70FyWMF0000S4000006,0
    [2013-10-13T21:22:07.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHnU5hIsp3FCw70FyWMF0000S4000006,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHnU5hIsp3FCw70FyWMF0000S4000006,0
    [2013-10-13T21:25:49.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T21:25:50.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T21:25:55.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T21:29:53.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.session.logon] [ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-0000000000000f5a,0:1:1] [tid: 1948] User ukumar46 logged in (session ID: pr7cdripddh1k94k1ortpvbk27sis4j0uqm6kl2  ). [[
    File:masterclientsession.cpp
    Line:366
    Location:
      saw.securitysubsystem.session.logon
      saw.securitysubsystem.checkauthentication.runimpl
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-0000000000000f5a,0:1:1
    ThreadID: 1948
    [2013-10-13T21:29:58.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.security.userpopulationcache.getparentapproles] [ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-0000000000000f5e,0:1] [tid: 224] Populating application role hierarchy for the first time.[[
    File:userpopulationcache.cpp
    Line:202
    Location:
      saw.security.userpopulationcache.getparentapproles
      saw.security.securityimpl.getPermissions
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: pr7cdripddh1k94k1ortpvbk27sis4j0uqm6kl2
    AuthProps: 
    ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-0000000000000f5e,0:1
    ThreadID: 224
    HttpCommand: bieehome
    RemoteIP: 169.254.25.129
    HttpArgs: icharset='windows-1252',startPage='1'
    [2013-10-13T23:53:49.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0
    [2013-10-13T23:53:49.000+05:30] [OBIPS] [ERROR:16] [] [saw.dms.conext.unwrap] [ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0:4] [tid: 1372] Failed to restore ctx from reference[[
    File:executioncontext.cpp
    Line:286
    Location:
      saw.dms.conext.unwrap
      saw.threadpool
      saw.threads
    ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0:4
    ThreadID: 1372
    [2013-10-13T23:53:49.000+05:30] [OBIPS] [ERROR:16] [] [saw.dms.conext.unwrap] [ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0:89] [tid: 2352] Failed to restore ctx from reference[[
    File:executioncontext.cpp
    Line:286
    Location:
      saw.dms.conext.unwrap
      saw.threadpool
      saw.threads
    ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0:89
    ThreadID: 2352
    [2013-10-13T23:53:49.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0
    [2013-10-13T23:54:50.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T23:54:51.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T23:54:55.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T23:55:46.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.session.logon] [ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-000000000000118a,0:1:1] [tid: 6116] User weblogic logged in (session ID: tgousq2n96gqge2gsgg12a0n6sqpcr0hn64tnoi  ). [[
    File:masterclientsession.cpp
    Line:366
    Location:
      saw.securitysubsystem.session.logon
      saw.securitysubsystem.checkauthentication.runimpl
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-000000000000118a,0:1:1
    ThreadID: 6116
    [2013-10-13T23:55:50.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.security.userpopulationcache.getparentapproles] [ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-000000000000118e,0:1] [tid: 4900] Populating application role hierarchy for the first time.[[
    File:userpopulationcache.cpp
    Line:202
    Location:
      saw.security.userpopulationcache.getparentapproles
      saw.security.securityimpl.getPermissions
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: tgousq2n96gqge2gsgg12a0n6sqpcr0hn64tnoi
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-000000000000118e,0:1
    ThreadID: 4900
    HttpCommand: BIEEHome
    RemoteIP: 169.254.25.129
    HttpArgs: icharset='windows-1252',startPage='1'
    [2013-10-13T23:55:50.000+05:30] [OBIPS] [WARNING:16] [] [saw.catalog.item.properties.set] [ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-000000000000118e,0:1] [tid: 4900] Adding property Desc with value Data Source: BIP WS getFolderContent
    [http://localhost:7001/xmlpserver/services/v2/CatalogService?wsdl]
    Parameters: User ID, Password, Folder Path --
    Note: Edit the data set and change host name & port to match the BIP server's host and port in your environment. exceeds an entry's the maximum size soft limit 256. There are 263 bytes in this property for item /shared/Sample Lite/Published Reporting/Data Models/WS getFolderContent DM.xdm.[[
    File:itemimpl.cpp
    Line:1555
    Location:
      saw.catalog.item.properties.set
      saw.catalog.impl.read
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: tgousq2n96gqge2gsgg12a0n6sqpcr0hn64tnoi
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-000000000000118e,0:1
    ThreadID: 4900
    HttpCommand: BIEEHome
    RemoteIP: 169.254.25.129
    [2013-10-13T23:57:35.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.session.logoff] [ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-00000000000011f6,0:1] [tid: 4900] User weblogic logged out (session ID: tgousq2n96gqge2gsgg12a0n6sqpcr0hn64tnoi ).[[
    File:masterclientsession.cpp
    Line:462
    Location:
      saw.securitysubsystem.session.logoff
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: tgousq2n96gqge2gsgg12a0n6sqpcr0hn64tnoi
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-00000000000011f6,0:1
    ThreadID: 4900
    HttpCommand: Logoff
    RemoteIP: 169.254.25.129
    HttpArgs: 
    [2013-10-13T23:58:32.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHnb0P2Uj3FCw70FyWMF0001B4000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHnb0P2Uj3FCw70FyWMF0001B4000003,0
    [2013-10-13T23:58:32.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHnb0P2Uj3FCw70FyWMF0001B4000003,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHnb0P2Uj3FCw70FyWMF0001B4000003,0
    [2013-10-18T21:35:18.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-18T21:35:19.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-18T21:35:32.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-18T22:00:10.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.session.logon] [ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000040c,0:1:1] [tid: 3820] User weblogic logged in (session ID: 0kt172oncmo2vebhuborpulf31oa32v6ubafdeq  ). [[
    File:masterclientsession.cpp
    Line:366
    Location:
      saw.securitysubsystem.session.logon
      saw.securitysubsystem.checkauthentication.runimpl
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000040c,0:1:1
    ThreadID: 3820
    [2013-10-18T22:00:10.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.security.userpopulationcache.getparentapproles] [ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000042e,0:1] [tid: 3248] Populating application role hierarchy for the first time.[[
    File:userpopulationcache.cpp
    Line:202
    Location:
      saw.security.userpopulationcache.getparentapproles
      saw.security.securityimpl.getPermissions
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: 0kt172oncmo2vebhuborpulf31oa32v6ubafdeq
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000042e,0:1
    ThreadID: 3248
    HttpCommand: bieehome
    RemoteIP: 169.254.25.129
    HttpArgs: icharset='windows-1252',startPage='1'
    [2013-10-18T22:00:11.000+05:30] [OBIPS] [WARNING:16] [] [saw.catalog.item.properties.set] [ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000042e,0:1] [tid: 3248] Adding property Desc with value Data Source: BIP WS getFolderContent
    [http://localhost:7001/xmlpserver/services/v2/CatalogService?wsdl]
    Parameters: User ID, Password, Folder Path --
    Note: Edit the data set and change host name & port to match the BIP server's host and port in your environment. exceeds an entry's the maximum size soft limit 256. There are 263 bytes in this property for item /shared/Sample Lite/Published Reporting/Data Models/WS getFolderContent DM.xdm.[[
    File:itemimpl.cpp
    Line:1555
    Location:
      saw.catalog.item.properties.set
      saw.catalog.impl.read
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: 0kt172oncmo2vebhuborpulf31oa32v6ubafdeq
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000042e,0:1
    ThreadID: 3248
    HttpCommand: bieehome
    RemoteIP: 169.254.25.129
    [2013-10-18T23:13:01.000+05:30] [OBIPS] [ERROR:16] [] [saw.taskScheduler.processJob] [ecid: 00iHtlYRxDu3FCw70FyWMF000048000000,0:766] [tid: 1320] Running task 'Cache/Query' finished in 3609 milliseconds, 24.0% of job's frequency (15 seconds).[[
    File:taskscheduler.cpp
    Line:423
    Location:
      saw.taskScheduler.processJob
      saw.threadpool
      saw.threads
    ecid: 00iHtlYRxDu3FCw70FyWMF000048000000,0:766
    ThreadID: 1320
    task: Cache/Query
    [2013-10-18T23:13:04.000+05:30] [OBIPS] [WARNING:16] [] [saw.taskScheduler.processJob] [ecid: 00iHtlYRxDu3FCw70FyWMF000048000000,0:769] [tid: 3972] Running task 'Cache/ReportCache/CleanupXMLDiskCache' finished in 6547 milliseconds, 5.4% of job's frequency (120 seconds).[[
    File:taskscheduler.cpp
    Line:423
    Location:
      saw.taskScheduler.processJob
      saw.threadpool
      saw.threads
    ecid: 00iHtlYRxDu3FCw70FyWMF000048000000,0:769
    ThreadID: 3972
    task: Cache/ReportCache/CleanupXMLDiskCache
    [2013-10-18T23:29:13.000+05:30] [OBIPS] [ERROR:16] [] [saw.dms.conext.unwrap] [ecid: 00iHtlZ5Zs43FCw70FyWMF000048000006,0:87] [tid: 3248] Failed to restore ctx from reference[[
    File:executioncontext.cpp
    Line:286
    Location:
      saw.dms.conext.unwrap
      saw.threadpool
      saw.threads
    ecid: 00iHtlZ5Zs43FCw70FyWMF000048000006,0:87
    ThreadID: 3248
    [2013-10-18T23:32:43.000+05:30] [OBIPS] [WARNING:16] [] [saw.threadpool.performance] [ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000065b,0:1] [tid: 3456] ThreadPool<HostLookup>.Thread count: running  0, maximum 1, idle 0. Jobs pending: 1.  No available threads, creating new thread for job. Approaching configured maximum for total number of threads.[[
    File:threadpool.cpp
    Line:661
    Location:
      saw.threadpool.performance
      saw.threadpool
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: 0kt172oncmo2vebhuborpulf31oa32v6ubafdeq
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000065b,0:1
    ThreadID: 3456
    HttpCommand: Sessions
    RemoteIP: 169.254.25.129
    threadpool: HostLookup
    [2013-10-18T23:36:41.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.session.logoff] [ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-0000000000000673,0:1] [tid: 3456] User weblogic logged out (session ID: 0kt172oncmo2vebhuborpulf31oa32v6ubafdeq ).[[
    File:masterclientsession.cpp
    Line:462
    Location:
      saw.securitysubsystem.session.logoff
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: 0kt172oncmo2vebhuborpulf31oa32v6ubafdeq
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-0000000000000673,0:1
    ThreadID: 3456
    HttpCommand: Logoff
    RemoteIP: 169.254.25.129
    HttpArgs: 
    [2013-10-18T23:36:52.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.session.logon] [ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-0000000000000a21,0:1:1] [tid: 2136] User weblogic logged in (session ID: behogqbi3f7quodtfe89msfuenpe4poli7vviei  ). [[
    File:masterclientsession.cpp
    Line:366
    Location:
      saw.securitysubsystem.session.logon
      saw.securitysubsystem.checkauthentication.runimpl
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-0000000000000a21,0:1:1
    ThreadID: 2136
    [2013-10-18T23:36:52.000+05:30] [OBIPS] [WARNING:16] [] [saw.catalog.item.properties.set] [ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-0000000000000a25,0:1] [tid: 3456] Adding property Desc with value Data Source: BIP WS getFolderContent
    [http://localhost:7001/xmlpserver/services/v2/CatalogService?wsdl]
    Parameters: User ID, Password, Folder Path --
    Note: Edit the data set and change host name & port to match the BIP server's host and port in your environment. exceeds an entry's the maximum size soft limit 256. There are 263 bytes in this property for item /shared/Sample Lite/Published Reporting/Data Models/WS getFolderContent DM.xdm.[[
    File:itemimpl.cpp
    Line:1555
    Location:
      saw.catalog.item.properties.set
      saw.catalog.impl.read
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: behogqbi3f7quodtfe89msfuenpe4poli7vviei
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-0000000000000a25,0:1
    ThreadID: 3456
    HttpCommand: BIEEHome
    RemoteIP: 169.254.25.129
    [2013-10-19T15:39:35.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T15:39:36.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T15:39:53.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T16:17:49.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHui8xZUj3FCw70FyWMF0000w8000006,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHui8xZUj3FCw70FyWMF0000w8000006,0
    [2013-10-19T16:17:49.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHui8xZUj3FCw70FyWMF0000w8000006,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHui8xZUj3FCw70FyWMF0000w8000006,0
    [2013-10-19T16:21:20.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T16:21:21.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T16:21:28.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T16:46:45.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHukTcpk73FCw70FyWMF0000x^000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHukTcpk73FCw70FyWMF0000x^000003,0
    [2013-10-19T16:46:45.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHukTcpk73FCw70FyWMF0000x^000003,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHukTcpk73FCw70FyWMF0000x^000003,0
    [2013-10-19T16:47:37.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T16:47:38.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T16:47:45.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T17:14:14.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHulvdjzm3FCw70FyWMF0000Bo000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHulvdjzm3FCw70FyWMF0000Bo000003,0
    [2013-10-19T17:14:14.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHulvdjzm3FCw70FyWMF0000Bo000003,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHulvdjzm3FCw70FyWMF0000Bo000003,0
    [2013-10-19T17:40:44.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T17:40:46.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T17:40:52.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T23:01:26.000+05:30] [OBIPS] [ERROR:16] [] [saw.dms.conext.unwrap] [ecid: 00iHuotaMko4QtwN0ErY6F000164000003,0:14] [tid: 5244] Failed to restore ctx from reference[[
    File:executioncontext.cpp
    Line:286
    Location:
      saw.dms.conext.unwrap
      saw.threadpool
      saw.threads
    ecid: 00iHuotaMko4QtwN0ErY6F000164000003,0:14
    ThreadID: 5244
    [2013-10-20T02:04:06.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHuotaMko4QtwN0ErY6F000164000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHuotaMko4QtwN0ErY6F000164000003,0
    [2013-10-20T02:04:06.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHuotaMko4QtwN0ErY6F000164000003,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHuotaMko4QtwN0ErY6F000164000003,0
    [2013-10-20T11:48:46.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-20T11:48:47.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-20T11:48:57.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-20T15:46:37.000+05:30] [OBIPS] [ERROR:16] [] [saw.dms.conext.unwrap] [ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0:14] [tid: 2112] Failed to restore ctx from reference[[
    File:executioncontext.cpp
    Line:286
    Location:
      saw.dms.conext.unwrap
      saw.threadpool
      saw.threads
    ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0:14
    ThreadID: 2112
    [2013-10-20T16:39:48.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0
    [2013-10-20T16:39:48.000+05:30] [OBIPS] [ERROR:16] [] [saw.dms.conext.unwrap] [ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0:12] [tid: 3188] Failed to restore ctx from reference[[
    File:executioncontext.cpp
    Line:286
    Location:
      saw.dms.conext.unwrap
      saw.threadpool
      saw.threads
    ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0:12
    ThreadID: 3188
    [2013-10-20T16:39:48.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0
    [2013-10-26T14:10:43.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-26T14:10:44.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-26T14:10:53.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-26T18:12:31.000+05:30] [OBIPS] [WARNING:16] [] [saw.taskScheduler.processJob] [ecid: 00iI3SRDYQc4QtwN0ErY6F0000_S000000,0:3253] [tid: 2376] Running task 'Catalog crawler' finished in 30781 milliseconds, 0.8% of job's frequency (3600 seconds).[[
    File:taskscheduler.cpp
    Line:423
    Location:
      saw.taskScheduler.processJob
      saw.threadpool
      saw.threads
    ecid: 00iI3SRDYQc4QtwN0ErY6F0000_S000000,0:3253
    ThreadID: 2376
    task: Catalog crawler
    [2013-10-26T19:13:13.000+05:30] [OBIPS] [WARNING:16] [] [saw.taskScheduler.processJob] [ecid: 00iI3SRDYQc4QtwN0ErY6F0000_S000000,0:4115] [tid: 1768] Running task 'Catalog crawler' finished in 39547 milliseconds, 1.0% of job's frequency (3600 seconds).[[
    File:taskscheduler.cpp
    Line:423
    Location:
      saw.taskScheduler.processJob
      saw.threadpool
      saw.threads
    ecid: 00iI3SRDYQc4QtwN0ErY6F0000_S000000,0:4115
    ThreadID: 1768
    task: Catalog crawler
    [2013-10-26T22:44:23.000+05:30] [OBIPS] [ERROR:16] [] [saw.dms.conext.unwrap] [ecid: 00iI3SRXSXa4QtwN0ErY6F0000_S000006,0:143] [tid: 980] Failed to restore ctx from reference[[
    File:executioncontext.cpp
    Line:286
    Location:
      saw.dms.conext.unwrap
      saw.threadpool
      saw.threads
    ecid: 00iI3SRXSXa4QtwN0ErY6F0000_S000006,0:143
    ThreadID: 980
    [2013-10-26T23:06:48.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-26T23:06:50.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-26T23:06:57.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-26T23:16:28.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iI3uOfhJc4QtwN0ErY6F0000f4000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iI3uOfhJc4QtwN0ErY6F0000f4000003,0
    [2013-10-26T23:16:28.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iI3uOfhJc4QtwN0ErY6F0000f4000003,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iI3uOfhJc4QtwN0ErY6F0000f4000003,0
    [2013-10-29T22:53:32.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-29T22:53:34.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-29T22:53:42.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-29T22:54:17.000+05:30] [OBIPS] [WARNING:16] [] [saw.taskScheduler.processJob] [ecid: 00iI7f2ZR^04QtwN0ErY6F0000qk000000,0:34] [tid: 2152] Running task 'Catalog crawler' finished in 31172 milliseconds, 0.8% of job's frequency (3600 seconds).[[
    File:taskscheduler.cpp
    Line:423
    Location:
      saw.taskScheduler.processJob
      saw.threadpool
      saw.threads
    ecid: 00iI7f2ZR^04QtwN0ErY6F0000qk000000,0:34
    ThreadID: 2152
    task: Catalog crawler
    [2013-10-29T23:25:48.000+05:30] [OBIPS] [ERROR:16] [] [saw.threads] [ecid: 00iI7f2_HoN4QtwN0ErY6F0000qk000002,0] [tid: 1872] Error while executing job in PollThread.[[
    File:pollthreaddef.h
    Line:147
    Location:
      saw.threads
    ecid: 00iI7f2_HoN4QtwN0ErY6F0000qk000002,0
    ThreadID: 1872
    [2013-10-29T23:25:49.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iI7f2pCLu4QtwN0ErY6F0000qk000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iI7f2pCLu4QtwN0ErY6F0000qk000003,0
    [2013-10-29T23:25:49.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iI7f2pCLu4QtwN0ErY6F0000qk000003,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iI7f2pCLu4QtwN0ErY6F0000qk000003,0
    [2013-10-29T23:27:01.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-29T23:27:02.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-29T23:27:09.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-29T23:46:43.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iI7guS2Tx4QtwN0ErY6F0000rK000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iI7guS2Tx4QtwN0ErY6F0000rK000003,0

  • Please help problem with GUI

    Hi
    I have two problems firstly when i try to assign a method to a button to a GUI
         JButton SetPrice = new JButton ("Set Price");
            contentPane.add( SetPrice);
             SetPrice.addActionListener(new ActionListener() {
                                   public void actionPerformed(ActionEvent e) {  SetPrice ();    }This is teh code i am using to set up teh button on teh display.Belwo is the method it should run.
    public double SetPrice( int price)
             if (price <= 199.9){
           Cost= price;
             return Cost;
            else {
              System.out.println ( "Set a price which is less than 199.9");
              return Cost; }
            }When i try to compile it comes up with when i comipile
    SetPrice (int) in Shop cannot be applied to ()The variable has type double.So pelase my someone show me how to make the action listener button run this method.
    Thanks

    JButton SetPrice = new JButton ("Set Price");
            contentPane.add( SetPrice);
             SetPrice.addActionListener(this);
    SetPrice.setActionCommand("setprice");
    public void actionPerformed(ActionEvent e) {
    String action=e.getActionCommand();
    if(action.equals("setprice") {
    //do something
        }

  • Problems with XP login screen

    I recently installed a G-force4 MX440-T8X and while installing the software, it disabled my fast switch login screen in win XP and it will not allow me to change it back.  I have tried uninstalling all of the software as well as that piece of hardware and nothing works.  It seems to have installed some third party software that controls my display properties with no way to uninstall it.  Does anyone know the solution to this problem?
    thanks

    What version of drivers and where did you get them?

  • Having problems with GUI

    Goodday all, I'm having a problem getting this GUI for a simulation game up and running. I've added four panels which each house components for instance buttons, text area etc. And I've created another panel to house the image that should be set for the background. I've heard that the best way to achieve this is to use getLayeredPane(), but I think that's the problem. The panel simDisplay holds the title for the simulation, simControls hold start and stop simulation buttons, simGrid holds a grid on which the simulation is played (still working on that) and simDisplayControls is a panel that holds a textArea and button to run the simulation again. The textArea is a display area for the status of the simulation (for instance which characters moved, how many are there remaining etc ). The simDisplay was placed NORTH, simGRID CENTER, simControls EAST, and simDisplayContols SOUTH. Before I added the getLayeredPane so that I can view the image as the background, each of these panels were in their respective positions within the layout...now that I have, only some components are visible. As soon as I comment out that line of code with getLayeredPane all the components show exactly how I want them to which is in the positions I specified above (NORTH, SOUTH etc). I'm wondering if the fact that I used the BoxLayout to position the components within their panels is conflicting with the layeredPane. I'm new to this so any help will be greatly appreciated. Thank You ;)
    import javax.swing.*;
    import java.awt.*;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Image;
    public class Simulation extends JFrame{
    //create new panels, image icons and buttons
    JLayeredPane panel = new JLayeredPane();
    JPanel panel2 = new JPanel();
    JPanel simDisplayControls = new JPanel();
    public JButton start = new JButton("Start Simulation");
    public JButton stop = new JButton("Stop Simulation");
    private JTextArea turnDisplay;
    public JButton next = new JButton("Next Time Step");
    JPanel simDisplay = new JPanel();
    JPanel simGrid = new JPanel ();
    JPanel simControls = new JPanel();
    //GUI main function
    public static void main(String[] args){
    Simulation example = new Simulation();
    //GUI constructor
    public Simulation() {
    BorderLayout b = new BorderLayout();
    setLayout(b);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    BorderLayout panelout = new BorderLayout( 0, 0 );
    panel.setLayout(panelout);
    //Set image as simulation background
    ImageIcon myIcon = new ImageIcon("background2.jpg");
    JLabel picLabel = new JLabel(myIcon);
    panel2.add(picLabel);
    picLabel.setBounds(0, 0, myIcon.getIconWidth(), myIcon.getIconHeight());
    getLayeredPane().add(picLabel, new Integer.MIN_VALUE);
    panel.setOpaque(false);
    //set content pane to main panel containing all other panels
    setContentPane(panel);
    simGrid.setLayout (new GridLayout (20, 20));
    // create text area to display status after each time step of the simulation
    turnDisplay = new JTextArea("Doodlebug Turn", 10, 40);
    JScrollPane scrollingDisplay = new JScrollPane(turnDisplay);
    simDisplayControls.add(scrollingDisplay);
    turnDisplay.setBorder(BorderFactory.createEmptyBorder(4, 4, 4, 4));
    //create horizontal box to house status display and "next time step" button
    Box simDisplayBox = Box.createHorizontalBox();
    simDisplayBox.add(Box.createHorizontalGlue());
    simDisplayBox.add(turnDisplay);
    simDisplayBox.add(Box.createHorizontalStrut(40));
    simDisplayBox.add(next);
    simDisplayBox.add(Box.createHorizontalStrut(30));
    //create vertical box to house "start" and "stop" simulation buttons
    Box simControlBox = Box.createVerticalBox();
    simControlBox.add(Box.createVerticalStrut(80));
    simControlBox.add(start);
    simControlBox.add(Box.createVerticalStrut(60));
    simControlBox.add(stop);
    simControlBox.add(Box.createVerticalGlue());
    //create label containing the title of the simulation
    JLabel title = new JLabel("Sim Title");
    //add title label and box containing simulation control buttons to their respective panels
    simDisplay.add(title);
    simControls.add(simControlBox);
    //add box containing status display and "next time step" button to its coresponding panel
    simDisplayControls.add(simDisplayBox);
    //add panels to the main panel
    panel.add(simDisplay, BorderLayout.NORTH);
    panel.add(simGrid, BorderLayout.CENTER);
    panel.add(simControls, BorderLayout.EAST);
    panel.add(simDisplayControls, BorderLayout.SOUTH);
    //set size of the frame
    setSize(800, 700);
    setVisible(true);// make the frame visible
    }

    Don't put the image on the layeredpane, and in fact don't create a class that subclasses JFrame. You're far better off subclassing a JPanel and drawing the image in the JPanel by overriding its paintComponent method, calling drawImage(...) in the same paintComponent method after checking that the image isn't null. Then adding all of your components to this JPanel. Be sure that the JPanels sitting on top of the main JPanel all have their opaque property set to false.
    Then when you're ready to show the app, create a JFrame on the fly, place your JPanel into the JFrame's contentPane, pack the JFrame, set it's location, and show it.
    for instance:
    import javax.imageio.ImageIO;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.io.IOException;
    import java.net.URL;
    public class Simulation extends JFrame
      //TODO: change this to point to your desired background image
      private static final String BACKGROUND =
        "http://upload.wikimedia.org/wikipedia/" +
        "commons/8/8e/Nebelostfriesland.jpg";
      JPanel panel = new JPanel()
        protected void paintComponent(Graphics g)
          super.paintComponent(g);
          myPaint(g);
      private BufferedImage image;
      private void myPaint(Graphics g)
        if (image != null)
          g.drawImage(image, 0, 0, panel.getWidth(), panel.getHeight(), panel);
      public Simulation()
        try
          // or if using a file on disk, can use a File here or an InputStream
          image = ImageIO.read(new URL(BACKGROUND));
        catch (IOException e)
          e.printStackTrace();
        panel2.setOpaque(false);
        //panel.setOpaque(false);
        simGrid.setOpaque(false); // etc...
    }Edited by: Encephalopathic on Dec 1, 2008 3:23 PM

  • Problems with the login page in Portal release 2

    Hi,
    I have problems logging into portal, release 2 on Linux. I get the following error message when clicking the login link:
    Forbidden
    You don't have permission to access /pls/orasso/orasso.wwsso_app_admin.ls_login on this server.
    This used to work until I changes the password for the orasso user using 9IAS Enterprise Manager. The portal home page works fine. I've tryed to run the ssooconf.sql script, but this didn't help me much.
    Does anyone have any solution to this problem?
    Kjetil

    That's just a display of the license agreement. The login page is always at:
    http://127.0.0.1:8000/apex
    (You have to put the directory on there)
    ~Jer

  • SOS Problem with navigation rules

    Hello,
    I have been stuck for some time with a navigation problem: It seems my faces DD is read but the navigations rules are not. Unfortunately it does not give me any exception. The only thing that occurs is that the home page reloads itself instead of redirecting to the second page.
    Here is my DD:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"  "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
    <faces-config>
         <!-- ==============================  Application  ============================== -->
         <application>
              <locale-config>
                   <default-locale>en</default-locale>
              </locale-config>
         </application>
         <!-- ==============================  Managed Beans ============================== -->
         <managed-bean>
              <managed-bean-name>GuideSearchManagedBean</managed-bean-name>
              <managed-bean-class>com.softwareag.test_guide.web.temp.PGSearchManagedBean</managed-bean-class>
              <managed-bean-scope>session</managed-bean-scope>
         </managed-bean>
         <!-- ==============================   Navigation rules ============================== -->
         <navigation-rule>
              <from-view-id>/home.jsp</from-view-id>
              <navigation-case>
              <from-action>#{GuideSearchManagedBean.newSearchAction}</from-action>
              <from-outcome>displayResults</from-outcome>
              <to-view-id>/errorOccured.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
    </faces-config>Here is my jsf:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <f:view>
    <html>
    <head>
    <title>home</title>
    </head>
    <body>
    <h:form id="guide_form">
    category
    <h:selectOneMenu id="category" value="#{GuideSearchManagedBean.category}" required="true">
    <f:selectItem itemValue="2" itemLabel="resto"/>
    <f:selectItem itemValue="1" itemLabel="bar"/>
    <f:selectItem itemValue="3" itemLabel="disco"/>
    </h:selectOneMenu>
    <br /><br />
    postcode<br /><br />
    <h:selectManyListbox id="postcodes" value="#{GuideSearchManagedBean.postcodes}" required="true">
    <f:selectItem itemValue="75001" itemLabel="75001"/>
    <f:selectItem itemValue="75002" itemLabel="75002"/>
    <f:selectItem itemValue="75003" itemLabel="75003"/>
    <f:selectItem itemValue="75004" itemLabel="75004"/>
    <f:selectItem itemValue="75005" itemLabel="75005"/>
    <f:selectItem itemValue="75006" itemLabel="75006"/>
    </h:selectManyListbox>
    <br /><br />
    name
    <h:inputText id="name" value="#{GuideSearchManagedBean.name}"/>
    <br /><br />
    with comments
    <h:selectBooleanCheckbox id="commentsExist" value="#{GuideSearchManagedBean.commentsExist}"/>
    <br /><br />
    order by
    <h:selectOneRadio id="sortOrderCriterion" value="#{GuideSearchManagedBean.sortOrderCriterion}" layout="pageDirection">
      <f:selectItem itemValue="GRADES" itemLabel="note"/>
      <f:selectItem itemValue="DB_ESTABLISHMENT_NAME" itemLabel="name"/>
      <f:selectItem itemValue="DB_POSTCODE" itemLabel="postcode"/>
    </h:selectOneRadio>
    <br /><br />
    minimum note
    <h:selectOneMenu id="minimumNote" value="#{GuideSearchManagedBean.minimumNote}">
    <f:selectItem itemValue="1" itemLabel="1"/>
    <f:selectItem itemValue="2" itemLabel="2"/>
    <f:selectItem itemValue="3" itemLabel="3"/>
    <f:selectItem itemValue="4" itemLabel="4"/>
    <f:selectItem itemValue="5" itemLabel="5"/>
    </h:selectOneMenu>
    <br /><br />
    <h:commandButton id="submit" action="#{GuideSearchManagedBean.newSearchAction}" value="Submit" />
    </h:form>
    </body>
    </html>
    </f:view>Here is my Managed bean:
    package com.softwareag.test_guide.web.temp;
    import java.rmi.RemoteException;
    import java.util.List;
    import com.softwareag.test_guide.web.util.PGFactory;
    * @author Julien Martin
    public class PGSearchManagedBean {
         private String category;
         private List postcodes;
         private String name;
         private boolean commentsExist;
         private String sortOrderCriterion;
         private int minimumNote;
         public String newSearchAction(){
              System.out.println("----------within new search action--------------");//this line never gets printed
              return "displayResults";
         public String nextAction() throws RemoteException { //TODO: Remove that
              PGSearch search = PGFactory.getSearchInstance();
              String issue = search.next();
              return issue;
         public String previousAction() throws RemoteException { //TODO: Remove that
              PGSearch search = PGFactory.getSearchInstance();
              String issue = search.previous();
              return issue;
         public String getCategory() {
              return category;
         public boolean getCommentsExist() {
              return commentsExist;
         public int getMinimumNote() {
              return minimumNote;
         public String getName() {
              return name;
         public List getPostcodes() {
              return postcodes;
         public String getSortOrderCriterion() {
              return sortOrderCriterion;
         public void setCategory(String string) {
              category = string;
         public void setCommentsExist(boolean bool) {
              commentsExist = bool;
         public void setMinimumNote(int i) {
              minimumNote = i;
         public void setName(String string) {
              name = string;
         public void setPostcodes(List list) {
              postcodes = list;
         public void setSortOrderCriterion(String string) {
              sortOrderCriterion = string;
    }Can anyone help? I am really stuck. :-)
    Julien Martin.

    Hi,
    I added a messages component to your home.jsp page and saw that the page produced validation errors (often the cause for failed navigation).
    The problem is that the beans property minimumNote expects an int but gets a String. When you change the the type in the bean to String it works.
    You will probably want to add a converter to the uicomponent to get the correct type. I'd be happy to tell you how, but I'm just starting with jsf ;-).

Maybe you are looking for

  • Custom tag attribute question

    How to assign value of expression or variable to custom tag attribute in jsp?

  • IPhone 4s Ringtone No Longer Works

    My message alert tone will only work if the message application is open on the screen. This applies to vibrate as well. The ringtones still go off when receiving phone calls, but never for text messages. Help!

  • About Promotion Packs.

    Dear Experts, Greetings from Dubai ! I am looking for a standard step by step process for the following scenario: Scenerio 1: At times we have some finished products, which we need to send to a vendor for making promotion packs. In Simple terms, supp

  • OS 10.4.3, BlackMagic DeckLink Extreme and Motion 2.1 filter creshes

    Any update on what Apple or BlackMagic Design is doing about this issue? Is there a site that gives update information about what is going on, or when we will have a solution? Clemente

  • Corrupt Captivate 2 File

    Is there any way to recover a corrupt Captivate 2 file? Could renaming the file via file manager have caused the corruption? Luckily the file was a test demo so it is not a huge loss, but I would like to avoid this in the future if possible. Thanks!