Urgent anybody pls help problem: JTree

Hai all
I want to save the structure of a JTree. i.e if i have a tree structure as
level1
.... level2
.....level2
level1
Now I dynamically add a new node to tree. Then it collapses as
level1
But what i want is to maintain its structure with out collapsing i.e after adding node it should be like this
level1
.... level2
.....level2
......level2
level1
How can I do this ?
Thanks in advance
pradeep

Have you ever heard about data structure?
You can use IndexNo and IndexNoOfParentNode for each object which will specify index no. of node and the parent node respectively.
If you want the tree should persist its structure then you should store the structure may be in database or any other mechanism.

Similar Messages

  • Urgent anybody pls help problem: JTre

    Hai all
    Is there any method for checking whether the JTree contain any element or not .i.e to check if JTree is empty or not
    Waiting for reply

    Probably not, from memory (a long while ago) you have to check the model.
    Something like:
    public boolean isTreeEmpty (JTree t)
        Object root = t.getModel ().getRoot ();
        if ((root == null)
             ||
            (t.getModel ().getChildCount (root) == 0)
             return true;
        return false;
    }The second part of the if may or may not be required depending upon whether you want to call having a root node empty.

  • Error!Urgent!Pls Help.....Thank You

    I had the following error with the code below.......anyone pls help me ..... urgent.....I will be really appreciate it......Thank you in advanced.....
    I had created two statement,.....one is to select the value of Leave_Reason from a table and store it in the String Leave_Reason after that I need to insert the Leave_Reason variable's value together with other value which input from a form in the previous page....into another table....
    But I dun know why I encountered the error below....anyone pls help.....really urgent.....I had tried to solve it for two days already,,,,,
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 86 in the jsp file: /SilkAir/leave_request.jsp
    Generated servlet error:
    [javac] Compiling 1 source file
    C:\Tomcat 4.1\work\Standalone\localhost\_\SilkAir\leave_request_jsp.java:315: cannot resolve symbol
    symbol : variable Leave_Reason
    location: class org.apache.jsp.leave_request_jsp
    String Query = "INSERT INTO Leave_Application (Emp_Num, Leave_ID, Apply_Date, Leave_Date, Leave_Reason, Leave_Applied, Leave_Status) VALUES ('" + Emp_Num + "', '" + Leave_ID + "', '" Apply_Date "', '" + Leave_Date + "', '" + Leave_Reason + "', '" + Day + "', 'Pending')";
    ^
    1 error
         at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:130)
         at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:293)
         at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:340)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:352)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:474)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:184)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:432)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:386)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:530)
         at java.lang.Thread.run(Thread.java:536)
    <request.jsp>
    <%@page import="java.sql.*"%>
    <%@page import="java.util.Date"%>
    <%@page import="java.text.SimpleDateFormat"%>
    <html>
    <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    </head>
    <%
    String username = (String)session.getAttribute("username");
    %>
    <%
    //define connection
    Connection con = null;
    try{
    //get the class
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    //get the connection
         con = DriverManager.getConnection("jdbc:odbc:Database","","");
    //please catch your exceptions!
    catch(Exception e){
         out.println(e.getMessage());
    // form data
    String Emp= request.getParameter("txtEmp");
    String Leave_ID = request.getParameter("txtReason");
    java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy/MM/dd");
    String LeaveDate = request.getParameter("txtLeaveDate");
    java.util.Date dateU = sdf.parse(LeaveDate);
    java.sql.Date Leave_Date = new java.sql.Date(dateU.getTime());
    String Day = request.getParameter("txtDay");
    java.text.SimpleDateFormat rd = new java.text.SimpleDateFormat("yyyy/MM/dd");
    String ApplyDate = request.getParameter("txtApplyDate");
    java.util.Date dateR = rd.parse(ApplyDate);
    java.sql.Date Apply_Date = new java.sql.Date(dateR.getTime());
    // query statement
    ResultSet rs=null;
    Statement SQLStatement = con.createStatement();
    Statement stm = con.createStatement();
    String query = "SELECT DISTINCT LeaveType FROM Leave WHERE Leave_ID ='"+Leave_ID+"'";
    rs = stm.executeQuery(query);
    if(rs.next())
    String Leave_Reason = rs.getString("LeaveType");
    else
    {    out.println("no results found");
    rs.close();
    stm.close();
    String Query = "INSERT INTO Application (Emp, Leave_ID, Apply_Date, Leave_Date, Leave_Reason, Leave_Applied, Leave_Status) VALUES ('" + Emp_Num + "', '" + Leave_ID + "', '" Apply_Date "', '" + Leave_Date + "', '" + Leave_Reason + "', '" + Day + "', 'Pending')";
    // get result code
    int SQLStatus = SQLStatement.executeUpdate(Query);
         if(SQLStatus != 0)
         out.println("post successfully.");
         else
         out.println("Problem encountered");
    // close connection
    SQLStatement.close();
    con.close();
    %>
    </body>
    </html>

    if(rs.next())
    String Leave_Reason = rs.getString("LeaveType");
    else
    { out.println("no results found");
    rs.close();
    stm.close();
    String Query = "INSERT INTO Application (Emp, Leave_ID, Apply_Date, Leave_Date, Leave_Reason, Leave_Applied, Leave_Status) VALUES ('" + Emp_Num + "', '" + Leave_ID + "', '" Apply_Date "', '" + Leave_Date + "', '" + Leave_Reason + "', '" + Day + "', 'Pending')";
    The Problem is that the variable Leave_Reason is declared as a local variable inside a if block. So the scope of the variable is not visible outside the if block...
    Try using something like
    String Leave_Reason = "";
    if(rs.next())
    Leave_Reason = rs.getString("LeaveType");
    else
    { out.println("no results found");
    This should work...
    Hope it helps.
    Thanks and regards,
    Pazhanikanthan. P

  • URGENT! PLS HELP... using JAMES as mail server

    hi, first of all... happy new year to everyone...
    i am currently developing a web based application and one of the component in the system is using JAMES as mail server. I am done some modification in config.xml in JAMES, now the problem is i can only send internal mails instead of external one, such as hotmail and yahoo.
    The error occurs as below:-
    RemoteDelivery: Exception delivering message (Mail1041375079561-0-!448616653-to-hotmail.com) - Could not connect to SMTP host: hotmail.com, port: 25
    How can i send mails to hotmail and yahoo users or any other external mail?
    Can anyone pls help me to solve this problem?
    Thanks in advance.

    sounds like a network problem rather than a JAMES problem. Have you confirmed that you can ping the hotmail mail server, and then that you can "telnet" in to it on port 25?
    If you have a windows machine handy, you can find out the IP address of hotmail's primary mail server by using nslookup:
    C:\>nslookup
    set type=MX
    hotmail.comIf you don't get anything from this, it would indicate a DNS problem. Once you have the IP address, try to telnet to it on port 25:
    C:\>telnet 65.54.254.129 25
    Here's what I got...
    220 mc1-f3.law16.hotmail.com Microsoft ESMTP MAIL Service, Version: 5.0.2195.5600 ready at Wed, 1 Jan 2003 21:19:03 -0800
    If you aren't able to connect, it's probably either a firewall at your end blocking outbound TCP traffic on port 25 (or possibly all ports), or a DNS issue, or some sort of routing issue with your ISP

  • Can not run OWB Mapping automatically by OEM? .  Very urgent. Pls help me

    Hi all,
    Pls help me.
    I am using OWB 10g under Oracle 10g. I want to run OWB Mapping automatically by OEM.
    I installed Oracle Database 10g fully but don't have OEM in this. After that, I installed Oracle Client 10g. In this product, there is OEM 10g. I read some topic as "want to run owb mappings thru job schedule" and also read http://otn.oracle.com/products/warehouse/htdocs/oem_scheduling_viewlet_swf.html
    But my OEM not as same as in this . It don't have job menu and OEM Console Login window and don't have also where I can put username/pwd to login into OMS???
    I don't know this problem.
    Pls help me.

    Hi,
    Here are two possible solutions:
    1) If you have OEM 9i anywhere in your environment you can use this for scheduling the OWB jobs.
    2) If your environment is 10g only you need to install 10g Grid Controll. This product has replaced the OMS / Java console of earlier releases, and contains the same functionality for scheduling jobs.
    Note that if you are using the sql_exec_template to execute your mappings you can schedule and run these from any machine on the network, not just the target server.
    Hope this helps,
    Roald

  • Urgent doubt :: pls help

    i want the output html of a jsp page redirected as an excel sheet. how is it to be done. pls. help.
    advance thanks,
    Prabhu.V.C

    Also, be sure to put 'tabs' - \t not spaces between the columns you want to create. Otherwise, each line will be formatted into one column.
    G.

  • URGENT! PLS HELP Load tests (Oracle Load Testing) in OTM

    hello,
    it´s really urgent so please help!
    How can I see the test result of the lload tests (done with Oracle Load Testing) in OTM????
    I can not figure out why such an important point is missing in the documenation....
    Thank you very much for your (hopefully soon) help!
    Edited by: 853007 on 20.04.2011 05:42

    added these files in the classpath : using oracle 9i
    , jdk1.4.2
    C:\Documents and Settings\Sampathkumar\Desktop>set
    CLASSPATH=c:\oracle\ora92\jdb
    c\lib\ojdbc14.jar;c:\oracle\ora92\jdbc\lib\nls_charset
    12.jar;%CLASSPATH%;
    submitted this code as a sample to test the
    conection
    import java.sql.*;
    public class test{
    public static void main(String[] args) throws
    SQLException,ClassNotFoundException {
    //load oracle driver
    Class.forName("oracle.jdbc.OracleDriver");
    System.out.println("Driver Loaded");
    //connecTION to the sample database
    String url =
    =
    "jdbc.oracle:thin:@SEC_MEC-MS3:1521:global.oracle";
    Connection conn=DriverManager.getConnection
    tion (url,"sam","aaj");
    System.out.println("Database connection
    on successful");
    //create a statement
    Statement stmt = conn.createStatement();
    ResultSet rset =stmt.executeQuery("select
    ry("select sysdate from Dual");
    while (rset.next())
    System.out.println(rset.getString(1));
    }//end of test DB class
    give the error stack
    C:\Documents and Settings\Sampathkumar\Desktop>java
    test
    Driver Loaded
    Exception in thread "main" java.sql.SQLException: No
    suitable driver
    at
    at java.sql.DriverManager.getConnection(Unknown
    known Source)
    at
    at java.sql.DriverManager.getConnection(Unknown
    known Source)
    at test.main(test.java:17)__________________________________________________________
    You are loading the driver classes ok. But is that the appropriate driver for youir database?
    I know Oracle is phasing out the .zip version classes12.zip, but have tried them
    here the possible drivers
    ojdbc14.jar Oracle 9. and higher and jk1.4 and higher
    ojdbc14_g-1.jar - include extentsion Oracle 9. and higher and jk1.4 and higher
    classes12.zip - Primarily used with oralce 8.* and jk1.2.* - jtk1.3.*

  • CAN ANYBODY PLZ HELP: problem opening any program including internet explorer

    i recently got rid of "vista internet security 2010". Took me many scans to wipe it and it seems like i finally cleared it. Now i cant click on anything without it popping up a box saying,
    "open with: choose the program you want to use to open this file".
    I dont understand what happened but it started doing that right after i used my antivirus and it found the trojan.
    can anybody plz help me fix this withouth me having to do a complete system restore?
    ill greatly appreciate it.

    Angie, please be sure to download and run this free tool.
       Malwarebytes' Anti-Malware
    "open with: choose the program you want to use to open this file
    Which file types (see the "extension" at the end of the file) produce that message?
    Which computer? Which Windows?
    -Jerry

  • Pls help with JTree editor problem

    Hi,
    I have a JTree where each node in the tree is a JPanel. In each
    JPanel are two JTextField objects. Only one of the JTextField objects
    is editable.
    When I click on node (a line in the JTree) with the mouse, it is
    painted using the custom editor (TreeCellEditor) that I have written.
    When the selected and editable JTextField has the focus, and when a
    certain key is hit, I capture that key, do some things, and then select
    a different node in the JTree.
    When selecting the new node, I need the node to be painted with
    the editor, just as if I had clicked on it with the mouse.
    In the method called as a result of the key binding, I call the
    following --
    TreeUI.stopEditing( JTree ) -- stops editing of the cell that resulted
    in the key binding call
    TreeUI.startEditingAtPath( JTree, TreePath )
    -- according to the JavaDocs, this should select the new cell and
    start editting of it.
    This last method does call my editor to get the components, but then my
    Renderer is also called (twice in fact). When the cell is painted, it is
    painted with the Renderer's components.
    PLEASE HELP HERE !

    Thank you so much for giving a reply to this problem.
    I will experiment with your suggestion. However, in looking at the JavaDocs
    I would need to make one class that implements both TreeCellEditor and
    TreeCellRenderer, with the methods getTreeCellEditorComponent() and getTreeCellRendererComponent(). Since currently, my editor is called and then
    my renderer is called, over-writing the editor's result, I would suspect that
    both of these methods would also be called (even though they are in the same
    class), having the same effect.
    Again, thank you.

  • Urgent - pls help - Problem while inserting binary file into Oracle DB

    Hi,
    I am trying to insert binary files into a Blob column in a Oracle 10G table.
    The binary files would be uploaded by the web users and hence come as multipart request. I use apache commons upload streaming API to handle it. Finally i am getting a input stream of the uploaded file.
    The JDBC code is
    PreparedStatement ps=conn.prepareStatement("insert into bincontent_table values(?)");
    ps.setBinaryStream(1,inStream,length);
    My problem starts when i try to find the length of the stream. available() method of inputstream does not return the full length of the stream. so i put a loop to read thru the stream and find the length as shown below
    int length=0;
    while((v=inStream.read())!=-1)
    length++;
    Now, though i got the length, my stream pointer has reached the end and i cant reset it(it throws an error if i try).
    So i copied the stream content to a byte array and created an ByteArrayInputStream like this.
    tempByteArray=new byte[length];
    stream.read(tempByteArray,0,length);
    ByteArrayInputStream bais=new ByteArrayInputStream(tempByteArray);
    Now if i pass this bytearray input stream instead of the normal input stream to the prepared statement's setBinaryStream() method it throws an error as
    "ORA-01460: unimplemented or unreasonable conversion requested".
    Now how to solve this?
    My doubts are ,
    1) preparedStatement.setBinaryStream(int parameterIndex, InputStream x, int length) expects an inputstream and its length. if i have the stream how to find its length with out reading the stream?
    2) Also as the length parameter is a integer, what if i have a large binary file whose length runs more than the capacity of integer
    3) Alternatively there is a setBlob(int i, Blob x) in prepared statement. But how to instantiate a Blob object and set it here
    4) Is there any better way to do this.
    Thanks in advance

    "ORA-01460: unimplemented or unreasonable conversion
    requested".When the setBinaryStream method is used, the driver may have to do extra work to determine whether the parameter data should be sent to the server as a LONGVARBINARY or a BLOB (reference: javadoc)
    1) preparedStatement.setBinaryStream(int parameterIndex,
    InputStream x, int length) expects an inputstream and its length. if i
    have the stream how to find its length with out reading the stream?no. stream may have no specified length. i think you have wrong understanding about stream.
    2) Also as the length parameter is a integer, what if i have a large
    binary file whose length runs more than the capacity of integer
    3) Alternatively there is a setBlob(int i, Blob x) in prepared statement.
    But how to instantiate a Blob object and set it here
    4) Is there any better way to do this.use ps.setBlob(1, instream) instead

  • Image Upload probelm - Very Urgent. Pls help!!!

    Hi All,
    I am facing very strange problem while uploading a image file (.JPG file) thru a web dynpro view.
    I am accepting a image file from view and uploading it to a ftp server.
    There are two abnormal results I have observed. It does NOT happen for every image upload. But it has been observed to happen during peak Internet hrs. (image size can range from 1MB to 7-8 MBs)
    When 'Upload' button is clicked, one of the following thing happens:-
    1. After taking loooong time (processing circle rotates), browser screen goes totally blank. That is, browser goes into state as if no page is opened (white screen)
    2. After taking loooong time, empty form re-appears. ( ie the view in which i had submitted data and pressed 'Upload')
    I have tried tracing errors in default trace. but no error or exception is displayed !!!
    Following is the code i'm using for uploading file. ==>
    try {
    URL myUrl = new URL("ftp://<some address>");
    FtpURLConnection myConnection = new FtpURLConnection(myUrl);
    myConnection.connect();
    OutputStream out = myConnection.getOutputStream();
    out.write(wdContext.currentPhotosElement().getPhoto1());
    out.close();
    myConnection.close();
    } catch (Exception e) {
    System.err.println("\n\n$$$$$$$$$$$$$Exception in image upload $$$$$$$$$$$$$\n\n");
    e.printStackTrace();
    Please help me as this system is live and lot of users are complaining as they are not able to upload their images..
    Awaiting for reply ..
    regards,
    Amey

    Hi,
    Does anybody have any idea about how the file data (byte stream) flows from Client's machine browser to Web Dynpro's context's element??
    As per my observation and tracing, it is first loading byte array frm client's machine to view's corresponding context node.. And then only it is proceeding with further actions.
    Now in my case, user may upload files ranging frm size 6MB to 10MB, web dynpro application either refreshes or times out during this transfer. I didnt even started FTP process to upload byte[] to remote server !!!
    So how can we increase this speed of transfer from  client's machine to context element ??
    regards,
    Amey

  • Urgent! Pls help me! Can't compile any *.java files

    I am a new user to Java2SDK. I am using Win2K sever and I have installed Java2SDK1.4.0 in D drive. When I compile any *.java files, a message " 'javac' is not recognized as an internal or external command, operable program or batch file" appears. How can I solve this problem?
    Please help me. I am busy with my homework. Thank you very much.

    In your PATH variable include %JAVA_HOME%\bin;
    For example:
    C:\jdk1.4\bin;

  • Pet store runtime error! urgent! Pls help me out

    Dear everybody,
    I just install the petstore in my local computer, following the whole instruction from http://java.sun.com/blueprints/code/jps131/docs/installing.h tml
    It seems all rite during the installation.
    But when I try to access the
    Amazon Parrot
    Great companion for up to 75 years
    in the bird category, I cannot see anything feed back. I checked the j2ee log, here is the output of it. I have no idea how to fix this problem, any tech people can help me? I need this sample code as a base of a project.
    Thanks for whom can help!!
    A hardworking progammer
    Henry
    Binding name:`java:comp/env/jms/QueueConnectionFactory`
    Binding name:`java:comp/env/ejb/OPCAdminFacadeRemote`
    Binding name:`java:comp/env/ejb/AsyncSender`
    Created Context:/admin
    Application AdminEAR deployed.
    java.security.PrivilegedActionException: javax.servlet.ServletException: An erro
    r occurred while evaluating custom action attribute "value" with value "${item.a<br />ttribute}": Unable to find a value for "attribute" in object of class "com.sun.j<br />2ee.blueprints.catalog.model.Item" using operator "."
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationDispatcher.include(Appli cationDis
    patcher.java:488)
    at com.sun.j2ee.blueprints.waf.view.template.tags.InsertTag.doE ndTag(Ins
    ertTag.java:99)
    at org.apache.jsp.template$jsp._jspService(template$jsp.java:15 9)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.ja va:107)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.servi ce(JspSer
    vlet.java:202)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServl et.java:3
    82)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java :474)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic ationDisp
    atcher.java:683)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(App licationD
    ispatcher.java:431)
    at org.apache.catalina.core.ApplicationDispatcher.access$0(Appl icationDi
    spatcher.java:359)
    at org.apache.catalina.core.ApplicationDispatcher$PrivilegedFor ward.run(
    ApplicationDispatcher.java:130)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationDispatcher.forward(Appli cationDis
    patcher.java:347)
    at com.sun.j2ee.blueprints.waf.view.template.TemplateServlet.in sertTempl
    ate(TemplateServlet.java:288)
    at com.sun.j2ee.blueprints.waf.view.template.TemplateServlet.pr ocess(Tem
    plateServlet.java:246)
    at com.sun.j2ee.blueprints.waf.view.template.TemplateServlet.do Get(Templ
    ateServlet.java:143)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFi lter(Appl
    icationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.access$0(App licationF
    ilterChain.java:197)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(Applic ationFilt
    erChain.java:176)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(App licationF
    ilterChain.java:172)
    at com.sun.j2ee.blueprints.signon.web.SignOnFilter.doFilter(Sig nOnFilter
    .java:151)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFi lter(Appl
    icationFilterChain.java:213)
    at org.apache.catalina.core.ApplicationFilterChain.access$0(App licationF
    ilterChain.java:197)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(Applic ationFilt
    erChain.java:176)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(App licationF
    ilterChain.java:172)
    at com.sun.j2ee.blueprints.encodingfilter.web.EncodingFilter.do Filter(En
    codingFilter.java:77)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFi lter(Appl
    icationFilterChain.java:213)
    at org.apache.catalina.core.ApplicationFilterChain.access$0(App licationF
    ilterChain.java:197)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(Applic ationFilt
    erChain.java:176)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(App licationF
    ilterChain.java:172)
    at org.apache.catalina.core.StandardWrapperValve.invoke(Standar dWrapperV
    alve.java:243)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.core.StandardContextValve.invoke(Standar dContextV
    alve.java:201)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.valves.CertificatesValve.invoke(Certific atesValve
    .java:246)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.core.StandardContext.invoke(StandardCont ext.java:
    2343)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHo stValve.j
    ava:164)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(Error Dispatche
    rValve.java:170)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRepo rtValve.j
    ava:170)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.authenticator.SingleSignOn.invoke(Single SignOn.ja
    va:392)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.core.StandardEngineValve.invoke(Standard EngineVal
    ve.java:174)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.connector.http.HttpProcessor.process(Htt pProcesso
    r.java:1012)
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpPro cessor.ja
    va:1107)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: javax.servlet.ServletException: An error occurred while evaluating cu
    stom action attribute "value" with value "${item.attribute}": Unable to find a v
    alue for "attribute" in object of class "com.sun.j2ee.blueprints.catalog.model.I<br />tem" using operator "."
    at org.apache.jasper.runtime.PageContextImpl.handlePageExceptio n(PageCon
    textImpl.java:463)
    at org.apache.jsp.product$jsp._jspService(product$jsp.java:1357 )
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.ja va:107)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.servi ce(JspSer
    vlet.java:202)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServl et.java:3
    82)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java :474)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic ationDisp
    atcher.java:683)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(App licationD
    ispatcher.java:574)
    at org.apache.catalina.core.ApplicationDispatcher.access$1(Appl icationDi
    spatcher.java:501)
    at org.apache.catalina.core.ApplicationDispatcher$PrivilegedInc lude.run(
    ApplicationDispatcher.java:146)
    ... 66 more
    InsertTag:doEndTag caught: javax.servlet.ServletException: An error occurred whi
    le evaluating custom action attribute "value" with value "${item.attribute}": Un
    able to find a value for "attribute" in object of class "com.sun.j2ee.blueprints<br />.catalog.model.Item" using operator "."
    javax.servlet.ServletException: An error occurred while evaluating custom action
    attribute "value" with value "${item.attribute}": Unable to find a value for "a<br />ttribute" in object of class "com.sun.j2ee.blueprints.catalog.model.Item" using
    operator "."
    at org.apache.jasper.runtime.PageContextImpl.handlePageExceptio n(PageCon
    textImpl.java:463)
    at org.apache.jsp.product$jsp._jspService(product$jsp.java:1357 )
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.ja va:107)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.servi ce(JspSer
    vlet.java:202)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServl et.java:3
    82)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java :474)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic ationDisp
    atcher.java:683)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(App licationD
    ispatcher.java:574)
    at org.apache.catalina.core.ApplicationDispatcher.access$1(Appl icationDi
    spatcher.java:501)
    at org.apache.catalina.core.ApplicationDispatcher$PrivilegedInc lude.run(
    ApplicationDispatcher.java:146)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationDispatcher.include(Appli cationDis
    patcher.java:488)
    at com.sun.j2ee.blueprints.waf.view.template.tags.InsertTag.doE ndTag(Ins
    ertTag.java:99)
    at org.apache.jsp.template$jsp._jspService(template$jsp.java:15 9)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.ja va:107)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.servi ce(JspSer
    vlet.java:202)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServl et.java:3
    82)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java :474)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic ationDisp
    atcher.java:683)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(App licationD
    ispatcher.java:431)
    at org.apache.catalina.core.ApplicationDispatcher.access$0(Appl icationDi
    spatcher.java:359)
    at org.apache.catalina.core.ApplicationDispatcher$PrivilegedFor ward.run(
    ApplicationDispatcher.java:130)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationDispatcher.forward(Appli cationDis
    patcher.java:347)
    at com.sun.j2ee.blueprints.waf.view.template.TemplateServlet.in sertTempl
    ate(TemplateServlet.java:288)
    at com.sun.j2ee.blueprints.waf.view.template.TemplateServlet.pr ocess(Tem
    plateServlet.java:246)
    at com.sun.j2ee.blueprints.waf.view.template.TemplateServlet.do Get(Templ
    ateServlet.java:143)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFi lter(Appl
    icationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.access$0(App licationF
    ilterChain.java:197)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(Applic ationFilt
    erChain.java:176)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(App licationF
    ilterChain.java:172)
    at com.sun.j2ee.blueprints.signon.web.SignOnFilter.doFilter(Sig nOnFilter
    .java:151)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFi lter(Appl
    icationFilterChain.java:213)
    at org.apache.catalina.core.ApplicationFilterChain.access$0(App licationF
    ilterChain.java:197)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(Applic ationFilt
    erChain.java:176)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(App licationF
    ilterChain.java:172)
    at com.sun.j2ee.blueprints.encodingfilter.web.EncodingFilter.do Filter(En
    codingFilter.java:77)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFi lter(Appl
    icationFilterChain.java:213)
    at org.apache.catalina.core.ApplicationFilterChain.access$0(App licationF
    ilterChain.java:197)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(Applic ationFilt
    erChain.java:176)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(App licationF
    ilterChain.java:172)
    at org.apache.catalina.core.StandardWrapperValve.invoke(Standar dWrapperV
    alve.java:243)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.core.StandardContextValve.invoke(Standar dContextV
    alve.java:201)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.valves.CertificatesValve.invoke(Certific atesValve
    .java:246)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.core.StandardContext.invoke(StandardCont ext.java:
    2343)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHo stValve.j
    ava:164)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(Error Dispatche
    rValve.java:170)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRepo rtValve.j
    ava:170)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.authenticator.SingleSignOn.invoke(Single SignOn.ja
    va:392)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.core.StandardEngineValve.invoke(Standard EngineVal
    ve.java:174)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.connector.http.HttpProcessor.process(Htt pProcesso
    r.java:1012)
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpPro cessor.ja
    va:1107)
    at java.lang.Thread.run(Thread.java:534)

    Hello Everybody
    I have the procedure to run petsotre demo as it is given in the Java BluePrints Projects Install Document.
    But when I have tried to run the ant setup command it it has given me the following error
    BUILD FAILED
    java.lang.AbstractMethodError: javax.xml.parsers.SAXParser.getXMLReader()Lorg/xml/sax/XMLReader;
    at org.apache.tools.ant.util.JAXPUtils.getNamespaceXMLReader(JAXPUtils.java:163)
    at org.apache.tools.ant.helper.ProjectHelper2.parse(ProjectHelper2.java:193)
    at org.apache.tools.ant.helper.ProjectHelper2.parse(ProjectHelper2.java:140)
    at org.apache.tools.ant.ProjectHelper.configureProject(ProjectHelper.java:91)
    at org.apache.tools.ant.Main.runBuild(Main.java:653)
    at org.apache.tools.ant.Main.startAnt(Main.java:187)
    at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
    at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
    Total time: 0 seconds
    java.lang.AbstractMethodError: javax.xml.parsers.SAXParser.getXMLReader()Lorg/xml/sax/XMLReader;
    at org.apache.tools.ant.util.JAXPUtils.getNamespaceXMLReader(JAXPUtils.java:163)
    at org.apache.tools.ant.helper.ProjectHelper2.parse(ProjectHelper2.java:193)
    at org.apache.tools.ant.helper.ProjectHelper2.parse(ProjectHelper2.java:140)
    at org.apache.tools.ant.ProjectHelper.configureProject(ProjectHelper.java:91)
    at org.apache.tools.ant.Main.runBuild(Main.java:653)
    at org.apache.tools.ant.Main.startAnt(Main.java:187)
    at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
    at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
    javax.xml.parsers.SAXParser.getXMLReader()Lorg/xml/sax/XMLReader;
    Plz help to rectify this error .
    Regards,
    Chirag Viradiya

  • URGENT, EXPERTS PLS HELP!!

    I would like to know answer to following question:
    "Is java.lang.Object" overused??? Pls reply immediately coz I doing my final year project at ivy league university and I need to hand in my assignment in next 2 hours!

    "Is java.lang.Object" overused??? Pls reply
    immediately coz I doing my final year project at ivy
    league university and I need to hand in my assignment
    in next 2 hours!I love the story this implies. This issue is critical to a final year project? A final year project? Due in September?
    How could it be relevant? I mean, if the final year project is an argument about the overuse of a particular idiom, then presumably the project is in the OP's area of expertise. So why is he asking about it here, now?
    And if it's not his area of expertise... then he'd be expected to do some research, such as interviews. He'd be expected to do some research somewhat earlier than two hours before the project is due.
    And of course the coup de grace, informing us that it's in an ivy league school. Those of us who weren't so fortunate to attend one, are of course obligated to help out those who do.
    He must go to Yale.
    Otherwise...a marvelous troll, sir!

  • DEQUEUING ORDER DIFFERS FROM ENQUEUING ORDER,URGENT ONE, PLS HELP

    Hi ,
    we are using ORACLE ADVANCED QUEUING for queue functionality.
    our Oracle version is Oracle 8i release 8.1.5
    Sometimes dequeuing order differs from enqueuing order. we are
    enqueuing to the queue using default options only , i mean we
    are not setting any prriority for messages .We are enqueuing 100
    messages continuously to the queue.After completing enqueuing we
    are dequeuing from the queue first in browse and then in remove
    mode. We are using thin driver for database connectivity. If U
    have any idea about this problem pls feel free to share with me .
    Thanx in advance
    Regards
    Shilda Joseph
    see the code snippet
    enqueuing
    aqMsg = qOracleQueue.createMessage();
    aqRawPayload = aqMsg.getRawPayload();
    byMsg = sMsgInfo.getBytes();
    aqRawPayload.setStream(byMsg, byMsg.length);
    AQEnqueueOption aqEnqueueOption = new AQEnqueueOption
    qOracleQueue.enqueue(aqEnqueueOption, aqMsg);
    dequeuing
         aqDequeueOption.setWaitTime(1);
    aqDequeueOption.setDequeueMode
    (aqDequeueOption.DEQUEUE_BROWSE);
    aqMsg = qOracleQueue.dequeue(aqDequeueOption);
    //removing
         AQDequeueOption aqDequeueOption1 = new AQDequeueOption
    aqDequeueOption1.setDequeueMode
    (aqDequeueOption.DEQUEUE_REMOVE);
    AQMessage aqRemMsg = qOracleQueue.dequeue
    (aqDequeueOption1);
    see the enqueuing order and dequeuing order of hello 57, hello
    58
    2001/10/17 15:38:42:3 INFO [main] message enqueued - Helloo 1 to
    HL7MESSAGEQUEUE
    2001/10/17 15:38:42:124 INFO [main] message enqueued - Helloo 2
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:234 INFO [main] message enqueued - Helloo 3
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:334 INFO [main] message enqueued - Helloo 4
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:434 INFO [main] message enqueued - Helloo 5
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:544 INFO [main] message enqueued - Helloo 6
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:644 INFO [main] message enqueued - Helloo 7
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:755 INFO [main] message enqueued - Helloo 8
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:865 INFO [main] message enqueued - Helloo 9
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:965 INFO [main] message enqueued - Helloo 10
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:75 INFO [main] message enqueued - Helloo 11
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:175 INFO [main] message enqueued - Helloo 12
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:275 INFO [main] message enqueued - Helloo 13
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:375 INFO [main] message enqueued - Helloo 14
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:476 INFO [main] message enqueued - Helloo 15
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:576 INFO [main] message enqueued - Helloo 16
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:686 INFO [main] message enqueued - Helloo 17
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:786 INFO [main] message enqueued - Helloo 18
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:886 INFO [main] message enqueued - Helloo 19
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:986 INFO [main] message enqueued - Helloo 20
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:86 INFO [main] message enqueued - Helloo 21
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:187 INFO [main] message enqueued - Helloo 22
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:287 INFO [main] message enqueued - Helloo 23
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:397 INFO [main] message enqueued - Helloo 24
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:497 INFO [main] message enqueued - Helloo 25
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:597 INFO [main] message enqueued - Helloo 26
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:697 INFO [main] message enqueued - Helloo 27
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:797 INFO [main] message enqueued - Helloo 28
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:898 INFO [main] message enqueued - Helloo 29
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:988 INFO [main] message enqueued - Helloo 30
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:98 INFO [main] message enqueued - Helloo 31
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:188 INFO [main] message enqueued - Helloo 32
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:298 INFO [main] message enqueued - Helloo 33
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:388 INFO [main] message enqueued - Helloo 34
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:488 INFO [main] message enqueued - Helloo 35
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:598 INFO [main] message enqueued - Helloo 36
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:689 INFO [main] message enqueued - Helloo 37
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:799 INFO [main] message enqueued - Helloo 38
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:899 INFO [main] message enqueued - Helloo 39
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:989 INFO [main] message enqueued - Helloo 40
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:99 INFO [main] message enqueued - Helloo 41
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:189 INFO [main] message enqueued - Helloo 42
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:299 INFO [main] message enqueued - Helloo 43
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:390 INFO [main] message enqueued - Helloo 44
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:500 INFO [main] message enqueued - Helloo 45
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:600 INFO [main] message enqueued - Helloo 46
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:700 INFO [main] message enqueued - Helloo 47
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:790 INFO [main] message enqueued - Helloo 48
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:900 INFO [main] message enqueued - Helloo 49
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:0 INFO [main] message enqueued - Helloo 50
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:111 INFO [main] message enqueued - Helloo 51
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:201 INFO [main] message enqueued - Helloo 52
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:301 INFO [main] message enqueued - Helloo 53
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:411 INFO [main] message enqueued - Helloo 54
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:501 INFO [main] message enqueued - Helloo 55
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:631 INFO [main] message enqueued - Helloo 56
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:731 INFO [main] message enqueued - Helloo 57
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:822 INFO [main] message enqueued - Helloo 58
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:932 INFO [main] message enqueued - Helloo 59
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:22 INFO [main] message enqueued - Helloo 60
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:132 INFO [main] message enqueued - Helloo 61
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:222 INFO [main] message enqueued - Helloo 62
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:332 INFO [main] message enqueued - Helloo 63
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:432 INFO [main] message enqueued - Helloo 64
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:533 INFO [main] message enqueued - Helloo 65
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:623 INFO [main] message enqueued - Helloo 66
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:733 INFO [main] message enqueued - Helloo 67
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:823 INFO [main] message enqueued - Helloo 68
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:933 INFO [main] message enqueued - Helloo 69
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:49:23 INFO [main] message enqueued - Helloo 70
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:49:123 INFO [main] message enqueued - Helloo 71
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:49:214 INFO [main] message enqueued - Helloo 72
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:49:324 INFO [main] message enqueued - Helloo 73
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:49:684 INFO [main] message enqueued - Helloo 74
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:5 INFO [main] message enqueued - Helloo 75
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:105 INFO [main] message enqueued - Helloo 76
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:215 INFO [main] message enqueued - Helloo 77
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:305 INFO [main] message enqueued - Helloo 78
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:405 INFO [main] message enqueued - Helloo 79
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:505 INFO [main] message enqueued - Helloo 80
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:605 INFO [main] message enqueued - Helloo 81
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:696 INFO [main] message enqueued - Helloo 82
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:796 INFO [main] message enqueued - Helloo 83
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:886 INFO [main] message enqueued - Helloo 84
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:996 INFO [main] message enqueued - Helloo 85
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:96 INFO [main] message enqueued - Helloo 86
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:186 INFO [main] message enqueued - Helloo 87
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:286 INFO [main] message enqueued - Helloo 88
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:387 INFO [main] message enqueued - Helloo 89
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:487 INFO [main] message enqueued - Helloo 90
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:587 INFO [main] message enqueued - Helloo 91
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:687 INFO [main] message enqueued - Helloo 92
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:797 INFO [main] message enqueued - Helloo 93
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:887 INFO [main] message enqueued - Helloo 94
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:987 INFO [main] message enqueued - Helloo 95
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:52:88 INFO [main] message enqueued - Helloo 96
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:52:188 INFO [main] message enqueued - Helloo 97
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:52:278 INFO [main] message enqueued - Helloo 98
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:52:378 INFO [main] message enqueued - Helloo 99
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:52:478 INFO [main] message enqueued - Helloo
    100 to HL7MESSAGEQUEUE
    2001/10/17 15:54:51:259 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 1
    2001/10/17 15:54:51:319 INFO [main] DS::run: Dequeue
    REMOVEHelloo 1
    2001/10/17 15:54:51:619 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 2
    2001/10/17 15:54:51:649 INFO [main] DS::run: Dequeue
    REMOVEHelloo 2
    2001/10/17 15:54:51:929 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 3
    2001/10/17 15:54:51:960 INFO [main] DS::run: Dequeue
    REMOVEHelloo 3
    2001/10/17 15:54:52:290 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 4
    2001/10/17 15:54:52:360 INFO [main] DS::run: Dequeue
    REMOVEHelloo 4
    2001/10/17 15:54:52:640 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 5
    2001/10/17 15:54:52:671 INFO [main] DS::run: Dequeue
    REMOVEHelloo 5
    2001/10/17 15:54:52:951 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 6
    2001/10/17 15:54:52:971 INFO [main] DS::run: Dequeue
    REMOVEHelloo 6
    2001/10/17 15:54:53:301 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 7
    2001/10/17 15:54:53:321 INFO [main] DS::run: Dequeue
    REMOVEHelloo 7
    2001/10/17 15:54:53:672 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 8
    2001/10/17 15:54:53:692 INFO [main] DS::run: Dequeue
    REMOVEHelloo 8
    2001/10/17 15:54:56:926 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 9
    2001/10/17 15:54:56:946 INFO [main] DS::run: Dequeue
    REMOVEHelloo 9
    2001/10/17 15:54:57:257 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 10
    2001/10/17 15:54:57:277 INFO [main] DS::run: Dequeue
    REMOVEHelloo 10
    2001/10/17 15:54:57:557 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 11
    2001/10/17 15:54:57:627 INFO [main] DS::run: Dequeue
    REMOVEHelloo 11
    2001/10/17 15:54:57:918 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 12
    2001/10/17 15:54:57:938 INFO [main] DS::run: Dequeue
    REMOVEHelloo 12
    2001/10/17 15:54:58:268 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 13
    2001/10/17 15:54:58:278 INFO [main] DS::run: Dequeue
    REMOVEHelloo 13
    2001/10/17 15:54:58:569 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 14
    2001/10/17 15:54:58:589 INFO [main] DS::run: Dequeue
    REMOVEHelloo 14
    2001/10/17 15:54:58:869 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 15
    2001/10/17 15:54:58:959 INFO [main] DS::run: Dequeue
    REMOVEHelloo 15
    2001/10/17 15:54:59:260 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 16
    2001/10/17 15:54:59:280 INFO [main] DS::run: Dequeue
    REMOVEHelloo 16
    2001/10/17 15:54:59:600 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 17
    2001/10/17 15:54:59:620 INFO [main] DS::run: Dequeue
    REMOVEHelloo 17
    2001/10/17 15:54:59:911 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 18
    2001/10/17 15:54:59:931 INFO [main] DS::run: Dequeue
    REMOVEHelloo 18
    2001/10/17 15:55:0:251 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 19
    2001/10/17 15:55:0:321 INFO [main] DS::run: Dequeue REMOVEHelloo
    19
    2001/10/17 15:55:0:602 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 20
    2001/10/17 15:55:0:622 INFO [main] DS::run: Dequeue REMOVEHelloo
    20
    2001/10/17 15:55:0:922 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 21
    2001/10/17 15:55:0:932 INFO [main] DS::run: Dequeue REMOVEHelloo
    21
    2001/10/17 15:55:1:263 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 22
    2001/10/17 15:55:1:283 INFO [main] DS::run: Dequeue REMOVEHelloo
    22
    2001/10/17 15:55:1:623 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 23
    2001/10/17 15:55:1:633 INFO [main] DS::run: Dequeue REMOVEHelloo
    23
    2001/10/17 15:55:1:933 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 24
    2001/10/17 15:55:1:953 INFO [main] DS::run: Dequeue REMOVEHelloo
    24
    2001/10/17 15:55:2:484 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 25
    2001/10/17 15:55:2:504 INFO [main] DS::run: Dequeue REMOVEHelloo
    25
    2001/10/17 15:55:2:775 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 26
    2001/10/17 15:55:2:855 INFO [main] DS::run: Dequeue REMOVEHelloo
    26
    2001/10/17 15:55:3:135 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 27
    2001/10/17 15:55:3:155 INFO [main] DS::run: Dequeue REMOVEHelloo
    27
    2001/10/17 15:55:3:436 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 28
    2001/10/17 15:55:3:456 INFO [main] DS::run: Dequeue REMOVEHelloo
    28
    2001/10/17 15:55:3:736 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 29
    2001/10/17 15:55:3:756 INFO [main] DS::run: Dequeue REMOVEHelloo
    29
    2001/10/17 15:55:4:86 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 30
    2001/10/17 15:55:4:106 INFO [main] DS::run: Dequeue REMOVEHelloo
    30
    2001/10/17 15:55:4:407 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 31
    2001/10/17 15:55:4:427 INFO [main] DS::run: Dequeue REMOVEHelloo
    31
    2001/10/17 15:55:4:707 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 32
    2001/10/17 15:55:4:727 INFO [main] DS::run: Dequeue REMOVEHelloo
    32
    2001/10/17 15:55:5:68 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 33
    2001/10/17 15:55:5:88 INFO [main] DS::run: Dequeue REMOVEHelloo
    33
    2001/10/17 15:55:5:468 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 34
    2001/10/17 15:55:5:488 INFO [main] DS::run: Dequeue REMOVEHelloo
    34
    2001/10/17 15:55:5:769 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 35
    2001/10/17 15:55:5:789 INFO [main] DS::run: Dequeue REMOVEHelloo
    35
    2001/10/17 15:55:6:69 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 36
    2001/10/17 15:55:6:149 INFO [main] DS::run: Dequeue REMOVEHelloo
    36
    2001/10/17 15:55:6:430 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 37
    2001/10/17 15:55:6:450 INFO [main] DS::run: Dequeue REMOVEHelloo
    37
    2001/10/17 15:55:6:730 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 38
    2001/10/17 15:55:6:750 INFO [main] DS::run: Dequeue REMOVEHelloo
    38
    2001/10/17 15:55:7:31 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 39
    2001/10/17 15:55:7:51 INFO [main] DS::run: Dequeue REMOVEHelloo
    39
    2001/10/17 15:55:7:381 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 40
    2001/10/17 15:55:7:401 INFO [main] DS::run: Dequeue REMOVEHelloo
    40
    2001/10/17 15:55:7:692 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 41
    2001/10/17 15:55:7:702 INFO [main] DS::run: Dequeue REMOVEHelloo
    41
    2001/10/17 15:55:7:992 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 42
    2001/10/17 15:55:8:12 INFO [main] DS::run: Dequeue REMOVEHelloo
    42
    2001/10/17 15:55:8:372 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 43
    2001/10/17 15:55:8:392 INFO [main] DS::run: Dequeue REMOVEHelloo
    43
    2001/10/17 15:55:8:683 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 44
    2001/10/17 15:55:8:703 INFO [main] DS::run: Dequeue REMOVEHelloo
    44
    2001/10/17 15:55:8:983 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 45
    2001/10/17 15:55:9:3 INFO [main] DS::run: Dequeue REMOVEHelloo
    45
    2001/10/17 15:55:9:314 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 46
    2001/10/17 15:55:9:394 INFO [main] DS::run: Dequeue REMOVEHelloo
    46
    2001/10/17 15:55:9:704 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 47
    2001/10/17 15:55:9:724 INFO [main] DS::run: Dequeue REMOVEHelloo
    47
    2001/10/17 15:55:10:15 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 48
    2001/10/17 15:55:10:35 INFO [main] DS::run: Dequeue REMOVEHelloo
    48
    2001/10/17 15:55:10:335 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 49
    2001/10/17 15:55:10:355 INFO [main] DS::run: Dequeue
    REMOVEHelloo 49
    2001/10/17 15:55:10:696 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 50
    2001/10/17 15:55:10:716 INFO [main] DS::run: Dequeue
    REMOVEHelloo 50
    2001/10/17 15:55:10:996 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 51
    2001/10/17 15:55:11:16 INFO [main] DS::run: Dequeue REMOVEHelloo
    51
    2001/10/17 15:55:11:337 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 52
    2001/10/17 15:55:11:357 INFO [main] DS::run: Dequeue
    REMOVEHelloo 52
    2001/10/17 15:55:11:687 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 53
    2001/10/17 15:55:11:707 INFO [main] DS::run: Dequeue
    REMOVEHelloo 53
    2001/10/17 15:55:11:998 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 54
    2001/10/17 15:55:12:18 INFO [main] DS::run: Dequeue REMOVEHelloo
    54
    2001/10/17 15:55:12:338 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 55
    2001/10/17 15:55:12:348 INFO [main] DS::run: Dequeue
    REMOVEHelloo 55
    2001/10/17 15:55:12:709 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 56
    2001/10/17 15:55:12:729 INFO [main] DS::run: Dequeue
    REMOVEHelloo 56
    2001/10/17 15:55:12:989 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 58
    2001/10/17 15:55:13:9 INFO [main] DS::run: Dequeue REMOVEHelloo
    58
    2001/10/17 15:55:13:319 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 57
    2001/10/17 15:55:13:339 INFO [main] DS::run: Dequeue
    REMOVEHelloo 57
    2001/10/17 15:55:13:670 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 59
    2001/10/17 15:55:13:690 INFO [main] DS::run: Dequeue
    REMOVEHelloo 59
    2001/10/17 15:55:13:970 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 60
    2001/10/17 15:55:13:990 INFO [main] DS::run: Dequeue
    REMOVEHelloo 60
    2001/10/17 15:55:14:291 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 61
    2001/10/17 15:55:14:311 INFO [main] DS::run: Dequeue
    REMOVEHelloo 61
    2001/10/17 15:55:14:591 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 62
    2001/10/17 15:55:14:671 INFO [main] DS::run: Dequeue
    REMOVEHelloo 62
    2001/10/17 15:55:15:603 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 63
    2001/10/17 15:55:15:623 INFO [main] DS::run: Dequeue
    REMOVEHelloo 63
    2001/10/17 15:55:15:933 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 64
    2001/10/17 15:55:15:953 INFO [main] DS::run: Dequeue
    REMOVEHelloo 64
    2001/10/17 15:55:16:274 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 65
    2001/10/17 15:55:16:294 INFO [main] DS::run: Dequeue
    REMOVEHelloo 65
    2001/10/17 15:55:16:624 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 66
    2001/10/17 15:55:16:644 INFO [main] DS::run: Dequeue
    REMOVEHelloo 66
    2001/10/17 15:55:16:934 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 67
    2001/10/17 15:55:16:944 INFO [main] DS::run: Dequeue
    REMOVEHelloo 67
    2001/10/17 15:55:17:325 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 68
    2001/10/17 15:55:17:345 INFO [main] DS::run: Dequeue
    REMOVEHelloo 68
    2001/10/17 15:55:17:665 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 69
    2001/10/17 15:55:17:685 INFO [main] DS::run: Dequeue
    REMOVEHelloo 69
    2001/10/17 15:55:17:956 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 70
    2001/10/17 15:55:17:976 INFO [main] DS::run: Dequeue
    REMOVEHelloo 70
    2001/10/17 15:55:18:326 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 71
    2001/10/17 15:55:18:346 INFO [main] DS::run: Dequeue
    REMOVEHelloo 71
    2001/10/17 15:55:18:617 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 72
    2001/10/17 15:55:18:687 INFO [main] DS::run: Dequeue
    REMOVEHelloo 72
    2001/10/17 15:55:19:17 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 73
    2001/10/17 15:55:19:37 INFO [main] DS::run: Dequeue REMOVEHelloo
    73
    2001/10/17 15:55:19:338 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 74
    2001/10/17 15:55:19:358 INFO [main] DS::run: Dequeue
    REMOVEHelloo 74
    2001/10/17 15:55:19:668 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 75
    2001/10/17 15:55:19:688 INFO [main] DS::run: Dequeue
    REMOVEHelloo 75
    2001/10/17 15:55:20:19 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 76
    2001/10/17 15:55:20:39 INFO [main] DS::run: Dequeue REMOVEHelloo
    76
    2001/10/17 15:55:20:359 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 77
    2001/10/17 15:55:20:379 INFO [main] DS::run: Dequeue
    REMOVEHelloo 77
    2001/10/17 15:55:20:660 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 78
    2001/10/17 15:55:20:680 INFO [main] DS::run: Dequeue
    REMOVEHelloo 78
    2001/10/17 15:55:21:20 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 79
    2001/10/17 15:55:21:40 INFO [main] DS::run: Dequeue REMOVEHelloo
    79
    2001/10/17 15:55:21:361 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 80
    2001/10/17 15:55:21:381 INFO [main] DS::run: Dequeue
    REMOVEHelloo 80
    2001/10/17 15:55:21:661 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 81
    2001/10/17 15:55:21:681 INFO [main] DS::run: Dequeue
    REMOVEHelloo 81
    2001/10/17 15:55:22:72 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 82
    2001/10/17 15:55:22:82 INFO [main] DS::run: Dequeue REMOVEHelloo
    82
    2001/10/17 15:55:22:382 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 83
    2001/10/17 15:55:22:402 INFO [main] DS::run: Dequeue
    REMOVEHelloo 83
    2001/10/17 15:55:22:692 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 84
    2001/10/17 15:55:22:713 INFO [main] DS::run: Dequeue
    REMOVEHelloo 84
    2001/10/17 15:55:23:53 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 85
    2001/10/17 15:55:23:63 INFO [main] DS::run: Dequeue REMOVEHelloo
    85
    2001/10/17 15:55:23:403 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 86
    2001/10/17 15:55:23:413 INFO [main] DS::run: Dequeue
    REMOVEHelloo 86
    2001/10/17 15:55:23:694 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 87
    2001/10/17 15:55:23:714 INFO [main] DS::run: Dequeue
    REMOVEHelloo 87
    2001/10/17 15:55:24:886 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 88
    2001/10/17 15:55:24:966 INFO [main] DS::run: Dequeue
    REMOVEHelloo 88
    2001/10/17 15:55:25:286 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 89
    2001/10/17 15:55:25:296 INFO [main] DS::run: Dequeue
    REMOVEHelloo 89
    2001/10/17 15:55:25:637 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 90
    2001/10/17 15:55:25:657 INFO [main] DS::run: Dequeue
    REMOVEHelloo 90
    2001/10/17 15:55:25:937 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 91
    2001/10/17 15:55:25:957 INFO [main] DS::run: Dequeue
    REMOVEHelloo 91
    2001/10/17 15:55:26:338 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 92
    2001/10/17 15:55:26:358 INFO [main] DS::run: Dequeue
    REMOVEHelloo 92
    2001/10/17 15:55:26:628 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 93
    2001/10/17 15:55:26:648 INFO [main] DS::run: Dequeue
    REMOVEHelloo 93
    2001/10/17 15:55:26:928 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 94
    2001/10/17 15:55:26:948 INFO [main] DS::run: Dequeue
    REMOVEHelloo 94
    2001/10/17 15:55:27:319 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 95
    2001/10/17 15:55:27:339 INFO [main] DS::run: Dequeue
    REMOVEHelloo 95
    2001/10/17 15:55:27:609 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 96
    2001/10/17 15:55:27:629 INFO [main] DS::run: Dequeue
    REMOVEHelloo 96
    2001/10/17 15:55:27:910 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 97
    2001/10/17 15:55:27:930 INFO [main] DS::run: Dequeue
    REMOVEHelloo 97
    2001/10/17 15:55:28:280 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 98
    2001/10/17 15:55:28:360 INFO [main] DS::run: Dequeue
    REMOVEHelloo 98
    2001/10/17 15:55:28:631 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 99
    2001/10/17 15:55:28:651 INFO [main] DS::run: Dequeue
    REMOVEHelloo 99
    2001/10/17 15:55:28:941 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 100
    2001/10/17 15:55:28:951 INFO [main] DS::run: Dequeue
    REMOVEHelloo 100

    As other members adviced
    Please check the following as a list
    1) Check first fi the Material is in APO relevant
    2) Check if it has active integration model in cfm5 (R/3)
    3) Check if the material has no blocked queues in /n/sapapo/cq (APO)
    If there are any blocked queues please clear them accordingly.
    4) After that perform a reconciliation of the transactional data through.
    /n/sapapo/ccr(APO). perform it only for that material and on planned orders.
    If there are any errors it will usggest you to follow few steps.
    5) then again go back and check the /n/sapapo/cq transaction.
    6) Check if the material and its location has publication Types maintained in SPRO transaction.
    7) Check if the change pointers of this Planned order exists in /n/sapapo/c5
    This si change pointers transaction , soemtimes you can release ti from there also.
    If you still have problem, give the resutls of the following for reference.
    Let us know once you perform all these.
    8) Incase you need to perform the consistency checks  externally.

