How to modify this JSP code?

Below is my code in my JSP, I would like to put my codes that I had underline after the "confirm1"(bold color) line if I click "confirm1" in my codes.How should I change it because I am very confusing on it.If I simply cut my codes into there,it will occured error,so I need to be careful on it...anyone can help?I will appreciate your help....
<%-- start web service invocation --%><hr/>
<%
try {
if(request.getParameter("btnCancel")!=null)
     if(e.equals("No booking record found!"))
{%>
<label style="z-index: 118; left: 300px; position: absolute; top: 700px">Please enter your booking ID.</label>
<%}
else
{%>
<script type="text/javascript">
var confirm1 = window.confirm("-------------")
if(confirm1)
</script>
<% }
     org.tempuri.CancelTravelBooking service = new    org.tempuri.CancelTravelBooking();
_     org.tempuri.CancelTravelBookingSoap port = service.getCancelTravelBookingSoap();_
_     // TODO initialize WS operation arguments here_
_     java.lang.String bookingID = c;_
_     java.lang.String destination = a;_
_     java.lang.String date = b;_
_     java.lang.String personAvailable = d;_
_     // TODO process result here_
_     java.lang.String result = port.cancelBooking(bookingID, destination, date, personAvailable);_
} catch (Exception ex)
%>
<%-- end web service invocation --%><hr/>

Ravi,I really hope that you could help you and thanks to you first...
<%-- start web service invocation --%><hr/>
<%
try {
if(request.getParameter("btnCancel")!=null)
if(e.equals("No booking record found!"))
{%>
<label style="z-index: 118; left: 300px; position: absolute; top: 700px">Please enter your booking ID.</label>
<%}
else
{%>
<script type="text/javascript">
var confirm1 = window.confirm("-------------")
if(confirm1)
</script>
<% }
org.tempuri.CancelTravelBooking service = new org.tempuri.CancelTravelBooking();
_ org.tempuri.CancelTravelBookingSoap port = service.getCancelTravelBookingSoap();_
_ // TODO initialize WS operation arguments here_
_ java.lang.String bookingID = c;_
_ java.lang.String destination = a;_
_ java.lang.String date = b;_
_ java.lang.String personAvailable = d;_
_ // TODO process result here_
_ java.lang.String result = port.cancelBooking(bookingID, destination, date, personAvailable);_
} catch (Exception ex)
%>
<%-- end web service invocation --%><hr/>

