Prob in string...

I have the following table in database.
i have a jsp page in which i have used the following declaration:
I have used String in for pay_post column, which is declared CHAR in database.Is it OK or not.(In form it is a radio button)
and another is i have used Date in Date type Coulun, is it OK or not...
try
float chq_amt;
Date pay_date,chq_date;
String pay_post,vou_no,pay_narr,chq_no;
SQL> descr pay_header;
Name Null? Type
VOU_NO NOT NULL VARCHAR2(9)
PAY_DATE NOT NULL DATE PAY_POST CHAR(1)
PAY_NARR VARCHAR2(80)
CHQ_NO NOT NULL VARCHAR2(20)
CHQ_DATE NOT NULL DATE CHQ_AMT NOT NULL NUMBER(15,2)

You can always use a getString() to fetch any kind of data. But the main thing is... did you try it or is it giving some error???

Similar Messages

  • Search i a string

    Hello, 
    If I probe a string. I get this from probe Watch.
    Name:  Tested
    Value:   "Testpart_0_part_0"
    How can read out the value from "Testpart"   ( in this case 0).
    Br
    P
    Solved!
    Go to Solution.

    I get the feeling this is a LabVIEW question, if that is the case you have posted in the wrong place.
    For DIAdem you could use split function
    Dim sArray,sSampleString, iTestPart
    sSampleString = "Testpart_1_part_0"
    sArray = Split(sSampleString, "_", -1,vbTextCompare) '
    iTestPart = Val(sArray(1))
    Beginner? Try LabVIEW Basics
    Sharing bits of code? Try Snippets or LAVA Code Capture Tool
    Have you tried Quick Drop?, Visit QD Community.

  • Netbeans 5.5 WebService Client - How do I pass a parameter to the service?

    I'm using Netbeans 5.5 and have generated a webservice client (JAX-WS 2.0) off of the existing WSDL. The webservice requires me to pass it some information. Per the generated code, it is expecting an EncryptedData object. The problem is, I have no idea what the content of this data object should be as it pertains to an anonymous complex type. The code generated for this class is listed below. Any ideas? By the way, I know what SOAP should be generated... I just don't know how to stick the soap information into this EncryptedData object. Thanks!
    * <p>Java class for anonymous complex type.
    * <p>The following schema fragment specifies the expected content contained within this class.
    * <pre>
    * <complexType>
    * <complexContent>
    * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
    * <sequence>
    * <any/>
    * </sequence>
    * </restriction>
    * </complexContent>
    * </complexType>
    * </pre>
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "", propOrder = {
    "content"
    public static class EncryptedData {
    @XmlMixed
    @XmlAnyElement(lax = true)
    protected List<Object> content;
    * Gets the value of the content property.
    * <p>
    * This accessor method returns a reference to the live list,
    * not a snapshot. Therefore any modification you make to the
    * returned list will be present inside the JAXB object.
    * This is why there is not a <CODE>set</CODE> method for the content property.
    * <p>
    * For example, to add a new item, do as follows:
    * <pre>
    * getContent().add(newItem);
    * </pre>
    * <p>
    * Objects of the following type(s) are allowed in the list
    * {@link Object }
    * {@link String }
    public List<Object> getContent() {
    if (content == null) {
    content = new ArrayList<Object>();
    return this.content;
    Message was edited by:
    Tosa_Developer

    hello,
    I have done exactly as you have mentioned but I am facing prob passing String or XML data in the newItem variable:
    If I run the below code in jsp --->
    EncryptedData eD=new EncryptedData ();
    String newItem="test";
    eD.getContent().add(newItem);
    port.webMethod(eD);
    I encouter the following error at runtime:
    javax.xml.bind.MarshalException - with linked exception: [com.sun.istack.SAXException2: unable to marshal type "java.lang.String" as an element because it is missing an @XmlRootElement annotation]
    Pls help me pass either XML or String value to the webservice inside this encrpteddata.
    Thanx 4 ton 4 ur time and help.

  • Problem with SP with table parameters

    Hello, I have problem with stored procedure with paramater which is table type.
    I have defined my own type
    CREATE OR REPLACE TYPE STRING_LST AS TABLE OF VARCHAR2(80);
    and i have stored procedure like this
      PROCEDURE probe(outList OUT STRING_LST) IS   BEGIN     outList := STRING_LST();     outList.EXTEND();     outList(outList.LAST) := 'ONE';     outList.EXTEND();     outList(outList.LAST) := 'TWO';     outList.EXTEND();     outList(outList.LAST) := 'THREE';   END probe;
    I have java class which connects to the database and calls this procedure
    package mypackage; import java.sql.CallableStatement; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Types; import java.sql.Array; public class DAO_Test { public static String toNormalString (String aa) { if (aa != null && aa.startsWith("0x")) { StringBuffer str = new StringBuffer(64); for (int i = 2; i < aa.length(); i += 2) { str.append((char) Integer.parseInt(aa.substring(i, i + 2), 16)); } return str.toString(); } else { return aa; } } public void probe ( ) { try { DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver()); Connection conn = DriverManager.getConnection("dbc:oracle:thin:@server_ip:database_name", "sa", "blahblah"); String sql = "{ CALL PROBE(?) }"; String sqlType = "STRING_LST"; CallableStatement cs = conn.prepareCall(sql); cs.registerOutParameter(1, Types.ARRAY, sqlType); cs.execute(); Array arr = cs.getArray(1); String[] values = (String[]) arr.getArray(); for (int i = 0; i < values.length; i++) { System.out.println("" + i + ": '" + toNormalString(values) + "'");
    cs.close();
    conn.close();
    } catch (SQLException e) {
    logger.error("SQLException", e);
    } catch (Exception e) {
    logger.error("Exception", e);
    public static void main (String args[]) throws SQLException {
    DAO_Test test = new DAO_Test();
    test.probe();
    Now...
    When I run this class on my local machine the result is OK nad looks like
    1: 'ONE'
    2: 'TWO'
    3: 'THREE'
    But when I copy this class on the server and run it, the result is wrong
    1: '???'
    2: '???'
    3: '???'
    Here is my environment:
    on local machine
    eclipse 3.3.1
    java 1.5 (java version compiler in eclipse is 1.4)
    on server
    oracle 9.2.0.6.0
    java 1.4.2_08
    Result from table parameters are always 3 question marks :|
    What is the problem?
    Rafał

    HI,
    I think i found the solution: nls_charset12.jar from page
    http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc9201.html
    I have copied this jar to server lib directory and it works fine :)

  • Burn always fails at the beginning

    Hello,
    I've a Mac Pro with two DVD burners installed. I have purchased them separately, because the original ones had a mechanical problem so I changed them.
    I can burn fine with the one plugged as master, but the slave one always gives the same problem (I'm using Toast): when it starts writing the lead-in, it hangs for a couple of seconds, doing apparently nothing, and then finally manages to continue normally. When the disk is verified by Toast, it always fails because the sector 0 can't be read. Further, once the OS tries to read the disk, I get the “SAM Multimedia: read or write failed” messages in the Console, along with random “Unable to probe disk” strings, until it gives up and says the disk is blank.
    However, devices which don't need to carefully understand the disk format (such as plain DVD readers for TVs) can read the disk just fine, meaning only the lead-in (the first sector) has the problem.
    I think I've already read a similar story, but I can't remember the solution. Advices welcome!

    Thanks. I verified and it was unchecked.
    But I fail to see how it would block burning the data for around 15 seconds and then resume. Can you tell me?

  • HTTP probe issue with expect regex string

    Hello,
    We have a simple cgi status page setup to poll a background service and return a "PASS" or "FAIL" as output.  I've setup an HTTP probe to look for the "PASS" to determine application health.  The issue appears to be that the expect regex is searching the HEADER but not the BODY of the web page.  I can successfully match on any string in the header, but never on anything in the body.
    Here is what the web page returns if you telnet to it:
    HTTP/1.1 200 OK
    Date: Thu, 22 Sep 2011 22:45:07 GMT
    Server: Apache/2.0.59  HP-UX_Apache-based_Web_Server (Unix) DAV/2
    Content-Length: 4
    Connection: close
    Content-Type: text/plain; charset=iso-8859-1
    PASS
    Here is my probe:
    probe http JOE-TEST-CS
      interval 45
      passdetect interval 30
      receive 30
      request method get url /cgi-bin/ERMS-PREP-statusRepo.cgi
      expect status 0 999
      open 20
      expect regex "PASS"
    Here is the output of the show probe:
    ACE1/euhr-test-ace2# sh probe JOE-TEST-CS detail
    probe       : JOE-TEST-CS
    type        : HTTP
    state       : ACTIVE
    description :
       port      : 80      address     : 0.0.0.0         addr type  : -
       interval  : 45      pass intvl  : 30              pass count : 3
       fail count: 3       recv timeout: 30
       http method      : GET
       http url         : /cgi-bin/ERMS-PREP-statusRepo.cgi
       conn termination : GRACEFUL
       expect offset    : 0         , open timeout     : 20
       expect regex     : PASS
       send data        : -
                           --------------------- probe results --------------------
       probe association   probed-address  probes     failed     passed     health
       ------------------- ---------------+----------+----------+----------+-------
       serverfarm  : JOE-TEST-PROBE-CS
         real      : EUHRTDM50.APP[0]
                           192.168.73.71   2          2          0          FAILED
       Socket state        : CLOSED
       No. Passed states   : 0         No. Failed states : 1
       No. Probes skipped  : 0         Last status code  : 200
       No. Out of Sockets  : 0         No. Internal error: 0
       Last disconnect err : User defined Reg-Exp was not found in Host Response
      Last probe time     : Thu Sep 22 15:00:36 2011
       Last fail time      : Thu Sep 22 15:00:36 2011
       Last active time    : Thu Sep 22 09:40:19 2011
    If I replace the expect regex "PASS" with anything from the HEADER it succeeds!
    Any thoughts?

    Sorry, I missed it.  The content-length in your request is 4.  I think this may be the issue.  I created a basic HTML page that says PASS in the body and my server is returning a content-length of 224 when I fetch the page.  Here is my HTML request:
    GET /index.html
    http-equiv="Content-Type">
      Probe
    PASS
    Here are my headers that I received:
    (Status-Line)    HTTP/1.1 200 OK
    Content-Length    224
    Content-Type    text/html
    Last-Modified    Tue, 27 Sep 2011 12:05:00 GMT
    Accept-Ranges    bytes
    Etag    "8cca60aed7dcc1:41f"
    Server    Microsoft-IIS/6.0
    Date    Tue, 27 Sep 2011 12:25:59 GMT
    What version of code are you running on your ACE?  I can also look to see if there are any known issues.
    Kris

  • Unable to read big files into string object  and java.lang.OutOfMemory Prob

    Hi All,
    I have an application that uses applet and servlet communication. On the client side I am reading an large xml file of 12MB size (using JFileChooser) and converting the file to an string object using below code. But I am getting java.lang.OutOfMemory on the client side . But the same below code works fine for small xml files which are less than 4MB sizes:
    BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(file),"UTF8"), 1024*12);
    String s, s2 = new String();
    while((s = in.readLine())!= null)
         s2 += s + "\n";
    I even tried below code but still java.lang.OutOfMemory is coming:
    while (true)
         int i = in.read();
         if (i == -1)
              break;
         sb.append(i);
    Please let me know what am I doing wrong here ...
    Thanks & Regards,
    Sony.

    Using a String is bad for the following reason:
    When you initially create the String, it has a certain memory size (allocated length if you will). As you keep appending to this String, then memory reallocation will occur over and over, slowing your program down dramatically (ive seen with a 16k x 8 Char file taking 30 secs to read into memory using Strings in this way)
    A Better way would be if you knew the number of characters in the XML file (Using some File size method for example) Then you can use a StringBuffer, which will pre allocate enough space (or try to, it may just be that you cannot create a string as large as you need). You can use toString() method to get the resultant in a String Object (the extra allocated space at the end of the Buffer will be removed)
    StringBuffer strBuf = new StringBuffer(xxxx);
    Where xx is the length (int). Assuming that you are only allowed to enter an int to the constructor then (platform depedant) an int is 2^31 at maximum (or whatever) which allows 2.14e9 characters, therefore an xml file being totally filed would allow a size of ~2048 MB to be read in.
    Try it and see.

  • Small prob in ignoring string want to skip 2nd value?

    Hi all,
    here CONSTRAINT Adept_Usr_Login NOT NULL ,
    i have three fixed but 2nd is dynamic how to do this here.
    if( tokens0.equalsIgnoreCase( "CONSTRAINT" ) && tokens2.equalsIgnoreCase( "NOT" ) &&
    tokens3.equalsIgnoreCase( "NULL" ) )
    // dataLines.append( " -- " );
    dataLines.append( "NOT " ).append("NULL ").append(" , ").append(" -- ");
    dataLines.append( dataLine ).append( '\n' );
    Can any one give proper suggestion what to de here.
    thanks
    Vijendra

    i don't know whether i will be properly displayable or not.
    import java.util.Enumeration;
    import java.io.*;
    import java.util.StringTokenizer;
    import java.sql.*;
    public class FileReading{
    public static void main(String args[]){
    String file="C:/Documents and Settings/vijendras/Desktop/sampleApplicationchngd.sql";
    //modified by vijendra for ignoring views and stored procedures on 11 Apr 2006
    try {
    // open the file for reading
    FileReader inputstream = new FileReader (file);
    BufferedReader rdr = new BufferedReader( inputstream );
    // the StringBuilder which stores the processed lines
    StringBuffer dataLines = new StringBuffer();
    // read the file line by line
    String dataLine;
    boolean pending=false;
    while((dataLine = rdr.readLine()) != null ) {
    // split the input data into words upto first 3 words only
    //String[] tokens = dataLine.split( " ", 3 );
    String[] tokens = dataLine.trim().split( " ", 3 );
    StringTokenizer st = new StringTokenizer(dataLine.trim()," ");
                        String tokens0 = "";
                        String tokens1 = "";
    if(st.hasMoreTokens()){
                             tokens0 = st.nextToken();
                        if(st.hasMoreTokens()){
                             tokens1 = st.nextToken();
    if (!pending) {
    // if the line starts with 'create' and a 'view' follows it,
    // then add a "--" to the beginning of the line
    if((tokens0.equalsIgnoreCase( "create" ) && tokens1.equalsIgnoreCase( "view" ) )||
    (tokens0.equalsIgnoreCase( "create" ) && tokens1.equalsIgnoreCase( "procedure" ))
                             //state #2
                             // dataLines.append( "-- " );
                             // dataLines.append( dataLine ).append( '\n' );
                             pending = true;
                   // added by vijendra for modifying CONSTRAINT NAME NOT NULL to NOT NULL on 30 June 2006
                        //System.out.println(tokens[ 0 ].trim()+"::::"+tokens[ 1 ].trim()+"::::"+tokens[ 2 ].trim());
    if( tokens[ 0 ].trim().equalsIgnoreCase( "CONSTRAINT") && tokens[ 2 ].trim().equalsIgnoreCase( "NOT NULL," ) ){
    dataLines.append( " NOT " ).append(" NULL ").append(" , ").append(" -- ");
    dataLines.append( dataLine ).append( '\n' );
              System.out.println( "Executed");
                             else {
                             //state #1
                             // you're not in a[nother] view/proc yet}
                                  //dataLines.append( "-- " );
                                  dataLines.append( dataLine ).append( '\n' );
                   if (pending) { // don't use 'else'
                        //line contains ';'
                   if (!dataLine.endsWith(";")) {
                                  //state #4
                                  // do whatever... you're finished
                             dataLines.append( "-- " );
                             dataLines.append( dataLine ).append( '\n' );
                                  else {
                             //     state #3
                                  //you're in continuation of view/proc
                                  //but haven't found end yet
                                  dataLines.append( "-- " );
                                  dataLines.append( dataLine ).append( '\n' );
                             pending = false;
         /*Note the 'if' I marked "don't use else" which allows the logic to fall through and catch both
         states #2 and #4 (start and end) on the same line.*/
    rdr.close(); // close the file
    inputstream.close();
    // open the file for writing new data to it
    FileWriter outputstream=new FileWriter( file );
    BufferedWriter writer = new BufferedWriter(outputstream);
    // write the new StringBuilder's data back to the file.
    writer.write( dataLines.toString(), 0, dataLines.length() );
    writer.close(); // close the file
    outputstream.close();
    } catch( IOException e ) {
    System.out.println("Exception"+e);
    out put of sql file is now this but it sholud be applied to all.
    CREATE TABLE Adept_User(
    Id NUMBER(10, 0)     NOT NULL,
    Login_Name VARCHAR2(30)
    NOT NULL , -- CONSTRAINT Adept_Usr_Login NOT NULL,
    First_Name VARCHAR2(35)
         CONSTRAINT Adept_Usr_First_name     NOT NULL,
    Last_Name VARCHAR2(35),
    User_Password VARCHAR2(10)
         CONSTRAINT Adept_Usr_Last_name     NOT NULL,
    User_Status NUMBER(10, 0)
         CONSTRAINT Adept_Usr_Status     NOT NULL,
    User_Type NUMBER(10, 0)
         CONSTRAINT Adept_Usr_Type     NOT NULL,
    Customer_Contact NUMBER(10, 0),
    Employee NUMBER(10, 0),
    Organization Number(10,0),
    Password_Modified_Date DATE,
    Currency_Master_Id NUMBER(10, 0),
    CONSTRAINT PK23 PRIMARY KEY (Id)
    CREATE TABLE Adept_User_Group(
    Id NUMBER(10, 0) NOT NULL,
    Adept_Group NUMBER(10, 0)
         CONSTRAINT Adept_Usr_Grp     NOT NULL,
    Adept_User_Name NUMBER(10, 0)
         CONSTRAINT Adept_Usr_name     NOT NULL,
    CONSTRAINT PK157 PRIMARY KEY (Id)
    CREATE TABLE Adept_User_Permission(
    Id NUMBER(10, 0)     NOT NULL,
    Adept_Screens NUMBER(10, 0)
         CONSTRAINT Adept_Usr_Perm_Scren     NOT NULL,
    Adept_User_Group NUMBER(10, 0)
         CONSTRAINT Adept_Usr_Grp     NOT NULL,
    Dashboard char(1),
    CONSTRAINT PK28 PRIMARY KEY (Id)
    sorry for inconvinience for reading this all.
    if there is some better way to show all plese tell me.
    Vjendra

  • Having probs with radix Sort for strings

    I am creating a method that does radix sort for string values. I think I need to know the maximum value for strings to do this, and I have no Idea what that would be

    As in the maximum size of a string?
    Do you mean characters or actual byte size?

  • Havin probs drawing a simple string

    hi 2 all
    i've got this simple applet,but it doesn't really what i want!i only see a gry rect!but he has to draw a string!
    import java.applet.*;
    import java.net.*;
    import java.io.*;
    import java.awt.*;
    public class CCounter1 extends Applet {
    Font anzeiger;
    public void init() {
    anzeiger=new Font("Arial",Font.BOLD,16);
    public String readFile(String f) {
    try {
    String zahl1="";
    String aLine = "";
    URL source = new URL(getCodeBase(), f);
    BufferedReader br =new BufferedReader(new InputStreamReader(source.openStream()));
    while(null != (aLine = br.readLine()))
    zahl1.concat(zahl1);
    br.close();
    return aLine;
    catch(Exception e) {
    e.printStackTrace();
    return null;
    public void paint(Graphics g){
    setBackground(Color.gray);
    g.setColor(Color.white);
    setFont(anzeiger);
    g.fillRect(100,100,100,100);
    g.drawString(readFile("besucher.hansi"),10,20);
    g.drawString("Hallo",200,200);

    You set the color to white... fill the area and then paint a string (with the same white color)
    first... set a color... fill it... then set another color... draw your string... done
    Grtz David

  • On-Screen Keyboard and a String Control

    I am experiencing some odd behavior when I use the On-Screen keyboard (OSK) and a string control.
    I am developing a application that will need to use the OSK to enter in some data on a touch screen monitor with no physical keyboard. I have a Event-Driven State Machine set up to the Key Down event when a word/characters are entered and the user presses the Enter Key on the OSK. I noticed if I probe the VKey wire wuen I press the Enter Key on the OSK, it comes across as a Return press. No big deal I thought, just see if the Return Key is pressed and continue on.
    When I went to test my program, I noticed that my values were displaying as if nothing was entered. Digging a little further, I noticed that my original data is still there if I press the Backspace Key and remove the Return command. Probing the string wire within the string control indicates that that the value comes back as a empty string in my string control even though my entire string is physically still there. I can press the backspace key (deleting the carriage return) and see my original text. What I think is happening is when I press the Return Key on the OSK, it inserts something and moves my text either up or down and when I use the property node to extract the data within the string control, I get a empty string.
    How have you gotten around this? I'd like to hear your solutions.
    Solved!
    Go to Solution.

    Since you marked Jarle's message as the solution, I hope it means your happy and he's helped you solve your problem.
    I had never seen the OSK app before.  It looks like it can be very useful, but these other issues like how to programmatically get into it, or out of it with a task kill seem like they are a bit of a hack to work with something that shows so much promise.
    If these issues are too big, consider making your home pop-up keyboard as a LabVIEW VI.  It would be a little bit of work, but not so bad.  I've made a pop-up numeric keyboard that I've used in a few apps of mine.  Of course that is fewer keys to layout and deal with.  And I didn't need decimals for what I was doing so I didn't have to program that which adds a little complication.
    A pop-up keyboard might actually be easier, other than having 3-4 times the number of keys depending on how many symbols you need to deal with, and if you need to deal with CAPS, or CAPS lock or whatever.
    There is also a chance that someone may have done something already.  A google search might find something.  It is likely in the NI community if it exists.  If you can find something that works or is close to what you want, it might be better than using this OSK executable.
    Just some ideas to toss out there.

  • My Safari keeps crashing...HELP...re-installed flash player.  No prob on Firefox  OS 10.4.11

    My Safari keeps crashing...HELP...re-installed flash player.  No prob on Firefox  OS 10.4.11
    Here's the report...
    Date/Time:      2012-01-31 11:01:16.434 -0800
    OS Version:     10.4.11 (Build 8S2167)
    Report Version: 4
    Command: Safari
    Path:    /Applications/Safari.app/Contents/MacOS/Safari
    Parent:  WindowServer [62]
    Version:        4.1.3 (4533.19.4)
    Build Version:  1
    Project Name:   WebBrowser
    Source Version: 75331904
    PID:    550
    Thread: 0
    Exception:  EXC_BAD_ACCESS (0x0001)
    Codes:      KERN_INVALID_ADDRESS (0x0001) at 0x61747369
    Thread 0 Crashed:
    0   libobjc.A.dylib                          0x90a59387 objc_msgSend + 23
    1   com.apple.Safari                         0x002b8b9f 0x1000 + 2849695
    2   com.apple.Safari                         0x002b8db0 0x1000 + 2850224
    3   com.apple.Safari                         0x000c81aa 0x1000 + 815530
    4   com.apple.Safari                         0x001489b0 0x1000 + 1341872
    5   com.apple.Safari                         0x0007bc8c 0x1000 + 502924
    6   com.apple.WebKit                         0x0102dfa6 CallFormDelegate(WebView*, objc_selector*, objc_object*, objc_object*, objc_object*, objc_object*, objc_object*) + 238
    7   com.apple.WebKit                         0x01073712 WebFrameLoaderClient::dispatchWillSubmitForm(void (WebCore::PolicyChecker::*)(WebCore::PolicyAction), ***::PassRefPtr<WebCore::FormState>) + 442
    8   com.apple.WebCore                        0x0167cef2 WebCore::FrameLoader::continueLoadAfterNavigationPolicy(WebCore::ResourceReques t const&, ***::PassRefPtr<WebCore::FormState>, bool) + 522
    9   com.apple.WebCore                        0x0167cc37 WebCore::FrameLoader::callContinueLoadAfterNavigationPolicy(void*, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>, bool) + 55
    10  com.apple.WebCore                        0x0167ca26 WebCore::PolicyCallback::call(bool) + 74
    11  com.apple.WebCore                        0x0167c7fb WebCore::PolicyChecker::continueAfterNavigationPolicy(WebCore::PolicyAction) + 905
    12  com.apple.WebKit                         0x01018c7f -[WebFramePolicyListener receivedPolicyDecision:] + 51
    13  com.apple.WebKit                         0x01018c45 -[WebFramePolicyListener use] + 41
    14  com.apple.Safari                         0x00023d08 0x1000 + 142600
    15  libobjc.A.dylib                          0x90a5cc56 objc_msgSendv + 54
    16  com.apple.Foundation                     0x92800d82 -[NSInvocation invoke] + 932
    17  com.apple.Foundation                     0x92826d3b -[NSInvocation invokeWithTarget:] + 67
    18  com.apple.WebKit                         0x01018abd -[_WebSafeForwarder forwardInvocation:] + 327
    19  com.apple.Foundation                     0x927ffe38 -[NSObject(NSForwardInvocation) forward::] + 469
    20  libobjc.A.dylib                          0x90a5cba1 _objc_msgForward + 49
    21  com.apple.WebKit                         0x01073a6d WebFrameLoaderClient::dispatchDecidePolicyForNavigationAction(void (WebCore::PolicyChecker::*)(WebCore::PolicyAction), WebCore::NavigationAction const&, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>) + 201
    22  com.apple.WebCore                        0x01d8288c WebCore::PolicyChecker::checkNavigationPolicy(WebCore::ResourceRequest const&, WebCore::DocumentLoader*, ***::PassRefPtr<WebCore::FormState>, void (*)(void*, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>, bool), void*) + 1450
    23  com.apple.WebCore                        0x0167a589 WebCore::FrameLoader::loadWithDocumentLoader(WebCore::DocumentLoader*, WebCore::FrameLoadType, ***::PassRefPtr<WebCore::FormState>) + 1063
    24  com.apple.WebCore                        0x01c525d1 WebCore::FrameLoader::loadWithNavigationAction(WebCore::ResourceRequest const&, WebCore::NavigationAction const&, bool, WebCore::FrameLoadType, ***::PassRefPtr<WebCore::FormState>) + 675
    25  com.apple.WebCore                        0x01c533a0 WebCore::FrameLoader::loadURL(WebCore::KURL const&, WebCore::String const&, WebCore::String const&, bool, WebCore::FrameLoadType, ***::PassRefPtr<WebCore::Event>, ***::PassRefPtr<WebCore::FormState>) + 1586
    26  com.apple.WebCore                        0x01c5435f WebCore::FrameLoader::loadFrameRequest(WebCore::FrameLoadRequest const&, bool, bool, ***::PassRefPtr<WebCore::Event>, ***::PassRefPtr<WebCore::FormState>, WebCore::ReferrerPolicy) + 759
    27  com.apple.WebCore                        0x0201e01a WebCore::ScheduledFormSubmission::fire(WebCore::Frame*) + 194
    28  com.apple.WebCore                        0x017c05bc WebCore::RedirectScheduler::timerFired(WebCore::Timer<WebCore::RedirectSchedule r>*) + 72
    29  com.apple.WebCore                        0x0201db04 WebCore::Timer<WebCore::RedirectScheduler>::fired() + 72
    30  com.apple.WebCore                        0x016d5c7f WebCore::ThreadTimers::sharedTimerFiredInternal() + 97
    31  com.apple.WebCore                        0x016d5b8d WebCore::ThreadTimers::sharedTimerFired() + 59
    32  com.apple.WebCore                        0x01daac7d WebCore::timerFired(__CFRunLoopTimer*, void*) + 63
    33  com.apple.CoreFoundation                 0x9082d756 CFRunLoopRunSpecific + 3341
    34  com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    35  com.apple.HIToolbox                      0x91c55878 RunCurrentEventLoopInMode + 285
    36  com.apple.HIToolbox                      0x91c54f82 ReceiveNextEventCommon + 385
    37  com.apple.HIToolbox                      0x91c54dd9 BlockUntilNextEventMatchingListInMode + 81
    38  com.apple.AppKit                         0x9f2f6f45 _DPSNextEvent + 572
    39  com.apple.AppKit                         0x9f2f6b37 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    40  com.apple.Safari                         0x0000f6f9 0x1000 + 59129
    41  com.apple.AppKit                         0x9f2f08c4 -[NSApplication run] + 512
    42  com.apple.AppKit                         0x9f2e4820 NSApplicationMain + 573
    43  com.apple.Safari                         0x0000749b 0x1000 + 25755
    44  com.apple.Safari                         0x0010e512 0x1000 + 1103122
    45  com.apple.Safari                         0x00007219 0x1000 + 25113
    Thread 1:
    0   libSystem.B.dylib                        0x900248c7 semaphore_wait_signal_trap + 7
    1   com.apple.JavaScriptCore                 0x0050ade0 ***::ThreadCondition::wait(***::Mutex&) + 24
    2   com.apple.WebCore                        0x015eadd0 WebCore::IconDatabase::syncThreadMainLoop() + 256
    3   com.apple.WebCore                        0x015e8856 WebCore::IconDatabase::iconDatabaseSyncThread() + 192
    4   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 2:
    0   libSystem.B.dylib                        0x90009cd7 mach_msg_trap + 7
    1   com.apple.CoreFoundation                 0x9082d227 CFRunLoopRunSpecific + 2014
    2   com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    3   com.apple.Foundation                     0x928565da +[NSURLCache _diskCacheSyncLoop:] + 206
    4   com.apple.Foundation                     0x927f9cfc forkThreadForFunction + 123
    5   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 3:
    0   libSystem.B.dylib                        0x90009cd7 mach_msg_trap + 7
    1   com.apple.CoreFoundation                 0x9082d227 CFRunLoopRunSpecific + 2014
    2   com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    3   com.apple.Safari                         0x00026c6d 0x1000 + 154733
    4   com.apple.Safari                         0x00026b26 0x1000 + 154406
    5   com.apple.Safari                         0x00026aab 0x1000 + 154283
    6   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 4:
    0   libSystem.B.dylib                        0x900248c7 semaphore_wait_signal_trap + 7
    1   com.apple.Foundation                     0x9284fc60 -[NSConditionLock lockWhenCondition:] + 39
    2   com.apple.Syndication                    0x998c779e -[AsyncDB _run:] + 181
    3   com.apple.Foundation                     0x927f9cfc forkThreadForFunction + 123
    4   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 5:
    0   libSystem.B.dylib                        0x900248c7 semaphore_wait_signal_trap + 7
    1   com.apple.JavaScriptCore                 0x00510742 ***::ThreadCondition::timedWait(***::Mutex&, double) + 74
    2   com.apple.Safari                         0x002ddd66 0x1000 + 3001702
    3   com.apple.Safari                         0x002dde5c 0x1000 + 3001948
    4   com.apple.Safari                         0x0003a0cd 0x1000 + 233677
    5   com.apple.Safari                         0x0003a02f 0x1000 + 233519
    6   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 6:
    0   libSystem.B.dylib                        0x90009cd7 mach_msg_trap + 7
    1   com.apple.CoreFoundation                 0x9082d227 CFRunLoopRunSpecific + 2014
    2   com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    3   com.apple.Foundation                     0x9282f39c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
    4   com.apple.Foundation                     0x927f9cfc forkThreadForFunction + 123
    5   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 7:
    0   libSystem.B.dylib                        0x9001a1cc select + 12
    1   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 8:
    0   libSystem.B.dylib                        0x900248c7 semaphore_wait_signal_trap + 7
    1   com.apple.JavaScriptCore                 0x00510742 ***::ThreadCondition::timedWait(***::Mutex&, double) + 74
    2   com.apple.WebCore                        0x018bb8d2 WebCore::LocalStorageThread::threadEntryPoint() + 170
    3   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 9:
    0   libSystem.B.dylib                        0x900248c7 semaphore_wait_signal_trap + 7
    1   com.apple.ColorSync                      0x915a96ab pthreadSemaphoreWait(t_pthreadSemaphore*) + 35
    2   com.apple.ColorSync                      0x915c3ddc CMMConvTask(void*) + 60
    3   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 10:
    0   libSystem.B.dylib                        0x900248c7 semaphore_wait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x193a730f unregister_ShockwaveFlash + 47503
    2   ...lashPlayer-10.4-10.5.plugin           0x18f7ff9f 0x18f66000 + 106399
    3   ...lashPlayer-10.4-10.5.plugin           0x193a73fc unregister_ShockwaveFlash + 47740
    4   ...lashPlayer-10.4-10.5.plugin           0x193a7440 unregister_ShockwaveFlash + 47808
    5   ...lashPlayer-10.4-10.5.plugin           0x193a7566 unregister_ShockwaveFlash + 48102
    6   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 11:
    0   libSystem.B.dylib                        0x900248c7 semaphore_wait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x193a730f unregister_ShockwaveFlash + 47503
    2   ...lashPlayer-10.4-10.5.plugin           0x18f7ff9f 0x18f66000 + 106399
    3   ...lashPlayer-10.4-10.5.plugin           0x193a73fc unregister_ShockwaveFlash + 47740
    4   ...lashPlayer-10.4-10.5.plugin           0x193a7440 unregister_ShockwaveFlash + 47808
    5   ...lashPlayer-10.4-10.5.plugin           0x193a7566 unregister_ShockwaveFlash + 48102
    6   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 12:
    0   libSystem.B.dylib                        0x90009cd7 mach_msg_trap + 7
    1   com.apple.CoreFoundation                 0x9082d227 CFRunLoopRunSpecific + 2014
    2   com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    3   com.apple.audio.CoreAudio                0x9e61c356 HALRunLoop::OwnThread(void*) + 158
    4   com.apple.audio.CoreAudio                0x9e61c171 CAPThread::Entry(CAPThread*) + 93
    5   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 13:
    0   libSystem.B.dylib                        0x90047dd7 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x193a72d7 unregister_ShockwaveFlash + 47447
    2   ...lashPlayer-10.4-10.5.plugin           0x1914780e 0x18f66000 + 1972238
    3   ...lashPlayer-10.4-10.5.plugin           0x193a73fc unregister_ShockwaveFlash + 47740
    4   ...lashPlayer-10.4-10.5.plugin           0x193a7440 unregister_ShockwaveFlash + 47808
    5   ...lashPlayer-10.4-10.5.plugin           0x193a7566 unregister_ShockwaveFlash + 48102
    6   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 14:
    0   libSystem.B.dylib                        0x90047dd7 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x193a72d7 unregister_ShockwaveFlash + 47447
    2   ...lashPlayer-10.4-10.5.plugin           0x1928d548 0x18f66000 + 3306824
    3   ...lashPlayer-10.4-10.5.plugin           0x193a73fc unregister_ShockwaveFlash + 47740
    4   ...lashPlayer-10.4-10.5.plugin           0x193a7440 unregister_ShockwaveFlash + 47808
    5   ...lashPlayer-10.4-10.5.plugin           0x193a7566 unregister_ShockwaveFlash + 48102
    6   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x61747369  ebx: 0x9082621d  ecx: 0x90a6ec04  edx: 0x188bcc90
      edi: 0x61747371  esi: 0x188ca060  ebp: 0xbfffdfc8  esp: 0xbfffdf94
       ss: 0x0000001f  efl: 0x00010206  eip: 0x90a59387   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
    Binary Images Description:
        0x1000 -   0x330fff com.apple.Safari 4.1.3 (4533.19.4)          /Applications/Safari.app/Contents/MacOS/Safari
      0x505000 -   0x6ddfff com.apple.JavaScriptCore 4533.19 (4533.19.1)          /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptC ore
    0x1008000 -  0x10f5fff com.apple.WebKit 4533.19 (4533.19.4)          /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x119a000 -  0x1448fff com.apple.QuartzCore 1.4.13          /System/Library/PrivateFrameworks/Safari.framework/Frameworks/QuartzCore.f ramework/Versions/A/QuartzCore
    0x14dc000 -  0x15bafff libxml2.2.dylib           /usr/lib/libxml2.2.dylib
    0x15e6000 -  0x20a7fff com.apple.WebCore 4533.19 (4533.19.4)          /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore. framework/Versions/A/WebCore
    0x17e03000 - 0x17e06fff com.macromedia.Flash Player.plugin 10.3.183.11          /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x18f66000 - 0x199b4fff com.macromedia.FlashPlayer-10.4-10.5.plugin 10.3.183.11          /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.4-10.5.plugin/Contents/MacOS/Flas hPlayer-10.4-10.5
    0x8fe00000 - 0x8fe4afff dyld 46.16          /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib           /usr/lib/libSystem.B.dylib
    0x90229000 - 0x902fffff ATS           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ATS.framework/Versions/A/ATS
    0x90446000 - 0x904f4fff com.apple.QTKit 7.6.4 (1327.73)          /System/Library/Frameworks/QTKit.framework/QTKit
    0x906cc000 - 0x9073ffff com.apple.framework.IOKit 1.4.8 (???)          /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90758000 - 0x907c0fff com.apple.CoreServices.OSServices 4.1          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OS Services.framework/Versions/A/OSServices
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.11 (368.35)          /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundat ion
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???)          /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90a57000 - 0x90ad6fff libobjc.A.dylib           /usr/lib/libobjc.A.dylib
    0x90c66000 - 0x90c78fff libauto.dylib           /usr/lib/libauto.dylib
    0x90db2000 - 0x90dc9fff libGL.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dyl ib
    0x90dde000 - 0x90e36fff libGLU.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dy lib
    0x90e51000 - 0x90e77fff com.apple.SystemConfiguration 1.8.6          /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/System Configuration
    0x90e8c000 - 0x90e8cfff com.apple.Carbon 10.4 (???)          /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90e8f000 - 0x90e9afff com.apple.opengl 1.4.16          /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90ea2000 - 0x90ebdfff com.apple.DirectoryService.Framework 3.3          /System/Library/Frameworks/DirectoryService.framework/Versions/A/Directory Service
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.24          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CF Network.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0)          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/We bServicesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.8          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Se archKit.framework/Versions/A/SearchKit
    0x911e8000 - 0x9125bfff com.apple.print.framework.PrintCore 4.6 (177.13)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/PrintCore.framework/Versions/A/PrintCore
    0x912a7000 - 0x912affff com.apple.speech.recognition.framework 3.6          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRe cognition.framework/Versions/A/SpeechRecognition
    0x912f2000 - 0x91302fff com.apple.ImageCapture 3.0.4          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCap ture.framework/Versions/A/ImageCapture
    0x91353000 - 0x91394fff com.apple.NavigationServices 3.4.4 (3.4.3)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Navigati onServices.framework/Versions/A/NavigationServices
    0x91415000 - 0x9141cfff libbsm.dylib           /usr/lib/libbsm.dylib
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Applic ationServices
    0x91521000 - 0x9154dfff com.apple.AE 316.3          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/AE.framework/Versions/A/AE
    0x91560000 - 0x91634fff com.apple.ColorSync 4.4.13          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ColorSync.framework/Versions/A/ColorSync
    0x91710000 - 0x917b9fff com.apple.QD 3.10.28 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/QD.framework/Versions/A/QD
    0x917df000 - 0x9182afff com.apple.HIServices 1.5.2 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/HIServices.framework/Versions/A/HIServices
    0x9186b000 - 0x91885fff com.apple.FindByContent 1.5          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/FindByContent.framework/Versions/A/FindByContent
    0x9188f000 - 0x9189dfff com.apple.framework.Apple80211 4.5.5 (455.2)          /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple802 11
    0x91944000 - 0x91ae3fff com.apple.security 4.5.2 (29774)          /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91c4c000 - 0x91f41fff com.apple.HIToolbox 1.4.10 (???)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbo x.framework/Versions/A/HIToolbox
    0x9262e000 - 0x9271bfff libiconv.2.dylib           /usr/lib/libiconv.2.dylib
    0x9271d000 - 0x9279bfff com.apple.DesktopServices 1.3.7          /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A /DesktopServicesPriv
    0x927dc000 - 0x92a14fff com.apple.Foundation 6.4.12 (567.42)          /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92bf1000 - 0x92bf6fff com.apple.securityhi 2.0.1 (24742)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Security HI.framework/Versions/A/SecurityHI
    0x92bfc000 - 0x92c8dfff com.apple.ink.framework 101.2.1 (71)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.fram ework/Versions/A/Ink
    0x92ca1000 - 0x92ca4fff com.apple.help 1.0.3 (32.1)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.fra mework/Versions/A/Help
    0x92ca7000 - 0x92cc5fff com.apple.openscripting 1.2.7 (???)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScri pting.framework/Versions/A/OpenScripting
    0x92cd7000 - 0x92cddfff com.apple.print.framework.Print 5.2 (192.4)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.fr amework/Versions/A/Print
    0x92ce3000 - 0x92d46fff com.apple.htmlrendering 66.1 (1.1.3)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRend ering.framework/Versions/A/HTMLRendering
    0x92dd2000 - 0x92ddffff com.apple.audio.SoundManager 3.9.1          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSo und.framework/Versions/A/CarbonSound
    0x92de6000 - 0x92debfff com.apple.CommonPanels 1.2.3 (73)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPa nels.framework/Versions/A/CommonPanels
    0x93095000 - 0x930abfff libcups.2.dylib           /usr/lib/libcups.2.dylib
    0x93266000 - 0x93266fff com.apple.Cocoa 6.4 (???)          /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93323000 - 0x9334cfff com.apple.LDAPFramework 1.4.2 (69.1.1)          /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x93500000 - 0x9351dfff libresolv.9.dylib           /usr/lib/libresolv.9.dylib
    0x935f5000 - 0x93606fff com.apple.securityfoundation 2.2.1 (28150)          /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/Securit yFoundation
    0x937d0000 - 0x9380efff com.apple.securityinterface 2.2.1 (27695)          /System/Library/Frameworks/SecurityInterface.framework/Versions/A/Security Interface
    0x93e4f000 - 0x93e4ffff com.apple.audio.units.AudioUnit 1.4.2          /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93ee9000 - 0x942f2fff libBLAS.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libBLAS.dylib
    0x947bd000 - 0x94903fff com.apple.AddressBook.framework 4.0.6 (490)          /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9498f000 - 0x9499efff com.apple.DSObjCWrappers.Framework 1.1          /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSOb jCWrappers
    0x949d4000 - 0x949e3fff libsasl2.2.dylib           /usr/lib/libsasl2.2.dylib
    0x95152000 - 0x95246fff libicucore.A.dylib           /usr/lib/libicucore.A.dylib
    0x952ad000 - 0x9535ffff libcrypto.0.9.7.dylib           /usr/lib/libcrypto.0.9.7.dylib
    0x953bc000 - 0x953e1fff libssl.0.9.7.dylib           /usr/lib/libssl.0.9.7.dylib
    0x95540000 - 0x95548fff com.apple.DiskArbitration 2.1.2          /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitr ation
    0x95756000 - 0x957d1fff com.apple.CoreData 91 (92.1)          /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x958d3000 - 0x958f1fff com.apple.Metadata 10.4.4 (121.36)          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Me tadata.framework/Versions/A/Metadata
    0x95936000 - 0x9596efff com.apple.PDFKit 1.0.4          /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.f ramework/Versions/A/PDFKit
    0x95d53000 - 0x95d55fff libmathCommon.A.dylib           /usr/lib/system/libmathCommon.A.dylib
    0x95f5b000 - 0x95f5bfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1)          /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96068000 - 0x960f6fff com.apple.vImage 2.5          /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vIma ge.framework/Versions/A/vImage
    0x9658f000 - 0x96594fff com.apple.agl 2.5.9 (AGL-2.5.9)          /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96e43000 - 0x96e43fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1)          /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/vecLib
    0x96ecf000 - 0x96ecffff com.apple.vecLib 3.3.1 (vecLib 3.3.1)          /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x970c0000 - 0x970c0fff com.apple.quartzframework 1.0          /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x972cc000 - 0x97306fff libGLImage.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImag e.dylib
    0x97443000 - 0x974fcfff com.apple.audio.toolbox.AudioToolbox 1.4.7          /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x981e3000 - 0x982bafff com.apple.QuartzComposer 1.2.6 (32.25)          /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCo mposer.framework/Versions/A/QuartzComposer
    0x98f25000 - 0x98f4efff com.apple.CoreMediaPrivate 15.0          /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/Co reMediaPrivate
    0x998c4000 - 0x998fbfff com.apple.Syndication 1.0.8 (56.1)          /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndica tion
    0x9b513000 - 0x9b553fff com.apple.CoreMediaIOServicesPrivate 20.0          /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Ver sions/A/CoreMediaIOServicesPrivate
    0x9b8e1000 - 0x9b8f3fff com.apple.SyndicationUI 1.0.8 (56.1)          /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndi cationUI
    0x9ca48000 - 0x9d93ffff com.apple.QuickTimeComponents.component 7.6.4 (1327.73)          /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/Qui ckTimeComponents
    0x9daa3000 - 0x9db07fff libstdc++.6.dylib           /usr/lib/libstdc++.6.dylib
    0x9de1f000 - 0x9e13efff com.apple.QuickTime 7.6.4 (1327.73)          /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9e1dd000 - 0x9e201fff libvDSP.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libvDSP.dylib
    0x9e4b4000 - 0x9e4bbfff libgcc_s.1.dylib           /usr/lib/libgcc_s.1.dylib
    0x9e503000 - 0x9e50efff libCSync.A.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9e513000 - 0x9e52dfff libRIP.A.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9e533000 - 0x9e542fff libCGATS.A.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9e549000 - 0x9e587fff com.apple.vmutils 4.0.2 (93.1)          /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9e59c000 - 0x9e5b2fff com.apple.CoreVideo 1.4.2          /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9e5c2000 - 0x9e603fff libsqlite3.0.dylib           /usr/lib/libsqlite3.0.dylib
    0x9e60b000 - 0x9e681fff com.apple.audio.CoreAudio 3.0.5          /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9e6d2000 - 0x9ea86fff libLAPACK.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libLAPACK.dylib
    0x9eab3000 - 0x9eb0cfff libvMisc.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libvMisc.dylib
    0x9eb15000 - 0x9eb54fff libTIFF.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9eb5a000 - 0x9eb75fff libPng.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9eb7a000 - 0x9ec02fff libRaw.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x9ec06000 - 0x9ec65fff libJP2.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9ec77000 - 0x9ec95fff libJPEG.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9ec9a000 - 0x9ecdafff com.apple.ImageIO.framework 1.5.9          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/ImageIO
    0x9eced000 - 0x9ecf9fff com.apple.speech.synthesis.framework 3.5          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9ed00000 - 0x9ed0efff libz.1.dylib           /usr/lib/libz.1.dylib
    0x9ed13000 - 0x9ed15fff libRadiance.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9ed17000 - 0x9ed1bfff libGIF.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9ed1d000 - 0x9ed5afff com.apple.LaunchServices 183.1          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/LaunchServices.framework/Versions/A/LaunchServices
    0x9ed6e000 - 0x9ed84fff com.apple.LangAnalysis 1.6.3          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x9ed90000 - 0x9edcdfff com.apple.CoreText 1.1.3 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreText.framework/Versions/A/CoreText
    0x9edf4000 - 0x9f249fff com.apple.CoreGraphics 1.258.85 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x9f2e0000 - 0x9f996fff com.apple.AppKit 6.4.10 (824.48)          /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9fd17000 - 0x9ffbdfff com.apple.CoreServices.CarbonCore 682.31 (682.32)          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Ca rbonCore.framework/Versions/A/CarbonCore
    Model: MacBook1,1, BootROM MB11.0061.B03, 2 processors, Intel Core Duo, 2 GHz, 1 GB
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplays_integrated_vram
    Memory Module: BANK 0/DIMM0, 512 MB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 512 MB, DDR2 SDRAM, 667 MHz
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x86), 1.4.4
    Bluetooth: Version 1.9.5f4, 2 service, 0 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: TOSHIBA MK8032GSX, 74.53 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-857
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA

    Hi,
    Did you recently upgrade Flash from 12 to 13?<br>
    There have been issues reported with the 13.0.0.182 version of the Flash plugin crashing on some older Mac computers due to the compiler generating incompatible code.
    The only way to recover is to uninstall the Flash 13 version and revert to an older Flash version and wait for Adobe to release an update that addresses this issue.
    * http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-mac-os.html
    You can either install the latest Flash 11.7 version that has the latest security updates (may not work with Safari) or the last Flash 12 version that didn't get the security updates Flash 13 has.
    * http://www.adobe.com/special/products/flashplayer/fp_distribution3.html
    Adobe Community: ATTENTION MAC CUSTOMERS - Flash Player 13 "Plugin Failure" Workaround:
    * http://forums.adobe.com/thread/1447282

  • Conversion of String to Int

    Had some trouble with passing a string input via the command screen and changing it to an int. Im prob using the wrong code but im not sure if that is it.
    import javax.swing.JFrame;
    import java.util.Scanner;
    public class P524Driver
    public static void main ( String args[] )
         Scanner input = new Scanner(System.in);
         // Input the rows of the Diamond
         System.out.print ("Input the number of rows (Must be and oddnumber): ");
    int x = input.nextInt();
         String z;
         if (x > 0) //     Determine if the value entered was valid
         while ( x % 2 == 0 )
              System.out.print( "You Input a even number try again: ");
              x = input.nextInt();
              while ( x % 2 != 0)
              System.out.print( "Input the charater: ");
              z = input.next();
              int y = Integer.parseInt(z);
    {else{ System.exit(0);}
    }

    Ok I don't know if this is going to work with your input, but here goes. The way I declared user input was as so : BufferedReader console = new BufferedReader(new InputStreamReader(System.in)); and the way I declared the integer value of the input was as so : int value = Integer.parseInt(console.readLine());Hope this helps!

  • Issue with regexes in http health probes on ACE 4710

    Folks,
    We're currently experiencing fairly bizarre behavior when attempting to set up http probes that expect a regexp.  Namely, if we specify a regexp, the probe *always* passes, regardless of status code and regardless of whether or not the message actually matches the pattern.  Doing 'no expect regexp' fixes this behavior (by which I mean that the 'expect status' rules work again). 
    We haven't noticed until now because this is the first time we've tried to set up a probe that does this.  Are we missing something?  Is this a known issue with our current firmware version?
    Sincerely,
    Patrick T. Ramsey
    # show run probe | begin HTTP-nfscheck | end regex
    Generating configuration....
    probe http HTTP-nfscheck
      description Simple HTTP probe to check nfs mount health
      port 80
      interval 15
      passdetect interval 20
      request method head url /nfs-health-check/
      open 1
      expect regex "^ureytgraeuikghfdjg$"
    # sh ver
    Cisco Application Control Software (ACSW)
    TAC support: http://www.cisco.com/tac
    Copyright (c) 1985-2009 by Cisco Systems, Inc. All rights reserved.
    The copyrights to certain works contained herein are owned by
    other third parties and are used and distributed under license.
    Some parts of this software are covered under the GNU Public
    License. A copy of the license is available at
    http://www.gnu.org/licenses/gpl.html.
    Software
      loader:    Version 0.95.1
      system:    Version A3(2.4) [build 3.0(0)A3(2.4) adbuild_11:46:02-2009/09/27_/auto/adbu-rel2/rel_a3_2_3_throttle/REL_3_0_0_A3_2
    _4]
      system image file: (hd0,1)/c4710ace-mz.A3_2_4.bin
      Device Manager version 1.2 (0) 20090925:1550
      installed license: no feature license is installed
    Hardware
      cpu info:
        Motherboard:
            number of cpu(s): 2
        Daughtercard:
            number of cpu(s): 16
      memory info:
        total: 6226388 kB, free: 3972668 kB
        shared: 0 kB, buffers: 22020 kB, cached 0 kB
      cf info:
        filesystem: /dev/hdb2
        total: 861668 kB, used: 728656 kB, available: 89240 kB
    last boot reason:  Unknown
    configuration register:  0x1
    ldbottom kernel uptime is 325 days 3 hours 46 minute(s) 43 second(s)

    I also went through a similar issue in which we need to probe the real server PESERVER01 and if the real server replies with the keyword "PE Server" in the HTTP content then the probe should be passed successful.
    In my case the real server was listening on port 32776 for HTTP service so we configured the serverfarm as below,
    serverfarm host SF-TEST-32776
      description SF-TEST-32776
      failaction purge
      probe PE-SERVER-STRING
      rserver PESERVER01 32776
        inservice
    And the TCP probe as below,
    probe tcp PE-SERVER-STRING
      port 32776
      send-data GET /IOR/ping HTTP/1.1      <<== command should not be in inverted  commas
      expect regex "PE Server"
    The above probe worked really well and when we checked the probe status it was marking as success. I also tried changing the regex from "PE Server" to "Vishal12345" and it was failing as expected because there was no such keyword in the HTTP content.
    ==================================================================================
    T2-LB02# sh probe PE-SERVER-STRING
    probe       : PE-SERVER-STRING
    type        : TCP
    state       : ACTIVE
       port      : 32776   address     : 0.0.0.0         addr type  : -
       interval  : 15      pass intvl  : 60              pass count : 3
       fail count: 3       recv timeout: 10
                    ------------------ probe results ------------------
       associations ip-address      port  porttype probes   failed   passed   health
       ------------ ---------------+-----+--------+--------+--------+--------+------
       serverfarm  : SF-TEST-32776
         real      : PESERVER01[32776]
                    10.10.10.1    32776 PROBE    105      0        105      SUCCESS
    ==================================================================================
    I was struggling with this issue from long time. Even raised couple of Cisco TAC cases with no luck. The most important thing here is to identify the exact command to be send to real server like GET /IOR/ping HTTP/1.1 that we used here.
    To collect this command I did packet capture on one of the client machine and then tried to open the URL from real server which can return the string "PE Server". Then analyzed the captures in Wireshark and checked the HTTP data with follow the TCP stream option in which I seen the below data, which gives the command to be send in probe as well as the string we should expect.
    ==================================================================================
    GET /IOR/ping HTTP/1.1
    User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.12.9.0 zlib/1.2.3 libidn/1.18 libssh2/1.2.2
    Host: 10.144.70.85:32776
    Accept: */*
    HTTP/1.0 200 OK
    Content-type: text/html
    Ping
    PE Server
    WRVFKO11 [Win32 Server Production (3 silos) (Oracle Blob 512 MB) -- {dap451.007.028 dap451.004.002 pe451.003.010x pui451.003.010  pui451.001.004} Mar  9 2012 15:07:53 en ]
    ===================================================================================
    Please try this and see if it helps you.
    Thanks,
    Vishal Babrekar

  • Prob in joining Query1 and Query2 in Data Model

    Hi,
    I m facing a prob. in joining Multiple queries
    Under data model I've created 2-3 queries which I've to join internally and in my Query1 only 1 bind variable is there, for which i've created a parameter
    but for Query2 and Query3 I m going to user one column value of Query1 as parameter.
    When i m doing this the Xml formed returns only Query1 value and Query2 and Query3 comes as blank.
    Eg.
    Query1 : select deptno,dname from dept where deptno=:p_deptno <:p_deptno is a parameter created in parameter list>
    Query2 : select empno,ename,mgr from emp where deptno=:deptno <where :deptno, i m expecting to come from Query1>
    but it not happening
    whereas my Xml comes as display below:
    <DATA>
    <Q2>
    <Q2_ROW>
    <DEPTNO>10</DEPTNO>
    <DNAME>ACCOUNTING</DNAME>
    </Q2_ROW>
    </Q2>
    <Q1 />
    </DATA>
    tanks in advance for replying
    Regards/goutam

    Personally, I have had a hard time doing what you are asking for using netui tags. I have had the same case, and asked the person in my team to just return a collection of value objects and then iterate through it without the repeater tag. To use the checkbox, I have had to use a String[].
              Kunal

Maybe you are looking for

  • My Mac book pro (2011) start-up goes straight to disk utlities and wont install mavricks.

    Hello,      My mac boook pro 2011 wont start up to my internal harddrive. it will sit on the white screen for a bit before it takes me directly to the choose language then disk utlity and shows the; Time machine install osx get help online disk utlit

  • How do you remove keyboard from G56-129wm

    I have to replace the cooling fan on my G56-129MW laptop.  Manual for replacing the fan is fairly straightforward except for the keyboard.  The keyboard release tabs are NOT visible or I may be looking in the wrong area.  Any help would be appreciate

  • ORA-01595 just after Oracle startup

    Hi there I'm trying to find explanation on these errors because they occurred just after Database open and ready ! ORA-01595: error freeing extent (2) of rollback segment (1)) ORA-01594: attempt to wrap into rollback segment (1) extent (2) which is b

  • Materialized View Odd Behaviour!

    Hi, We have a materialized View : XYZ, which holds data for the past 75 days and it gets refreshed weekly once Saturday.Its a complete Refresh Time taken to get completed is not constant. It various a lot. At the End of the Year - Nov, Dec it took 24

  • Boot de vice not found

    I turned on my computer and it says "boot device not found". "Please install an operating system on tour hard disk" Please give me a direct awnser or sendo me a expessific link because im on mt phone and its linda hard