Safari 3.0.4 (Leopard) refuses to make https connection

I'm trying to connect to a work website via https and keep getting "because it couldn’t establish a secure connection". From other suggestions, I've found that if I remove ~/Libray/Keychain/login.keychain, the page will come up, unfortunately, it won't let me log in because my cert is required (deleted in order to get the page to load).
This did not happen before upgrading to Leopard, and Firefox still works with the same webpages just fine.
Suggestions?

Yes: In Safari 3.04 if, in Preferances/appearences, IF you've unchecked the check box "display images when page opens" then no pictures will appear. Worse than that is that enter click boxes also don't appear, because they're gif images, I think. They're there as if you know where they are, then click and they work, but you can't see them. Of course to fix this problem, simply go back into preferences and re-check the dialog box regarding displaying images.
Why Apple would give you a choice in this and why someone would not want images to load seams stupid. I originally unclicked it as in an older Netscape browser, you could set your browser to load content first and images later and so thought that this was about that. But not so.

Similar Messages

  • How do i make http connection  from an applet to  a servlet

    i am not able to make a http connection from the applet to servlet
    my code for servlet is as follows
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class newDatabaseServlet extends HttpServlet {
    //      Connection con;
    // Statement stmt;
         public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
              resp.setContentType("text/content");
              System.out.println("megha");
              String mthd[] = req.getParameterValues("event");
              System.out.println(mthd.length);
              System.out.println(mthd);
              System.out.println(req.getQueryString());
              // System.out.println("megha");
    PrintWriter fw = new PrintWriter(new FileOutputStream(new File("e:/JRun/servers/default/default-app/mycontent.txt")));
    String s = "this text comes from servlet";
    fw.print(s);
    fw.flush();
              if(mthd[0].equalsIgnoreCase("callEditor")) {
                   openEditor(req,resp);
    public void openEditor(HttpServletRequest req, HttpServletResponse resp) {
         /* try {
              Class.forName("oracle.jdbc.driver.OracleDriver");
         con = DriverManager.getConnection("jdbc:oracle:thin:@pc6:1521:oradba","test","test");
         catch(Exception e) {
              e.printStackTrace();
              try {
                   resp.sendRedirect("/RunApp1.html");
              catch(IOException e) {
                   e.printStackTrace();
    /*try {
         Class.forName("oracle.jdbc.driver.OracleDriver");
    con = DriverManager.getConnection("jdbc:oracle:thin:@pc6:1521:oradba","test","test");
         catch(Exception e) {
         e.printStackTrace();
         resp.setContentType("text/html");
         PrintWriter output = resp.getWriter();
         try {
    stmt = con.createStatement();
    String strContent = "select * from edTable where newsid = 2";
    ResultSet rs = stmt.executeQuery(strContent);
    if(rs.next()) {
                   String newsText = rs.getString(2);
    /* StringBuffer buf = new StringBuffer();
                   buf.append("<B>servlet</B>");
                   try {
                   resp.sendRedirect("RunApp");
              catch(IOException e) {
                   e.printStackTrace();
    //               output.println(buf.toString());
    //          output.close();
    my code for applet is
    import javax.swing.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.*;
    import java.awt.*;
    import javax.swing.text.*;
    import javax.swing.text.html.*;
    public class EdApplet extends JApplet {
    public void init() {
         Container c;
         c = getContentPane();
    JPanel but = new JPanel();
    c.add(but,BorderLayout.NORTH);
    final JEditorPane je = new JEditorPane();
    JScrollPane jsp = new JScrollPane(je);
    HTMLEditorKit ht = new HTMLEditorKit();
    je.setEditorKit(ht);
    je.setEditable(true);
    HTMLDocument mdoc = (HTMLDocument)ht.createDefaultDocument();
    StyleSheet mcontext =mdoc.getStyleSheet();
    je.setDocument(mdoc);
    c.add(jsp,BorderLayout.CENTER);
    JPanel bot = new JPanel();
    c.add(bot,BorderLayout.SOUTH);
    JButton save = new JButton("save");
    but.add(save);
    String str = getInitialText();
         je.setText(str);
         String servletUrl="http://pc7:8100/servlet/newDatabaseServlet";
    try{
                   URL servletURL = new URL(servletUrl);
                   URLConnection servletConnection = servletURL.openConnection();
              servletConnection.setRequestProperty("event","saveText");
              servletConnection.setDoOutput(true);
              servletConnection.setUseCaches(false);
         catch(Exception e) {
    //          je.setText(e.printStackTrace());
         ActionListener lst = new ActionListener() {
              public void actionPerformed(ActionEvent ae) {
                   String save = je.getText();
                   saveText(save,je);
         save.addActionListener(lst);
    //je.setText("<B>this</B>");
    //URLConnection servletConnection = null;
    /* try {
              String servletUrl="http://pc7:8100/servlet/newDatabaseServlet";
              URL myUrl = new URL(servletUrl);
              servletConnection = myUrl.openConnection();
              servletConnection.setDoOutput(true);
              servletConnection.setUseCaches(false);
         /*     BufferedReader br = new BufferedReader(new InputStreamReader(servletConnection.getInputStream()));
    String t = br.readLine();
    je.setText(t);
         catch(Exception e) {
              e.printStackTrace();
    /* ActionListener lst = new ActionListener() {
              public void actionPerformed(ActionEvent ae) {
                   BufferedReader br = new BufferedReader(new InputStreamReader(servletConnection.getInputStream()));
                   String t = br.readLine();
    je.setText(t);
    click.addActionListener(lst);
    /*void String changeText(UrlConnection con) {
    BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream));
    String t = br.readLine();
    return t;
    public String getInitialText()
         //String me = null;
         URLConnection textConnection = null;
         StringBuffer sb = new StringBuffer();
         try {
                   String textUrl="http://pc7:8100/mycontent.txt";
                   URL myUrl = new URL(textUrl);
                   textConnection = myUrl.openConnection();
                   textConnection.setDoInput(true);
                   textConnection.setUseCaches(false);
                   BufferedReader br = new BufferedReader(new InputStreamReader(textConnection.getInputStream()));
                   // me = (String)servletConnection.getContent();
                   String s = null;
                   while((s = br.readLine())!=null) {
                        sb.append(s);
              catch(Exception e) {
                             e.printStackTrace();
                   return sb.toString();
         public void saveText(String saveStr,JEditorPane je) {
              //String saveStr = je.getText();
              //String servletUrl="http://pc7:8100/servlet/newDatabaseServlet?event='saveText'&newsid='2'";
              //String servletGet="http://pc7:8100/servlet/newDatabaseServlet";
              String servletUrl="http://pc7:8100/servlet/newDatabaseServlet";
              //String servletUrl = servletGet + "?"
              //     + URLEncoder.encode("event") + "="
         // + URLEncoder.encode("saveText");
    //     je.setText(servletUrl);
              try {
              URL servletURL = new URL(servletUrl);
              URLConnection servletConnection = servletURL.openConnection();
         //     servletConnection.setRequestProperty("event","saveText");
         servletConnection.setRequestProperty(
         "User-Agent","Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
              //System.out.println("from applet");
              servletConnection.setDoOutput(true);
              servletConnection.setUseCaches(false);
              //Propertiew prop = new Properties();
         //     prop.put("event","saveText");
              PrintStream out = new PrintStream(servletConnection.getOutputStream());
    out.println("event");
    out.close();
         catch(IOException e) {
              je.setText(e.toString());
    kindly tell me what is the error
    what is the best method of doing this
    thanking u in anticipation
    megha sood

    omg O_o
    We cannot debug your code, but:
    Did you try the servlet directly from your browser? Does it work?
    Best regards from Germany,
    r.v.

  • How to make HTTP connection between a midlet and a php server?

    As the title above, can anyone share how to make a HTTP connection between those 2? J2ME and PHP. Thanks a lot!

    Can you be a little more specific on what you really want.
    When i started doing j2me application, i was required to be able to comunicate to a oracle client database, and my first though was using PHP based pages to comunicate and do the query. Later they would just generate the answer and get it on the cellphone. You can communicate with a PHP server via either GET or POST. I'd choose POST as is more secure IMO.
    Here are quite a good ammount of examples of how you can do it
    http://www.java2s.com/Code/Java/J2ME/Networks.htm
    They aren't PHP based examples, but you have can an idea of how it can be done

  • Client machine can't make HTTPS connections

    Have you tried connecting via telnet from the VM to portal.office.com (or wherever)? The telnet client will need to be installed on Server 2008+I have had network issues with HyperV hosts & VMs, caused by the host being connected to iSCSI targets for backup jobs before, as well as issues with NFS.Along with those problems it would disallow me from removing the virtual switch (in order to recreate it), even with all the VMs shutdown, and after a restart.1st step: Update the drivers & firmware for the adapter(s), along with the the system BIOS / UEFI firmware, and chipset drivers for the host.2nd step: Try removing, and recreating all virtual switches, enable SR-IOV for the BIOS / UEFI, all adapters, and all VMs.3rd step: Try reseting everything via netshell:netsh firewall reset allnetsh interface ip reset allnetsh winsock reset all...

    So the machine is a Hyper V VM of Windows 2012 running SharePoint 2013.I don't know when it started but the machine seems unable to make and keep HTTPS connections.I'm not talking about services trying to use this server via HTTPS.. I'm saying like I can't go to https://portal.office.com . it doesn't work with IE 10 and it dons't work with Chrome either. To try to get any data on this at all, I installed Fiddler and I see this message[Fiddler] The connection to 'manage.windowsazure.com' failed.
    Error: TimedOut (0x274c).
    System.Net.Sockets.SocketException A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 70.37.162.148:443 I installed a new synthetic virtual network adapter, thinking maybe something...
    This topic first appeared in the Spiceworks Community

  • Safari not responding when HTTPS connections are unavailable

    I'm using a 13" MBP with 10.7.2 installed, which is setup to sync calendar, address and bookmarks with iCloud. Since last week I've constantly encounter a problem that my Safari 5.1.1 would keep crashing, and I had to delete the ~/Library/Safari/extensions folder to get it back to work.
    This situation happened whenever I've switch to wireless connection. In my office we've setup a limited wireless environment that all HTTP/HTTPS connections will be redirected through a proxy. Since last week the proxy server was malfunctioned. All HTTP connections are proceeded normally, but all HTTPS connections will be suspended. I'm not sure but I suspect it's the main reason for the crashing problem.
    The syndromes are:
    1. When I left Safari open, unplug the ethernet, and turn-on WiFi, everythings goes on normally, until I open an HTTPS web page, for example, https://www.icloud.com. Of course that HTTPS URL will not load, since our proxy is broken; but the connection itself will NOT timeout. I've tried to leave it connecting for 10 minuntes, and it's still there.
    2. The statement above may due to a glitch in our proxy server and I can understand that. But the problem is: after I tried to open an HTTPS connection, the Safari will refuse to open any other URLs, including normal HTTP connections. It will just keep "connecting". Meanwhile the FireFox and Chrome can load these HTTP pages normally.
    3. If I quit Safari in this situation, Safari will not be able to re-launce: the icon will keep bumping on the dock. I have to force quit Safari and delete extensions folder, so that it can be launched again. But even after Safari re-launced, it still refused to load HTTP pages.
    4. Neither reconnecting WiFi, relogin, or switching back to ethernet can fix the problem. I have to restart the whole system to get it back to normal.
    It seemed to me that some Safari-related process will keep in the system after Safari is quited. And that process may keep the inactivated HTTPS connections alive in its TCP pool, and blocked all sequence connections, including the iCloud synchronization. And while I force-quit Safari, the extensions.plist file is damaged. That's the only plausible explanation to this situation.
    I'm sure this situation is introduced after 10.7.2: it's not the first time our proxy server breakdown, but I've never have this problem before.

    I've done some detailed test and now I can give a conclusion:
    1. It's confirmed that sequence HTTPS connection will be blocked in Safari and Google Chrome after a failure HTTPS connection (due to proxy). And rebooting is the only way to recover connections.
    2. My previous observation is wrong: this is NOT a system wide problem. FireFox is not affected. FireFox will return to normal and all sequence HTTPS connection can be proceeded without any problem when I reconnect to a valid network connection (i.e. ethernet), while the Safari and Google Chrome remained being blocked. And DropBox is NOT affected as well.
    3. None of the solutions mentioned in other threads can solve this problem. Checking the "Auto proxy discovery" does not help. Delete ~/Library/Preferences/com.apple.security.revocation.plistfile does not help. Clean Keychain does not help either. I've created another account for testing.
    4. It's apparently something related to some system built-in network services. Since the FireFox and DropBox both gets its' own Proxy implementation, while Safari and Google Chrome will take the system settings. It's also worth noting that the POP3-SSL connection in Mail.app is also blocked after a failure HTTPS connection.
    Currently the ONLY valid solution is using FireFox instead.

  • Re: Cannot update Safari on OS Snow Leopard 10.6.8

    So what do I do when websites inform me that Safari 5.1.10 is no longer supported, while I am strongly opposed to surrendering OS 10.6.8 Snow Leopard on my MacBook Pro? The Snow Leopard OS is by far the best operating system ever made! And the Lion operating system on my iMac has been a disaster that has cost me $$$$ in downtime. I NEED Snow Leopard for important work I cannot accomplish with Lion. Furthermore, all the reviews I've read about Mavericks and Yosemite suggest those systems are also loaded with problems.

    David Henderson7 wrote:
    Thanks, QuickTimeKirk and Eric, for your comments. However...
    I have Firefox and I hate it, because it's ALWAYS being updated. I spend too many work-related hours on the Internet, and the disruption caused by updates is a nuisance, especially when most of those updates have no major effect on performance or utility. Safari seems to be built from the inside out to work smoothly within the OS with little or no further attention.
    Apple is the world's richest company at over $700 billion, about double Exxon Mobile, the #2 corporation. Couldn't Apple manage to issue a Safari update for Snow Leopard? Either that, or rid the newer operating systems of all their bugs. What's the hangup?
    What bugs? Why would Apple spend money supporting a six year old system that has not been issued an update for four years? And why not support every other old OS X before? Because the hardware is growing to old to run the new releases of Safari etc. If the latest version you can update to is not satisfactory and you refuse to use an updatable third party browser, or update to a modern OS X (I am not sure what 'bugs'  you are referring to, you failed to mention) then you are locking yourself into some tiny little corner with a couple of friends where Apple would never bother looking or, for that matter, spend millions supporting.
    If you make your choices and they are not realistic or possible, then you should consider changing your habits as millions upon millions of others had done.
    Good Luck
    Pete

  • Is there a way to view Safari full screen in Leopard?

    Is there a way to view Safari full screen in Leopard without auto-hiding the dock? I've already tried searching the forums but could not find much on it or an answer to if it can be done or not. Thanks for any help.

    You can open the Code Inspector Window to have the code completely separate from the Design/Document window. You can also then move the CI window to a separate monitor if you like.
    Window > Code Inspector or F10

  • Adobe Reader Plugins for Safari 5 on Snow Leopard

    Our software uses Adobe Reader to open, edit, and save Pdf Forms.  Most of our customer base is on Windows but we now have some MAC users as well.  Everything works fine except using Safari 5 on Snow Leopard.  It appears as if the plug ins are not loading properly or at all when Reader 9 is installed.  When a user goes to open a PDF Form, nothing happens.
    My personal Macbook which I have at the office, is Leopard with Safari 5 and when I download Reader 9, I can see the plugins in Safari and everthing works fine.  Any suggestions?
    Thanks

    On Snow Leopard 10.6, you need to run Safari in 32 bit mode to get the Adobe Reader Plugin to load and launch properly.
    To do this,
    1) exit Safari. 
    2) in the Finder go to your Applications folder, select Safari and do File->Get Info
    3) Check 'Open in 32-bit mode' in the General pane of that dialog
    4) Relaunch Safari
    5) Under the Safari Help->Installed Plug-ins you should now see the Adobe Reader plugin support.
    I am able to get Safari to open forms inline in Reader this way.  I am not able to get the Adobe Forms with Adobe Javascript running in this mode.  Any insight on how this might be done would be helpful.  It does work in the Standalone Reader, but so far no luck enabling it in the Safari plugin.

  • Need help with LR5 catalog which refuses to make workable copies

    LR catalog refuses to make workable copies.
    error message: Catalog cannot be opened due to unexpected error
    Is there any way around that? It was working fine then I moved several folders from the main drive to the external HD and saved again. I have had trouble with this drive over the winter though. the  main catalog still opens so far but I am worried that I have no back-up working catalog considering I lost a catalog earlier in he winter when it was residing on the external HD.
    I have not made backups as such because I would always copy the catalog to the backup HDs but now those cannot be opened...

    Might be time to retire that external drive and buy a new one.
    By default LR makes a weekly backup of the catalog you have opened. In the Backup dialog window you can specify where those backups are located. I suggest you place them all on a Known Working internal drive and then Back Up those Backups files to a New external drive.

  • How to sync Safari  bookmarks from snow leopard to a iPad Air?

    How does one transfer, or sync Safari  bookmarks from snow leopard to a iPad Air without involving iCloud?

    Give Xmarks a try, they have an iOS app as well. It will not sync directly to Safari on the iPad, you open the links through the app.
    http://www.xmarks.com/

  • Having Font Issues In Safari After Upgrading To Leopard

    So...i'm having some font issues in Safari after upgrading to Leopard....
    It works fine on my desktop but not on my laptop. They both run on Leopard.
    Also, it works in Firefox but not Safari.
    Here's some screens of what it looks like. This only pertains to any site that uses this font and it isn't uncommon, (sites like google, yahoo, and the WoW Forums)
    http://i21.tinypic.com/1z6cwsx.jpg
    zoom in to see what i'm talking about, it's really messed up on the full screen
    Font settings:
    http://i24.tinypic.com/x2rucx.jpg
    Another pic of what it looks like on Google:
    http://i24.tinypic.com/rmsjz8.jpg
    Anyways...any idea on how I can fix this?

    I disabled the stencil font and deleted it. No luck here.
    I ran a font validation check and this is what showed up, don't know if this means anything.
    http://img.photobucket.com/albums/v649/llamaboy2/fontvalid.jpg
    http://img.photobucket.com/albums/v649/llamaboy2/fontvalid2.jpg
    http://img.photobucket.com/albums/v649/llamaboy2/fontvalid3.jpg
    http://img.photobucket.com/albums/v649/llamaboy2/fontvalid4.jpg
    http://img.photobucket.com/albums/v649/llamaboy2/fontvalid5.jpg
    http://img.photobucket.com/albums/v649/llamaboy2/fontvalid6.jpg

  • My iPhone 4s refuses to make alert sounds for one contact.  All other text messages from other individuals, including iMessage, all make appropriate alert sounds.  Very frustrating.  Any help out there?

    My iPhone 4s refuses to make alert sounds for messages for one particular contact of mine.  All other text messages come through with appropriate alert sounds.  Any help out there?

    As always seems to happen, the next thing you try ends up working. Well almost. I
    Deleted the contact and sent a message from that phone to mine -- problem persisted
    Deleted the person from my FAVORITES in the phone app (the entry still existed even though the contact had been deleted). This worked!!!
    It's kind of weird that the favorites in the phone app were somehow affecting notifications in Messages for a contact that had been deleted, but there you are.

  • Safari working great with Leopard now crashing when try to go to sites

    Safari working great with Leopard now crashing when try to go to sites

    Here is the very lengthy report it is generating AFTER the crash-
    Process: Safari [662]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.0.4 (5523.10.6)
    Build Info: WebBrowser-55231006~1
    Code Type: X86 (Native)
    Parent Process: launchd [98]
    Date/Time: 2007-12-19 11:17:06.557 -0800
    OS Version: Mac OS X 10.5.1 (9B18)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000008
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.WebCore 0x96871876 WebCore::Frame::page() const + 6
    1 com.apple.WebCore 0x969edac2 WebCore::FrameTree::isDescendantOf(WebCore::Frame const*) const + 34
    2 com.apple.WebCore 0x969ed99d WebCore::FrameLoader::submitForm(WebCore::FrameLoadRequest const&, WebCore::Event*) + 109
    3 com.apple.WebCore 0x96cb65ad WebCore::FrameLoader::submitForm(char const*, WebCore::String const&, ***::PassRefPtr<WebCore::FormData>, WebCore::String const&, WebCore::String const&, WebCore::String const&, WebCore::Event*) + 1197
    4 com.apple.WebCore 0x969eb1f0 WebCore::HTMLFormElement::submit(WebCore::Event*, bool) + 496
    5 com.apple.WebCore 0x969eaf0c WebCore::HTMLFormElement::prepareSubmit(WebCore::Event*) + 188
    6 com.apple.WebCore 0x96985e2b WebCore::HTMLInputElement::defaultEventHandler(WebCore::Event*) + 1787
    7 com.apple.WebCore 0x968fb703 WebCore::EventTargetNode::dispatchGenericEvent(***::PassRefPtr<WebCore::Event>, int&, bool) + 739
    8 com.apple.WebCore 0x968fb390 WebCore::EventTargetNode::dispatchEvent(***::PassRefPtr<WebCore::Event>, int&, bool, WebCore::EventTarget*) + 160
    9 com.apple.WebCore 0x968fb2ad WebCore::EventTargetNode::dispatchEvent(***::PassRefPtr<WebCore::Event>, int&, bool) + 61
    10 com.apple.WebCore 0x96984854 WebCore::EventTargetNode::dispatchUIEvent(WebCore::AtomicString const&, int, ***::PassRefPtr<WebCore::Event>) + 212
    11 com.apple.WebCore 0x968fbb9e WebCore::EventTargetNode::defaultEventHandler(WebCore::Event*) + 302
    12 com.apple.WebCore 0x9698591f WebCore::HTMLInputElement::defaultEventHandler(WebCore::Event*) + 495
    13 com.apple.WebCore 0x968fb703 WebCore::EventTargetNode::dispatchGenericEvent(***::PassRefPtr<WebCore::Event>, int&, bool) + 739
    14 com.apple.WebCore 0x968fb390 WebCore::EventTargetNode::dispatchEvent(***::PassRefPtr<WebCore::Event>, int&, bool, WebCore::EventTarget*) + 160
    15 com.apple.WebCore 0x968fb2ad WebCore::EventTargetNode::dispatchEvent(***::PassRefPtr<WebCore::Event>, int&, bool) + 61
    16 com.apple.WebCore 0x96ba9f4c WebCore::EventTargetNode::dispatchMouseEvent(WebCore::AtomicString const&, int, int, int, int, int, int, bool, bool, bool, bool, bool, WebCore::Node*, ***::PassRefPtr<WebCore::Event>) + 508
    17 com.apple.WebCore 0x96baa325 WebCore::EventTargetNode::dispatchMouseEvent(WebCore::PlatformMouseEvent const&, WebCore::AtomicString const&, int, WebCore::Node*) + 165
    18 com.apple.WebCore 0x969cb352 WebCore::EventHandler::dispatchMouseEvent(WebCore::AtomicString const&, WebCore::Node*, bool, int, WebCore::PlatformMouseEvent const&, bool) + 114
    19 com.apple.WebCore 0x969f48d6 WebCore::EventHandler::handleMouseReleaseEvent(WebCore::PlatformMouseEvent const&) + 694
    20 com.apple.WebCore 0x969f4529 WebCore::EventHandler::mouseUp(NSEvent*) + 393
    21 com.apple.WebKit 0x91f7e7dc -[WebHTMLView mouseUp:] + 220
    22 com.apple.AppKit 0x90572e39 -[NSWindow sendEvent:] + 5520
    23 com.apple.Safari 0x000329d3 0x1000 + 203219
    24 com.apple.AppKit 0x9053fa2c -[NSApplication sendEvent:] + 2766
    25 com.apple.Safari 0x000324a8 0x1000 + 201896
    26 com.apple.AppKit 0x9049d705 -[NSApplication run] + 847
    27 com.apple.AppKit 0x9046a9ba NSApplicationMain + 574
    28 com.apple.Safari 0x00002876 0x1000 + 6262
    Thread 1:
    0 libSystem.B.dylib 0x960aeace _semwaitsignal + 10
    1 libSystem.B.dylib 0x960d8ced pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x9686003f WebCore::IconDatabase::syncThreadMainLoop() + 239
    3 com.apple.WebCore 0x9685b635 WebCore::IconDatabase::iconDatabaseSyncThread() + 181
    4 libSystem.B.dylib 0x960d8075 pthreadstart + 321
    5 libSystem.B.dylib 0x960d7f32 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x960a78e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x960af0dc mach_msg + 72
    2 com.apple.CoreFoundation 0x93ead0fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x93eadd38 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x921b97ba CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x960d8075 pthreadstart + 321
    6 libSystem.B.dylib 0x960d7f32 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x960a78e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x960af0dc mach_msg + 72
    2 com.apple.CoreFoundation 0x93ead0fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x93eadd38 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x94c83560 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x94c2004d -[NSThread main] + 45
    6 com.apple.Foundation 0x94c1fbf4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x960d8075 pthreadstart + 321
    8 libSystem.B.dylib 0x960d7f32 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x960f6f5a select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x960d8075 pthreadstart + 321
    2 libSystem.B.dylib 0x960d7f32 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x960a78e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x960af0dc mach_msg + 72
    2 ...romedia.Flash Player.plugin 0x18159341 memcopy_mmx + 709497
    3 libSystem.B.dylib 0x960d8075 pthreadstart + 321
    4 libSystem.B.dylib 0x960d7f32 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x960a792e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x960d91e6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x9611ec4b pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x18020572 0x17c91000 + 3732850
    4 ...romedia.Flash Player.plugin 0x18057e68 Flash_EnforceLocalSecurity + 124992
    5 ...romedia.Flash Player.plugin 0x1802081c 0x17c91000 + 3733532
    6 libSystem.B.dylib 0x960d8075 pthreadstart + 321
    7 libSystem.B.dylib 0x960d7f32 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x960a792e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x960d91e6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x9611ec4b pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x18020572 0x17c91000 + 3732850
    4 ...romedia.Flash Player.plugin 0x18057e68 Flash_EnforceLocalSecurity + 124992
    5 ...romedia.Flash Player.plugin 0x1802081c 0x17c91000 + 3733532
    6 libSystem.B.dylib 0x960d8075 pthreadstart + 321
    7 libSystem.B.dylib 0x960d7f32 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x96cb6114 ecx: 0x00000006 edx: 0x0044dc84
    edi: 0x00000000 esi: 0x0043c8b8 ebp: 0xbfffe9e8 esp: 0xbfffe9e8
    ss: 0x0000001f efl: 0x00010286 eip: 0x96871876 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000008
    Binary Images:
    0x1000 - 0x12efef com.apple.Safari 3.0.4 (5523.10.6) <53d219fd878088543fd2e1af460bed18> /Applications/Safari.app/Contents/MacOS/Safari
    0x176000 - 0x184ff8 SyndicationUI ??? (???) <8adc35e1eb5001dead3c18ee25f2e8db> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x193000 - 0x1a9fe7 com.apple.CoreVideo 1.5.0 (1.5.0) <c7569b68e54114da815e9c55299fe3a4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x51a000 - 0x600ff7 com.apple.RawCamera.bundle 2.0 (2.0) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7f2000 - 0x7f7ff3 libCGXCoreImage.A.dylib ??? (???) <978986709159e5fe9e094df5efddac1d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x162b6000 - 0x162b6ffe com.apple.JavaPluginCocoa 12.0.0 (12.0.0) <02a9f23a8bfc902c32ac0adfb66d6816> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x16e01000 - 0x16e08ffd com.apple.JavaVM 12.0.0 (12.0.0) <44b9536fe4d7c7fcb3506adb695a180f> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x17129000 - 0x1712aff3 ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x17c91000 - 0x1828eff3 +com.macromedia.Flash Player.plugin 9.0.115 (1.0.4f60) <9fa57b6dc7ff4cfe9a518442325e91cb> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x183cf000 - 0x186e0fe2 com.apple.QuickTime 7.3.1 (7.3.1) <697ff9cc466d4388840c3b733af9c6d7> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x1879e000 - 0x187bdfed com.apple.audio.CoreAudioKit 1.5 (1.5) <82f2e52c502db7f3b32349a54209a0fe> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x8fe00000 - 0x8fe2d883 dyld 95.3 (???) <81592e798780564b5d46b988f7ee1a6a> /usr/lib/dyld
    0x90003000 - 0x90021ff3 com.apple.DirectoryService.Framework 3.5 (3.5) <899d8c9ee31b004a6ff73dab88982b1a> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90022000 - 0x90146fe3 com.apple.audio.toolbox.AudioToolbox 1.5 (1.5) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90147000 - 0x90147ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90148000 - 0x9017efef libtidy.A.dylib ??? (???) <e4d3e7399fb83d7f145f9b4ec8196242> /usr/lib/libtidy.A.dylib
    0x9017f000 - 0x9019dfff libresolv.9.dylib ??? (???) <54e6a08c2f108bdf5916fb483d51961b> /usr/lib/libresolv.9.dylib
    0x9019e000 - 0x901f8ff7 com.apple.CoreText 2.0.0 (???) <7fa39cd5bc847615ec02e7c7a37c0508> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x902ee000 - 0x90315fff libcups.2.dylib ??? (???) <5521498e8902ddd0b15cfaa7db384e29> /usr/lib/libcups.2.dylib
    0x90316000 - 0x90395ff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90396000 - 0x9039cfff com.apple.print.framework.Print 218 (220) <c35172175abbe554ddadd9b6401351fa> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9039d000 - 0x9039dff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9039e000 - 0x903a5fff com.apple.agl 3.0.9 (AGL-3.0.9) <7dac4a7cb0de2f6d08ae71c1249379e3> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x903a6000 - 0x903b4ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x903b5000 - 0x903b5ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x903b6000 - 0x903d5ffa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x903d6000 - 0x90420fe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90421000 - 0x90457fff com.apple.SystemConfiguration 1.9.0 (1.9.0) <7919d9588c3b0d556646e555b7193f1f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9045e000 - 0x90463fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90464000 - 0x90c5efef com.apple.AppKit 6.5 (949) <f8d0f6d0bb5ac092f48f42ca684bdb54> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x90c5f000 - 0x9106ffef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91070000 - 0x91119fff com.apple.JavaScriptCore 5523.10.3 (5523.10.3) <9e6719a7a0740f5c224099a7b853e45b> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91137000 - 0x91140fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x91141000 - 0x91148ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x91280000 - 0x91282fff com.apple.CrashReporterSupport 10.5.0 (156) <3088b785b10d03504ed02f3fee5d3aab> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x912b8000 - 0x912f9fe7 libRIP.A.dylib ??? (???) <bdc6d70bf4ed3dace321b4ff76a353b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x912fa000 - 0x91312fff com.apple.openscripting 1.2.6 (???) <b8e553df643f2aec68fa968b3b459b2b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91313000 - 0x9138ffeb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91400000 - 0x91424feb libssl.0.9.7.dylib ??? (???) <acee7fc534674498dcac211318aa23e8> /usr/lib/libssl.0.9.7.dylib
    0x91425000 - 0x91425fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91426000 - 0x9172cfff com.apple.HIToolbox 1.5.0 (???) <1b872a7151ee3f80c9c736a3e46d00d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9172d000 - 0x9176aff7 libGLImage.dylib ??? (???) <202d73e6a4688fc06ff11b71910c2ce7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9176b000 - 0x917fefff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x917ff000 - 0x91e96fef com.apple.CoreGraphics 1.351.0 (???) <7a6f399039eed6dbe845c169f7d21a70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x91e97000 - 0x91f46fff com.apple.DesktopServices 1.4.3 (1.4.3) <66d5ed56111c43d234e235d365d02469> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91f51000 - 0x9200cfe3 com.apple.WebKit 5523.10.5 (5523.10.5) <2741777559b3948d520a4d126330dbce> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9200d000 - 0x9210efff com.apple.PubSub 1.0.1 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x921ae000 - 0x92225fe3 com.apple.CFNetwork 220 (221) <972a41911805859205b057a6f5b91e8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92226000 - 0x9235eff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x931ec000 - 0x9321efff com.apple.LDAPFramework 1.4.3 (106) <3a5c9df6032143cd6bc2658a9d328d8e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x93236000 - 0x932b0ff8 com.apple.print.framework.PrintCore 5.5 (245) <9441d178f4b430cf92b67bf346646693> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x932bf000 - 0x932bfff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x932c0000 - 0x932e8ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x93359000 - 0x93374ffb libPng.dylib ??? (???) <b6abcac36ec7654ff3e1cfa786b0117b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93375000 - 0x933a2feb libvDSP.dylib ??? (???) <a26683d121ee0f96df9a9d0bfca36049> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x93469000 - 0x935aeff7 com.apple.ImageIO.framework 2.0.0 (2.0.0) <154d4d8cda2bd99518cbabc9f2d69833> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x935af000 - 0x935d9fef libauto.dylib ??? (???) <d468bc4a8a69343f1748c293db1b57fb> /usr/lib/libauto.dylib
    0x935da000 - 0x93758fff com.apple.AddressBook.framework 4.1 (687) <3f005092d08e963eabe8f7f66c09cc1e> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x937ab000 - 0x937abffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x937ac000 - 0x937c0ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x937c1000 - 0x937c4fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x937c5000 - 0x937d4fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x9381a000 - 0x938feffb com.apple.CoreData 100 (185) <a4e63784275e25e62f57e75e0af0b94d> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x938ff000 - 0x938ffffd com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93900000 - 0x93974fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x93975000 - 0x939b4fef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x939b5000 - 0x93a12ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x93a13000 - 0x93a15fff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93a16000 - 0x93aa8ff3 com.apple.ApplicationServices.ATS 3.0 (???) <fb5f572243dbc370a0ea5efc8e81ae11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x93aa9000 - 0x93ab6fe7 com.apple.opengl 1.5.5 (1.5.5) <aa08b52d2a84b44dc6ee5d544a53fe8a> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93ab7000 - 0x93ac7ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <cbeb17ab39f28351fe2ab5b82bf465bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93ac8000 - 0x93b02ff7 com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93b03000 - 0x93b0eff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x93b0f000 - 0x93b6bff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93b6c000 - 0x93c4bfff libobjc.A.dylib ??? (???) <5eda47fec2d0e7853b3506aa1fd2dafa> /usr/lib/libobjc.A.dylib
    0x93c4c000 - 0x93c70fff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x93c71000 - 0x93e3afef com.apple.security 5.0.1 (32736) <8c9eda0fcc1d8a571543025ac900715f> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93e3b000 - 0x93f6dfe7 com.apple.CoreFoundation 6.5 (476) <8bfebc0dbad6fc33bea0fa00a1b9ec37> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93f6e000 - 0x93f9dfe3 com.apple.AE 402 (402) <994ba8e884aefe7bf1fc5987df099e7b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93f9e000 - 0x93fd7ffe com.apple.securityfoundation 3.0 (32768) <1e9885d63ced51f81bc1f39af624637d> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93fd8000 - 0x93fdcfff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93fdd000 - 0x942b6fe7 com.apple.CoreServices.CarbonCore 783 (783) <8370e664eeb25edc98d5c1f5405b06ae> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x944b6000 - 0x944c2ff5 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x944c3000 - 0x944c4fef libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x944c5000 - 0x94991ffe libGLProgrammability.dylib ??? (???) <e8bc0af671427cf2b6279a035805a086> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x94b4e000 - 0x94c15ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x94c16000 - 0x94e8ffe7 com.apple.Foundation 6.5.1 (677.1) <85ac18c7cd454378db6122bea0c00965> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94e90000 - 0x94e9bfe7 libCSync.A.dylib ??? (???) <df82fc093e498a9eb5490761cb292218> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94ebd000 - 0x94ebdffd com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94ebe000 - 0x94ec8feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94ec9000 - 0x94f55ff7 com.apple.LaunchServices 286 (286) <72b15e7a01e42d510f0339e90113d5d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94f5c000 - 0x9500effb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x9500f000 - 0x95054fef com.apple.Metadata 10.5.0 (398) <4fd74fba0062c2e08ec4b1c10b40ff63> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x950b8000 - 0x95199ff7 libxml2.2.dylib ??? (???) <450ec38b57fb46013847cce851001a2f> /usr/lib/libxml2.2.dylib
    0x9519a000 - 0x95265fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95297000 - 0x9529eff7 libCGATS.A.dylib ??? (???) <9b29a5500efe01cc3adea67bbc42568e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9529f000 - 0x95355fe3 com.apple.CoreServices.OSServices 210.2 (210.2) <4ed69f07fc0f211ab32d1ee96e281fc2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x95356000 - 0x9535bfff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9535c000 - 0x953b5fff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x953b6000 - 0x9541bffb com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9541c000 - 0x957dafea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95b0d000 - 0x95b94ff7 libsqlite3.0.dylib ??? (???) <273efcb717e89c21207c851d7d33fda4> /usr/lib/libsqlite3.0.dylib
    0x95b95000 - 0x95ba5fff com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <4ffef145fad3d4d787e0c33eab26b336> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x95ba7000 - 0x95f3dff7 com.apple.QuartzCore 1.5.1 (1.5.1) <deb61cbeb3f734a1b2f4669f6268b9de> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95f3e000 - 0x95f4dffe com.apple.DSObjCWrappers.Framework 1.2 (1.2) <f5b58d1d3a855a63d493ccbec417a1e9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95f4e000 - 0x95ff5fff com.apple.QD 3.11.50 (???) <e2f71720ae1dad06a8883ac80775b21a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95ff6000 - 0x960a6fff edu.mit.Kerberos 6.0.11 (6.0.11) <33c25789baedcd70a7e24881775dd9ad> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x960a7000 - 0x96201fe3 libSystem.B.dylib ??? (???) <8ecc83dc0399be3946f7a46e88cf4bbb> /usr/lib/libSystem.B.dylib
    0x96202000 - 0x96244fef com.apple.NavigationServices 3.5.1 (161) <cc6bd78eabf1e2e7166914e9f12f5850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x96245000 - 0x9624cfe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x9624d000 - 0x96263fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x962f4000 - 0x962f5ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x9630e000 - 0x9630effd com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9634d000 - 0x96355fff com.apple.DiskArbitration 2.2 (2.2) <1551b2af557fdf6f368f93e093933852> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x96356000 - 0x963a6ff7 com.apple.HIServices 1.6.0 (???) <d74aa73e4cfd30a08fb169198a8d2539> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96610000 - 0x9669afff com.apple.framework.IOKit 1.5.1 (???) <5176a7383151a19c962334009fef2c6d> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x967f2000 - 0x967f4ff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96858000 - 0x96d6efff com.apple.WebCore 5523.10.5 (5523.10.5) <2969321e9dbdb3e099efbacc94c4bd1b> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <7b0248c392848338f5d6ed093313eeef> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • Connection refused when trying to getOutputStream from https connection

    Hi all !
    I want to make an https connection with a server to send/get the request/response
    What can be the cause of the following error in the following code testHttps.java?
    java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.connect(Unknown Source)
    at com.sun.net.ssl.internal.ssl.BaseSSLSocketImpl.connect(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.protocol.https.HttpsClient.<init>(Unknown Source)
    at sun.net.www.protocol.https.HttpsClient.New(Unknown Source)
    at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
    at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(Unknown Source)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream(Unknown Source)
    at Test.testHttps.main(testHttps.java:46)
    Exception in thread "main" java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.connect(Unknown Source)
    at com.sun.net.ssl.internal.ssl.BaseSSLSocketImpl.connect(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.protocol.https.HttpsClient.<init>(Unknown Source)
    at sun.net.www.protocol.https.HttpsClient.New(Unknown Source)
    at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
    at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(Unknown Source)
    at Test.testHttps.main(testHttps.java:51)
    testHttps.java
    package Test;
    import java.io.;
    import java.net.;
    import javax.net.ssl.*;
    public class testHttps {
    public static void main(String args[]) throws Exception {
    //System.setProperty("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol");
    // Create a trust manager that does not validate certificate chains
    TrustManager[] trustAllCerts = new TrustManager[]{
    new X509TrustManager() {
    public java.security.cert.X509Certificate[] getAcceptedIssuers() {
    return null;
    public void checkClientTrusted(
    java.security.cert.X509Certificate[] certs, String authType) {
    public void checkServerTrusted(
    java.security.cert.X509Certificate[] certs, String authType) {
    // Install the all-trusting trust manager
    try {
    SSLContext sc = SSLContext.getInstance("SSL");
    sc.init(null, trustAllCerts, new java.security.SecureRandom());
    HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
    } catch (Exception e) {
    System.out.println("Error" e);
    // Now you can access an https URL without having the certificate in the truststore
    try {
    URL url = new URL("https://..............");-->//address of the server given here
    URLConnection conn = url.openConnection();
    HttpsURLConnection urlConn = (HttpsURLConnection) conn;
    urlConn.setDoOutput(true);
    OutputStreamWriter wr = null;
    try{
    wr = new OutputStreamWriter(conn.getOutputStream());
    catch(Exception e){
    e.printStackTrace();
    BufferedReader in = new BufferedReader(new InputStreamReader(urlConn.getInputStream()));
    String str;
    while( (str=in.readLine()) != null) {
    System.out.println(str);
    } catch (MalformedURLException e) {
    System.out.println("Error in SLL Connetion" +e);
    HostnameVerifier hv = new HostnameVerifier()
    public boolean verify(String urlHostName, SSLSession session)
    System.out.println("Warning: URL Host: " urlHostName " vs. "
    session.getPeerHost());
    return true;
    want to ignore certificate validation.
    plese help me..
    hi brucechapman, as you suggested me, i posted in Core API- networking forum, now please gimme a solution
    Thanks in advance.

    hi brucechapman,
    ran the NetTest program, got the following exception:
    trigger seeding of SecureRandom
    done seeding SecureRandom
    Exception in thread "main" java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(Unknown Source)
         at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.connect(Unknown Source)
         at com.sun.net.ssl.internal.ssl.BaseSSLSocketImpl.connect(Unknown Source)
         at sun.net.NetworkClient.doConnect(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.protocol.https.HttpsClient.<init>(Unknown Source)
         at sun.net.www.protocol.https.HttpsClient.New(Unknown Source)
         at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
         at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(Unknown Source)
         at java.net.URL.openStream(Unknown Source)
         at Test.NetTest.main(NetTest.java:40)
    NetTest.java:40 -- InputStream is = url.openStream(); at this ling throwing exception.
    For the following program, i have added the argument -Djavax.net.ssl.trustStore=cacerts
    i have exported the certificate from IE and added to the keystore.
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.OutputStreamWriter;
    import java.security.Security;
    import javax.net.ssl.SSLSocket;
    import javax.net.ssl.SSLSocketFactory;
    public class Communicator {
    public static void main(String[] args) {
    try {
    int port = 34443;
         String strReq = "xml content ";
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    SSLSocketFactory factory = (SSLSocketFactory) SSLSocketFactory.getDefault();
    SSLSocket socket = (SSLSocket) factory.createSocket("jyoti-win2k8-32", port);
    //Writer out = new OutputStreamWriter(socket.getOutputStream());
    //out.write("GET http://" + "hostname" + "/ HTTP 1.1\r\n");
    // out.write("\r\n");
    //out.write(strReq);
    //out.flush();
    OutputStreamWriter wr = null;
    try{
         wr = new OutputStreamWriter(socket.getOutputStream());
         catch(Exception e){
              e.printStackTrace();
         System.out.println("got output stream");
         try{
         wr.write(strReq);
         //System.out.println("response code : "+conn.getResponseCode());
         System.out.println("written");
         wr.flush();
         catch(IOException e){
              e.printStackTrace();
    InputStreamReader is = new InputStreamReader(socket.getInputStream(),"UTF8") ;
         BufferedReader rd = new BufferedReader(is);
         String line;int count=0;
         System.out.println("rd "+rd);
         while ((line = rd.readLine()) != null) {
              System.out.println("line "+line );
              System.out.println(count++);
              // Process line...
         System.out.println(count);
    rd.close();
    BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
    int c;
    while ((c = in.read()) != -1) {
    System.out.write(c);
    //out.close();
    in.close();
    socket.close();
    } catch(IOException ex) {
    ex.printStackTrace();
    Exception :
    javax.net.ssl.SSLException: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty
         at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(Unknown Source)
         at com.sun.net.ssl.internal.ssl.AppOutputStream.write(Unknown Source)
         at sun.nio.cs.StreamEncoder.writeBytes(Unknown Source)
         at sun.nio.cs.StreamEncoder.implFlushBuffer(Unknown Source)
         at sun.nio.cs.StreamEncoder.implFlush(Unknown Source)
         at sun.nio.cs.StreamEncoder.flush(Unknown Source)
         at java.io.OutputStreamWriter.flush(Unknown Source)
         at Test.Communicator.main(Communicator.java:55)
    Caused by: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty
         at sun.security.validator.PKIXValidator.<init>(Unknown Source)
         at sun.security.validator.Validator.getInstance(Unknown Source)
         at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.getValidator(Unknown Source)
         at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(Unknown Source)
         at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(Unknown Source)
         at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(Unknown Source)
         at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(Unknown Source)
         at com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Unknown Source)
         at com.sun.net.ssl.internal.ssl.Handshaker.process_record(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecord(Unknown Source)
         ... 7 more
    Caused by: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty
         at java.security.cert.PKIXParameters.setTrustAnchors(Unknown Source)
         at java.security.cert.PKIXParameters.<init>(Unknown Source)
         at java.security.cert.PKIXBuilderParameters.<init>(Unknown Source)
         ... 19 more
    java.net.SocketException: Socket is closed
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.getInputStream(Unknown Source)
         at Test.Communicator.main(Communicator.java:66)
    please help me and provide me suggestion/solution. how to get rid off this trustanchor paramater exception
    what is it actualy?
    Thanks in advance.

  • HT4199 What does it mean when I click on my wifi name and the bars come up but the network keeps thinking and the ipad says safari cannot open the page because it is not connected to the internet. ?

    What does it mean when I click on my wifi name and it show I'm on my wifi, but the network keeps thinking and the ipad says, Safari cannot open this page because it is not connected to the internet. ?

    When you click on the WiFi network name, have you also provided the password for accessing the network?  You should get a dialogue box asking you for the security information the first time you connect.
    If you are not able to connect, you might want to go to Settings > General > Reset > Reset network settings.
    Then go back to Settings > WiFi and select your network name again and make sure the security information is now entered correctly.
    If you still cannot connect, power down the router, wait a few minutes, power up the router, with the iPad powered down the whole time, and after the router has had several minutes to stabilize power up the iPad.  See if it now connects correctly.

Maybe you are looking for

  • ID CS4: Is there a way to resize multiple objects at one time?

    InDesign CS4: I have a group of object frames that I need to resize (I don't care about resizing the content, I know how to do that) and I'm wondering if there's a way to resize them all at once to a specific size. If I group them and resize them it

  • How to capture the Escalation status in Human Task & Update in database

    Hi, I have created a Workflow where I have a humantask. Here if the Approver Escalates the task, I want to capture this Workflow status and need to Update it in the our(Oracle) Database as Escalated. I am Updating the database as Approved when the Ap

  • InDesign CS6 Forms Question

    Wondering if any of you out there have been using the new forms options in InDesign CS6. I have been working on some forms and created a bunch of text fields for people to fill in. What I discovered was that when I exported and tried to put text in t

  • W530 HDD/SSD detailed RAIL/TRAY info request

    My apologies as this may appear to be beating a dead horse.  However, I have called Tech support twice, Boulder IBM parts twice, and Lenovo Inside Sales twice.  Sales & this site were the most helpful.  I'm posting this as there seems to be some data

  • Exporting for web on CS4

    Can any one help? I am currently creating video using CS4 for an online world and using a compressor seperatly before uploading the video but i wondered if it was possible to export a video using CS4 straight for web use. compressed but not pixelated