Similar Messages

  • Can someone please tell me on how to modify this code so that I dont have to enter the file name at all?

    Hello
    can someone please tell me how to modify this code so that I dont have to enter the file path at all? When i give the same file path constants to both the read and write VIs I'm getting an error message.
    Attachments:
    read and write.vi ‏11 KB

    Yup use the low level File I/O opening the reference once, and closing it once.  
    As for the path selection you have an unwired input which is the path to use.  Programatically set that and you won't be prompted to select a path.  Usually this is done with a path constant to a folder, then using the Build Path, to set the file name in that folder.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • How to modify this query to get the desired output format

    I hv written a Query to display all the parent table names and their primary key columns(relevant to this foreign key of the child table).The query is given below...
    SELECT DISTINCT(TABLE_NAME) AS PARENT_TABLE,COLUMN_NAME AS PARENT_COLUMN
    FROM ALL_CONS_COLUMNS
    WHERE CONSTRAINT_NAME IN (SELECT AC.R_CONSTRAINT_NAME
    FROM ALL_CONSTRAINTS AC
    WHERE AC.TABLE_NAME=TABLE_NAME
    AND AC.TABLE_NAME='&TABLE'
    AND AC.R_CONSTRAINT_NAME IS NOT NULL);
    This query will display all the parent tables and their primary key columns.Now my problem is that how to modify this query to also display the foreign key column name of the child table.
    I want the query result in the following format.The query should display the following columns.1)child table's name,2)child table's foreign key column name,3)the corresponding parent table's name,4)the parent table's primary key column name(which is the foreign key in the child table).
    For Example I want the output as follows...
    TAKE THE CASE OF SCOTT.EMP(AS INPUT TO YOUR QUERY)
    CHILD_TABLE CHILD_COLUMN PARENT_TABLE PARENT_COLUMN
    EMP DEPTNO DEPT DEPTNO
    In this result I hv used alias name for the columns.The query should display this only for the foreign keys in the child table.In the query which I sent to you earlier will give the parent table and the parent column names,But I also want to append the child table and child column names there.
    any help on how to tackle would be appreciated.

    Try this query
    SELECT c.table_name child_table,
         c.column_name child_column,
         p.table_name parent_table,
         p.column_name parent_column
    FROM user_constraints a,user_constraints b,user_cons_columns c,
         user_cons_columns p
    WHERE a.r_constraint_name=b.constraint_name and
          a.constraint_name=c.constraint_name and
          b.constraint_name=p.constraint_name and
          c.position=p.position
    ORDER BY c.constraint_name,c.position
    Anwar

  • How to use this example code in Flash AS3?

    Hi,
    How can I use this AS3 code in my Flash CS4 document? The following code is in the below link:
    http://pv3d.org/2009/12/18/tweenmax-tweening-a-timeline-advanced-tweening/#
    Please help.
    Thanks.

    Hi,
    It is working quite nice. I want to use the same code but instead of as "Document Class" I want to put that code in a first key frame of my project. I tried the following but gets an error:
    The error is : 1131: Classes must not be nested.
    And the following code  I tried is:
        import com.greensock.TimelineMax;
        import com.greensock.TweenMax;
        import com.greensock.easing.Linear;
        import com.greensock.easing.Quart;
        import flash.display.Sprite;
         * @author John Lindquist
        [SWF(width="900", height="480", frameRate="31")]
        class EasingATimeline extends Sprite
            private var square:Sprite;
            private static const STEP_DURATION:Number = 1;
            public function EasingATimeline()
                square = new Sprite();
                square.graphics.beginFill(0xcc0000);
                square.graphics.drawRect(0, 0, 50, 50);
                square.graphics.endFill();
                square.x = 100;
                square.y = 50;
                addChild(square);
                //set all the eases of your steps to Linear.easeNone
                var step1:TweenMax = TweenMax.to(square, STEP_DURATION, {x: 700, y: 50, ease: Linear.easeNone});
                var step2:TweenMax = TweenMax.to(square, STEP_DURATION, {x: 700, y: 350, ease: Linear.easeNone});
                var step3:TweenMax = TweenMax.to(square, STEP_DURATION, {x: 100, y: 350, ease: Linear.easeNone});
                var step4:TweenMax = TweenMax.to(square, STEP_DURATION, {x: 100, y: 50, ease: Linear.easeNone});
                var timeline:TimelineMax = new TimelineMax();
                timeline.append(step1);
                timeline.append(step2);
                timeline.append(step3);
                timeline.append(step4);
                //pause your timeline
                timeline.pause();
                //tween your timeline with whatever ease you want
                TweenMax.to(timeline, timeline.totalDuration, {currentTime: timeline.totalDuration, ease: Quart.easeInOut, repeat: -1});
    Please help me to solve this problem.
    Thanks.

  • How to modify this loop?

    Please look at my simple code.
    Now I can input two data and click 'run', then 'stop' to stop the program.
    But what I want is:
    1. I can stop the program at anytime (now I can only stop the program after click 'run')
    2. Before I click 'stop', I can 'run' the program any times. (right now it can only be run once).
    How to change this loop? Thanks.
    - TBird
    Attachments:
    Loop_test.vi ‏30 KB

    Is that what you want ?
    CC
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    Loop_test 2.vi ‏23 KB

  • How to conver this sqlserver code into Oracle

    Hi,
    Any one can help me how to covert below sqlserver code into Oracle?
    DECLARE @t1 DATETIME;
    DECLARE @t2 DATETIME;
    SET @t1 = GETDATE();
    select * from table;
    SET @t2 = GETDATE();
    SELECT DATEDIFF(millisecond,@t1,@t2) AS elapsed_ms;

    Hi,
    Do Like This ,
    This is The function going to calculate elapsed time ,execute this before the second script,
    CREATE function DATEDIFF
      startTime in timestamp with time zone,
      endTime in timestamp with time zone
    return number
    as
      interval_ interval day (9) to second (3);
    begin
      interval_ := endTime - startTime;
      return (extract(day from (interval_)) * 86400 +
             extract(hour from (interval_)) * 3600 +
             extract(minute from (interval_)) * 60 +
             extract(second from (interval_))) * 1000;
    end;And this Is the Script that i converted to oracle,
    SET server out put on;
    DECLARE
       v_t1         TIMESTAMP;
       v_t2         TIMESTAMP;
       lv_cur       sys_refcursor;
       lv_elapsed   VARCHAR2 (30);
    BEGIN
       v_t1 := SYSTIMESTAMP;
       OPEN lv_cur FOR
          SELECT *
            FROM emp;
       v_t2 := SYSTIMESTAMP;
       SELECT datediff (v_t1, v_t2) elapsed_ms
         INTO lv_elapsed
         FROM DUAL;
       DBMS_OUTPUT.put_line (v_t1);
       DBMS_OUTPUT.put_line (v_t2);
    END;Thanks & Rgds
    BCV.

  • How to transform this pascal code into java code!

    I want to transform this pascal code into java code . Please tel me how to do it because I really don't know how to do it!
    Thanks!
    {CALCULATE HOHN-LONDON FACTORS}
    var kk:tab4;
    PROCEDURE INTENS(var kk:tab4);
    begin
    for n:=0 to nr+2 do
    begin
    kk^[1,n]:=sqrt(lup*lup*yg*(yg-4)+4*sqr(n+1)) +lup*(yg-2);
    kk^[2,n]:= sqrt(lup*lup*yg*(yg-4)+4*sqr(n+1))-lup*(yg-2);
    kk^[3,n]:=0.5*(kk^[1,n]*kk^[1,n]+4*(sqr(n+1)-lup*lup));
    kk^[4,n]:= 0.5*(kk^[2,n]*kk^[2,n]+4*(sqr(n+1)-lup*lup));
    kk^[5,n]:= sqrt(ldown*ldown*yd*(yd-4)+4*sqr(n+1)) +ldown*(yd-2);
    end;
    end;
    BEGIN
    new (kk);
    intens(kk);
    writeln(f2,' ','N ','V','branch ','H-L');
    for n:=1 to np do
    begin
    fp1[n,v]:=(n-ldown)*(n+ldown+1)*sqr(kk^[2,n-1]*kk^[6,n]+4*(n+ldown)*(n-ldown+1));
    fp1[n,v]:=fp1[n,v]/(4*(n+0.5)*kk^[4,n-1]*kk^[8,n]) ;
    writeln(f2,' ',n,' ',v,' fp1 ',fp1[n,v]:10:2);
    end;
    for n:=1 to nq do
    begin
    fq1[n,v]:=sqr(kk^[2,n]*kk^[6,n]*(ldown+0.5)+4*(n-ldown+1)*(n+ldown+1)*(ldown-0.5)) ;
    fq1[n,v]:=fq1[n,v]/(2*(n+0.5)*kk^[4,n]*kk^[8,n]*(n+1.5));
    fq1[n,v]:=fq1[n,v]*(n+1);
    writeln(f2,' ',n,' ',v,' fq1 ',fq1[n,v]:10:2);
    end;
    for n:=1 to nr do
    begin
    fr1[n,v]:=sqr(kk^[2,n+1]*kk^[6,n]+4*(n-ldown+2)*(n+ldown+1));
    fr1[n,v]:=fr1[n,v]/(4*kk^[4,n+1]*kk^[8,n]*(n+1.5));
    fr1[n,v]:=fr1[n,v]*(n-ldown+1)*(n+ldown+2) ;
    writeln(f2,' ',n,' ',v,' fr1 ',fr1[n,v]:10:2);
    end;

    Basically it looks like this:
    public class KK{
         private your_type[][] kk = new your_type[length][length];
         private void intens(your_type[] kk){
              for(int n= 0; n<nr+2; n++){
                   kk[1][n] = Math.sqrt(lup*lup*yg*(yg-4)+4*Math.pow((n+1), 2)) +lup*(yg-2);
                   kk[2][n] = Math.sqrt(lup*lup*yg*(yg-4)+4*Math.pow((n+1), 2))-lup*(yg-2);
                   kk[3][n] = 0.5*(kk[1][n]*kk[1][n]+4*(Math.pow((n+1), 2)-lup*lup));
                   kk[4][n] = 0.5*(kk[2][n]*kk[2][n]+4*(Math.pow((n+1), 2)-lup*lup));
                   kk[5][n] = Math.sqrt(ldown*ldown*yd*(yd-4)+4*Math.pow((n+1), 2)) +ldown*(yd-2);
         public static void main(String args[]){
              KK k = new KK();
              k.intens(kk);
              System.out.println(f2  + ' ' + 'N ' + 'V' + 'branch ' + 'H-L');
              for(int n=1; n < np; n++){
                   fp1[n][v] = (n-ldown)*(n+ldown+1)*Math.pow((kk[2][n-1]*kk[6][n]+4*(n+ldown)*(n-ldown+1)), 2);
                   fp1[n][v] = fp1[n][v]/(4*(n+0.5)*kk[4][n-1]*kk[8][n]) ;
                   System.out.println(f2 + ' ' + n + ' ' + v + ' fp1 ' + fp1[n][v]:10:2);
              for(int n=1; n< nq;n++){
                   fq1[n][v] = Math.pow((kk[2][n]*kk[6][n]*(ldown+0.5)+4*(n-ldown+1)*(n+ldown+1)*(ldown-0.5)), 2);
                   fq1[n][v] = fq1[n][v]/(2*(n+0.5)*kk[4][n]*kk[8][n]*(n+1.5));
                   fq1[n][v] = fq1[n][v]*(n+1);
                   System.out.println(f2 + ' ' + n + ' ' + v + ' fq1 ' + fq1[n][v]:10:2);
              for(int n=1; n < nr; n++){
                   fr1[n][v] = Math.pow((kk[2][n+1]*kk[6][n]+4*(n-ldown+2)*(n+ldown+1)), 2);
                   fr1[n][v] = fr1[n][v]/(4*kk[4][n+1]*kk[8][n]*(n+1.5));
                   fr1[n][v] = fr1[n][v]*(n-ldown+1)*(n+ldown+2) ;
                   System.out.println(f2 + ' ' + n + ' ' + v + ' fr1 ' + fr1[n][v]:10:2); //fr1[n][v]:10:2 --> Here you must use the BigDecimal class
    }I'm not very sure because my pascal knowledge is extremely "dated".
    What about the converter I told you about?

  • How to improve this timer code ??

    Dear Sir:
    I have following code, it can works and if I remove the line "new JFrame("New Test Timer").setVisible(true);"
    Then It did not show up timer message,
    What is wrong here??
    I want to remove this line but still keep timer moving,
    How to do this??
    Thanks
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JFrame;
    import javax.swing.Timer;
    public class TimerSample {
      public static void main(String args[]) {
        new JFrame("New Test Timer").setVisible(true);
        ActionListener actionListener = new ActionListener() {
          public void actionPerformed(ActionEvent actionEvent) {
            System.out.println("Hello World Timer");
        Timer timer = new Timer(1000, actionListener);
        timer.start();
    }

    Swing timers are called in the event dispatch thread. If you don't start the event dispatch thread (by setting your GUI visible) then they don't get called.
    If you want a timer but you don't want a GUI, then use a java.util.Timer.

  • How to write this java code in jsp using jstl  tags?

    Can anybody help me on this?
    I dont know how to check the containsKey using jstl tags?
    <%
         LinkedHashMap yearMap     =     (LinkedHashMap)request.getAttribute("yearMap");
         TreeSet nocSet               =     (TreeSet)request.getAttribute("nocSet");
         Iterator     yearMapIt     =     yearMap.keySet().iterator();
         while(yearMapIt.hasNext())
              int yearValue               =     (Integer)yearMapIt.next();
    %>
    <tr>
              <td><%=yearValue%></td>
    <%
              LinkedHashMap monthMap     =     (LinkedHashMap)yearMap.get(yearValue);
              Iterator     nocSetIt     =     nocSet.iterator();
              while(nocSetIt.hasNext())
                   String nCase=(String)nocSetIt.next();
                   if(monthMap.containsKey(nCase))
                        String count     =     (String)monthMap.get(nCase);
    %>
                        <td> <%= count %> </td>
    <%            }
                   else
    %>          
                        <td> 0 </td>     
    <%          
    %>
    </tr>
    <% } %>Edited by: avn_venki on Feb 18, 2008 11:54 PM

    <c:forEach var="yearMap" items="${requestScope.yearMap}">
         <th> <c:out value="${yearMap.key}"/> </th>
    <bean:define id="monthMap" value="${yearMap.value}"/>
    <c:forEach var="nocSet" items="${nocSet}">
    then how to write containsKey using tags??

  • Compose an Email - How to modify this feild?

    This feild in red circle bellow, is a nice feature in the selection of quick contacts to send emails.   It had always defaulted to the most common email address I would send through the z10.. But today this feild is another address.  Does anyone know ho to modify or to add your favorite contacts? I know as you select, it will add to the email recipient, how are the workings of this feild selected.. ?

    Is there more discussion about this feature anywhere? I am having trouble finding support for answering some questions about it.
    - like, where is this field information stored?
    - having the two frequent email addresses shown is nice, but what about the third one? It seems like you should be able to swipe / pan over to the next one.
    - How do I eliminate one of what the Z10 wants me to have there?  Especially, if I have a lengthy exchange with a support issue or something, and I don't want to see [email protected] permanently in that location until I email [email protected] enough times to move it to a place of honor.
    - I really like the associated emails feature, where you can select one of those frequent two, and others that you typically cc will appear as well.  However, where are those addresses stored? I would like to be able to add those cc's in some easy fashion to my Contacts - like, an "add all" feature or something.  For those suggested cc's in the list, why don't they pop up as a suggestion when you begin typing? For instance, if one of the two email addresses is [email protected], if I compose an email and begin typing in the "to" or "cc" field "MyF . . ." I can select [email protected] only if that entry is already in my Contacts. How do I transfer all the other emails that are obivously stored somewhere to my contacts?

  • How to implement this C code line: for ( int i = 0; i G_ReadLen; i = i + 2 )

    I want to implement the following C++ code in labview but i cannot make or loop to increase by two
    int j = 0; for ( int i = 0; i < G_ReadLen; i = i + 2 ) {
    BYTE AD_H = ByteArray.GetAt(i);
    BYTE AD_L = ByteArray.GetAt(i + 1);
    ValueArray[j] = AD_H << 8;
    ValueArray[j] = ValueArray[j] + AD_L;unsigned long Temp = ValueArray[j] >> 12; Volts[j] = ((float)ValueArray[j]) * 0.0048875;Message.Format("%X , %X - %X, -- %d, +%.3f Volts", AD_H, AD_L, ValueArray[j], ValueArray[j], Volts[j]); m_output_ep1i.InsertString(0,Message);
    j = j + 1;
    Thanks
    Solved!
    Go to Solution.

    Your code will not work.
    You are replacing elements of an empty array. A no-op in LabVIEW.
    Besides there is a lot easier way to do this:
    I just hope this is not a homework assignment.
    And for completeness sake here is Mikes solution (seen below):
    Ton
    Message Edited by TonP on 11-14-2008 12:55 PM
    Message Edited by TonP on 11-14-2008 01:03 PM
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!
    Attachments:
    Read as U16.png ‏2 KB

  • How to understand this java code?

    for example:
    * The HelloWorldApp class implements an application that
    * simply displays "Hello World!" to the standard output.
    class HelloWorldApp {
    public static void main(String[] args) {
    System.out.println("Hello World!"); //Display the string.
    the explaination of above example is below:
    above example
    The method signature for the main method contains three modifiers:
    public indicates that the main method can be invoked by any object. Controlling Access to Members of a Class covers the ins and outs of the access modifiers supported by the Java programming language.
    static indicates that the main method is a class method (as opposed to an instance method). Understanding Instance and Class Members talks about class methods and variables.
    void indicates that the main method doesn't return any value.
    in that statement :
    void indicates that the main method doesn't return any value.
    while (System.out.println("Hello World!"); //Display the string.) is in
    main method
    when we run that example and it runs below result:
    Hello World!
    so i think "Hello World" is that the main method return value.
    i know i have misunderstood.
    who can help me?

    What the hell are you on about?
    System.out is a PrintStream. When you call print() or println() the parameter is displayed in/on whatever that PrintStream is associated with. If you have java 1.5 you can run the below code and see that the output will be in the file out.txt. Not in the console and definately not returned.
    import java.io.*;
    class OutTest {
      public static void main(String[] args) {
        File file = new File("out.txt");
        PrintStream ps = null;
        try {
          ps = new PrintStream(file);
        } catch(FileNotFoundException fnfe) {
          fnfe.printStackTrace();
        System.setOut(ps);
        System.out.println("Hello World");
    }

  • How to modify this AppleScript to work with Safari 7.0?

    I have been using this AppleScript as an Automator service in order to get Safari to close all tabs to the right of the current tab. However I have updated to Mavericks (10.9) and find that this no longer works.
    Can anyone advise how this AppleScript should be changed in order to make it work again?

    The script does still work: just needed a restart. A more concise version of the script is available here.

  • How to repair this error code hs_err_pid4368

    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_FLT_STACK_CHECK (0xc0000092) at pc=0x0725d069, pid=4368, tid=4980
    # Java VM: Java HotSpot(TM) Client VM (1.6.0_01-b06 mixed mode, sharing)
    # Problematic frame:
    # v ~RuntimeStub::resolve_virtual_call
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x01dfbc00): JavaThread "main" [_thread_in_Java, id=4980]
    siginfo: ExceptionCode=0xc0000092, ExceptionInformation=0x00000000 0x01793dd4
    Registers:
    EAX=0xffffffff, EBX=0x000008c5, ECX=0x22037400, EDX=0x2203ac28
    ESP=0x01793d68, EBP=0x01793e78, ESI=0x22037400, EDI=0x000008c5
    EIP=0x0725d069, EFLAGS=0x00010212
    Top of Stack: (sp=0x01793d68)
    0x01793d68: ffff1372 ffff4020 ffffffff 05fb3e67
    0x01793d78: 011c001b 01793e50 ffff0023 00ffffff
    0x01793d88: 00ffffff ffffffff ffff00ff ffff00ff
    0x01793d98: 00ffffff 00ffffff ffffffff ffff00ff
    0x01793da8: ffff00ff 00000000 90000000 00004002
    0x01793db8: 5be00000 4005c805 00000000 80000000
    0x01793dc8: 00004002 00000000 3ffd8000 01793e1c
    0x01793dd8: 01793e34 00000000 01793e2c 00000000
    Instructions: (pc=0x0725d069)
    0x0725d059: 00 00 83 ec 6c dd 34 24 9b dd 24 24 dd 5c 24 6c
    0x0725d069: dd 5c 24 74 dd 5c 24 7c dd 9c 24 84 00 00 00 dd
    Stack: [0x016a0000,0x017a0000), sp=0x01793d68, free space=975k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    v ~RuntimeStub::resolve_virtual_call
    J java.util.Properties$LineReader.readLine()I
    j java.util.Properties.load0(Ljava/util/Properties$LineReader;)V+7
    j java.util.Properties.load(Ljava/io/InputStream;)V+10
    j java.util.logging.LogManager.readConfiguration(Ljava/io/InputStream;)V+13
    j java.util.logging.LogManager.readConfiguration()V+181
    j java.util.logging.LogManager$2.run()Ljava/lang/Object;+4
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x09261c00 JavaThread "Low Memory Detector" daemon [_thread_new, id=5728]
    0x0925d000 JavaThread "CompilerThread0" daemon [_thread_blocked, id=5496]
    0x0925bc00 JavaThread "Attach Listener" daemon [_thread_blocked, id=5396]
    0x0925ac00 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=5392]
    0x09256800 JavaThread "Finalizer" daemon [_thread_blocked, id=5404]
    0x09252400 JavaThread "Reference Handler" daemon [_thread_blocked, id=5400]
    =>0x01dfbc00 JavaThread "main" [_thread_in_Java, id=4980]
    Other Threads:
    0x09249000 VMThread [id=896]
    0x0927c800 WatcherThread [id=5484]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 960K, used 179K [0x22010000, 0x22110000, 0x22770000)
    eden
    [error occurred during error reporting, step 190, id 0xc0000092]
    Dynamic libraries:
    0x00400000 - 0x0049a000      C:\Programme\Internet Explorer\IEXPLORE.EXE
    0x7c910000 - 0x7c9c7000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c906000      C:\WINDOWS\system32\kernel32.dll
    0x77da0000 - 0x77e4a000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e50000 - 0x77ee1000      C:\WINDOWS\system32\RPCRT4.dll
    0x77ef0000 - 0x77f37000      C:\WINDOWS\system32\GDI32.dll
    0x7e360000 - 0x7e3f0000      C:\WINDOWS\system32\USER32.dll
    0x77be0000 - 0x77c38000      C:\WINDOWS\system32\msvcrt.dll
    0x77f40000 - 0x77fb6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x7c9d0000 - 0x7d1ef000      C:\WINDOWS\system32\SHELL32.dll
    0x774b0000 - 0x775ed000      C:\WINDOWS\system32\ole32.dll
    0x442c0000 - 0x443e4000      C:\WINDOWS\system32\urlmon.dll
    0x770f0000 - 0x7717c000      C:\WINDOWS\system32\OLEAUT32.dll
    0x43f60000 - 0x43fa5000      C:\WINDOWS\system32\iertutil.dll
    0x77bd0000 - 0x77bd8000      C:\WINDOWS\system32\VERSION.dll
    0x76330000 - 0x7634d000      C:\WINDOWS\system32\IMM32.DLL
    0x10000000 - 0x10007000      C:\WINDOWS\system32\ASAPHook.dll
    0x773a0000 - 0x774a3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x5d450000 - 0x5d4ea000      C:\WINDOWS\system32\comctl32.dll
    0x444c0000 - 0x44a8a000      C:\WINDOWS\system32\IEFRAME.dll
    0x76bb0000 - 0x76bbb000      C:\WINDOWS\system32\PSAPI.DLL
    0x5b0f0000 - 0x5b128000      C:\WINDOWS\system32\UxTheme.dll
    0x76cc0000 - 0x76ccb000      C:\Programme\Internet Explorer\custsat.dll
    0x746a0000 - 0x746eb000      C:\WINDOWS\system32\MSCTF.dll
    0x63000000 - 0x63013000      C:\WINDOWS\system32\SynTPFcs.dll
    0x20000000 - 0x202d9000      C:\WINDOWS\system32\xpsp2res.dll
    0x75250000 - 0x7527e000      C:\WINDOWS\system32\msctfime.ime
    0x5dff0000 - 0x5e01f000      C:\WINDOWS\system32\IEUI.dll
    0x76320000 - 0x76325000      C:\WINDOWS\system32\MSIMG32.dll
    0x4eba0000 - 0x4ed43000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.2600.2180_x-ww_522f9f82\gdiplus.dll
    0x47060000 - 0x47081000      C:\WINDOWS\system32\xmllite.dll
    0x77b10000 - 0x77b32000      C:\WINDOWS\system32\apphelp.dll
    0x76f90000 - 0x7700f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77010000 - 0x770e3000      C:\WINDOWS\system32\COMRes.dll
    0x74670000 - 0x7469a000      C:\WINDOWS\system32\msimtf.dll
    0x77fc0000 - 0x77fd1000      C:\WINDOWS\system32\Secur32.dll
    0x779f0000 - 0x77a46000      C:\WINDOWS\System32\cscui.dll
    0x765a0000 - 0x765bd000      C:\WINDOWS\System32\CSCDLL.dll
    0x778f0000 - 0x779e4000      C:\WINDOWS\system32\SETUPAPI.dll
    0x325c0000 - 0x325d2000      C:\Programme\Microsoft Office\OFFICE11\msohev.dll
    0x61930000 - 0x6197a000      C:\Programme\Internet Explorer\ieproxy.dll
    0x441e0000 - 0x442af000      C:\WINDOWS\system32\WININET.dll
    0x01460000 - 0x01469000      C:\WINDOWS\system32\Normaliz.dll
    0x75dc0000 - 0x75e51000      C:\WINDOWS\system32\MLANG.dll
    0x71a10000 - 0x71a27000      C:\WINDOWS\system32\ws2_32.dll
    0x71a00000 - 0x71a08000      C:\WINDOWS\system32\WS2HELP.dll
    0x01de0000 - 0x01dee000      C:\Programme\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
    0x7c340000 - 0x7c396000      C:\WINDOWS\system32\MSVCR71.dll
    0x01e00000 - 0x01e43000      C:\Programme\Windows Desktop Search\dsWebAllow.dll
    0x780c0000 - 0x78121000      C:\Programme\Windows Desktop Search\msvcp60.dll
    0x76620000 - 0x766d5000      C:\WINDOWS\system32\USERENV.dll
    0x74900000 - 0x74a0e000      C:\WINDOWS\system32\msxml3.dll
    0x02470000 - 0x02473000      C:\Programme\Windows Desktop Search\de-de\dsWebAllowRes.dll.mui
    0x02480000 - 0x02485000      C:\Programme\Windows Desktop Search\dsWebAllowRes.dll
    0x02490000 - 0x024af000      C:\WINDOWS\system32\dla\tfswshx.dll
    0x024b0000 - 0x024bf000      C:\WINDOWS\system32\tfswapi.dll
    0x024c0000 - 0x0255c000      C:\WINDOWS\system32\dla\tfswcres.dll
    0x6d7c0000 - 0x6d839000      C:\Programme\Java\jre1.6.0_01\bin\ssv.dll
    0x025a0000 - 0x025d5000      C:\Programme\Norton AntiVirus\NavShExt.dll
    0x7c120000 - 0x7c139000      C:\WINDOWS\system32\ATL71.DLL
    0x7c3a0000 - 0x7c41b000      C:\WINDOWS\system32\MSVCP71.dll
    0x71a30000 - 0x71a3a000      C:\WINDOWS\system32\WSOCK32.dll
    0x6af30000 - 0x6af6d000      C:\Programme\Gemeinsame Dateien\Symantec Shared\ccL30.dll
    0x025e0000 - 0x025f0000      C:\Programme\HPQ\IAM\Bin\ItIeAddIN.dll
    0x025f0000 - 0x02659000      C:\Programme\HPQ\IAM\Bin\ItMsg.dll
    0x7c000000 - 0x7c054000      C:\WINDOWS\system32\MSVCR70.dll
    0x74c00000 - 0x74c2c000      C:\WINDOWS\system32\OLEACC.dll
    0x7d1f0000 - 0x7d4ae000      C:\WINDOWS\system32\msi.dll
    0x76970000 - 0x76a21000      C:\WINDOWS\system32\SXS.DLL
    0x71cc0000 - 0x71cdc000      C:\WINDOWS\system32\actxprxy.dll
    0x719b0000 - 0x719f0000      C:\WINDOWS\system32\mswsock.dll
    0x66710000 - 0x66769000      C:\WINDOWS\system32\hnetcfg.dll
    0x719f0000 - 0x719f8000      C:\WINDOWS\System32\wshtcpip.dll
    0x76ea0000 - 0x76edc000      C:\WINDOWS\system32\RASAPI32.dll
    0x76e50000 - 0x76e62000      C:\WINDOWS\system32\rasman.dll
    0x597d0000 - 0x59824000      C:\WINDOWS\system32\NETAPI32.dll
    0x76e70000 - 0x76e9f000      C:\WINDOWS\system32\TAPI32.dll
    0x76e40000 - 0x76e4e000      C:\WINDOWS\system32\rtutils.dll
    0x76af0000 - 0x76b1e000      C:\WINDOWS\system32\WINMM.dll
    0x77c40000 - 0x77c63000      C:\WINDOWS\system32\msv1_0.dll
    0x76d20000 - 0x76d39000      C:\WINDOWS\system32\iphlpapi.dll
    0x72240000 - 0x72245000      C:\WINDOWS\system32\sensapi.dll
    0x76f80000 - 0x76f86000      C:\WINDOWS\system32\rasadhlp.dll
    0x76ee0000 - 0x76f07000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f70000 - 0x76f78000      C:\WINDOWS\System32\winrnr.dll
    0x76f20000 - 0x76f4d000      C:\WINDOWS\system32\WLDAP32.dll
    0x44ba0000 - 0x44f10000      C:\WINDOWS\system32\mshtml.dll
    0x02820000 - 0x02849000      C:\WINDOWS\system32\msls31.dll
    0x44b30000 - 0x44b90000      C:\WINDOWS\system32\ieapfltr.dll
    0x76bf0000 - 0x76c1e000      C:\WINDOWS\system32\WINTRUST.dll
    0x77a50000 - 0x77ae5000      C:\WINDOWS\system32\CRYPT32.dll
    0x77af0000 - 0x77b02000      C:\WINDOWS\system32\MSASN1.dll
    0x76c50000 - 0x76c78000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x77660000 - 0x77681000      C:\WINDOWS\system32\NTMARTA.DLL
    0x71b70000 - 0x71b83000      C:\WINDOWS\system32\SAMLIB.dll
    0x03480000 - 0x034d7000      C:\Programme\HPQ\IAM\Bin\ItSSO.dll
    0x034e0000 - 0x03503000      C:\Programme\HPQ\IAM\Bin\ItVCL.dll
    0x03510000 - 0x03518000      C:\Programme\HPQ\IAM\Bin\ItRpc.dll
    0x03520000 - 0x03529000      C:\Programme\HPQ\IAM\Bin\ItClient.dll
    0x03890000 - 0x038a4000      C:\Programme\Gemeinsame Dateien\Symantec Shared\Script Blocking\scrauth.dll
    0x038b0000 - 0x038c3000      C:\Programme\Gemeinsame Dateien\Symantec Shared\Script Blocking\ScrBlock.dll
    0x6b180000 - 0x6b192000      C:\Programme\Gemeinsame Dateien\Symantec Shared\ccVrTrst.dll
    0x0ffd0000 - 0x0fff8000      C:\WINDOWS\system32\rsaenh.dll
    0x63380000 - 0x633f8000      c:\windows\system32\jscript.dll
    0x75790000 - 0x757fb000      C:\WINDOWS\system32\USP10.dll
    0x30000000 - 0x30224000      C:\WINDOWS\system32\Macromed\Flash\Flash8b.ocx
    0x76350000 - 0x7639a000      C:\WINDOWS\system32\comdlg32.dll
    0x72c90000 - 0x72c99000      C:\WINDOWS\system32\wdmaud.drv
    0x72c80000 - 0x72c88000      C:\WINDOWS\system32\msacm32.drv
    0x77bb0000 - 0x77bc5000      C:\WINDOWS\system32\MSACM32.dll
    0x77ba0000 - 0x77ba7000      C:\WINDOWS\system32\midimap.dll
    0x1b000000 - 0x1b00c000      C:\WINDOWS\system32\ImgUtil.dll
    0x1b060000 - 0x1b06e000      C:\WINDOWS\system32\pngfilt.dll
    0x35c50000 - 0x35c89000      C:\WINDOWS\system32\Dxtrans.dll
    0x76ad0000 - 0x76ae1000      C:\WINDOWS\system32\ATL.DLL
    0x6d910000 - 0x6d91a000      C:\WINDOWS\system32\ddrawex.dll
    0x736d0000 - 0x73719000      C:\WINDOWS\system32\DDRAW.dll
    0x73b30000 - 0x73b36000      C:\WINDOWS\system32\DCIMAN32.dll
    0x35cb0000 - 0x35d07000      C:\WINDOWS\system32\Dxtmsft.dll
    0x05a30000 - 0x05a4c000      C:\Programme\HPQ\IAM\Bin\Aswallet.dll
    0x44160000 - 0x441d7000      C:\WINDOWS\system32\mshtmled.dll
    0x05bc0000 - 0x05bcb000      C:\Programme\Gemeinsame Dateien\Microsoft Shared\OFFICE11\MSOXMLMF.DLL
    0x767a0000 - 0x767c7000      C:\WINDOWS\system32\schannel.dll
    0x68100000 - 0x68124000      C:\WINDOWS\system32\dssenh.dll
    0x73300000 - 0x73365000      c:\windows\system32\vbscript.dll
    0x13470000 - 0x134c0000      C:\WINDOWS\system32\wmpdxm.dll
    0x71a80000 - 0x71a92000      C:\WINDOWS\system32\MPR.dll
    0x12950000 - 0x133b4000      C:\WINDOWS\system32\wmp.dll
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~1\Java\JRE16~1.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE16~1.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.6.0_01 -Djavaplugin.nodotversion=160_01 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE16~1.0_0 -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~1\Java\JRE16~1.0_0\classes -Xbootclasspath/a:C:\PROGRA~1\Java\JRE16~1.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE16~1.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.6.0_01 -Djavaplugin.nodotversion=160_01 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE16~1.0_0
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    PATH=C:\PROGRA~1\Java\JRE16~1.0_0\bin;C:\Programme\Internet Explorer;;C:\Programme\Internet Explorer;;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\ATI Technologies\ATI Control Panel;C:\Programme\HPQ\IAM\bin;c:\Programme\Microsoft SQL Server\90\Tools\binn\;C:\Programme\ATI Technologies\Fire GL 3D Studio Max;c:\Programme\ATI Technologies\ATI.ACE\;.
    USERNAME=Rainer Rothe
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 13 Stepping 8, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 family 6, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1047920k(476080k free), swap 2519388k(1944964k free)
    vm_info: Java HotSpot(TM) Client VM (1.6.0_01-b06) for windows-x86, built on Mar 14 2007 00:24:02 by "java_re" with unknown MS VC++:1310

    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6500626

  • How to write this sql code ?

    for example below shows:
    create table temp
    order_type varchar2(30),
    order_num number);
    insert into temp values('apple',000001);
    insert into temp values('banana',000002);
    insert into temp values('chair',000003);
    select *
    from temp
    where instr(order_type,decode(x,1,'a',2,'b',2,'c',order_type)) >0
    if i let x equals 2 and i want to get b and c from above querying .
    why above query could not get 'c' and only get 'b' if i give 2 to x ?
    how to write above select clause ?
    who can help me ?
    thanks!

    Decode will return the first match;
    SQL> select decode(2,1,'a',2,'b',2,'c')
    from dual
    D
    b
    1 row selected.This may help;
    old: select *
    from temp
    where regexp_like(order_type, case to_number(&x)
                                     when 1 then 'a'
                                     when 2 then 'b|c'
                                  end)
    new: select *
    from temp
    where regexp_like(order_type, case to_number(2)
                                     when 1 then 'a'
                                     when 2 then 'b|c'
                                  end)
    ORDER_TYPE                      ORDER_NUM
    banana                                  2
    chair                                   3
    2 rows selected.

Maybe you are looking for

  • File Save Dialog does not show web folders

    Hi. My system is SAP ECC 6.0. From custom abap program, I need to be able to navigate to a sharepoint folder and save a file to it. I call METHOD cl_gui_frontend_services=>file_save_dialog for this. I have already mapped/added the SharePoint site (ex

  • Income payment order - UK payroll

    Hi all, I need a confirmaiton on whether SAP supports for Income payment orders in UK payroll like court orders? If yes can you please provide me the details please. Thanks All in advance, Veena

  • Where is the sound?

    PLEASE HELP!!!! sometimes....very often... i can't hear music in itunes....tried to get help from itunes via email....they referred me to apple...

  • So tired of iTunes & Podcasts, recommendations?

    latest iTunes, OSX & IOS.  iTunes corrupted a week ago...again.  I completely rebuilt it on another, less used HD.  It's corrupted again now.  Freezes when I try to download podcast updates, claims 100% of my CPU, and runs the fan on high.  No other

  • Cant update new iPad, from 5.1 to 5.1.1 because it says it's updated.

    Hello. My new iPad, is running iOS 5.1. It shows 1 notification on the settings, but when I access the option to update it, it says, that my software is updated.