NPE 10.1.3.1 - Can you solve it?

I get an NPE in OC4J 10.1.3.1 that I did not get in OC4J 9.0.4.
The easisest way to explain it that it seems that a ResultSet that is populated in a bean, via JSP javascript invocation, is "lost" once that same JSP attempts to access it for display.
You will see by my debug statements that ResultSet is populated (in SQLDataSource.java) with 1902 rows. I have commented out debug statements that I previoulsy executed to access the ResultSetMetaData and that is all in tact. Further, I even debugged the getString in the that same code and found it to be in tact.
First I'll give you the trace and then I'll provide the JSPs java file where the error is on line 66 as:
out.print( detail.getString("ACCT") );
All of this is followed by links to view all pertinent code:
TRACE
=====
07/04/27 10:42:57 Oracle Containers for J2EE 10g (10.1.3.1.0) initialized
07/04/27 10:43:10 [DEBUG]: Using old session!
07/04/27 10:43:12 [DEBUG]: User is not Inactive.
07/04/27 10:43:12 [DEBUG]: defaultTemplate in ServletAdapter is /myinetmrp/my.jsp
07/04/27 10:43:17 [DEBUG]: ReportWriter.service()
07/04/27 10:43:17 com.sage.servlet.FileDataSource[null]: SQLDataSource(AcctList_Count)
07/04/27 10:43:17 com.sage.servlet.FileDataSource[AcctList_Count]: End FileDataSource. Setting this.queryFile
07/04/27 10:43:17 com.sage.servlet.FileDataSource[null]: SQLDataSource(AcctList)
07/04/27 10:43:17 com.sage.servlet.FileDataSource[AcctList]: End FileDataSource. Setting this.queryFile
07/04/27 10:43:17 [DEBUG]: The method is defaultMethod
07/04/27 10:43:17 [DEBUG]: ReportWriter.defaultMethod
07/04/27 10:43:17 [DEBUG]: refresh(req, res)
07/04/27 10:43:17 [DEBUG]: Setting first = 1, last = 20 and ServeletEventFetchSize = 20
07/04/27 10:43:17 [DEBUG]: defaultTemplate in ServletAdapter is /apps/AcctList.jsp
07/04/27 10:43:17 com.sage.servlet.FileDataSource[AcctList]: execute()
07/04/27 10:43:17 com.sage.servlet.FileDataSource[AcctList]: Loading query from FileDataSource file C:\OC4J_10131\j2ee\home\applications\intemrp\intemrp\apps\AcctList.sql
07/04/27 10:43:17 com.sage.servlet.FileDataSource[AcctList]: command:
select ACCT
,VDESC
,TYPE
,MISC_TAX_CODE
from GL
where ACCT <> ' '
and 1=1
order by ACCT
07/04/27 10:43:17 com.sage.servlet.FileDataSource[AcctList]: total Rows in resultSet = 1902
07/04/27 10:43:17 com.sage.servlet.FileDataSource[AcctList]: execute() in finally.
07/04/27 10:43:17 com.sage.servlet.FileDataSource[AcctList]: getString string(ACCT)
07/04/27 10:43:17 java.lang.NullPointerException
07/04/27 10:43:17 at oracle.jdbc.driver.ScrollableResultSet.findColumn(ScrollableResultSet.java:1308)
07/04/27 10:43:17 at oracle.jdbc.driver.OracleResultSet.getString(OracleResultSet.java:1572)
07/04/27 10:43:17 at com.sage.servlet.SQLDataSource.getString(SQLDataSource.java:432)
07/04/27 10:43:17 at apps.AcctList._jspService(_AcctList.java:66)
07/04/27 10:43:17 at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
07/04/27 10:43:17 at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:453)
07/04/27 10:43:17 at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:591)
07/04/27 10:43:17 at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:515)
07/04/27 10:43:17 at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
07/04/27 10:43:17 at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
07/04/27 10:43:17 at com.evermind.server.http.ServletRequestDispatcher.unprivileged_include(ServletRequestDispatcher.java:160)
07/04/27 10:43:17 at com.evermind.server.http.ServletRequestDispatcher.access$000(ServletRequestDispatcher.java:50)
07/04/27 10:43:17 at com.evermind.server.http.ServletRequestDispatcher$1.oc4jRun(ServletRequestDispatcher.java:97)
07/04/27 10:43:17 at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
07/04/27 10:43:17 at com.evermind.server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:102)
07/04/27 10:43:17 at com.sage.servlet.ServletAdaptor.includeJSP(ServletAdaptor.java:124)
07/04/27 10:43:17 at com.sage.servlet.ServletAdaptor.includeDefaultJSP(ServletAdaptor.java:96)
07/04/27 10:43:17 at com.sage.servlet.ReportWriter.service(ReportWriter.java:79)
07/04/27 10:43:17 at inetmrp.servlet.HttpsReportWriter.service(HttpsReportWriter.java:91)
07/04/27 10:43:17 at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
07/04/27 10:43:17 at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
07/04/27 10:43:17 at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
07/04/27 10:43:17 at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
07/04/27 10:43:17 at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
07/04/27 10:43:17 at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
07/04/27 10:43:17 at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
07/04/27 10:43:17 at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
07/04/27 10:43:17 at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
07/04/27 10:43:17 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
07/04/27 10:43:17 at java.lang.Thread.run(Thread.java:595)
Here is the _AcctList.java
===================
package _apps;
import oracle.jsp.runtime.*;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
public class _AcctList extends com.orionserver.http.OrionHttpJspPage {
// ** Begin Declarations
// ** End Declarations
public void _jspService(HttpServletRequest request, HttpServletResponse response) throws java.io.IOException, ServletException {
response.setContentType( "text/html;charset=iso-8859-1");
/* set up the intrinsic variables using the pageContext goober:
** session = HttpSession
** application = ServletContext
** out = JspWriter
** page = this
** config = ServletConfig
** all session/app beans declared in globals.jsa
PageContext pageContext = JspFactory.getDefaultFactory().getPageContext( this, request, response, "/JspError.jsp", true, JspWriter.DEFAULT_BUFFER, true);
// Note: this is not emitted if the session directive == false
HttpSession session = pageContext.getSession();
int __jsp_tag_starteval;
ServletContext application = pageContext.getServletContext();
JspWriter out = pageContext.getOut();
_AcctList page = this;
ServletConfig config = pageContext.getServletConfig();
com.evermind.server.http.JspCommonExtraWriter __ojsp_s_out = (com.evermind.server.http.JspCommonExtraWriter) out;
try {
__ojsp_s_out.write(__oracle_jsp_text[0]);
__ojsp_s_out.write(__oracle_jsp_text[1]);
com.inetmrp.beans.WebUserSession webUserSession;
synchronized (session) {
if ((webUserSession = (com.inetmrp.beans.WebUserSession) pageContext.getAttribute( "webUserSession", PageContext.SESSION_SCOPE)) == null) {
webUserSession = (com.inetmrp.beans.WebUserSession) new com.inetmrp.beans.WebUserSession();
pageContext.setAttribute( "webUserSession", webUserSession, PageContext.SESSION_SCOPE);
__ojsp_s_out.write(__oracle_jsp_text[2]);
com.sage.servlet.SQLDataSource detail = ((com.sage.servlet.SQLDataSource)request.getAttribute( "AcctList" ));
// Utility variables:
int firstRow = Integer.parseInt( (String)request.getAttribute( "firstRow" ) );
int lastRow = Integer.parseInt( (String)request.getAttribute( "lastRow" ) );
int fetchSize = Integer.parseInt( (String)request.getAttribute( "ServletEventFetchSize" ) );
int fetchRow = 0;
boolean isFirstPage = (firstRow==1?true:false);
boolean isLastPage = false;
__ojsp_s_out.write(__oracle_jsp_text[3]);
while ( !(isLastPage = !detail.next()) && (detail.getRow() <= lastRow) ) {
fetchRow = detail.getRow();
__ojsp_s_out.write(__oracle_jsp_text[4]);
out.print( detail.getString("ACCT") );
__ojsp_s_out.write(__oracle_jsp_text[5]);
out.print( detail.getString("ACCT"));
__ojsp_s_out.write(__oracle_jsp_text[6]);
out.print( detail.getString("ACCT") );
__ojsp_s_out.write(__oracle_jsp_text[7]);
out.print( detail.getString("ACCT"));
__ojsp_s_out.write(__oracle_jsp_text[8]);
out.print( detail.getString("VDESC") );
__ojsp_s_out.write(__oracle_jsp_text[9]);
__ojsp_s_out.write(__oracle_jsp_text[10]);
out.print( request.getParameter( "SELECT1" ) );
__ojsp_s_out.write(__oracle_jsp_text[11]);
out.print( request.getParameter("COMPARE1") );
__ojsp_s_out.write(__oracle_jsp_text[12]);
out.print( request.getParameter("TEXT1") );
__ojsp_s_out.write(__oracle_jsp_text[13]);
out.print( request.getParameter( "SELECT2" ) );
__ojsp_s_out.write(__oracle_jsp_text[14]);
out.print( request.getParameter("COMPARE2") );
__ojsp_s_out.write(__oracle_jsp_text[15]);
out.print( request.getParameter("TEXT2") );
__ojsp_s_out.write(__oracle_jsp_text[16]);
out.print( fetchSize );
__ojsp_s_out.write(__oracle_jsp_text[17]);
out.print( fetchRow );
__ojsp_s_out.write(__oracle_jsp_text[18]);
if ( !isFirstPage ) {
__ojsp_s_out.write(__oracle_jsp_text[19]);
__ojsp_s_out.write(__oracle_jsp_text[20]);
if ( !isLastPage ) {
__ojsp_s_out.write(__oracle_jsp_text[21]);
__ojsp_s_out.write(__oracle_jsp_text[22]);
catch (Throwable e) {
if (!(e instanceof javax.servlet.jsp.SkipPageException)){
try {
if (out != null) out.clear();
catch (Exception clearException) {
pageContext.handlePageException(e);
finally {
OracleJspRuntime.extraHandlePCFinally(pageContext, true);
JspFactory.getDefaultFactory().releasePageContext(pageContext);
private static final byte __oracle_jsp_text[][]=new byte[23][];
static {
try {
__oracle_jsp_text[0] =
"\r\n".getBytes("ISO8859_1");
__oracle_jsp_text[1] =
"\r\n".getBytes("ISO8859_1");
__oracle_jsp_text[2] =
"\r\n".getBytes("ISO8859_1");
__oracle_jsp_text[3] = (etc....)
catch (Throwable th) {
System.err.println(th);
And now the links to view all pertinent code:
http://www.sagesoftwaresystems.com/inetmrp/AppsMenu.jsp
http://www.sagesoftwaresystems.com/inetmrp/AcctSearch.jsp
http://www.sagesoftwaresystems.com/inetmrp/AcctList.java
http://www.sagesoftwaresystems.com/inetmrp/AcctList.jsp
http://www.sagesoftwaresystems.com/inetmrp/AcctList.sql
http://www.sagesoftwaresystems.com/inetmrp/AcctList_Count.sql
http://www.sagesoftwaresystems.com/inetmrp/FileDataSource.java
http://www.sagesoftwaresystems.com/inetmrp/SQLDataSource.java
http://www.sagesoftwaresystems.com/inetmrp/ReportWriter.java
http://www.sagesoftwaresystems.com/inetmrp/HttpsReportWriter.java
http://www.sagesoftwaresystems.com/inetmrp/HttpsServletAdapter.java
http://www.sagesoftwaresystems.com/inetmrp/ServletAdapter_inetmrp.java
http://www.sagesoftwaresystems.com/inetmrp/ServletAdapter_sage.java
TIA for the answer to this seemingly unsolvable probelm,
Ed.

Sorry, mis-spelled the following file names.
http://www.sagesoftwaresystems.com/inetmrp/HttpsServletAdaptor.java
http://www.sagesoftwaresystems.com/inetmrp/ServletAdaptor_inetmrp.java
http://www.sagesoftwaresystems.com/inetmrp/ServletAdaptor_sage.java

Similar Messages

  • In v.4 fonts look blurry. Can you solve this shortcoming ?

    Fonts look blurry in the overall menu in this new version of browser (v.4). I tried all the options that you specified with the ClearType an so on... It seems that the problem is not from Windows 7 because the old version looks ok. Can you solve this shortcoming ?
    Until you resolve it I'll stay with the previous version (3.6.16) which it looks really good.

    Yea, when I actually install my applications and launch them from GNOME Shell's menu or launcher the fonts look as blurry as they do when I launch them from Anjuta. Other applications look fine and with the workarounds I described above, my own applications display nicely too when launched from either GNOME Shell or Anjuta.

  • How to add docentry with some num.?can you solve below query   Declare @a as Numeric SET @a=14900000; SELECT (@a+($[@MAINTDCHEAD.DocEntry])as 'series no'

    how to add docentry with some num.?
    can you solve below query
    Declare @a as Numeric
    SET @a=14900000;
    SELECT (@a+($[@MAINTDCHEAD.DocEntry])as 'series no'

    Hi,
    Yes possible.
    Try this:
    Declare @a as INT
    SET @a=14900000;
    SELECT (@a+($[ORDR.DocEntry]))
    Thanks & Regards,
    Nagarajan

  • On Yahoo Mail...and ONLY Yahoo Mail..I get a 404 error after entering my user name and password. This doesn't happen with IE, just Firefox, and just Yahoo Mail. Yahoo was absouletly no help whatsoever; can you solve the mystery? Thanks

    On Yahoo Mail...and ONLY Yahoo Mail..I get a 404 error after entering my user name and password. This doesn't happen with IE, just Firefox, and just Yahoo Mail. I tried uninstalling and reinstalling FF; no change. Yahoo was absolutely no help whatsoever; can you solve the mystery? Thanks

    HI Emmet,
    thanks so much for your posts back. I really appreciate it and yes that does help to know that you could not get it working.
    I did have some success, in removing the SSL Authentication checkbox in the smtp server settings - I found that this allowed my friend to be able to send mail from the mail app via his sbcglobal (yahoo) account.
    So that did help but of course the messages do not have ssl encryption and I'm not sure how big a deal that is for an individual. He is able to receive mail but unless the SSL authentication box is unchecked, he cannot send.
    i hope that helps anyone out there also!
    Thanks also for the tip about sparrow - yes I have heard of it and it is very popular, he may end up using that in the end.    
    Thanks again, much appreciated.
    Felix    

  • Joining multiple inDesign files into one, can you solve this?

    OK so basically I work at a magazine, the creative's all work on separate spreads so all the inDesign files consist of between 1 and 10 pages then usually they are all spat out in there sets of PDF's and sent to the printers.
    Now I want to do an online addition of the magazine with the new SWF export feature in inDesign CS4 but I'm wondering how can you easily compile all of the separate inDesign files into one so that it can spit out one single swf with all 200 pages with the page peel effect?
    Is there even a way without a mass of work of manually adding all the pages into one file, that would be absolutely humongous? Anyone with any suggestions how to make this process the simplist and with the least amount of labout would be an absoulute legend, I have little time to spend on this which sucks so looking for the best and fastest possible way that we could do it each month.
    Cheers
    J

    I migth have a kind of solution for you. I have made a solution named eDocBrowser. (I called it Magazine Browser in earlier threads here and couple of other forums). It´s a collection of files that you publish with you SWF-files you have exported from InDesign. With eDocBrowser, you can put several SWF-files together and end-user can use them almost as one single SWF. Heres little demo I made just few minutes ago.
    http://www.prepress.fi/eDocBrowser/
    There are 3 SWF-files, all of them exported from InDesign. They are originally separate indd-files. When you reach last page of Document1, small arrow appears, and text "Jump to next file" and name of the next file too. You can go there also by using next-button at the bottom right corner, one that you use normaly to go next page. Same kind of arrow appears also when you are in first page of document 2 or 3 etc... with it you can go back to earlier documents last page etc... All the documents can be seen also in a drop-down menu at top of the screen. Labels of that menu are customizable.
    Theres also a zoom. When you clic zoom+ button, your cursor changes to magnifying glass. With zoom- you can go back to normal view.
    Additional features are FullScreen-view, Printing current spread and customizing user interface, buttons and logo at the top-left corner. Text search is very exprerimental and requires indd-file indexing with script we have made too. It indexes every single word in indd-document to XML-file and put pagenumbers there too. eDocBrowser searches that XML-file and gives all the hits to small result window. Hits are also links to page where they point...Search is not in use with this demo..
    There is a small help-section in top-right corner...
    We also have a script called eDocMaker. It does everything for you. You just have to have indd-files in one folder. Script asks location of that folder when you run it. It also askes you which resolution you want to use with images, anything goes between 72-2400 (72ppi is indesign´s default resolution for SWF-export, using bigger resolution might cause bigger SWF-files, but images look better when zoomed)
    Price of the single licence of eDocBrowser will be 80euros (aprx. 100dollars). With it you may install one copy of eDocBrowser into your server and use as many SWF-files there as you want. There is no search feature in single version.
    Price of unlimited licence is 300euros (aprx.400dollars) With it you may install as many copies of eDocBrowser as you like. With it you also get all the indesign scripts including eDocMaker with resolution booster, search indexer etc. + goodies like user interface and button templates, indesign effect (3D spine graphic etc)....
    Product is about ready, we are just setting up a place to sell it. Now it seems that we are going to use a service called payloadz.com....
    Additional info: petteri.paananen[at]NOSPAMprepress.fi (replace [at] with @ and remove NOSPAM)

  • TS3276 Mail is not responding. When I double click the icon spinning colour ball come out and my Mac Book Air hang. Can you solve this Problem?

    Dear Sir/Madame,
    Yesterday my mail worked very well. This morning I could not open the mail. When I double click at mail icon, spinning colour ball appear and my computer hang. I have to force quit the mail. I would appreciate very much if anybody can help me to solve the problem.
    Thanks
    Bambang Sutrisna

    Please follow these directions to delete the Mail "sandbox" folder.
    Back up all data.
    Triple-click the line below on this page to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Log out and log back in. Launch Mail and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Post your results.
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • This is the iPad mystery.... Can you solve it??

    http://www.google.com.au/webhp?ie=UTF-8&oe=UTF-8&hl=en&client=safari
    2012-09-10 20:16:49 +0000 Console Received memory warning.
    2012-09-10 17:26:10 +0000 kernel AppleBaseband::resetDetectInterrupt with 0
    My battery used to last me days on end. I've had this iPad for 3 months ipad2 64G
    A friend of mine runs many many apps from his iPad which are remotes to his work pc &amp; his home pc &amp; his girlfriends pc.
    He has access to Linux server and all kinds of photo shop apps and dns type apps.
    We have a business email account set up which he has had full access to for the past year or so because I completely trusted he would be doing the right thing.
    I called the people who we have our email account crazy domains the rep for some reason first told me that I had so many accounts attached to the server and then on second thought there was only one... I caught him out lying to me about it which he later confessed to making a slight mistake but couldn't disclose which emails they were.
    All of my settings on everything I set up are consistently changed hotmail, Facebook iTunes you name it
    I am wondering if it's just me going crazy or can my iPad be remotely mirrored without my knowledge ?
    Strange things happen like one morning I woke up and the sim card was puked.....
    I go to download an app and on his computer Which i have seen with my very own eyes not just once but 5 times in a row he is being prompted to enter a password for his account?.... Coincidence, I highly doubt it.. The other day I went to plug my iPad into iTunes and it told me that I had 5 other computers assigned to this iPad.... I deactived them all. My emails are doing all kinds of funny things
    Today I received an email from [email protected] and it was addressed to [email protected] ...... My email is a totally different.. Completely different my email has a number 2 in it. Mind you the company [email protected] do email but they only have my hotmail.com account they don't know about my other email address so how did they email me there ? Lol and how did it arrive in my email box when it's not even addressed to me!
    You can tell when something is up on the device because it begins to lag and miss beats. It's not as crisp and fluent in its operation.
    Sometimes I purposely turn off my location and it magically turns itself back on.
    Please help me to catch who ever it is so I can whoop some trust abusing ***.
    Urgent

    Incident Identifier: F178C31A-2D5C-41AC-9E85-2216E54C599A
    CrashReporter Key:   f84f62e83cfbb1b8aadd9c38f3a6a06f6803cc8d
    Hardware Model:      iPad2,2
    Process:         AppStore [284]
    Path:            /Applications/AppStore.app/AppStore
    Identifier:      AppStore
    Version:         ??? (???)
    Code Type:       ARM (Native)
    Parent Process:  launchd [1]
    Date/Time:       2012-09-03 11:17:14.498 +1000
    OS Version:      iPhone OS 5.1.1 (9B206)
    Report Version:  104
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x40f6e6cb
    Crashed Thread:  2
    Thread 0 name:  Dispatch queue: com.apple.main-thread
    Thread 0:
    0   libsystem_kernel.dylib             0x32a44004 0x32a43000 + 4100
    1   libsystem_kernel.dylib             0x32a441fa 0x32a43000 + 4602
    2   CoreFoundation                     0x376833ec 0x375f6000 + 578540
    3   CoreFoundation                     0x376820ea 0x375f6000 + 573674
    4   CoreFoundation                     0x3760549e 0x375f6000 + 62622
    5   CoreFoundation                     0x37605366 0x375f6000 + 62310
    6   GraphicsServices                   0x377fe432 0x377fa000 + 17458
    7   UIKit                              0x30811cce 0x307e0000 + 203982
    8   AppStore                           0x000d9f38 0xd9000 + 3896
    9   AppStore                           0x000d9e7c 0xd9000 + 3708
    Thread 1 name:  Dispatch queue: com.apple.libdispatch-manager
    Thread 1:
    0   libsystem_kernel.dylib             0x32a443a8 0x32a43000 + 5032
    1   libdispatch.dylib                  0x34861f04 0x3485e000 + 16132
    2   libdispatch.dylib                  0x34861c22 0x3485e000 + 15394
    Thread 2 name:  WebThread
    Thread 2 Crashed:
    0   libobjc.A.dylib                    0x3171ef78 0x3171b000 + 16248
    1   CoreFoundation                     0x375f82e0 0x375f6000 + 8928
    2   CoreFoundation                     0x376056f4 0x375f6000 + 63220
    3   libobjc.A.dylib                    0x3172016e 0x3171b000 + 20846
    4   libobjc.A.dylib                    0x31721e50 0x3171b000 + 28240
    5   libsystem_blocks.dylib             0x37ca08fa 0x37c9f000 + 6394
    6   libsystem_blocks.dylib             0x37ca0824 0x37c9f000 + 6180
    7   WebCore                            0x338a50e4 0x3384f000 + 352484
    8   CoreFoundation                     0x37683acc 0x375f6000 + 580300
    9   CoreFoundation                     0x3768332e 0x375f6000 + 578350
    10  CoreFoundation                     0x3768203e 0x375f6000 + 573502
    11  CoreFoundation                     0x3760549e 0x375f6000 + 62622
    12  CoreFoundation                     0x37605366 0x375f6000 + 62310
    13  WebCore                            0x338f8c9c 0x3384f000 + 695452
    14  libsystem_c.dylib                  0x34d8a72e 0x34d7c000 + 59182
    15  libsystem_c.dylib                  0x34d8a5e8 0x34d7c000 + 58856
    Thread 3 name:  com.apple.NSURLConnectionLoader
    Thread 3:
    0   libsystem_kernel.dylib             0x32a44004 0x32a43000 + 4100
    1   libsystem_kernel.dylib             0x32a441fa 0x32a43000 + 4602
    2   CoreFoundation                     0x376833ec 0x375f6000 + 578540
    3   CoreFoundation                     0x37682124 0x375f6000 + 573732
    4   CoreFoundation                     0x3760549e 0x375f6000 + 62622
    5   CoreFoundation                     0x37605366 0x375f6000 + 62310
    6   Foundation                         0x33141bb2 0x33131000 + 68530
    7   Foundation                         0x33141a7a 0x33131000 + 68218
    8   Foundation                         0x331d558a 0x33131000 + 673162
    9   libsystem_c.dylib                  0x34d8a72e 0x34d7c000 + 59182
    10  libsystem_c.dylib                  0x34d8a5e8 0x34d7c000 + 58856
    Thread 4 name:  com.apple.CFSocket.private
    Thread 4:
    0   libsystem_kernel.dylib             0x32a54570 0x32a43000 + 71024
    1   CoreFoundation                     0x3768763a 0x375f6000 + 595514
    2   libsystem_c.dylib                  0x34d8a72e 0x34d7c000 + 59182
    3   libsystem_c.dylib                  0x34d8a5e8 0x34d7c000 + 58856
    Thread 5 name:  WebCore: CFNetwork Loader
    Thread 5:
    0   libsystem_c.dylib                  0x34dc87ec 0x34d7c000 + 313324
    1   libsystem_c.dylib                  0x34d7ee20 0x34d7c000 + 11808
    2   SystemConfiguration                0x36bc8a68 0x36bb4000 + 84584
    3   SystemConfiguration                0x36bc8eae 0x36bb4000 + 85678
    4   CFNetwork                          0x360ed1ac 0x360e2000 + 45484
    5   CoreFoundation                     0x375feaf4 0x375f6000 + 35572
    6   CFNetwork                          0x360ec588 0x360e2000 + 42376
    7   CFNetwork                          0x360ec422 0x360e2000 + 42018
    8   CFNetwork                          0x360ec344 0x360e2000 + 41796
    9   CoreFoundation                     0x37643e88 0x375f6000 + 319112
    10  CoreFoundation                     0x37643ff4 0x375f6000 + 319476
    11  CFNetwork                          0x360ec2e2 0x360e2000 + 41698
    12  CoreFoundation                     0x37643e88 0x375f6000 + 319112
    13  CoreFoundation                     0x37643ff4 0x375f6000 + 319476
    14  CFNetwork                          0x360ec23c 0x360e2000 + 41532
    15  CFNetwork                          0x360ebf46 0x360e2000 + 40774
    16  CFNetwork                          0x360ebd44 0x360e2000 + 40260
    17  CFNetwork                          0x36133206 0x360e2000 + 332294
    18  CFNetwork                          0x360ebb88 0x360e2000 + 39816
    19  CFNetwork                          0x360ebb70 0x360e2000 + 39792
    20  CFNetwork                          0x360ebb62 0x360e2000 + 39778
    21  CoreFoundation                     0x3761b840 0x375f6000 + 153664
    22  CoreFoundation                     0x376272b0 0x375f6000 + 201392
    23  CFNetwork                          0x361717e4 0x360e2000 + 587748
    24  CFNetwork                          0x36171ba8 0x360e2000 + 588712
    25  CFNetwork                          0x36173d24 0x360e2000 + 597284
    26  CFNetwork                          0x36174f86 0x360e2000 + 601990
    27  CFNetwork                          0x361761f6 0x360e2000 + 606710
    28  CFNetwork                          0x36173496 0x360e2000 + 595094
    29  CFNetwork                          0x360e8f3e 0x360e2000 + 28478
    30  CFNetwork                          0x360e8a60 0x360e2000 + 27232
    31  CFNetwork                          0x360e822a 0x360e2000 + 25130
    32  CFNetwork                          0x36181b94 0x360e2000 + 654228
    33  CFNetwork                          0x360e7d36 0x360e2000 + 23862
    34  CFNetwork                          0x360e7b00 0x360e2000 + 23296
    35  CFNetwork                          0x360e7a22 0x360e2000 + 23074
    36  CFNetwork                          0x360e60d2 0x360e2000 + 16594
    37  CoreFoundation                     0x37683acc 0x375f6000 + 580300
    38  CoreFoundation                     0x37683298 0x375f6000 + 578200
    39  CoreFoundation                     0x3768203e 0x375f6000 + 573502
    40  CoreFoundation                     0x3760549e 0x375f6000 + 62622
    41  CoreFoundation                     0x37605366 0x375f6000 + 62310
    42  WebCore                            0x339220d2 0x3384f000 + 864466
    43  libsystem_c.dylib                  0x34d8a72e 0x34d7c000 + 59182
    44  libsystem_c.dylib                  0x34d8a5e8 0x34d7c000 + 58856
    Thread 6 name:  WebCore: LocalStorage
    Thread 6:
    0   libsystem_kernel.dylib             0x32a54068 0x32a43000 + 69736
    1   libsystem_c.dylib                  0x34d8aa46 0x34d7c000 + 59974
    2   libsystem_c.dylib                  0x34d8a7c2 0x34d7c000 + 59330
    3   JavaScriptCore                     0x3236d90e 0x322a8000 + 809230
    4   WebCore                            0x33a59bdc 0x3384f000 + 2141148
    5   WebCore                            0x33a59b92 0x3384f000 + 2141074
    6   libsystem_c.dylib                  0x34d8a72e 0x34d7c000 + 59182
    7   libsystem_c.dylib                  0x34d8a5e8 0x34d7c000 + 58856
    Thread 7 name:  Dispatch queue: com.apple.root.default-priority
    Thread 7:
    0   libsystem_kernel.dylib             0x32a44004 0x32a43000 + 4100
    1   libsystem_kernel.dylib             0x32a441fa 0x32a43000 + 4602
    2   CoreFoundation                     0x376833ec 0x375f6000 + 578540
    3   CoreFoundation                     0x37682124 0x375f6000 + 573732
    4   CoreFoundation                     0x3760549e 0x375f6000 + 62622
    5   CoreFoundation                     0x37605366 0x375f6000 + 62310
    6   iTunesStore                        0x37f5edb6 0x37f5a000 + 19894
    7   iTunesStore                        0x37f63c86 0x37f5a000 + 40070
    8   iTunesStore                        0x37f63842 0x37f5a000 + 38978
    9   iTunesStore                        0x37f61130 0x37f5a000 + 28976
    10  iTunesStore                        0x37f6bc1c 0x37f5a000 + 72732
    11  iTunesStore                        0x37f6ac06 0x37f5a000 + 68614
    12  iTunesStore                        0x37f5fa62 0x37f5a000 + 23138
    13  iTunesStore                        0x37f5fde0 0x37f5a000 + 24032
    14  iTunesStore                        0x37f5f636 0x37f5a000 + 22070
    15  Foundation                         0x3315c38c 0x33131000 + 177036
    16  Foundation                         0x331c578c 0x33131000 + 608140
    17  libdispatch.dylib                  0x3485ec52 0x3485e000 + 3154
    18  libdispatch.dylib                  0x34861810 0x3485e000 + 14352
    19  libsystem_c.dylib                  0x34d84df4 0x34d7c000 + 36340
    20  libsystem_c.dylib                  0x34d84cc8 0x34d7c000 + 36040
    Thread 8:
    0   libsystem_kernel.dylib             0x32a54cd4 0x32a43000 + 72916
    1   libsystem_c.dylib                  0x34d84f36 0x34d7c000 + 36662
    2   libsystem_c.dylib                  0x34d84cc8 0x34d7c000 + 36040
    Thread 9:
    0   libsystem_kernel.dylib             0x32a54cd4 0x32a43000 + 72916
    1   libsystem_c.dylib                  0x34d84f36 0x34d7c000 + 36662
    2   libsystem_c.dylib                  0x34d84cc8 0x34d7c000 + 36040
    Thread 10:
    0   libsystem_kernel.dylib             0x32a54cd4 0x32a43000 + 72916
    1   libsystem_c.dylib                  0x34d84f36 0x34d7c000 + 36662
    2   libsystem_c.dylib                  0x34d84cc8 0x34d7c000 + 36040
    Thread 11:
    0   libsystem_kernel.dylib             0x32a54cd4 0x32a43000 + 72916
    1   libsystem_c.dylib                  0x34d84f36 0x34d7c000 + 36662
    2   libsystem_c.dylib                  0x34d84cc8 0x34d7c000 + 36040
    Thread 12 name:  Dispatch queue: com.apple.root.default-priority
    Thread 12:
    0   libsystem_kernel.dylib             0x32a44004 0x32a43000 + 4100
    1   libsystem_kernel.dylib             0x32a441fa 0x32a43000 + 4602
    2   CoreFoundation                     0x376833ec 0x375f6000 + 578540
    3   CoreFoundation                     0x37682124 0x375f6000 + 573732
    4   CoreFoundation                     0x3760549e 0x375f6000 + 62622
    5   CoreFoundation                     0x37605366 0x375f6000 + 62310
    6   iTunesStore                        0x37f5edb6 0x37f5a000 + 19894
    7   iTunesStore                        0x37f63c86 0x37f5a000 + 40070
    8   iTunesStore                        0x37f63842 0x37f5a000 + 38978
    9   iTunesStore                        0x37f61130 0x37f5a000 + 28976
    10  iTunesStore                        0x37f6bc1c 0x37f5a000 + 72732
    11  iTunesStore                        0x37f6ac06 0x37f5a000 + 68614
    12  iTunesStore                        0x37f5fa62 0x37f5a000 + 23138
    13  iTunesStore                        0x37f5fde0 0x37f5a000 + 24032
    14  iTunesStore                        0x37f5f636 0x37f5a000 + 22070
    15  iTunesStore                        0x37f5eec8 0x37f5a000 + 20168
    16  iTunesStoreUI                      0x34e494d8 0x34e0b000 + 255192
    17  iTunesStore                        0x37f5fa62 0x37f5a000 + 23138
    18  iTunesStore                        0x37f5fde0 0x37f5a000 + 24032
    19  iTunesStore                        0x37f5f636 0x37f5a000 + 22070
    20  iTunesStore                        0x37f5eec8 0x37f5a000 + 20168
    21  iTunesStoreUI                      0x34e37d44 0x34e0b000 + 183620
    22  iTunesStoreUI                      0x34e37a78 0x34e0b000 + 182904
    23  iTunesStore                        0x37f5fa62 0x37f5a000 + 23138
    24  iTunesStore                        0x37f5fde0 0x37f5a000 + 24032
    25  iTunesStore                        0x37f5f636 0x37f5a000 + 22070
    26  Foundation                         0x3315c38c 0x33131000 + 177036
    27  Foundation                         0x331c578c 0x33131000 + 608140
    28  libdispatch.dylib                  0x3485ec52 0x3485e000 + 3154
    29  libdispatch.dylib                  0x34861810 0x3485e000 + 14352
    30  libsystem_c.dylib                  0x34d84df4 0x34d7c000 + 36340
    31  libsystem_c.dylib                  0x34d84cc8 0x34d7c000 + 36040
    Thread 13:
    0   libsystem_kernel.dylib             0x32a54cd4 0x32a43000 + 72916
    1   libsystem_c.dylib                  0x34d84f36 0x34d7c000 + 36662
    2   libsystem_c.dylib                  0x34d84cc8 0x34d7c000 + 36040
    Thread 14:
    0   libsystem_kernel.dylib             0x32a54cd4 0x32a43000 + 72916
    1   libsystem_c.dylib                  0x34d84f36 0x34d7c000 + 36662
    2   libsystem_c.dylib                  0x34d84cc8 0x34d7c000 + 36040
    Thread 15:
    0   libsystem_kernel.dylib             0x32a54cd4 0x32a43000 + 72916
    1   libsystem_c.dylib                  0x34d84f36 0x34d7c000 + 36662
    2   libsystem_c.dylib                  0x34d84cc8 0x34d7c000 + 36040
    Thread 2 crashed with ARM Thread State:
        r0: 0x129dea30    r1: 0x37b133e8      r2: 0x01859108      r3: 0x018590c8
        r4: 0x40f6e6c3    r5: 0x129dea34      r6: 0x00000001      r7: 0x018590b4
        r8: 0x3fca48e4    r9: 0x0dec4cfa     r10: 0x00000001     r11: 0x00000000
        ip: 0x3fc9b814    sp: 0x01859080      lr: 0x375f82e7      pc: 0x3171ef78
      cpsr: 0x20080030
    Binary Images:
       0xd9000 -    0xd9fff +AppStore armv7  <6048ba6872873eacaf9891d916676324> /Applications/AppStore.app/AppStore
     0x2380000 -  0x238bfff  AccessibilitySettingsLoader armv7  <22862d2f545337768059bc611f5e1e60> /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/Accessi bilitySettingsLoader
     0x2398000 -  0x23f8fff  UIKit armv7  <310137ec907d380e8b71665633b36653> /System/Library/AccessibilityBundles/UIKit.axbundle/UIKit
     0x2467000 -  0x246afff  AppStore armv7  <1149e4d2277235a29a5e34078574a4d5> /System/Library/AccessibilityBundles/AppStore.axbundle/AppStore
     0x2471000 -  0x2475fff  TelephonyUIFramework armv7  <4638fc1fa925355080bc33d1efe1d167> /System/Library/AccessibilityBundles/TelephonyUIFramework.axbundle/TelephonyUIF ramework
     0x247c000 -  0x2484fff  iTunesStoreUIFramework armv7  <fb6e306433ea3829890e2b35ef421ce4> /System/Library/AccessibilityBundles/iTunesStoreUIFramework.axbundle/iTunesStor eUIFramework
     0x2492000 -  0x2499fff  MediaPlayerFramework armv7  <1942aff7aae53cb19bff6221dca98d80> /System/Library/AccessibilityBundles/MediaPlayerFramework.axbundle/MediaPlayerF ramework
     0x24a5000 -  0x24a5fff  iTunesStoreFramework armv7  <7852cd4d4f213a36ad27934bda25dc44> /System/Library/AccessibilityBundles/iTunesStoreFramework.axbundle/iTunesStoreF ramework
     0x304d000 -  0x3050fff  QuickSpeak armv7  <06848e83ddc638dfaf1250093ea9ca39> /System/Library/AccessibilityBundles/QuickSpeak.bundle/QuickSpeak
     0x3054000 -  0x3058fff  PreferencesFramework armv7  <fa2eac365db03c8da8d53b0ada5e622a> /System/Library/AccessibilityBundles/PreferencesFramework.axbundle/PreferencesF ramework
    0x2fed8000 - 0x2fef9fff  dyld armv7  <77eddfd654df393ba9c95ff01715fd08> /usr/lib/dyld
    0x30598000 - 0x3059ffff  SpringBoardUI armv7  <84e082f96770383096a5b083841d3f59> /System/Library/PrivateFrameworks/SpringBoardUI.framework/SpringBoardUI
    0x305a0000 - 0x305e8fff  CoreMedia armv7  <e274e1b894753b2eb05cf7b22a36d0c1> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
    0x30729000 - 0x307dffff  AVFoundation armv7  <35cb7a0eb1dc3554a777c1cc11cb0415> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
    0x307e0000 - 0x30c82fff  UIKit armv7  <cd513a2f22f53d698c3e10f6fe48a63e> /System/Library/Frameworks/UIKit.framework/UIKit
    0x30c90000 - 0x30ca6fff  VoiceServices armv7  <c5b98e94eff33bf49006ff157c819987> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
    0x30ca7000 - 0x30ccafff  AppStoreUI armv7  <7fd2dbeecf2534b3840dde90eb4fdcde> /System/Library/PrivateFrameworks/AppStoreUI.framework/AppStoreUI
    0x30ce4000 - 0x30ce5fff  libremovefile.dylib armv7  <402f8956975d3b6fb86ab9b31a43242c> /usr/lib/system/libremovefile.dylib
    0x30cf0000 - 0x30cfcfff  libCRFSuite.dylib armv7  <bdb2b4d1a78c39c1ba60d791207aed2a> /usr/lib/libCRFSuite.dylib
    0x30e87000 - 0x30e94fff  libbsm.0.dylib armv7  <750a0de73a733019a77144b805d4d2f8> /usr/lib/libbsm.0.dylib
    0x30e95000 - 0x31052fff  ImageIO armv7  <02e3578171fa3b6a969b244275fd2bab> /System/Library/Frameworks/ImageIO.framework/ImageIO
    0x31053000 - 0x31071fff  BulletinBoard armv7  <6b4e1e4680c030cb9a0ced9ff69a711f> /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard
    0x310aa000 - 0x310eefff  MobileCoreServices armv7  <757226927a873d5492be721908077b48> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
    0x31340000 - 0x31354fff  PersistentConnection armv7  <54091a638f8731cd85ccf00fa06972c3> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConn ection
    0x3135d000 - 0x31382fff  OpenCL armv7  <f4b08361179a3f6bb033415b0d7c6251> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL
    0x316b1000 - 0x316bcfff  ExternalAccessory armv7  <432d4e04c00f383f9be0151c6131c920> /System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory
    0x316de000 - 0x316edfff  GenerationalStorage armv7  <d84c3fd0e7bd36e78c256f2f4c5a4e91> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalSto rage
    0x31719000 - 0x3171afff  CoreSurface armv7  <97f871f09f503c98a6371c2b657430d8> /System/Library/PrivateFrameworks/CoreSurface.framework/CoreSurface
    0x3171b000 - 0x317e1fff  libobjc.A.dylib armv7  <90014d1bc583366d85622e43097df416> /usr/lib/libobjc.A.dylib
    0x31819000 - 0x3181cfff  CoreTime armv7  <a398de5ba1e43a11b7008e9bb5a7f6fe> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
    0x318c3000 - 0x318c8fff  libGPUSupportMercury.dylib armv7  <3c1cc3175c403ace8fcbd3826bd43807> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dyl ib
    0x31c56000 - 0x31c73fff  libsystem_info.dylib armv7  <50863bcbf478323e96a8e5b1a83ea6f9> /usr/lib/system/libsystem_info.dylib
    0x31c74000 - 0x31d21fff  libxml2.2.dylib armv7  <58d47f064e0232119f4b838ad659f9c1> /usr/lib/libxml2.2.dylib
    0x31d50000 - 0x31d5cfff  CoreVideo armv7  <364fa32d513f3c11b50970120545f1a8> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
    0x320f6000 - 0x321d5fff  RawCamera armv7  <293f818ba6533dceae8b900b6ed3c887> /System/Library/CoreServices/RawCamera.bundle/RawCamera
    0x321f2000 - 0x32237fff  GeoServices armv7  <a26be2e76e8730ab91a16502aba376be> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
    0x32248000 - 0x32253fff  AccountSettings armv7  <373e59421d983c93931cfbad87b1ae35> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
    0x322a1000 - 0x322a7fff  XPCObjects armv7  <dc568831fa5b3b22b673c62bc9d21d16> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects
    0x322a8000 - 0x323cdfff  JavaScriptCore armv7  <2ffc6c87b94434288366bd53765ee267> /System/Library/PrivateFrameworks/JavaScriptCore.framework/JavaScriptCore
    0x323d1000 - 0x323d8fff  libc++abi.dylib armv7  <bab4dcbfc5943d3fbb637342d35e8045> /usr/lib/libc++abi.dylib
    0x324f5000 - 0x324f9fff  libAccessibility.dylib armv7  <9a17d07b5a3b38cfafdf16f78c99b572> /usr/lib/libAccessibility.dylib
    0x324fa000 - 0x324fffff  CrashReporterSupport armv7  <dc11c5c2cbe73a6288a6094ebf5de673> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterS upport
    0x32500000 - 0x32519fff  libRIP.A.dylib armv7  <1828cddc5dd93c61afbefb59587d7f8a> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
    0x3285e000 - 0x32864fff  MobileKeyBag armv7  <e1f06241ef0e3f0aae00f15df572077e> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
    0x32866000 - 0x3289efff  VideoToolbox armv7  <9f25f38d1cd13a1daff99cfde8884410> /System/Library/PrivateFrameworks/VideoToolbox.framework/VideoToolbox
    0x328ba000 - 0x328bcfff  libCoreVMClient.dylib armv7  <d4d4aa3090c83e87bcb15ed00b93fd5c> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
    0x328c7000 - 0x328c7fff  libgcc_s.1.dylib armv7  <eb82984fa36c329387aa518aa5205f3d> /usr/lib/libgcc_s.1.dylib
    0x328cf000 - 0x328d5fff  IAP armv7  <17eddbf5590d3cb88d4acbda27447f5b> /System/Library/PrivateFrameworks/IAP.framework/IAP
    0x32903000 - 0x3293ffff  AppSupport armv7  <311eac85b2a433a884dacba77217b49e> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
    0x329a1000 - 0x329eafff  AddressBook armv7  <b17a2962e9043e0385c3c2c652155f2b> /System/Library/Frameworks/AddressBook.framework/AddressBook
    0x32a07000 - 0x32a21fff  TelephonyUI armv7  <1bbfc733115c34739b82923657cc057c> /System/Library/PrivateFrameworks/TelephonyUI.framework/TelephonyUI
    0x32a43000 - 0x32a59fff  libsystem_kernel.dylib armv7  <311f379a9fde305d80c1b22b7dd2e52a> /usr/lib/system/libsystem_kernel.dylib
    0x32a5a000 - 0x32b1cfff  Celestial armv7  <19617260ee073e23b95e456d93930aea> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
    0x32bc8000 - 0x32c14fff  CoreTelephony armv7  <b8f80d5d594c31d2b5d8fba9fdedb7e1> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
    0x32c25000 - 0x32c76fff  libstdc++.6.dylib armv7  <c352af5a742e3c7a8d4d7e5f6f454793> /usr/lib/libstdc++.6.dylib
    0x32c79000 - 0x32c7cfff  CaptiveNetwork armv7  <f5cc4b97ce9432da9426f12621453325> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
    0x32d83000 - 0x32d88fff  libcopyfile.dylib armv7  <52e874396c393ed29099789ce702cfe2> /usr/lib/system/libcopyfile.dylib
    0x32db0000 - 0x32e36fff  CoreMotion armv7  <6a9355d5a8e238b5b8f193605d509e15> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
    0x32e37000 - 0x32e77fff  libGLImage.dylib armv7  <40448706190031f6b0d9636cc11ee81d> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
    0x32ea5000 - 0x32f15fff  CoreImage armv7  <86ac6f5a267637b6b7f8a831dfc7c64b> /System/Library/Frameworks/CoreImage.framework/CoreImage
    0x32f16000 - 0x3305ffff  libicucore.A.dylib armv7  <b70646b63f1f3b33896dd8cb91b8dab1> /usr/lib/libicucore.A.dylib
    0x33131000 - 0x332affff  Foundation armv7  <c40ddb073142315bb4ebb214343d0b7f> /System/Library/Frameworks/Foundation.framework/Foundation
    0x33327000 - 0x3332cfff  libsystem_dnssd.dylib armv7  <27bb5462450732e380f5a2c170546e93> /usr/lib/system/libsystem_dnssd.dylib
    0x33339000 - 0x3334efff  UIAccessibility armv7  <28c11dea1a3c3ebf960f5ed2d3b6e5f3> /System/Library/PrivateFrameworks/UIAccessibility.framework/UIAccessibility
    0x3337b000 - 0x3337ffff  AggregateDictionary armv7  <3a3a33f3a05538988c6e2bb363dc46a8> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictio nary
    0x33398000 - 0x333b8fff  libxslt.1.dylib armv7  <39348471007e39dab80af68b08390456> /usr/lib/libxslt.1.dylib
    0x333b9000 - 0x333c3fff  libbz2.1.0.dylib armv7  <40e4045fb79e382b8833707746cf28b1> /usr/lib/libbz2.1.0.dylib
    0x333c4000 - 0x335a8fff  AudioToolbox armv7  <c91e27850452330ea804db6408840fd2> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
    0x335f9000 - 0x33656fff  StoreServices armv7  <6ce256d3cf433e4aa1af8d696bf1f75d> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
    0x3369b000 - 0x3369bfff  vecLib armv7  <a2cfe25e77aa36bfb4a30b2d0d2dd465> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vec Lib
    0x336f8000 - 0x336fafff  libCoreFSCache.dylib armv7  <808518e0fbf539af8489f028ca5198c7> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
    0x336fb000 - 0x336fffff  IOMobileFramebuffer armv7  <42dbc26828e934acabb4f3b0a35d8250> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebu ffer
    0x33700000 - 0x33777fff  CorePDF armv7  <e7ff2b22ce603a84b7d8a7540b403490> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
    0x33781000 - 0x33797fff  DictionaryServices armv7  <6ed2e967136f37d4a4b9b318d6c43b83> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServic es
    0x337d5000 - 0x337e1fff  libz.1.dylib armv7  <36ce86a3dc8c344596c8c325615f374b> /usr/lib/libz.1.dylib
    0x3384f000 - 0x3400efff  WebCore armv7  <2690c38c9c5f3c09975d619dd1dfbed7> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
    0x3401a000 - 0x34030fff  EAP8021X armv7  <952fcfdec0633aff923768fca1a26fcb> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
    0x34034000 - 0x3405dfff  ToneLibrary armv7  <7c1be74cc7833f3db25638fbc4ed55b8> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
    0x34080000 - 0x340b3fff  Preferences armv7  <f1a9b0b7ffbe3c44877f5e7ba44d4a2f> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
    0x340c5000 - 0x341cbfff  IMGSGX543GLDriver armv7  <7454a840600038949d67edad05097242> /System/Library/Extensions/IMGSGX543GLDriver.bundle/IMGSGX543GLDriver
    0x341cc000 - 0x341ccfff  Accelerate armv7  <55b24cf91a8b3532bde6733c96f14c08> /System/Library/Frameworks/Accelerate.framework/Accelerate
    0x341d0000 - 0x341d7fff  AssetsLibraryServices armv7  <38132ecfd74b325fb1a4142bab663c19> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibrary Services
    0x341e8000 - 0x341ecfff  libGFXShared.dylib armv7  <998fccc16cf735dbb62324202995e193> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
    0x341ed000 - 0x341fffff  DataDetectorsUI armv7  <50ea319aaeb7307e92719980dd4b2953> /System/Library/PrivateFrameworks/DataDetectorsUI.framework/DataDetectorsUI
    0x34200000 - 0x34216fff  libmis.dylib armv7  <258bc92be5823b239b4412dd42cb4807> /usr/lib/libmis.dylib
    0x34222000 - 0x34367fff  CoreGraphics armv7  <903545b89a7f311d95100ac7d1d44709> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
    0x34368000 - 0x34369fff  libsystem_sandbox.dylib armv7  <6a8f2f33c7543808a0f4599101c3b61a> /usr/lib/system/libsystem_sandbox.dylib
    0x343b0000 - 0x343c5fff  libresolv.9.dylib armv7  <66f7557fa4b43979b186e00271839fdb> /usr/lib/libresolv.9.dylib
    0x343c6000 - 0x343ccfff  MobileIcons armv7  <ed1b46f917903c9b9baaa2be4392dafe> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
    0x3441a000 - 0x3441efff  IOSurface armv7  <443ac3aab9283da480dd9dcda3c5c88e> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
    0x34427000 - 0x344edfff  GLEngine armv7  <6617f2b4ee283469a5595129889ff049> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
    0x34531000 - 0x34534fff  libmacho.dylib armv7  <e52b77623bd031bc807e77029566c777> /usr/lib/system/libmacho.dylib
    0x346e0000 - 0x346e0fff  libCVMSPluginSupport.dylib armv7  <a80aaa9989483ce3a496a061fd1e9e0a> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
    0x346e1000 - 0x346ebfff  libvMisc.dylib armv7  <e8248c797b9b363594bb652ddf7ce16d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/lib vMisc.dylib
    0x346ec000 - 0x346edfff  DataMigration armv7  <d77f0e8f39ee37f5a2ac713a3fd9e693> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
    0x346ee000 - 0x3473cfff  CoreLocation armv7  <44550ebedf23334d85441d9743b74e03> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
    0x3477b000 - 0x3478cfff  libxpc.dylib armv7  <ccf25b1e49ce3b2fa58d8c8546755505> /usr/lib/system/libxpc.dylib
    0x3478d000 - 0x347cbfff  IOKit armv7  <fcda71d29d6136dfbd84c1725f4998e5> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x3485e000 - 0x34874fff  libdispatch.dylib armv7  <9ecfaef4110a3bf9a92d12f0fe8d1d78> /usr/lib/system/libdispatch.dylib
    0x34875000 - 0x34894fff  libSystem.B.dylib armv7  <0c55744b6f7335eebba4ca2c3d10b43c> /usr/lib/libSystem.B.dylib
    0x34895000 - 0x3489bfff  libnotify.dylib armv7  <9406297de3e43742887890662a87ab53> /usr/lib/system/libnotify.dylib
    0x3489c000 - 0x348a2fff  liblockdown.dylib armv7  <9e45ce468a6f31e5b8263f2c224aa800> /usr/lib/liblockdown.dylib
    0x348c0000 - 0x348ccfff  AXRuntime armv7  <493c431e9314319682bcbdd7f2edc09c> /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
    0x3491f000 - 0x34922fff  libsystem_network.dylib armv7  <356cb66612e836968ef24e6e5c3364cc> /usr/lib/system/libsystem_network.dylib
    0x34987000 - 0x34bb4fff  MediaToolbox armv7  <c3098478486032c6aff336fa711c4fc6> /System/Library/PrivateFrameworks/MediaToolbox.framework/MediaToolbox
    0x34bb7000 - 0x34bdbfff  PrintKit armv7  <08509c7bc915358b953de6f5cbef5c56> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit
    0x34c0c000 - 0x34ce4fff  vImage armv7  <caf3648be2933384b6aa1ae7408ab4f0> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vIm age
    0x34ce5000 - 0x34d28fff  libcommonCrypto.dylib armv7  <95b49daf4cf038b6bea8010bba3a1e26> /usr/lib/system/libcommonCrypto.dylib
    0x34d7c000 - 0x34e08fff  libsystem_c.dylib armv7  <f859ce1ad1773f0ba98d7c6e135b7697> /usr/lib/system/libsystem_c.dylib
    0x34e0b000 - 0x34f24fff  iTunesStoreUI armv7  <815548cb16d13355bd08e3e19e92f5c1> /System/Library/PrivateFrameworks/iTunesStoreUI.framework/iTunesStoreUI
    0x351f0000 - 0x35327fff  MusicLibrary armv7  <32bc794969e534df97a14dc4be228408> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
    0x35328000 - 0x3586cfff  FaceCoreLight armv7  <f326d88709683520b251dc53cb847c11> /System/Library/PrivateFrameworks/FaceCoreLight.framework/FaceCoreLight
    0x35887000 - 0x358d8fff  CoreText armv7  <5bfac4ee88d03d5b87a1f105abb7756c> /System/Library/Frameworks/CoreText.framework/CoreText
    0x35938000 - 0x35941fff  libMobileGestalt.dylib armv7  <4a15e845dc6f3a4a980de66c1cc44c42> /usr/lib/libMobileGestalt.dylib
    0x35976000 - 0x359effff  ProofReader armv7  <6db611d8df6530d480f97a40bc519f70> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
    0x359fc000 - 0x35accfff  WebKit armv7  <3c5dd2ec46fe3e189c25bba78ad88fa1> /System/Library/PrivateFrameworks/WebKit.framework/WebKit
    0x35acd000 - 0x35b9cfff  libGLProgrammability.dylib armv7  <49607ffe4ee9389494285a213e392924> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
    0x35b9d000 - 0x35c2ffff  HomeSharing armv7  <11ca6ed6f8c0377aba1d3e03484c380f> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
    0x35c44000 - 0x35c45fff  libdnsinfo.dylib armv7  <9aede8d6579d3430ac39ae5f95cce498> /usr/lib/system/libdnsinfo.dylib
    0x35c57000 - 0x35c5dfff  liblaunch.dylib armv7  <aa2bcba6fc7a36a191958fef2e995475> /usr/lib/system/liblaunch.dylib
    0x35cd9000 - 0x35d7cfff  libType2Streamer.dylib armv7  <c9a317d53794331fa60f323c384b302c> /usr/lib/libType2Streamer.dylib
    0x35f59000 - 0x3604afff  QuartzCore armv7  <35d64a9da5523ae08c9e41511fd3061b> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
    0x3604b000 - 0x3608afff  QuickLook armv7  <802b1092542a3017a0380632502610d4> /System/Library/Frameworks/QuickLook.framework/QuickLook
    0x360e2000 - 0x361b9fff  CFNetwork armv7  <765a472c824830eea91b8f02d12867e4> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
    0x361e8000 - 0x361fbfff  AssistantServices armv7  <4a0843742f363a8885b8db13b44ae256> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
    0x361fc000 - 0x3620ffff  DataDetectorsCore armv7  <3f4596cbe1b13fdcb427d87de21df3f6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
    0x36210000 - 0x36383fff  MediaPlayer armv7  <63cdf8f9c66d36e7a4e69e2f6cae854f> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
    0x36438000 - 0x364acfff  MediaControlSender armv7  <87315c54b2293ab589950341ff91b45d> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSend er
    0x364b8000 - 0x364b9fff  libdyld.dylib armv7  <977b0ad6f2f433108b4a0324a57cd2ab> /usr/lib/system/libdyld.dylib
    0x36558000 - 0x365a1fff  libc++.1.dylib armv7  <5b690e5dd5a43a7fb166ade9fe58a7a4> /usr/lib/libc++.1.dylib
    0x367b6000 - 0x367befff  MobileWiFi armv7  <b76c3e9fb78234c392058250d4620e72> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
    0x367cc000 - 0x367d3fff  MediaRemote armv7  <42dc1b43dabd3692b97d6aacfbdf0449> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
    0x369a4000 - 0x36a4efff  libBLAS.dylib armv7  <bf822cc1a3243ae7b104cf73ca22d352> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/lib BLAS.dylib
    0x36a51000 - 0x36a6bfff  libPDFRIP.A.dylib armv7  <42fc0d0055ed38d4a082918a620faadd> /System/Library/Frameworks/CoreGraphics.framework/Resources/libPDFRIP.A.dylib
    0x36b48000 - 0x36b48fff  libkeymgr.dylib armv7  <ebd2dddf55d83cf48a18913968775960> /usr/lib/system/libkeymgr.dylib
    0x36b4b000 - 0x36b53fff  ProtocolBuffer armv7  <0e846afacf823d2b8c029cc3010a8253> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
    0x36b77000 - 0x36b7afff  libcompiler_rt.dylib armv7  <b2c05d8601c13be884097192dca4e187> /usr/lib/system/libcompiler_rt.dylib
    0x36b7b000 - 0x36bb2fff  Security armv7  <eea56f71fde83c2981f9281dc7823725> /System/Library/Frameworks/Security.framework/Security
    0x36bb3000 - 0x36bb3fff  liblangid.dylib armv7  <644ff4bcfbf337b5b5859e3f0fc0a9a8> /usr/lib/liblangid.dylib
    0x36bb4000 - 0x36be9fff  SystemConfiguration armv7  <4464a4e3bb3f32f7abaa35ebf31fda49> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
    0x36cbb000 - 0x36f7cfff  libLAPACK.dylib armv7  <0e94e9a7e7a334649afaccae0f1215a2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/lib LAPACK.dylib
    0x375d4000 - 0x375e5fff  DataAccessExpress armv7  <e6144ba265da3bb7b9a263aa1a29b054> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
    0x375f6000 - 0x3770dfff  CoreFoundation armv7  <6d450fe923d7387f8b01845e0edd713d> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
    0x3770e000 - 0x37758fff  ManagedConfiguration armv7  <f1fbb825def23043830a095b953a9c94> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfigu ration
    0x37789000 - 0x37789fff  libunwind.dylib armv7  <e0a73a57795f3e1698a52ebe6fc07005> /usr/lib/system/libunwind.dylib
    0x377fa000 - 0x37804fff  GraphicsServices armv7  <cb64e146a8ee3fda9e80ffae1ccc9c5a> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
    0x37b80000 - 0x37b82fff  MobileInstallation armv7  <215d93dbb0f63cbf828f9126eb7b5349> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallati on
    0x37c43000 - 0x37c8dfff  libvDSP.dylib armv7  <441b42aca07b3da39feab25f8349918f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/lib vDSP.dylib
    0x37c9f000 - 0x37ca0fff  libsystem_blocks.dylib armv7  <9fdc27af7350323bbc7d98e14e027907> /usr/lib/system/libsystem_blocks.dylib
    0x37cb0000 - 0x37cd3fff  Bom armv7  <c3435ecd2e5839f89de51edad0e1bb00> /System/Library/PrivateFrameworks/Bom.framework/Bom
    0x37cd4000 - 0x37dc2fff  libiconv.2.dylib armv7  <2cfefe2ad1d335dd9549562910e7a2e2> /usr/lib/libiconv.2.dylib
    0x37dcf000 - 0x37e27fff  CoreAudio armv7  <be335e8eb6f93594b028a6ddd503a183> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
    0x37eb2000 - 0x37ec1fff  SpringBoardServices armv7  <a2363f8ed49932dba415d2d4cd32fb74> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServ ices
    0x37ec2000 - 0x37ed1fff  OpenGLES armv7  <e80acc691001301e96101bb89d940033> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
    0x37ed2000 - 0x37f51fff  libsqlite3.dylib armv7  <bf01f5ed47b033d8bde30d735ff44416> /usr/lib/libsqlite3.dylib
    0x37f5a000 - 0x3800dfff  iTunesStore armv7  <b3c0cce5f8e632e18f841c32b68f57a1> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
    0x3800e000 - 0x38011fff  NetworkStatistics armv7  <7848d8ebad99367cb4f7f4e3fe88e5d6> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
    0x3803f000 - 0x38050fff  AirTraffic armv7  <c9eb888c1bd1322cbda5b01d41be0c7d> /System/Library/PrivateFrameworks/AirTraffic.framework/AirTraffic
    0x380f6000 - 0x38131fff  libCGFreetype.A.dylib armv7  <55941c96cf1f3b048e72a148c4496c16> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGFreetype.A.dyl ib
    0x3816a000 - 0x3816efff  libcache.dylib armv7  <d6a7436ed8dc33d795c9b42baf864882> /usr/lib/system/libcache.dylib
    0x38199000 - 0x3819dfff  libAXSpeechManager.dylib armv7  <a8cd1b0b9702334b90fba44d36577b40> /usr/lib/libAXSpeechManager.dylib
    Here is some info from my log

  • Can YOU solve this problem

    My ipod is broke - for the 4th time >>> i have sent away three ipods and received each time a new one - sounds cool but i gotta spend all day puttin music back on >> and yes im fumming at how unreliable i find the apple ipod. i am very loyal to apple and love the ipod - but my ipod always breaks. been through the trouble shooting solutions so many times but to no avail this time - help if you can >
    connect ipod to pc and says 'computer cant read ipod' and 'ipod corrupt' - all my music is wiped !! 4,800 songs gone - tried all trouble shooting steps - reset ipod - etc etc but to no avail. i hope i dont have to send off another ipod
    Deane - Omagh - Ireland

    I have actually had similar prob. with my 5g pod. Have you restored?? - ill guess that you have, and still hasnt helped. Try putting it into another PC, and through that computer rstore ipod. Or maybe try reinstalling itunes on your pc - never know!!
    hope helps!!

  • Help! Algorithm...can you solve it??????

    does anyone know how to convert this Algorithm to Jave code and if you do show me how and explain why??
    An Algorithm for computing the closure of X with respect to F
    Repeat
    Oldx = X;
    For every Y -->A in F, if Y is a subset of X then add A to X
    Until (oldx = X)
    Please send any solution to [email protected], thanks for your help!!!

    Try the code below, I've not really tested it, just knocked it together.
    I think it works like this:
    If you have a universe with A,B,C,D,E in it.
    Take a set of functional dependencies F with rules like Y->A (i.e. Y functionaly determines A).
    To find the closure of X you work out which other variables can be determined if you know X. So by transitivity if A->D and D->E, then if you know A, then you can work out D and then work out E.
    try playing with the code by changing X and F. The code should work with rules like (A,D)->B. i.e. if you know A and D you can get D.
    Hope this helps :-)
    public class Closure{
         public static void main(String[] args){
              char[] X={'A'};
              char[][][] F = {{{'A'},{'D'}},{{'B'},{'C'}},{{'D'},{'E'}}};
              char[] Y;
              char[] OldX = {};
              char[] A;
              System.out.print("closure of " + X[0] + "is ");
              while(!java.util.Arrays.equals(OldX,X)){
                   OldX = X;
                   for (int i=0; i<F.length;i++){
                        Y=F[0];
                        A=F[i][1];
                        if(contains(X,Y)){
                             X = append(A,X);
              for(int x =0; x<X.length;x++){
                   System.out.print(X[x] );
              System.exit(0);
         static boolean contains(char[] superset, char[] subset){
              boolean contains = true;
              for (int i=0; contains && i < subset.length;i++){
                   contains = false;
                   for(int j=0; j<superset.length;j++){
                        if (superset[j] == subset[i])contains = true;
              return contains;
         static char[] append(char[] set1, char[] set2){
              char[] append = new char[set1.length + set2.length];
              for (int i=0; i < set1.length;i++){
                   append[i] = set1[i];
              for (int i=0; i < set2.length;i++){
                   append[i + set1.length] = set2[i];
              return removeDups(append);
         static char[] removeDups(char[] set){
              java.util.Arrays.sort(set);
              int remCount=0;
              for (int i=1; i < set.length - remCount;){
                   if (set[i] == set[i-1]){
                        for(int j=i;j < set.length - ++remCount;j++){
                             set[j] = set[j+1];
                   }else{
                        i++;
              char[] removeDups = new char[set.length - remCount];
              for(int i = 0; i < removeDups.length;i++){
                   removeDups[i] = set[i];
              return removeDups;

  • Can you solve the Real Player mystery???

    Hi Guys,
    Was very pleased to hear of the Universal Binary release this morning as I access a lot of content on the BBC website. After downloading and installing I was shocked to see that I was receiving the following error when trying to listen to Radio Five Live.
    The page “BBC Radio Player” has content of MIME type “application/x-mplayer2”. Because you don’t have a plug-in installed for this MIME type, this content can’t be displayed.
    Bizarrely, although displaying this message the radio show loaded in the background and started to play!? I tried it on some other BBC stations and it got even more curious.
    Radio 1-4 load without a problem (no MIME warning, audio OK)
    Radio 5-onwards(6,7,Asian Network etc) - radio plays but with MIME warning
    Could someone please go to http://www.bbc.co.uk/radio/ and see if they are experiencing the same odd behaviour? I could at least try and understand it if all the stations were acting the same way but I'm completetly baffled.
    Anyone have any ideas/fixes?
    Cheers
    T
    iMac 20" 2GB RAM   Mac OS X (10.4.4)  

    I had the same experience last evening when testing the new UB version on the BBC. It happened for me on Stations 4 & 5. And yet inspite of the warning the broadcast started coming through AOK.
    I think it may have more to do with the sniffers and feelers of the website, than with the iMac, Safari or Realplayer!
    However, I just went back to re-test the situation and I didn't get the warnings, the Radio Player just opened and made the connection and started broadcasting the program!!

  • HELP!! My hp computer has lost airport!! Can you solve the riddle???

    I am connected to the internet through a hospital network and have airport express which works fine with another hp pc and a mac. It did work with the hp with vista until last week and now airport doesn't come up on list of wireless devices. I have reinstalled it from the disk but still no joy and I cannot connect to the internet through that computer. Please help....it's driving me mad and the network is saying connected but an X for internet! This is my 12 year old's pc which I am in a pickle with. By the way....I am an uncomplicated soul with no real knowledge of technical only turn on and off!!!
    Thank YOU!!!
    Message was edited by: liverpoolgirl

    From your previous post, it sounds like at one point you are getting the pop up that says "installing device driver software," correct?
    If you are not getting this pop up in the lower right hand corner of you screen then I need you to:
    1. Try a different USB port on your computer. Some computer USB ports are "touchy" and if you try a different one it will work. It all depends on the make of the computer.
    2. Try a different USB cable. You might have a bad USB cable. Also, be sure that the USB cable isn't longer than 3ft long.
    3. Go into your device manager and see what printers have been installed. They should be listed under "printers" or "other devices" You might have to go to view and check show hidden devices to see these on your computer. If there is a yellow triangle or question mark on this device then you have a conflict with your computer. This is something in your computer causing this and not the software download.
    Keep me  posted.
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution

  • Migration problem - can you solve?

    Problem:
    I need to migrate a 120GB hard drive OS 10.3.9 system to a 75GB partition on a new hard drive. I have an iTunes music folder which is about 70 GB. I also just purchased SuperDuper! to help with the system cloning. I also have two SATA 300GB drives - oneof which I want to house the iTunes music folder on.
    Question:
    So, how do I do this and retain all of my preferences (iTunes playlists, playcounts, etc.)? I did a full copy/backup of the 120GB system using SuperDuper! to the second SATA drive for safe keeping.
    A couple of other questions; 1) how would I do this for iPhoto and iMovie (how do I copy the data to the SATA drive and then have all of the preferences stay on the new 75GB PATA drive partition?
    Thank you in advance for your help!
    -Jason
    Dual 1.25 GHz PowerPC G4   Mac OS X (10.3.9)   2 GB DDR SDRAM

    Do the following:
    1. Open Disk Utility from the Utilities folder.
    2. Select the volume to clone from the left side list.
    3. Click on the Restore tab in the DU main window.
    4. Drag the volume to the Source entry field.
    5. Select the backup volume from the leftside list and drag it to the Destination entry field.
    6. Double-check you got it right, then click on the Restore button.
    If you haven't yet done so be sure you properly prep the new drive:
    1. Open Disk Utility in the Utilities folder of your Applications folder.
    2. After DU loads select the new hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    3. Set the number of partitions from the dropdown menu (use 1 partition unless you wish to make more.) Set the format type to Mac OS Extended (Journaled, if supported.) Click on the Partition button and wait until the volume(s) mount on the Desktop.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled, if supported.) Click on the Options button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process will take 30 minutes to an hour or more depending upon the drive size.
    Repeat steps 4-6 for each partition if more than one.

  • Can you solve it?

    hi all;
    i saw this question in an old exam and i am not able to do it.
    plz HELP!
    1 class X {
    2 int f() { return 5 ; }
    3 void g() { System.out.println( f() ) ; }
    4 }
    Without changing class X or statement 6 below, write whatever necessary
    code such that statement 6 would output -13. Make sure you complete line 5.
    5 X a = ... ;
    6 a.g() ;

    Solution 1....
        class MyPrinter extends java.io.PrintStream
            MyPrinter()
            super(System.out);
            public void println(int x)
            super.println(-13);
        System.setOut(new MyPrinter());
        X a = new X();
        a.g() ;
    Solution 2....
      class X
        int f() { return 5 ; }
        void g() { System.out.println( f() ) ; }
      public class TTest
          static private class X
            int f() { return -13 ; }
            void g() { System.out.println( f() ) ; }
          public static void main(String[] args) throws Exception
            X a = new X();
            a.g() ;
    }

  • Can you solve this problem please: A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete. Script: chrome://tavgp/content/libs/include.js:595

    No mather what i do, continue or stop, this message keeps coming. It delays the popping up of Firefox tremendously.

    ''getting -- Script: chrome://tavgp/content/libs/include.js:595''
    Script busy /AVG tavgp /
    * https://support.mozilla.com/en-US/questions/843822
    * https://support.mozilla.com/en-US/questions/854642
    * http://kb.mozillazine.org/Problematic_extensions

  • Can you solve the error ? FlashBuilder 4 :launch failed : Illegal character in path at index 41

    Hi
    when I am going to run an application (even a simple blank mxml one) ,  the flashbulider is saying the follows:
    Launch failed
    Illegal character in path at index 41
    file:///......bin-debug/Main.html

    cant access your stuff maybe paste it in pastie.org

Maybe you are looking for

  • Microsoft Visual C++ Runtime Library Error on Windows 7

    So I am having a problem and believe that it is Virus or malware whatever related. upon start up i get a pop up that states "Runtime Error! Program: C:\Program ... This application has requested the Runtime to terminate it in an unusual way. Please c

  • Open GL Photoshop CC 2014

    I'm unable to open 3D files in Photoshop even though I have a brand new iMac, Retina 5K, 32Gigs Ram, 4Gigs Vram (AMD Radeon R9 M295X). Keep getting an error that 'open GL' needs to be turned on, which it is and all memory allocations are maxed out. A

  • Error in configuring Custom Error Pages for Faces Portlets

    According to http://e-docs.bea.com/wls/docs92/schemaref/controls-netuix/http.www.bea.com.servers.netuix.xsd.controls.netuix.1.0.0/element/facescontent.html you can specify an errorUri attribute on the facesContent object for the error page. <netuix:f

  • New Mac Pro seems really slow

    I have a new Mac Pro - 8 core Two 2.26GHz Quad-Core Intel Xeon "Nehalem" I am exporting some h.264 movie files from Final Cut Pro via File>Export>Using Quicktime conversion. My Sequence settings are: 1920x1080 HDTV1080i compressor: XDCAMEX1080p24 Sho

  • Oracle9iAS Infrastructure Setup Won't Run

    Hello, I'm trying to install the Collaboration Suite on Win 2000. I installed the 9i database on the same machine without any problems. I downloaded the 3 disks for the Oracle9iAS Infrastructure, and extracted the zips. When I click on setup.exe in t