WAR archive and paths

Hi all,
I have my application working and running as exploded format.
When I packaged it into a WAR and included it with an EAR along with the
EJB JARS I have, it stopped running !
I have the application correctly deployed.
I can access some files under it.
I have doubts that maybe it could be that some files are referencing
others using relative paths.
Should we replace these with absolute paths ?
/mywebapp/myfolder/myfile.jsp instead of myfile.jsp ?
help appreciated
mona

Not working as in 404 error?
Could be deploying under a different context (as opposed to the default/root
context).
Try /webAppName/index.jsp rather than /index.jsp, after replacing
"webAppName" with the name of your web application.
Bob
"Mona Ramlawi" <[email protected]> wrote in message
news:[email protected]..
Hi all,
I have my application working and running as exploded format.
When I packaged it into a WAR and included it with an EAR along with the
EJB JARS I have, it stopped running !
I have the application correctly deployed.
I can access some files under it.
I have doubts that maybe it could be that some files are referencing
others using relative paths.
Should we replace these with absolute paths ?
/mywebapp/myfolder/myfile.jsp instead of myfile.jsp ?
help appreciated
mona

Similar Messages

  • JWS using WAR archives and Version based DL

    Hi everyone. I am having trouble with JWS. Let me explain what i am doing and maybe someone can tell me what i am doing wrong and what i need to do.
    I created a war file in the same structure as what is shown in the "Packaging JNLP Applications in a Web Archive" docs. So my jnlp file is in the war file in the app directory along with my jar files. The web.xml is in the WEB-INF directory and the other needed files in the WEB-INF/lib directory (that is where the jnlp-servlet.jar file is located within the war file).
    Next, i have an iplanet server. I created a directory on the server - eqam/app_version and i placed the war file there. I expect now when i goto my browser and go to "(server here)/eqam/app_version/app" it should go to servlet in the war file, which then launches the jnlp file. Is my understanding correct, because that does not work.
    Here are a few questions. Am i supposed to place the jnlp-servlet.jar anywhere else on the server outside of the war archive, or is the server supposed to expand the archive somehow (how do i get it to do that)? Also, how do i configure the iplanet server to use this servlet?
    Any help will be appreciated. Thanks!!
    Chris
    Here is the JNLP code...
    TS: 2002-07-22 14:30:00
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp spec="1.0"
    codebase="$$codebase"          
    href="$$name">
    <information>
    <title>Title</title>
    <vendor>Vendor</vendor>
    <homepage href="$$context"/>
    <description>Description</description>
    <description kind="short">Opera Style MDI</description>
    <icon href="images/check_digit_calc.gif"/>     
    <offline-allowed/>
    </information>
    <security>
    <all-permissions/>
    </security>
    <resources>
         <j2se version="1.4" />
         <jar href="guiMgr07152002.jar" version="1.5" download="eager"/>
         <jar href="accountpreview.jar" version="1.5" download="eager"/>
         <jar href="alert.jar" version="1.5" download="eager"/>
         <jar href="accountSearch.jar" version="1.5" download="eager"/>
         <jar href="CheckDigitalCal_srvc.jar" download="eager"/>
         <jar href="eqam_framework_07122002.jar" version="1.5" download="eager"/>
         <jar href="login_srvc.jar" version="1.5" download="eager"/>
         <jar href="resources.jar" version="1.5" download="eager"/>
         <jar href="serverside_07162002.jar" version="1.5" download="eager"/>
         <jar href="swingutil.jar" version="1.5" ftpdownload="eager"/>
         <jar href="desktopsrvc.jar" version="1.5" download="eager"/>
         <jar href="3rd_parties/weblogic_core_lite.jar" download="eager"/>
         <jar href="3rd_parties/weblogicaux_lite.jar" download="eager"/>
         <jar href="3rd_parties/xalan.jar" download="eager"/>
         <jar href="3rd_parties/xerces.jar" download="eager"/>
         <jar href="3rd_parties/jdomb8.jar" download="eager"/>
         <jar href="3rd_parties/lookAndFeel/kunststoff.jar" download="eager"/>
         <jar href="3rd_parties/lookAndFeel/macplaf.jar" download="eager"/>     
    </resources>
    <application-desc main-class="com.gs.eq.accountmaster.client.guimanager.AppManager"/>
    </jnlp>

    ensure you web.xml is set so the Download servlet processes requests for jar files
    eg
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
    <servlet>
    <servlet-name>JnlpDownloadServlet</servlet-name>
    <servlet-class>com.sun.javaws.servlet.JnlpDownloadServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>JnlpDownloadServlet</servlet-name>
    <url-pattern>*.jnlp</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
         <servlet-name>JnlpDownloadServlet</servlet-name>
         <url-pattern>*.jar</url-pattern>
    </servlet-mapping>
         <welcome-file-list>
              <welcome-file>index.html</welcome-file>
         </welcome-file-list>
    </web-app>

  • Webapp as war-archive vs exploded inside EAR

    We have an application consisting of an ear-archive containing a webapp (.war or exploded) and an ejb (.jar). For this application we have had a few situations where the EJB is recompiled at WLS start only if the webapp consists of a war-archive and not an exploded war (even though the webapps are identical). We have however been unable to reproduce this consistently. Are there any known issues related to using an ear-archive containing an exploded war?
    As far as I'm aware the main reason not to deploy applications as exploded is to make sure that the deployed content cannot be modified once deployed. This is not an issue here as the exploded war is a part of an ear-archive. Is there any other reason not to use this application layout? Could it possibly cause any unexpected side-effects in production environments?

    Not working as in 404 error?
    Could be deploying under a different context (as opposed to the default/root
    context).
    Try /webAppName/index.jsp rather than /index.jsp, after replacing
    "webAppName" with the name of your web application.
    Bob
    "Mona Ramlawi" <[email protected]> wrote in message
    news:[email protected]..
    Hi all,
    I have my application working and running as exploded format.
    When I packaged it into a WAR and included it with an EAR along with the
    EJB JARS I have, it stopped running !
    I have the application correctly deployed.
    I can access some files under it.
    I have doubts that maybe it could be that some files are referencing
    others using relative paths.
    Should we replace these with absolute paths ?
    /mywebapp/myfolder/myfile.jsp instead of myfile.jsp ?
    help appreciated
    mona

  • Finder crashes, won't let me archive and install

    I'm at a complete loss. After installing the latest update to MacOS X, everything is messed up. And it seems unfixable. The finder won't stay open, no matter what user your under, though I can still open everything from the dock. I've tried:
    1. Creating a new user.
    2. Running disk utility, doesn't work.
    3. Repairing permissions, works, but doesn't fix problem.
    4. Running Norton Utilities, doesn't work.
    5. Archiving and Installing, which brings up an error that tells you to try again.
    6. Archiving and installing, without keeping the user file and network settings in tact.
    7. Random other stuff I can't recall (such as some terminal stuff), but didn't work.
    Is my only option to try to back this stuff up and reinstall? Do you think that will even work? My mother has a copy of disk warrior that she would have to send me. That's something else I could try, but I'm not sure if it would be worth it. Also, I can still boot up in OS 9.
    Crash report:
    Host Name: john-breslins-powerbook-g4-15
    Date/Time: 2006-04-07 18:38:47.168 -0600
    OS Version: 10.4.6 (Build 8I127)
    Report Version: 4
    Command: Finder
    Path: /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Parent: WindowServer [56]
    Version: 10.4.4 (10.4.4)
    Build Version: 1
    Project Name: Finder_FE
    Source Version: 5292100
    PID: 1226
    Thread: 2
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0xa286a90c
    Thread 0:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001990 pthreadmutexlock + 472
    2 com.apple.DesktopServices 0x9289723c GetRootNode + 44
    3 com.apple.finder 0x0001a1ac 0x1000 + 102828
    4 com.apple.finder 0x00015c28 0x1000 + 85032
    5 com.apple.finder 0x00019d2c 0x1000 + 101676
    6 com.apple.finder 0x00013d84 0x1000 + 77188
    7 com.apple.finder 0x0001afa8 0x1000 + 106408
    8 com.apple.finder 0x0001aeb0 0x1000 + 106160
    9 com.apple.finder 0x0001ad44 0x1000 + 105796
    10 com.apple.finder 0x000168ac 0x1000 + 88236
    11 com.apple.finder 0x00016514 0x1000 + 87316
    12 com.apple.finder 0x00014980 0x1000 + 80256
    13 com.apple.finder 0x0000a8f8 0x1000 + 39160
    14 com.apple.finder 0x0000a67c 0x1000 + 38524
    15 com.apple.finder 0x0000a460 0x1000 + 37984
    16 com.apple.finder 0x000069c0 0x1000 + 22976
    17 com.apple.finder 0x0000313c 0x1000 + 8508
    18 com.apple.finder 0x00002d54 0x1000 + 7508
    19 com.apple.finder 0x000a97d0 0x1000 + 690128
    Thread 1:
    0 libSystem.B.dylib 0x9002edcc kevent + 12
    1 com.apple.DesktopServices 0x9288a2b0 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2 ...ple.CoreServices.CarbonCore 0x90bc9260 PrivateMPEntryPoint + 76
    3 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 2 Crashed:
    0 com.apple.DesktopServices 0x928a70bc TNode::SetTimerToHandleSyncRequest(TNode*, double) + 52
    1 com.apple.DesktopServices 0x928a706c TNode::SyncRequestedTestAndSet(double) + 92
    2 com.apple.DesktopServices 0x9288aa48 TNodeSyncTask::SyncTaskProc(void*) + 400
    3 ...ple.CoreServices.CarbonCore 0x90bc9260 PrivateMPEntryPoint + 76
    4 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001990 pthreadmutexlock + 472
    2 com.apple.DesktopServices 0x92895c3c THFSPlusPropertyStore::Open(bool) const + 440
    3 com.apple.DesktopServices 0x928959a4 THFSPlusPropertyStore::CreateUniqueNameList() + 72
    4 com.apple.DesktopServices 0x92894b24 TNode::ScavengeProperties() + 76
    5 com.apple.DesktopServices 0x92893cb0 TNodeOpenSyncTask::OpenSyncTaskProc(void*) + 228
    6 ...ple.CoreServices.CarbonCore 0x90bc9260 PrivateMPEntryPoint + 76
    7 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 2 crashed with PPC Thread State 64:
    srr0: 0x00000000928a70bc srr1: 0x000000000000f030 vrsave: 0x0000000000000000
    cr: 0x42000222 xer: 0x0000000020000007 lr: 0x00000000928a7094 ctr: 0x0000000090001348
    r0: 0x0000000000000000 r1: 0x00000000f0101980 r2: 0x00000000a286a8c0 r3: 0x0000000000653490
    r4: 0x0000000000000000 r5: 0x0000000000000000 r6: 0x00000000ffffffff r7: 0x0000000044370617
    r8: 0x000000000001952e r9: 0x0000000000000000 r10: 0x0000000043300000 r11: 0x00000000a2887648
    r12: 0x0000000090001348 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x00000000928a7094
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x0000000000000000 r21: 0x00000000f0101ad0 r22: 0x0000000000100003 r23: 0x000000000061ea20
    r24: 0x00000000a288a8c0 r25: 0x0000000000000000 r26: 0x0000000000000000 r27: 0x000000000181b800
    r28: 0x0000000000000000 r29: 0x0000000000653490 r30: 0x0000000000000000 r31: 0x000000009288a8c0
    Binary Images Description:
    0x1000 - 0x322fff com.apple.finder 10.4.4 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    0x718000 - 0x71afff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x8fa79000 - 0x8fd27fff com.apple.QuickTime 7.0.4 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x8fe00000 - 0x8fe51fff dyld 44.4 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x9026dfff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9029a000 - 0x9034bfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9037a000 - 0x90734fff com.apple.CoreGraphics 1.258.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907c1000 - 0x9089afff com.apple.CoreFoundation 6.4.4 (368.25) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908e3000 - 0x908e3fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e5000 - 0x909e7fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a41000 - 0x90ac5fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aef000 - 0x90b5dfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b74000 - 0x90b86fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8d000 - 0x90e65fff com.apple.CoreServices.CarbonCore 681.3 (671.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ecb000 - 0x90f4bfff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f95000 - 0x90fd6fff com.apple.CFNetwork 129.13 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90feb000 - 0x91003fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91013000 - 0x91094fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910da000 - 0x91104fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91115000 - 0x91123fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91126000 - 0x912e9fff com.apple.security 4.3 (25966) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913ec000 - 0x913f5fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913fc000 - 0x91423fff com.apple.SystemConfiguration 1.8.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91436000 - 0x91441fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91446000 - 0x91466fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9146c000 - 0x91474fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91478000 - 0x914f3fff com.apple.audio.CoreAudio 3.0.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91530000 - 0x91530fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91532000 - 0x9156afff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91585000 - 0x91652fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x916a7000 - 0x91738fff com.apple.print.framework.PrintCore 4.5 (177.10) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9177f000 - 0x91836fff com.apple.QD 3.8.19 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91873000 - 0x918d1fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ff000 - 0x91923fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91937000 - 0x9195cfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9196f000 - 0x919b1fff com.apple.LaunchServices 168.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x919cd000 - 0x919e1fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919ef000 - 0x91a2efff com.apple.ImageIO.framework 1.4.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a44000 - 0x91b0cfff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b5a000 - 0x91b6ffff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b74000 - 0x91b91fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b96000 - 0x91c05fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c1c000 - 0x91c20fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c22000 - 0x91c69fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c6e000 - 0x91cabfff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91cb2000 - 0x91ccbfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91cd0000 - 0x91cd3fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91cd5000 - 0x91cd5fff com.apple.Accelerate 1.2.1 (Accelerate 1.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cd7000 - 0x91db7fff com.apple.vImage 2.3 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91dbf000 - 0x91ddefff com.apple.Accelerate.vecLib 3.2.1 (vecLib 3.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e4a000 - 0x91eb8fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91ec3000 - 0x91f57fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f71000 - 0x924f9fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9252c000 - 0x92857fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92887000 - 0x9290ffff com.apple.DesktopServices 1.3.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92950000 - 0x92b7bfff com.apple.Foundation 6.4.5 (567.26) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c99000 - 0x92d77fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d97000 - 0x92e85fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92f38000 - 0x92f38fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f3a000 - 0x92f4efff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f66000 - 0x92f76fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f82000 - 0x92f97fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92fa9000 - 0x93030fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93044000 - 0x9304ffff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93059000 - 0x93086fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x930a0000 - 0x930b0fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x930bc000 - 0x93122fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93153000 - 0x931a2fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x931d0000 - 0x931edfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931ff000 - 0x9320cfff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93215000 - 0x93522fff com.apple.HIToolbox 1.4.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x94160000 - 0x9422afff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9427e000 - 0x9427efff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9455c000 - 0x945a0fff com.apple.bom 8.3 (86.1) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x946bf000 - 0x946cefff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x946d6000 - 0x946e2fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94728000 - 0x94740fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94747000 - 0x947b8fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94ae3000 - 0x94ae9fff com.apple.filesync 3.0.4 (99.8) /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync

    Hi johnink, Welcome to Apple Discussions.
    4. Running Norton Utilities, doesn't work.
    This is probably the source of your problem. First of all get rid of Norton, use it for a coaster or a frisbee but not on your Mac! Do not let Norton near your X system, it will hose it!
    Norton Disk Doctor is not compatible with OS X 10.4 Tiger. Symantec ceased development of Norton Utilities for Macintosh and Norton SystemWorks for Macintosh 2 years ago. But it has been ruining systems since the intro of X.
    You should create a complete backup of your files and erase & re-install the OS.
    -mj
    [email protected]
    iMac G4 17 FP 800 MHz 768MB   Mac OS X (10.4.6)   2 X LaCie d2's APC-UPS / iMac 333MHz 256MB 10.3.9

  • Finder not responding after Archive and install

    I recently encountered my first problem ever with my mac(new in '05) This is the first mac I have owned; I have worked on G3's and G4's in the past. After reading through many message boards and support pages I don't believe my problem to be similar but different to previous posts.
    My problem started off with an OS problem that I was able to diagnose in the "help" book I purchased when Leopard came out. It said I should Archive and Install to remedy the problem and keep my files. I ran the archive the install (it gave me no options to preserve user or network settings). After Archive and install my computer started up alright, but I got the permanent beachball and the finder does not work. it is constantly non responsive. I can relaunch finder, but after it restarts it goes non responsive immediately once again. So I can't actually access my "previous system" folder to move anything over. I checked my dock items and finder, they opened, but my itunes asked for an update. I list of update items came up; I did the non-restart items first. they updated fine, (my itunes old itunes playlists are viewable but not playable now) then I did the items that required a restart. That is when I found out that I could not shut down or restart my computer with std. procedures.
    Currently I can only access my spotlight or apple pull down menu if I am in a functioning dock program (safari or itunes, quicktime. etc.) after reading some more support pages it looked like the common thing to do was check permissions and verify disk. I did, I repaired two permissions and the disk was OK. I did look at the HD files, they were as I remembered, but unaccessible (greyed out) and the "previous system" folder was present. +It didn't look like I would expect. The HD looked same as it used to just with a previous system folder.+ After checking the permissions and verified the disk I tried a hard restart. It came back the same as before, unresponsive finder and only the few dock items worked along with spotlight. I checked permissions and disk verify again and everything was OK.
    Sorry to be long winded I am trying to be thorough...In short, My finder does not work after doing an Archive and Install to fix my original problem (which has been fixed)...the remedy for an unresponsive finder is to do an archive and install. Is another archive and install really going to fix my problem? Can I archive and install OSX 10.4 and work my way back up to 10.5.6?
    Secondly is there a way to restart my computer without doing another hard restart?

    It won't let me add a new account. I am locked out and when I try to unlock it gives me the beachball and becomes non responsive after it tries to authenticate.
    I looked at the log file, I am not sure what exactly to look for. I am no programer. I see an awful lot of negative wording. I see some errors like "error (-4956) locating menu extra but they are mostly under system preferences...I see some stuff in the loginwindow that says is not a full path... Otherwise, the only reference I see to the finder is when I have force quit the finder.
    2/8/09 8:59:55 PM com.apple.launchd[114] ([0x0-0x4d04d].com.apple.finder[304]) Exited: Terminated
    2/8/09 11:10:17 PM com.apple.launchd[114] ([0x0-0x57057].com.apple.finder[321]) Exited: Terminated

  • Safarinow won't start after Archive and reinstall 10.3.9 to 10.3.7

    I went to 10.3.9 and then Quicktime and Jam 6 stopped working, then iTunes.
    The local Mac Genius Bar dude suggeted an archive and reinstall back to 10.3.7. (Roxio said I need to go back to 10.3.7 for Jam 6 to work.) OK now Jam 6, QT and iTunes work, but Safari and Netscape communicator either don't start or, if they do, I can't download anything because they both crash when trying to download.
    When that happens with Navigator, I get the following crash report:
    Date/Time: 2005-12-20 17:55:26 -0500
    OS Version: 10.3.7 (Build 7S215)
    Report Version: 2
    Command: mozilla-bin
    Path: /Applications/Netscape.app/Contents/MacOS/mozilla-bin
    Version: 7.2 (7.2)
    PID: 383
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0xc000000a
    Is there any way out of this short of a total wipe and reinstall?
    Regards,
    Ty Ford
    500 MHZ G4 Mac OS X (10.3.7)

    To A Brody, thanks for the link to the backup info page..that was very helpful.
    I'm having a panic with two volumes with 10.3.9 and 10.4.3 getting corrupted and impossible to repair or reinstall...and getting errors that "may be bad blocks...bad media.." and am backing up all the photos and music to a usb ext HD.
    I'm only able to start up with os9 and am careful...perhaps not enough, I don't know, to not do anything to the osx files I can see from the other parition with os 9.
    So far I've just dragged the files I want to the ext HD. I think I will do it again with a disc image as well, on the same ext HD, and burn dvd's later.So far, testing the backup with another mac in osx, I'm able to see the pictures with Preview, and import the music and play it...but yikes, no backup is like running with scissors. Two different friends are also backup less and they both use their macs for business! I hope to get them fixed up as well.
    I'm going to post a new question about the phrase: "Mac OS X can't be installed on an ATA/IDE drive that is configured as a "slave", although it can see and work with such drives.": from one of the best books on OS X. Is this true?
    G3 233hz desktop   Mac OS X (10.4.3)   567mb ram, xpostfacto

  • Safari 3.1.2 keeps crashing after Archive and Install

    I did an archive and install to fix a few problems, but Safari continues to crash. I also tried to reset Safari in the moments before crash.
    My homepage barely has time to load before it crashes. I tried to navigate to other sites to see if it was a site-specific problem, but Safari crashes no matter what site.
    What other possibilities and options are there?
    Please help! At least Firefox works, but even that crashes sometimes.

    I also tried to Repair Permissions through the Disk Utility. This did not work.
    Here is the error report after I repaired Permissions:
    Date/Time: 2008-10-01 08:27:54.489 -0400
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [99]
    Version: 3.1.2 (4525.22)
    Build Version: 6
    Project Name: WebBrowser
    Source Version: 45252200
    PID: 2014
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000018
    Thread 0 Crashed:
    0 com.apple.JavaScriptCore 0x957d4674 KJS::Collector::collect() + 420
    1 com.apple.JavaScriptCore 0x95858f08 void* KJS::Collector::heapAllocate<(KJS::Collector::HeapType)0>(unsigned long) + 248
    2 com.apple.JavaScriptCore 0x957f1f54 KJS::BooleanObjectImp::construct(KJS::ExecState*, KJS::List const&) + 132
    3 com.apple.JavaScriptCore 0x957ded4c KJS::JSImmediate::toObject(KJS::JSValue const*, KJS::ExecState*) + 300
    4 com.apple.JavaScriptCore 0x957b4cc0 KJS::DotAccessorNode::evaluateToBoolean(KJS::ExecState*) + 112
    5 com.apple.JavaScriptCore 0x957bc9e4 KJS::IfNode::execute(KJS::ExecState*) + 52
    6 com.apple.JavaScriptCore 0x957bd464 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    7 com.apple.JavaScriptCore 0x957bcc68 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    8 com.apple.JavaScriptCore 0x957c0498 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 584
    9 com.apple.JavaScriptCore 0x957e21a4 KJS::SwitchNode::execute(KJS::ExecState*) + 52
    10 com.apple.JavaScriptCore 0x957bd464 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    11 com.apple.JavaScriptCore 0x957bcc68 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    12 com.apple.JavaScriptCore 0x957c0498 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 584
    13 com.apple.JavaScriptCore 0x957bf154 KJS::AssignBracketNode::evaluate(KJS::ExecState*) + 628
    14 com.apple.JavaScriptCore 0x957bcab4 KJS::ExprStatementNode::execute(KJS::ExecState*) + 52
    15 com.apple.JavaScriptCore 0x957c45f4 KJS::BlockNode::execute(KJS::ExecState*) + 84
    16 com.apple.JavaScriptCore 0x957be068 KJS::ForInNode::execute(KJS::ExecState*) + 1592
    17 com.apple.JavaScriptCore 0x957e2358 KJS::CaseBlockNode::executeBlock(KJS::ExecState*, KJS::JSValue*) + 200
    18 com.apple.JavaScriptCore 0x957e21e8 KJS::SwitchNode::execute(KJS::ExecState*) + 120
    19 com.apple.JavaScriptCore 0x957bd464 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    20 com.apple.JavaScriptCore 0x957bcc68 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    21 com.apple.JavaScriptCore 0x957c0498 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 584
    22 com.apple.JavaScriptCore 0x957bf154 KJS::AssignBracketNode::evaluate(KJS::ExecState*) + 628
    23 com.apple.JavaScriptCore 0x957bcab4 KJS::ExprStatementNode::execute(KJS::ExecState*) + 52
    24 com.apple.JavaScriptCore 0x957c45f4 KJS::BlockNode::execute(KJS::ExecState*) + 84
    25 com.apple.JavaScriptCore 0x957be068 KJS::ForInNode::execute(KJS::ExecState*) + 1592
    26 com.apple.JavaScriptCore 0x957bd464 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    27 com.apple.JavaScriptCore 0x957bcc68 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    28 com.apple.JavaScriptCore 0x957ca3d0 KJS::FunctionImp::construct(KJS::ExecState*, KJS::List const&) + 480
    29 com.apple.JavaScriptCore 0x957c0ba0 KJS::NewExprNode::evaluate(KJS::ExecState*) + 336
    30 com.apple.JavaScriptCore 0x957b5dbc KJS::ArgumentListNode::evaluateList(KJS::ExecState*, KJS::List&) + 76
    31 com.apple.JavaScriptCore 0x957b534c KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 508
    32 com.apple.JavaScriptCore 0x957bcab4 KJS::ExprStatementNode::execute(KJS::ExecState*) + 52
    33 com.apple.JavaScriptCore 0x957c45f4 KJS::BlockNode::execute(KJS::ExecState*) + 84
    34 com.apple.JavaScriptCore 0x957c37f8 KJS::ForNode::execute(KJS::ExecState*) + 168
    35 com.apple.JavaScriptCore 0x957bd464 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    36 com.apple.JavaScriptCore 0x957bcc68 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    37 com.apple.JavaScriptCore 0x957b53c8 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 632
    38 com.apple.JavaScriptCore 0x957bcab4 KJS::ExprStatementNode::execute(KJS::ExecState*) + 52
    39 com.apple.JavaScriptCore 0x957bd464 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    40 com.apple.JavaScriptCore 0x957bcc68 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    41 com.apple.JavaScriptCore 0x957b53c8 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 632
    42 com.apple.JavaScriptCore 0x957bcab4 KJS::ExprStatementNode::execute(KJS::ExecState*) + 52
    43 com.apple.JavaScriptCore 0x957c45f4 KJS::BlockNode::execute(KJS::ExecState*) + 84
    44 com.apple.JavaScriptCore 0x957bd464 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    45 com.apple.JavaScriptCore 0x957bcc68 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    46 com.apple.JavaScriptCore 0x957b53c8 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 632
    47 com.apple.JavaScriptCore 0x957bcab4 KJS::ExprStatementNode::execute(KJS::ExecState*) + 52
    48 com.apple.JavaScriptCore 0x957b2184 KJS::ProgramNode::execute(KJS::ExecState*) + 756
    49 com.apple.JavaScriptCore 0x9579f3f0 KJS::Interpreter::evaluate(KJS::ExecState*, KJS::UString const&, int, KJS::UChar const*, int, KJS::JSValue*) + 1216
    50 com.apple.WebCore 0x959d9764 WebCore::KJSProxy::evaluate(WebCore::String const&, int, WebCore::String const&) + 212
    51 com.apple.WebCore 0x959d9654 WebCore::FrameLoader::executeScript(WebCore::String const&, int, WebCore::String const&) + 100
    52 com.apple.WebCore 0x959d9454 WebCore::HTMLTokenizer::scriptExecution(WebCore::String const&, WebCore::HTMLTokenizer::State, WebCore::String const&, int) + 324
    53 com.apple.WebCore 0x959cecfc WebCore::HTMLTokenizer::scriptHandler(WebCore::HTMLTokenizer::State) + 1724
    54 com.apple.WebCore 0x9597a900 WebCore::HTMLTokenizer::parseSpecial(WebCore::SegmentedString&, WebCore::HTMLTokenizer::State) + 432
    55 com.apple.WebCore 0x95975940 WebCore::HTMLTokenizer::parseTag(WebCore::SegmentedString&, WebCore::HTMLTokenizer::State) + 8080
    56 com.apple.WebCore 0x9597340c WebCore::HTMLTokenizer::write(WebCore::SegmentedString const&, bool) + 1148
    57 com.apple.WebCore 0x959d8b50 WebCore::HTMLTokenizer::notifyFinished(WebCore::CachedResource*) + 736
    58 com.apple.WebCore 0x959d8828 WebCore::CachedScript::checkNotify() + 88
    59 com.apple.WebCore 0x959d8788 WebCore::CachedScript::data(***::PassRefPtr<WebCore::SharedBuffer>, bool) + 408
    60 com.apple.WebCore 0x959d853c WebCore::Loader::didFinishLoading(WebCore::SubresourceLoader*) + 316
    61 com.apple.WebCore 0x959d8330 WebCore::SubresourceLoader::didFinishLoading() + 96
    62 com.apple.WebCore 0x95b4fe24 -[WebCoreResourceHandleAsDelegate connectionDidFinishLoading:] + 100
    63 com.apple.Foundation 0x92c27870 -[NSURLConnection(NSURLConnectionInternal) _sendDidFinishLoadingCallback] + 188
    64 com.apple.Foundation 0x92c25adc -[NSURLConnection(NSURLConnectionInternal) _sendCallbacks] + 556
    65 com.apple.Foundation 0x92c25834 _sendCallbacks + 156
    66 com.apple.CoreFoundation 0x907df300 __CFRunLoopDoSources0 + 384
    67 com.apple.CoreFoundation 0x907de830 __CFRunLoopRun + 452
    68 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    69 com.apple.HIToolbox 0x932adb20 RunCurrentEventLoopInMode + 264
    70 com.apple.HIToolbox 0x932ad1b4 ReceiveNextEventCommon + 380
    71 com.apple.HIToolbox 0x932ad020 BlockUntilNextEventMatchingListInMode + 96
    72 com.apple.AppKit 0x93791734 _DPSNextEvent + 384
    73 com.apple.AppKit 0x937913f8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    74 com.apple.Safari 0x000082f0 0x1000 + 29424
    75 com.apple.AppKit 0x9378d93c -[NSApplication run] + 472
    76 com.apple.AppKit 0x9387e458 NSApplicationMain + 452
    77 com.apple.Safari 0x000b7e0c 0x1000 + 749068
    78 com.apple.Safari 0x000b7b10 0x1000 + 748304
    Thread 1:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.WebCore 0x958f8680 WebCore::IconDatabase::syncThreadMainLoop() + 320
    3 com.apple.WebCore 0x958b4e48 WebCore::IconDatabase::iconDatabaseSyncThread() + 424
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de9ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c1d7bc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92bf5118 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001c10 pthreadmutexlock + 472
    2 com.apple.JavaScriptCore 0x957e44b4 KJS::JSLock::DropAllLocks::~DropAllLocks [in-charge]() + 100
    3 com.apple.JavaScriptGlue 0x9714cfe0 UserObjectImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 224
    4 com.apple.JavaScriptCore 0x957c0498 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 584
    5 com.apple.JavaScriptCore 0x957b41f4 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 52
    6 com.apple.JavaScriptCore 0x957b4174 KJS::VarStatementNode::execute(KJS::ExecState*) + 52
    7 com.apple.JavaScriptCore 0x957bd464 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    8 com.apple.JavaScriptCore 0x957bcc68 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    9 com.apple.JavaScriptCore 0x957c0498 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 584
    10 com.apple.JavaScriptCore 0x957b41f4 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 52
    11 com.apple.JavaScriptCore 0x957b4174 KJS::VarStatementNode::execute(KJS::ExecState*) + 52
    12 com.apple.JavaScriptCore 0x957bd464 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    13 com.apple.JavaScriptCore 0x957bcc68 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    14 com.apple.JavaScriptCore 0x957c0498 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 584
    15 com.apple.JavaScriptCore 0x957b41f4 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 52
    16 com.apple.JavaScriptCore 0x957b4174 KJS::VarStatementNode::execute(KJS::ExecState*) + 52
    17 com.apple.JavaScriptCore 0x957bd464 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    18 com.apple.JavaScriptCore 0x957bcc68 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    19 com.apple.JavaScriptCore 0x95806f94 KJS::JSObject::call(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 116
    20 com.apple.JavaScriptGlue 0x9714b7e4 JSValueWrapper::JSObjectCallFunction(void*, OpaqueJSTypeRef*, __CFArray const*) + 388
    21 com.apple.CFNetwork 0x90fcc7a0 _callPACFunction + 216
    22 com.apple.CFNetwork 0x90fccb74 _JSFindProxyForURLAsync + 224
    23 com.apple.CFNetwork 0x90f93f10 _CFNetworkFindProxyForURLAsync + 744
    24 com.apple.Foundation 0x92c1edac -[NSConnectionHTTPURLProtocol buildHTTPRequest] + 384
    25 com.apple.Foundation 0x92c1ebac -[NSConnectionHTTPURLProtocol startOriginLoad] + 48
    26 com.apple.Foundation 0x92c1e868 -[NSURLConnection(NSURLConnectionInternal) _performOriginLoad] + 328
    27 com.apple.Foundation 0x92c1c91c _resourceLoaderPerform + 224
    28 com.apple.CoreFoundation 0x907df3b8 __CFRunLoopDoSources0 + 568
    29 com.apple.CoreFoundation 0x907de830 __CFRunLoopRun + 452
    30 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    31 com.apple.Foundation 0x92c1c67c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    32 com.apple.Foundation 0x92bf5118 forkThreadForFunction + 108
    33 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f88c select + 12
    1 com.apple.CoreFoundation 0x907f1240 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.Foundation 0x92bfc284 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9a8d742c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x92bf5118 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 ...romedia.Flash Player.plugin 0x06f37444 nativeShockwaveFlashTCallFrame + 2292772
    3 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90c04490 MPWaitOnSemaphore + 184
    3 ...romedia.Flash Player.plugin 0x06cba76c Flash_EnforceLocalSecurity + 1192672
    4 ...romedia.Flash Player.plugin 0x06df3a28 nativeShockwaveFlashTCallFrame + 967176
    5 ...romedia.Flash Player.plugin 0x06cba5dc Flash_EnforceLocalSecurity + 1192272
    6 ...romedia.Flash Player.plugin 0x06cba5a4 Flash_EnforceLocalSecurity + 1192216
    7 ...ple.CoreServices.CarbonCore 0x90bc6740 PrivateMPEntryPoint + 76
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000957d4674 srr1: 0x100000000200f030 vrsave: 0x0000000000000000
    cr: 0x48044444 xer: 0x0000000020000000 lr: 0x00000000957d468c ctr: 0x0000000095ec7d60
    r0: 0x00000000ffffffff r1: 0x00000000bfffc6f0 r2: 0x00000000bfffdbc8 r3: 0x0000000000000000
    r4: 0x00000000a592be88 r5: 0x0000000006547d00 r6: 0x000000000000002c r7: 0x0000000000000e03
    r8: 0x0000000006841900 r9: 0x0000000000080000 r10: 0x0000000000000001 r11: 0x00000000058d00cc
    r12: 0x0000000095ec7d60 r13: 0x0000000000000000 r14: 0x000000009579ef44 r15: 0x00000000a578ef44
    r16: 0x00000000bfffe180 r17: 0x00000000bfffcb24 r18: 0x00000000a57a5e38 r19: 0x0000000005bfd91c
    r20: 0x00000000a57a44dc r21: 0x00000000a57a44dc r22: 0x0000000000000000 r23: 0x0000000000000001
    r24: 0x0000000005bbd330 r25: 0x00000000067663f4 r26: 0x0000000000000000 r27: 0x0000000000000001
    r28: 0x0000000005a76138 r29: 0x0000000000000018 r30: 0x00000000067663d0 r31: 0x00000000957d44dc
    Binary Images Description:
    0x1000 - 0x139fff com.apple.Safari 3.1.2 (4525.22) /Applications/Safari.app/Contents/MacOS/Safari
    0x6b93000 - 0x6fb2fff com.macromedia.Flash Player.plugin 9.0.124 (1.0.4f60) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.79 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5cfff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f92000 - 0x90fd4fff com.apple.CFNetwork 129.22 (129.23) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91011000 - 0x91092fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d8000 - 0x91101fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91112000 - 0x91120fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91123000 - 0x912defff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ed000 - 0x913f5fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91434000 - 0x9143ffff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91444000 - 0x914bffff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fe000 - 0x91536fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91551000 - 0x91623fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174e000 - 0x91805fff com.apple.QD 3.10.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91904000 - 0x91929fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193c000 - 0x9197efff com.apple.LaunchServices 183 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bc000 - 0x91a02fff com.apple.ImageIO.framework 1.5.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a19000 - 0x91ae0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2e000 - 0x91b43fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b48000 - 0x91b66fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6c000 - 0x91c23fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c72000 - 0x91c76fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c78000 - 0x91ce2fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce7000 - 0x91d01fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d06000 - 0x91d09fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d0b000 - 0x91df9fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e18000 - 0x91e56fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91e5d000 - 0x91e5dfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e5f000 - 0x91f44fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4c000 - 0x91f6bfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd7000 - 0x92045fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92050000 - 0x920e5fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ff000 - 0x92687fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926ba000 - 0x929e5fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a15000 - 0x92b03fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b06000 - 0x92b8efff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bcf000 - 0x92dfafff com.apple.Foundation 6.4.10 (567.37) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f27000 - 0x92f45fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f50000 - 0x92faafff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fc8000 - 0x92fc8fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fca000 - 0x92fdefff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ff6000 - 0x93006fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93012000 - 0x93027fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93039000 - 0x930c0fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930d4000 - 0x930dffff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930e9000 - 0x93117fff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93131000 - 0x93140fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9314c000 - 0x931b2fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931e3000 - 0x93232fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93260000 - 0x9327dfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9328f000 - 0x9329cfff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932a5000 - 0x935b3fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93703000 - 0x9370ffff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93714000 - 0x93734fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93787000 - 0x93787fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93789000 - 0x93dbcfff com.apple.AppKit 6.4.10 (824.48) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94149000 - 0x941bbfff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941f4000 - 0x942b9fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9430c000 - 0x9430cfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9430e000 - 0x944cefff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94518000 - 0x94555fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9455d000 - 0x945adfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945b6000 - 0x945cafff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94660000 - 0x94698fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946dd000 - 0x946f9fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9470d000 - 0x94751fff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94775000 - 0x94784fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9478c000 - 0x94799fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947df000 - 0x947f8fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x947ff000 - 0x94a61fff com.apple.QuickTime 7.0.1 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94b34000 - 0x94b53fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94cc2000 - 0x94df2fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94e85000 - 0x94e94fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94e9c000 - 0x94ec9fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94ed0000 - 0x94ee0fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94ee4000 - 0x94f13fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94f23000 - 0x94f40fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95662000 - 0x95720fff com.apple.WebKit 4525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9578e000 - 0x95876fff com.apple.JavaScriptCore 4525.18 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x958b2000 - 0x95f84fff com.apple.WebCore 4525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x96289000 - 0x962fafff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x97148000 - 0x9714efff com.apple.JavaScriptGlue 4525.13 /System/Library/PrivateFrameworks/JavaScriptGlue.framework/Versions/A/JavaScrip tGlue
    0x97d19000 - 0x97d26fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9a8d4000 - 0x9a90afff com.apple.Syndication 1.0.7 (55) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9a927000 - 0x9a939fff com.apple.SyndicationUI 1.0.7 (55) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Model: PowerMac12,1, BootROM 5.2.6f1, 1 processors, PowerPC G5 (3.1), 2.1 GHz, 1.5 GB
    Graphics: ATI Radeon X600 XT, ATY,RV380, PCI, 128 MB
    Memory Module: DIMM0/BUILT-IN, 512 MB, built-in, built-in
    Memory Module: DIMM1/J6700, 1 GB, DDR2 SDRAM, PC2-4200U-444
    AirPort: AirPort Extreme, 405.1 (3.90.34.0.p18)
    Bluetooth: Version 1.9.5f4, 2 service, 0 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: ATY,RV380, Display, PCI-E
    Serial ATA Device: Maxtor 6L250M0, 233.76 GB
    Parallel ATA Device: MATSHITADVD-R UJ-846
    USB Device: Keyboard Hub, Apple, Inc., Up to 480 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Mitsumi Electric, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Keyboard, Apple, Inc, Up to 1.5 Mb/sec, 100 mA
    USB Device: Hub, Up to 480 Mb/sec, 500 mA
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: My Book, Western Digital, Up to 480 Mb/sec, 500 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA

  • Extract the war/ear and search the method names in the classes

    Hi,
    I have implemented search function for methods in the class files in the physical path presented jars,
    using url classloader am loading class and getting class object then using reflection API am getting declared methods.
    but when i try to search more jars am getting stack over flow error.
    since am using recursive function.
    example code
    ArrayList l_alClassNames = new ArrayList ();
    RuleITClassLoader classLoader = new RuleITClassLoader();
    Map l_mapMethodDetails = new HashMap();
    m_mapPackageInformation = new HashMap();
    ArrayList l_alMethodnames = new ArrayList();
    boolean flage = false;
    JarInputStream l_objJarInputStream= null;
    try{
    l_objJarInputStream = new JarInputStream(new FileInputStream (p_sJarpath));
    JarEntry l_objJarEntry;
    while(true) {
    l_objJarEntry=l_objJarInputStream.getNextJarEntry ();
    if(l_objJarEntry == null){
    break;
    String l_sPackagename ="";
    if (l_objJarEntry.getName ().endsWith (IServiceAdministratorConstants.FILE_TYPE_CLASS)) {
    String l_sClassName = l_objJarEntry.getName().replaceAll("/", "\\.");
    l_sClassName = l_sClassName.substring(0, l_sClassName.length()-6);
    Class l_objClass = classLoader.loadClass(p_sJarpath,l_sClassName);
    if(l_objClass!=null){
    l_sPackagename= l_objClass.getPackage().getName();
    l_sPackagename = l_sPackagename.replaceAll("\\." , "/");
    Method[] l_arrayMethods = null;
    try{
    l_arrayMethods = l_objClass.getDeclaredMethods();
    }catch(NoClassDefFoundError exException){
    /*m_objLogger.log(ILoggerConstants.SERVICEADMIN_WEBAPP, CLASS_NAME,
    "getClasseNamesInPackage", "Error occured while l_arrayMethods ",
    exException, ILoggerConstants.SEVERITY_WARN);*/
    }catch(StackOverflowError StackOverflowError) {
    l_sClassName = l_sClassName.substring(l_sClassName.lastIndexOf("."));
    l_sClassName = l_sClassName.substring(1, l_sClassName.length());
    l_alMethodnames = new ArrayList();
    if(l_arrayMethods !=null && l_arrayMethods.length>;0){
    for (int b_MethodsIndex = 0; b_MethodsIndex < l_arrayMethods.length; b_MethodsIndex++) {
    MethodManagementDTO l_objMethods = new MethodManagementDTO();
    String l_sMethodName = l_arrayMethods[b_MethodsIndex].getName();
    l_sPackagename = l_objClass.getPackage().getName();
    if(l_sMethodName.equalsIgnoreCase(p_sServiceName)){
    Class[] l_objParameterTypes = l_arrayMethods[b_MethodsIndex].getParameterTypes();
    int l_iArgumentsNumber = new Integer(l_objParameterTypes.length);
    String l_sSearchKey = l_sPackagename+IServiceAdministratorConstants.SEARCH_KEY_CONCATENATION_SYMBOL+l_sClassName+IServiceAdministratorConstants.SEARCH_KEY_CONCATENATION_SYMBOL+l_sMethodName+IServiceAdministratorConstants.SEARCH_KEY_CONCATENATION_SYMBOL+l_iArgumentsNumber;
    ArrayList<ArgumentDTO> l_alArguments = new ArrayList<ArgumentDTO>();
    ArrayList<String> l_alArgumentsType = new ArrayList<String>();
    for (int argCnt = 0; argCnt < l_objParameterTypes.length; argCnt++) {
    ArgumentDTO l_objArguments = new ArgumentDTO();
    l_objArguments.setArgumentType(l_objParameterTypes[argCnt].getName());
    // set the arguments order.
    l_objArguments.setArgumentOrder(new Integer(argCnt));
    String l_sArgumentName = IServiceAdministratorConstants.ARGUMENT_LABEL+ (argCnt + 1);
    l_objArguments.setArgumentName(l_sArgumentName);
    l_alArguments.add(l_objArguments);
    l_alArgumentsType.add(argCnt,l_objParameterTypes[argCnt].getName());
    String l_sMethodAliasName = constructMethodAliasName(l_alArguments, l_arrayMethods[b_MethodsIndex].getName());
    if(l_alRegisteredServiceDetails.size()>0){
    for(ServiceRegistratrionDTO b_objServiceregistration :l_alRegisteredServiceDetails){
    StringBuffer l_sbSearchKey = new StringBuffer();
    l_sbSearchKey.append(b_objServiceregistration.getComponentname());
    l_sbSearchKey.append(IServiceAdministratorConstants.SEARCH_KEY_CONCATENATION_SYMBOL);
    l_sbSearchKey.append(b_objServiceregistration.getClasstname());
    l_sbSearchKey.append(IServiceAdministratorConstants.SEARCH_KEY_CONCATENATION_SYMBOL);
    l_sbSearchKey.append(b_objServiceregistration.getMethodname());
    l_sbSearchKey.append(IServiceAdministratorConstants.SEARCH_KEY_CONCATENATION_SYMBOL);
    l_sbSearchKey.append(b_objServiceregistration.getArgumentNumber());
    if(l_sbSearchKey.toString().equalsIgnoreCase(l_sSearchKey)){
    l_objMethods.setMethodDescription(checkEmpty(b_objServiceregistration.getDescription()));
    l_objMethods.setStatus(IServiceAdministratorConstants.REGISTERED_STATUS);
    l_objMethods.setAliasName(checkEmpty(b_objServiceregistration.getAliasname()));
    break;
    }else{
    l_objMethods.setAliasName(l_sMethodAliasName);
    l_objMethods.setStatus("");
    l_objMethods.setMethodDescription("");
    }else{
    l_objMethods.setAliasName(l_sMethodAliasName);
    l_objMethods.setStatus("");
    l_objMethods.setMethodDescription("");
    l_objMethods.setArgumentsNumber(l_iArgumentsNumber);
    l_objMethods.setArgumentsList(l_alArgumentsType);
    l_objMethods.setMethodName(l_sMethodName);
    if (l_arrayMethods[b_MethodsIndex].getModifiers() == Modifier.STATIC) {
    l_objMethods.setMethodInvocationType(IServiceAdministratorConstants.METHOD_INVOCATIONTYPE_STATIC);
    } else {
    l_objMethods.setMethodInvocationType(IServiceAdministratorConstants.METHOD_INVOCATIONTYPE_DYNAMIC);
    if (l_arrayMethods[b_MethodsIndex].getReturnType().getName()
    .equals(IServiceAdministratorConstants.METHOD_RETURN_TYPE)) {
    l_objMethods.setReturnType(IServiceAdministratorConstants.METHOD_RETURN_TYPE_LOGIC);
    } else {
    l_objMethods.setReturnType(IServiceAdministratorConstants.METHOD_RETURN_TYPE_NONLOGIC);
    /*l_objMethods.setServiceUuid("0");
    l_objMethods.setHidden("yes");
    l_objMethods.setInfinite("no");*/
    flage =true;
    l_alMethodnames.add(l_objMethods);
    if(l_alMethodnames.size()>0){
    l_mapMethodDetails.put(l_sClassName, l_alMethodnames);
    l_alMethodnames = new ArrayList();
    if(l_mapMethodDetails.size()>0 && flage){
    l_alClassNames.add(l_mapMethodDetails);
    l_mapMethodDetails = new HashMap();
    if(l_alClassNames.size()>0 && flage)
    m_mapPackageInformation.put(l_sPackagename, l_alClassNames);
    l_alClassNames = new ArrayList();
    I need some solution to fix.
    I need implemete the search methodsnames for war files and ear files.
    kindly help to implement on this

    Hi,
    Is it possible to send across the .ear file across as an attachment, so that I can test it out at my end ASAIC and let you know the results.
    Thanks & Regards
    Ganesh .R
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support
    [email protected]

  • What is the best company for simple archive and storage in the cloud.

    Yes, I moved to iCloud a while ago. Yeah, I realize that time is running out for my items stored on my MobileMe iDisk!! Has anyone found a company that offers cloud archive and storage with good encryption? I am really not interested in sharing of any sort. Once I load it up, I will remove it from my computer. I have no intention on downloading these files to any other computer or iOS device. I will also store it locally on an external device as an additional backup.
    Yes, I know about Box, Drop and the other popular ones, but again, I am don’t want sharing to be the selling point.
    Any help much appreciated.

    James,
    If you DoubleClick the Pencil Tool or the Paintbrush Tool you can see the options. I believe you will wish to have both Keep Selected and Edit Selected Paths unticked for what you describe, but you can try all the possible settings and see what they do.
    Help>Illustrator Help can give you some more, and you can make searches of this kind here (shown for Pencil Tool):
    https://www.adobe.com/cfusion/search/index.cfm?cat=support&term=pencil%20tool&loc=en_US&se lf=1&lr=en_US&site=illustrator…

  • Issue: Archiving and Deleting completed Processes  from GP Administration

    Hi
      IWe want to delete the completed processes from every users "Completed Processes' List.  For this ,
    In GP administration-> Archiving and Deleting-> Maintain Process templates->Global Settings,
        We set 1 day for completed tasks.
        So , after one day,will it remove all the completed processes  or only the processes which were completed after setting the Archiving in Global settings?
    How can I delete all the completed Processes?
    Thanks
    Smitha

    Hi Smitha,
    Basically, there are two ways in which you can delete processes in <b>GP administration-> Archiving and Deleting</b>:
    1. automatically, through the <b>Maintain Process Templates</b> option
    2. manually, through the <b>Begin Archiving</b> option - there you have to ignore the predefined settings and set a date before which you want to delete processes.
    You should delete manually all processes up to now that were not deleted by the automatic scheduling. After that, all newly completed processes should be deleted promptly as you have specified in the global settings.
    Make sure that you also perform the appropriate settings for the archive store and the home path.
    You can check the documentation at: <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/be/67a53d874f46c4b9a25e6e7d16a243/frameset.htm">Process Archive Management</a>.
    Regards, Petja

  • Adding archived-real-path-enabled caused Cannot obtain XAConnection

    I am migrating a web application from Tomcat 6.x to Weblogic 10.3.5. Because some features rely on reading the real path of the resources, and the returnRealPath() returns NULL on weblogic, so I added <wls:show-archived-real-path-enabled>true</wls:show-archived-real-path-enabled> in the application's weblogic.xml and tried to re-deploy. The deployment failed with following stack trace. However, before I added this entry into weblogic.xml , the deployment is successful.
    <Jun 1, 2012 4:55:35 PM EDT> <Warning> <netuix> <BEA-423420> <Redirect is execut
    ed in begin or refresh action. Redirect url is /console/console.portal?_nfpb=tru
    e&_pageLabel=JdbcDatasourcesJDBCDataSourceMonitorTestingPage.>
    Setting up initial data source (DataSource)ic.lookup('jdbc/nimscastds');
    calling initializeCurrentConnection dataSource.getConnection()
    Returned from init. Now should get dataSource.getConnection()
    Got dataSource.getConnection()
    java.sql.SQLException: Internal error: Cannot obtain XAConnection weblogic.commo
    n.resourcepool.ResourceLimitException: No resources currently available in pool
    NIMSCastDS to allocate to applications, please increase the size of the pool and
    retry..
    at weblogic.common.resourcepool.ResourcePoolImpl.reserveResourceInternal
    (ResourcePoolImpl.java:577)
    at weblogic.common.resourcepool.ResourcePoolImpl.reserveResource(Resourc
    ePoolImpl.java:342)
    at weblogic.common.resourcepool.ResourcePoolImpl.reserveResource(Resourc
    ePoolImpl.java:329)
    at weblogic.jdbc.common.internal.ConnectionPool.reserve(ConnectionPool.j
    ava:417)
    at weblogic.jdbc.common.internal.ConnectionPool.reserve(ConnectionPool.j
    ava:324)
    at weblogic.jdbc.common.internal.ConnectionPoolManager.reserve(Connectio
    nPoolManager.java:94)
    at weblogic.jdbc.common.internal.ConnectionPoolManager.reserve(Connectio
    nPoolManager.java:63)
    at weblogic.jdbc.jta.DataSource.getXAConnectionFromPool(DataSource.java:
    1677)
    at weblogic.jdbc.jta.DataSource.refreshXAConnAndEnlist(DataSource.java:1
    475)
    at weblogic.jdbc.jta.DataSource.getConnection(DataSource.java:446)
    at weblogic.jdbc.jta.DataSource.connect(DataSource.java:403)
    at weblogic.jdbc.common.internal.RmiDataSource.getConnection(RmiDataSour
    ce.java:364)
    at gov.fema.web.nimcast.PoolManager.currentConnection(PoolManager.java:1
    78)
    at gov.fema.web.nimcast.dao.BaseDao.select(BaseDao.java:106)
    at gov.fema.web.nimcast.dao.BaseDao.select(BaseDao.java:94)
    at gov.fema.web.nimcast.dao.MetricsOptionDao.cacheAll(MetricsOptionDao.j
    ava:138)
    at gov.fema.web.nimcast.dao.MetricsSectionDao.cacheMetricsObjects(Metric
    sSectionDao.java:259)
    at gov.fema.web.nimcast.InitServlet.initNimscast(InitServlet.java:112)
    at gov.fema.web.nimcast.InitServlet.init(InitServlet.java:46)
    at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(St
    ubSecurityHelper.java:283)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
    120)
    at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecuri
    tyHelper.java:64)
    at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubL
    ifecycleHelper.java:58)
    at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHel
    per.java:48)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI
    mpl.java:539)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppS
    ervletContext.java:1985)
    at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(
    WebAppServletContext.java:1959)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAp
    pServletContext.java:1878)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletCon
    text.java:3153)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.jav
    a:1508)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleSta
    teDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStat
    eDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedMod
    uleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(Module
    ListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleSta
    teDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStat
    eDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartMod
    ulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.ja
    va:636)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.
    java:205)
    at weblogic.application.internal.SingleModuleDeployment.activate(SingleM
    oduleDeployment.java:43)
    at weblogic.application.internal.DeploymentStateChecker.activate(Deploym
    entStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(Ap
    pContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.ac
    tivate(AbstractOperation.java:569)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.ac
    tivateDeployment(ActivateOperation.java:150)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.do
    Commit(ActivateOperation.java:116)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.co
    mmit(AbstractOperation.java:323)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploym
    entCommit(DeploymentManager.java:844)
    at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeplo
    ymentList(DeploymentManager.java:1253)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(
    DeploymentManager.java:440)
    at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.com
    mit(DeploymentServiceDispatcher.java:163)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallb
    ackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallb
    ackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallb
    ackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTunin
    gWorkManagerImpl.java:528)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    at weblogic.jdbc.jta.DataSource.refreshXAConnAndEnlist(DataSource.java:1
    484)
    at weblogic.jdbc.jta.DataSource.getConnection(DataSource.java:446)
    at weblogic.jdbc.jta.DataSource.connect(DataSource.java:403)
    at weblogic.jdbc.common.internal.RmiDataSource.getConnection(RmiDataSour
    ce.java:364)
    at gov.fema.web.nimcast.PoolManager.currentConnection(PoolManager.java:1
    78)
    at gov.fema.web.nimcast.dao.BaseDao.select(BaseDao.java:106)
    at gov.fema.web.nimcast.dao.BaseDao.select(BaseDao.java:94)
    at gov.fema.web.nimcast.dao.MetricsOptionDao.cacheAll(MetricsOptionDao.j
    ava:138)
    at gov.fema.web.nimcast.dao.MetricsSectionDao.cacheMetricsObjects(Metric
    sSectionDao.java:259)
    at gov.fema.web.nimcast.InitServlet.initNimscast(InitServlet.java:112)
    at gov.fema.web.nimcast.InitServlet.init(InitServlet.java:46)
    at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(St
    ubSecurityHelper.java:283)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
    120)
    at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecuri
    tyHelper.java:64)
    at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubL
    ifecycleHelper.java:58)
    at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHel
    per.java:48)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI
    mpl.java:539)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppS
    ervletContext.java:1985)
    at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(
    WebAppServletContext.java:1959)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAp
    pServletContext.java:1878)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletCon
    text.java:3153)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.jav
    a:1508)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleSta
    teDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStat
    eDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedMod
    uleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(Module
    ListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleSta
    teDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStat
    eDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartMod
    ulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.ja
    va:636)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.
    java:205)
    at weblogic.application.internal.SingleModuleDeployment.activate(SingleM
    oduleDeployment.java:43)
    at weblogic.application.internal.DeploymentStateChecker.activate(Deploym
    entStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(Ap
    pContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.ac
    tivate(AbstractOperation.java:569)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.ac
    tivateDeployment(ActivateOperation.java:150)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.do
    Commit(ActivateOperation.java:116)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.co
    mmit(AbstractOperation.java:323)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploym
    entCommit(DeploymentManager.java:844)
    at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeplo
    ymentList(DeploymentManager.java:1253)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(
    DeploymentManager.java:440)
    at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.com
    mit(DeploymentServiceDispatcher.java:163)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallb
    ackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallb
    ackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallb
    ackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTunin
    gWorkManagerImpl.java:528)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    I'm still not convinced that archived-real-path-enabled has something to do with the issue.
    938276 wrote:
    at gov.fema.web.nimcast.PoolManager.currentConnection(PoolManager.java:1
    78)
    at gov.fema.web.nimcast.dao.BaseDao.select(BaseDao.java:106)
    at gov.fema.web.nimcast.dao.BaseDao.select(BaseDao.java:94)
    at gov.fema.web.nimcast.dao.MetricsOptionDao.cacheAll(MetricsOptionDao.j
    ava:138)
    at gov.fema.web.nimcast.dao.MetricsSectionDao.cacheMetricsObjects(Metric
    sSectionDao.java:259)
    at gov.fema.web.nimcast.InitServlet.initNimscast(InitServlet.java:112)
    at gov.fema.web.nimcast.InitServlet.init(InitServlet.java:46)Do you have access to this code? I would look into this and search for a possible bug that wouldn't manifest on Tomcat but does in Weblogic... Maybe connections being created but not released... I would suspect on -- PoolManager.java:178 and MetricsOptionDao.java:138 ...
    Or maybe the connection expiration timeout is lower on Tomcat than on Weblogic...
    Hope that helps.
    Cheers,
    Vlad
    If you think this is helpful, please consider giving points - it is good etiquette to reward an answerer points (5 - helpful; 10 - correct) for their post if they answer your question.

  • War file and deployment

    Hi,
    im new to j2ee and there are some qns i hope you can help me with.
    1. why is there a need to put my jsp and servlets in a .war file?
    2. where do i do my placements of ejb and jsp into the respective jar and war files? in my web server?
    thanks a lot!

    1. why is there a need to put my jsp and servlets in a .war file?Answer- As technology evolved over ther period of time, it became more and more evident that the smaller and easier the things the better it is. WAR format is a ZIP format created to deploy your web application data. Hence called WAR(Web Application Archive). It usually contains your Images, JSP pages, and servlets and other related helper files needed by your web application. Java being a cross platform technology, it becomes easy and standardized to distribute your application(web) to other vendors/teams/people if one makes use of a WAR file. Once dropped in the root directory of the App server(i mean the proper webapp directory) the application server is smart enuf to load your WAR file and create respective directory structure.
    2. where do i do my placements of ejb and jsp into the respective jar and war files? in my web server?Answer:- When you add the EJB files and distribute it along with your WAR file, its called EAR(Enterprise Archive) which is WAR+ EJB jar files. As for the JSP's they form a part of the WAR and should be bundled up while creating the WAR file.
    Hope this answers the question.

  • How can I do an archive and install

    I have just put my new 1TB HDD in my macbook pro and I cannot enable FV2, something to do with a recovery partition. I have heard that a reinstall will work, so how can I do an archive and install on my MacBook pro?
    Mid-2012, Mountain Lion.
    Thank you.

    A&I went away with Snow Leopard. Reinstalling it or later OSs overwrites all OS components and basic Apple apps. Updating or upgrading to solve problems is the wrong approach, You need to fix the current issues before embarking on that path. As for speeding up things, see:
    Mac Maintenance Quick Assist,
    Mac OS X speed FAQ,
    Speeding up Macs,
    Macintosh OS X Routine Maintenance,
    Essential Mac Maintenance: Get set up,
    Essential Mac Maintenance: Rev up your routines,
    Maintaining OS X, 
    Five Mac maintenance myths
    How to Speed up Macs, and
    Myths of required versus not required maintenance for Mac OS X for information.

  • Help--admin password not working after archive and reinstall

    I reinstalled leopard and did an archive and install...when it restarts it goes to the logon screen...and asks for my password... and it doesnt work. what should i do? i have all the data i need and also i have a time machine back ups.
    i dont want to go through a another hour or 2 re-installing leopard. im typing this off my boot volume on my external.
    what do i do about the password?

    use this [link|http://docs.info.apple.com/article.html?path=Mac/10.5/en/11627.html].

  • Difference between .war file and .ear file

    Hi,
    what is the difference between .war file and .ear file ?
    Please let me know with appropriate explanation.

    War file means web application archive. It is archived file having a collection of JSP, servlets and static pages that together costitute a web application. It contains one WEB-INF directory which will have a file named web.xml which defines the structure of the web application.
    On the other side EAR file is Enterprise application archive. It is file having packaged content of one or more modules into a single archive so that the deployment of all the modules can be done simultaneously on the application server. It also contains XML files called deployment descriptors which gives the details of the deployment method. This deployment descriptor will be present in the folder META-INF folder.
    So the main difference betwwen the two is that Ear file is having collection of various modules to be deployed on the application server while the WAR file is used to deploy the web applications.

Maybe you are looking for

  • Multiple iCloud accounts but can't change descriptions

    I have two iCloud accounts, and when I look at my Address Book and iCal it has both iClouds listed under their headers as only iCloud.   I can not call one Jenny's icloud and one Lou's icloud.   This becomes very confusing.  The wierd thing is my ipa

  • "recording stopped because the format of the source media changed" Error

    I am trying to import video from my digital camera via firewire to quicktime... the New movie recording screen appears and works, but after a random amount of time (normally just around 4 minutes..) the recording stops and the message appears.. "reco

  • No RFC authorization for function group RFC2

    When I am trying to import RFCs/IDOCs from ECC to XI in the integration repository, I am getting this error: User has no RFC authorization for function group RFC2. Any input is appreciated. Thanks, tnv

  • OBA1 exchange rate maintenance for the new accounts

    Dear All, The following three bank G/L accounts 1833280, 1833285 and 1833288 have been created in India Charts of accounts IN01 and extended to company AE10. The G/L accounts can now be used in AE10. Now tell me how can I make OBA1 exchange rate main

  • Cineware Performance.

    I created a very simple low poly animation in C4D R12 that I loaded in AE CC.  It's got simple daylight lighting with no extra render effects on it.  In AE CC it's rendering super slow.  As this is the first time I'm using Cineware, I'm sure there's