Maybe you are looking for

  • No wireless Internet access - DSL PPPoE modem

    I have seen a few threads in the forum related to similar issues but have been unable to fully resolve my problem. I am trying to set up my Airport Express with a DSL router that runs PPPoE. When I attempt to set up the connection, my Express cannot

  • Time Machine - including a external hard drive in time machine back up.

    I have recently updated to a 2014 15 inch Macbook Pro running OS X Yosemite. Previously on my 2006 Macbook I have used a 750GB hard drive with iMovie to store old files and subsequently back up this drive and my Macbook to a separate 3 TB external ha

  • Exchange 2007/Office 365 Merger Coexistence

    Our company has a 2007 Exchange server. We are merging with a company using Office 365. The decision on premise/hosted email is months away, each organization needs to maintain it's own email identity including mail flow (we are using different exter

  • Possible to import GIS data into the Map app?

    I would love to be able to import lat/long data into the Map app to display transit stop info on the job, as I do now with a crappy PC portable and Delorme Street Atlas. Possible? Thanks

  • Can't work DNG but JPEG OK in CS5

    Just installed Photoshop CS5 on a Windows 7 32 bit machine. Updated Camera RAW to 6.4 as well. When I open a JPEG, I have the toolbar and full menu visibility. When I open a DNG file, I lose the toolbar and all menu items. Any ideas? I've uninstalled