Missing FieldPoint resources on target PC ?

I've created a simple datalogger program under LV 8.01,
compiled to an executable and transfered it to the target
PC (Win-2000), which also have installed LV_RunTimeEngine 8.01,
Max 4 and FieldPoint 5.0. Max have no problem accessing
the FieldPoint modules (cFP 1804 + modules) on the target PC.
On my programming-PC (Win-XP), the executable work Ok.
But when I run the executable on the target PC, it does not
communicate Ok with the FieldPoint system. And when I try
to change/check the FP configuration on the LabVIEW program
through the FieldPoint IO Point controller, a small search
window is visible for a second before it disappear. The FieldPoint
Device selection window does not open at all for me to browse
through the FP resources.
When I manage to stop the strange search window, it says something about looking for
C:\Program Files\National Instruments\Shared\FieldPoint\LabVIEW\8.0\
FPLVMgr.rsc\rtd_fp_rtd_Set Cursor (Icon Pict).vi
and "Some subVIs or controls have not been loaded yet.
Do you want to open rtd_getdevice.vi without them."
I have deleted the iak-file and recreated it on the target PC without any improvements.
It seems to me that the resources installed on the target PC is not complete
or something. The rsc file mentioned is present, so it is not that.
Any idea, anybody ?
Martin

I've created a simple datalogger program under LV 8.01,
compiled to an executable and transfered it to the target
PC (Win-2000), which also have installed LV_RunTimeEngine 8.01,
Max 4 and FieldPoint 5.0. Max have no problem accessing
the FieldPoint modules (cFP 1804 + modules) on the target PC.
On my programming-PC (Win-XP), the executable work Ok.
But when I run the executable on the target PC, it does not
communicate Ok with the FieldPoint system. And when I try
to change/check the FP configuration on the LabVIEW program
through the FieldPoint IO Point controller, a small search
window is visible for a second before it disappear. The FieldPoint
Device selection window does not open at all for me to browse
through the FP resources.
When I manage to stop the strange search window, it says something about looking for
C:\Program Files\National Instruments\Shared\FieldPoint\LabVIEW\8.0\
FPLVMgr.rsc\rtd_fp_rtd_Set Cursor (Icon Pict).vi
and "Some subVIs or controls have not been loaded yet.
Do you want to open rtd_getdevice.vi without them."
I have deleted the iak-file and recreated it on the target PC without any improvements.
It seems to me that the resources installed on the target PC is not complete
or something. The rsc file mentioned is present, so it is not that.
Any idea, anybody ?
Martin

Similar Messages

  • How to replicate missing ddl / dml to target after intial loading

    Hi GG Experts,
    I m new to GG, my test setup is like Oracle->Oracle (same version, 10.2.0.4) Replication. I did initial loading between source & target. There were some problem with my REPLICAT Process was getting abended, hence when i fired any dml/ddl are not transferred to target. Then, I put HANDLECOLLISIONS, APPLYNOOPUPDATES in REPLICAT Process, after which my replication got started but from that moment.
    Now my question, how should I replicate the missing ddl/dml to target db which I fired on source db after initial loading and before my REPLICAT process successfully started.
    is there any special consideration do I need to take for ddl replication.
    Your help would be highly appreciated.
    Regards,
    Manish

    Hi,
    As both the source and target tables are out of sync currently, I would suggest you to re-synchronize the target using below procedure and restart the
    online replication back again.
    The export could be performed directly on the production system by using the FLASHBACK_SCN option. Then the FLASHBACK_SCN used for the export would then be the CSN value used for the Replicat. Note that you have to take the entire export using the same value for FLASHBACK_SCN for your entire export, even if you use multiple export files (e.g. you run multiple sessions in parallel, or in the case of data pump export, you use Oracle's parallelism).
    Below are sample steps that you could use to instantiate an Oracle target system:
    a.Switch the database to archivelog mode:
    SQL> shutdown immediate
    SQL> startup mount
    SQL> alter database archivelog;
    SQL> alter database open;
    b. Enable minimal supplemental logging:
    SQL> alter database add supplemental log data;
    c. Prepare the database to support ddl replication
    --Turn off recyclebin for the database . . .
    SQL> alter system set recyclebin=off scope=both;
    d.Create schema for ddl support replication & create a OGG user and provide necesaary user privileges
    GGSCI> edit params ./GLOBAL
    GGSCHEMA ogg
    e.Run scripts for creating all necessary objects for support ddl replication:
    SQL> @$ogg/marker_setup.sql
    SQL> @$ogg/ddl_setup.sql
    SQL> @$ogg/role_setup.sql
    SQL> grant GGS_GGSUSER_ROLE to ogg;
    SQL> @$ogg/ddl_enable.sql
    GGSCI> dblogin userid ogg password ogg@321!
    GGSCI> add trandata schema1.*
    f. Create the extract group on the source side:
    GGSCI>ADD EXTRACT EXT1, TRANLOG, BEGIN NOW, THREADS 2
    GGSCI>ADD EXTTRAIL ./dirdat/P1, EXTRACT EXT1, MEGABYTES 100
    GGSCI> edit params EXT1
    EXTRACT EXT1
    SETENV (ORACLE_HOME = "/oracle/orabin/product/10.2.4")
    SETENV (ORACLE_SID = "prd1")
    SETENV (NLS_LANG = "AMERICAN_AMERICA.WE8ISO8859P1")
    USERID ogg@prd1, PASSWORD ogg@321!
    TRANLOGOPTIONS ASMUSER sys@+ASM1, ASMPASSWORD asm321
    RMTHOST dr, MGRPORT 7810
    RMTTRAIL ./dirdat/P1
    DISCARDFILE ./dirrpt/EXT1.DSC, PURGE, MEGABYTES 100
    DDL INCLUDE MAPPED OBJNAME "schema1.*"
    DDLOPTIONS ADDTRANDATA RETRYOP RETRYDELAY 60 MAXRETRIES 10, REPORT
    TABLE schema1.*;
    g.Create replicat group on target:
    GGSCI> dblogin userid ogg password ogg@321!
    GGSCI> add checkpointtable ogg.checkpoint
    GGSCI>ADD REPLICAT REP1, RMTTRAIL ./dirdat/P1, checkpointtable ogg.checkpoint
    GGSCI> edit params REP1
    REPLICAT REP1
    SETENV (ORACLE_HOME = “/oracle/orabin/product/10.2.4”)
    SETENV (ORACLE_SID = “dr”)
    SETENV (NLS_LANG = “AMERICAN_AMERICA.WE8ISO8859P1”)
    ASSUMETARGETDEFS
    USERID ogg@DR, PASSWORD ogg@321!
    DISCARDFILE ./dirrpt/REP1.DSC, append, megabytes 100
    DDL INCLUDE MAPPED OBJNAME "schema1.*"
    MAP schema1.*, TARGET schema1.*;
    h.Create a database directory:
    SQLPLUS> create directory dumpdir as '<some directory>' ;
    i.Get the current SCN on the source database:
    SQLPLUS> select current_scn from v$database ;
    28318029
    j. Run the export using the flashback SCN you obtained in the previous step. The following example shows running the expdp utility at a Degree Of Parallelism (DOP) of 4. If you have sufficient system resources (CPU,memory and IO) then running at a higher DOP will decrease the amount of time it takes to take the export (up to 4x for a DOP of 4). Note that expdp uses Oracle Database parallel execution settings (e.g.parallel_max_servers) which have to be set appropriately in order to take advantage of parallelism. Other processes running in parallel may be competing for those resources. See the Oracle Documentation for more details.
    expdp directory=dumpdir full=y parallel=4 dumpfile=ora102_%u.dmp flashback_scn=28318029
    Username: sys as sysdba
    Password:
    Note: The export log needs to be checked for any errors.
    h.Start an import using impdp to the target database when step 7 is complete.
    i. GGSCI> start replicat <rename>, aftercsn <value returned from earlier step>
    By following above procedure the resynchronisation of source and target can be done and the online change synchronuzation can be started without any data integrity issues. Hope this information helps.
    Thanks & Regards
    SK

  • One user: "Safari is missing important resources and should be reinstalled"

    I have just installed the Safari 3 Beta and when I open the browser it say:
    "Safari is missing important resources and should be reinstalled."
    And its on all sites I try to visit.
    I have tried to (un)install it 3 times and same problem.
    And the scary: Its only on one user. (There not are administrator)
    I have the (nearly) same problem when I'd installed FireFox 2.
    I solved the problem by create a new user, but I really won't do that again. (Have a lot of stuff to move)
    - Josso
    PS: And sorry for my bad english, I'm a boy from Denmark - Europe.
    Windows Vista Home Premium   Windows Vista  

    I have marked my message as "Solved" cause its now solved, but I get a new problem:
    Safari can’t open the page “http://www.apple.com/startpage”. The error was: “unknown error” ((null):10022) Please choose Report Bugs to Apple from the Help menu, note the error number, and describe what you did before you saw this message.
    I think I saw the problem in another thread so I'll searching.
    Thanks for help. =D

  • Safari on Leopard Crashes:  "Safari is missing important resources..."

    I installed Leopard, all was working, today I get:
    "Safari is missing important resources and should be reinstalled."
    Outside of the normal install, I installed all the optional stuff. I don't know if that contrbutes to the failure or not. The browser starts, works on some pages, then on others dies.
    Thanks for any help.

    need some assistance to resolve this challenge, Apple support keeps stating that I have to do an archive and install or a clean install for this situation, I find it appalling that since I have install Leopard, apple support response to any situation such as crashes, their answer is to do a clean install because the problem is to WIDE, I had live dictionary that was in manager input that didn't respond so I deleted it and then after a reboot SAFARI kept crashing it has been thsi way for 3days, any help would be truly well appreciated, I have done 3 clean install in one week, I am no expert, however there ought a be a simple resolve to this???
    Process: Safari [65757]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.0.4 (5523.10)
    Build Info: WebBrowser-55231000~1
    Code Type: X86 (Native)
    Parent Process: launchd [21538]
    Date/Time: 2007-11-01 08:03:03.266 -0700
    OS Version: Mac OS X 10.5 (9A581)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000020
    Crashed Thread: 0
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x918586e8 objc_msgSend + 24
    1 com.apple.AppKit 0x94ded1a1 -[NSInputManager _loadBundle] + 181
    2 com.apple.AppKit 0x94dec912 -[NSInputManager initWithName:host:] + 2639
    3 com.apple.AppKit 0x9494658c +[NSInputManager initialize] + 1134
    4 libobjc.A.dylib 0x91849b18 classinitialize + 367
    5 libobjc.A.dylib 0x91848499 classlookupMethodAndLoadCache + 81
    6 libobjc.A.dylib 0x91858736 objc_msgSend + 102
    7 com.apple.AppKit 0x94945409 -[NSApplication run] + 83
    8 com.apple.AppKit 0x949129ba NSApplicationMain + 574
    9 com.apple.Safari 0x00002876 0x1000 + 6262
    Thread 1:
    0 libSystem.B.dylib 0x9386bace _semwaitsignal + 10
    1 libSystem.B.dylib 0x93895ced pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x952c55af WebCore::IconDatabase::syncThreadMainLoop() + 239
    3 com.apple.WebCore 0x952c0ba5 WebCore::IconDatabase::iconDatabaseSyncThread() + 181
    4 libSystem.B.dylib 0x93895075 pthreadstart + 321
    5 libSystem.B.dylib 0x93894f32 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x938648e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x9386c0dc mach_msg + 72
    2 com.apple.CoreFoundation 0x935130fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x93513d38 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x922aa7be CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x93895075 pthreadstart + 321
    6 libSystem.B.dylib 0x93894f32 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xa01de0a0 ebx: 0x00400bc8 ecx: 0x918596ac edx: 0x00000000
    edi: 0x0023ee30 esi: 0x00407740 ebp: 0xbffff748 esp: 0xbffff6e8
    ss: 0x0000001f efl: 0x00010286 eip: 0x918586e8 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000020
    Binary Images:
    0x1000 - 0x12efef com.apple.Safari 3.0.4 (5523.10) <c10a33847b3bae1843862f299f82c6ab> /Applications/Safari.app/Contents/MacOS/Safari
    0x176000 - 0x184ff8 SyndicationUI ??? (???) <b889956deee65d04d3540e0b71ef93d9> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x400000 - 0x405fff +com.mac.jrc.SafariPlus 1.5.1 (20070620) /Library/InputManagers/SafariPlus/SafariPlus.bundle/Contents/MacOS/SafariPlus
    0x5c4000 - 0x6aaff7 com.apple.RawCamera.bundle 2.0 (2.0) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x8fe00000 - 0x8fe2d883 dyld 95.3 (???) <81592e798780564b5d46b988f7ee1a6a> /usr/lib/dyld
    0x90003000 - 0x90005fff com.apple.CrashReporterSupport 10.5.0 (156) <3088b785b10d03504ed02f3fee5d3aab> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90006000 - 0x90048fef com.apple.NavigationServices 3.5 (160) <26d03493eac3e290fd1d0fd5ff311863> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90049000 - 0x9004bff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9004c000 - 0x9004cff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x900f8000 - 0x90155ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x903fb000 - 0x90435ff7 com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90436000 - 0x90902ffe libGLProgrammability.dylib ??? (???) <ebd2e6c99ec2662b4bdaa3212ab94aed> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90903000 - 0x9092dfef libauto.dylib ??? (???) <d468bc4a8a69343f1748c293db1b57fb> /usr/lib/libauto.dylib
    0x9092e000 - 0x90964fef libtidy.A.dylib ??? (???) <e4d3e7399fb83d7f145f9b4ec8196242> /usr/lib/libtidy.A.dylib
    0x909d5000 - 0x90a25ff7 com.apple.HIServices 1.6.0 (???) <d74aa73e4cfd30a08fb169198a8d2539> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90a26000 - 0x90af1fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x90af2000 - 0x90ba1fff com.apple.DesktopServices 1.4.2 (1.4.2) <ec69c4072b0df6f52ef3f48fadf4c4b8> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90be7000 - 0x90c79ff3 com.apple.ApplicationServices.ATS 3.0 (???) <fb5f572243dbc370a0ea5efc8e81ae11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90c7b000 - 0x90d5fffb com.apple.CoreData 100 (185) <a4e63784275e25e62f57e75e0af0b94d> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90e72000 - 0x90f96fe3 com.apple.audio.toolbox.AudioToolbox 1.5 (1.5) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90f98000 - 0x90fbcfeb libssl.0.9.7.dylib ??? (???) <acee7fc534674498dcac211318aa23e8> /usr/lib/libssl.0.9.7.dylib
    0x90fbd000 - 0x91019ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9101a000 - 0x913affef com.apple.QuartzCore 1.5.0 (1.5.0) <363cc63c669523cc3fec577949bb1308> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x913bd000 - 0x913bdff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x913be000 - 0x91465ff7 com.apple.QD 3.11.49 (???) <ca01e72078d30d6b183aa5224344608b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91466000 - 0x91476ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <cbeb17ab39f28351fe2ab5b82bf465bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91477000 - 0x914c1fe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x914c2000 - 0x91555fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x91575000 - 0x915cefff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x915dd000 - 0x91642ffb com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x91643000 - 0x9180cfef com.apple.security 5.0 (31122) <0759867b3944f1e54ce3d9078bbdb867> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9180d000 - 0x91843fff com.apple.SystemConfiguration 1.9.0 (1.9.0) <7919d9588c3b0d556646e555b7193f1f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91844000 - 0x91923fff libobjc.A.dylib ??? (???) <5eda47fec2d0e7853b3506aa1fd2dafa> /usr/lib/libobjc.A.dylib
    0x91924000 - 0x91924ffd com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x91925000 - 0x91952feb libvDSP.dylib ??? (???) <a26683d121ee0f96df9a9d0bfca36049> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91953000 - 0x91a8bff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x91a8c000 - 0x91b06ff8 com.apple.print.framework.PrintCore 5.5 (245) <9441d178f4b430cf92b67bf346646693> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91b07000 - 0x91c85fff com.apple.AddressBook.framework 4.1 (687) <3f005092d08e963eabe8f7f66c09cc1e> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x91c86000 - 0x91c95ffe com.apple.DSObjCWrappers.Framework 1.2 (1.2) <f5b58d1d3a855a63d493ccbec417a1e9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x91c96000 - 0x91cc8fff com.apple.LDAPFramework 1.4.3 (106) <3a5c9df6032143cd6bc2658a9d328d8e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x91ce1000 - 0x91ce1fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91ce2000 - 0x91d1bffe com.apple.securityfoundation 3.0 (32585) <cc88aa94d417917bdf35035819ccf4b4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x91d1c000 - 0x91da8ff7 com.apple.LaunchServices 283 (283) <30168051779817916e04eb8e85fcc17f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91da9000 - 0x91eeeff7 com.apple.ImageIO.framework 2.0.0 (2.0.0) <154d4d8cda2bd99518cbabc9f2d69833> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92280000 - 0x9229eff3 com.apple.DirectoryService.Framework 3.5 (3.5) <899d8c9ee31b004a6ff73dab88982b1a> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9229f000 - 0x92316fe3 com.apple.CFNetwork 217 (219) <f3c16ae4b2faeb134957ee96d90dc5ca> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9231f000 - 0x9235efef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9235f000 - 0x9236bff5 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9236c000 - 0x92422fe3 com.apple.CoreServices.OSServices 209 (209) <89296b20d2db6c180eee073b699e3484> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x92423000 - 0x92441fff libresolv.9.dylib ??? (???) <54e6a08c2f108bdf5916fb483d51961b> /usr/lib/libresolv.9.dylib
    0x92442000 - 0x92748fff com.apple.HIToolbox 1.5.0 (???) <1b872a7151ee3f80c9c736a3e46d00d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92749000 - 0x9282aff7 libxml2.2.dylib ??? (???) <450ec38b57fb46013847cce851001a2f> /usr/lib/libxml2.2.dylib
    0x9282b000 - 0x92846ffb libPng.dylib ??? (???) <b6abcac36ec7654ff3e1cfa786b0117b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92853000 - 0x92c11fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92d68000 - 0x92e18fff edu.mit.Kerberos 6.0.11 (6.0.11) <33c25789baedcd70a7e24881775dd9ad> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92e19000 - 0x92e73ff7 com.apple.CoreText 2.0.0 (???) <7fa39cd5bc847615ec02e7c7a37c0508> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x92e74000 - 0x92efbff7 libsqlite3.0.dylib ??? (???) <273efcb717e89c21207c851d7d33fda4> /usr/lib/libsqlite3.0.dylib
    0x92efc000 - 0x92efdffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x92f43000 - 0x92fccfff com.apple.framework.IOKit 1.5.0 (???) <5d9b85c55183f9732eb9efc38d18ba53> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92fcd000 - 0x92fcdffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x92fce000 - 0x93077fff com.apple.JavaScriptCore 5523.10.3 (5523.10.3) <9e6719a7a0740f5c224099a7b853e45b> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93078000 - 0x9312affb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x93160000 - 0x933d9fe7 com.apple.Foundation 6.5 (677) <d182b2cc21817f7e5b6c7a1b3f421a98> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9342f000 - 0x93434fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93488000 - 0x93492feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93493000 - 0x93496fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93497000 - 0x9349effe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9349f000 - 0x934a0fef libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x934a1000 - 0x935d3fe7 com.apple.CoreFoundation 6.5 (476) <8bfebc0dbad6fc33bea0fa00a1b9ec37> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x935d4000 - 0x935d6fff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x935d7000 - 0x9364bfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9372c000 - 0x93733fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x93734000 - 0x9373afff com.apple.print.framework.Print 218 (220) <c35172175abbe554ddadd9b6401351fa> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93747000 - 0x93784ff7 libGLImage.dylib ??? (???) <2d5ec9fc8b04b7b33f1d40ec83d86bf3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x937d5000 - 0x937ddfff com.apple.DiskArbitration 2.2 (2.2) <1551b2af557fdf6f368f93e093933852> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x937de000 - 0x937fdffa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x93827000 - 0x9383ffff com.apple.openscripting 1.2.6 (???) <b8e553df643f2aec68fa968b3b459b2b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93864000 - 0x939befe3 libSystem.B.dylib ??? (???) <8ecc83dc0399be3946f7a46e88cf4bbb> /usr/lib/libSystem.B.dylib
    0x93a7b000 - 0x93a7bffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93a7c000 - 0x93a8bfff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x93a8c000 - 0x93aa2fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93aa3000 - 0x93aa3ffd com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x948a2000 - 0x948d1fe3 com.apple.AE 402 (402) <994ba8e884aefe7bf1fc5987df099e7b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x948d2000 - 0x948e0ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x948e7000 - 0x9490bfff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x9490c000 - 0x95106fef com.apple.AppKit 6.5 (949) <f8d0f6d0bb5ac092f48f42ca684bdb54> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95107000 - 0x95107ffd com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95108000 - 0x9511cff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9511d000 - 0x951d8fe3 com.apple.WebKit 5523.10.3 (5523.10.3) <2741777559b3948d520a4d126330dbce> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x951d9000 - 0x9521efef com.apple.Metadata 10.5.0 (398) <4fd74fba0062c2e08ec4b1c10b40ff63> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x952be000 - 0x957d3fff com.apple.WebCore 5523.10.3 (5523.10.3) <89179acba0e5ae2163d4a75ad460cbdb> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9590b000 - 0x9591bfff com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <4ffef145fad3d4d787e0c33eab26b336> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x959a7000 - 0x95a23feb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95a24000 - 0x95a3afe7 com.apple.CoreVideo 1.5.0 (1.5.0) <bcc3dd0978bb626c26378227740e1e80> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95b01000 - 0x95b0afff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95b0b000 - 0x95bd2ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x95bd3000 - 0x95bfafff libcups.2.dylib ??? (???) <6b61eb99e6f5dd2d66cd224e9f82427d> /usr/lib/libcups.2.dylib
    0x95bfb000 - 0x95cfcff7 com.apple.PubSub 1.0.0 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x95d05000 - 0x95d05ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x95d06000 - 0x96116fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96117000 - 0x9611cfff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9611d000 - 0x9619cff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9619d000 - 0x96476fe7 com.apple.CoreServices.CarbonCore 783 (783) <8370e664eeb25edc98d5c1f5405b06ae> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96633000 - 0x96637fff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96638000 - 0x96ccffef com.apple.CoreGraphics 1.351.0 (???) <7a6f399039eed6dbe845c169f7d21a70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96cd0000 - 0x96cdcfe7 com.apple.opengl 1.5.4 (1.5.4) <98bccaa83ca5e7101e821b4569a6a2ee> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • Safari is missing important resources and should be reinstalled

    I'm getting the following message in Safari with a "clean" install of Leopard.
    Safari is missing important resources and should be reinstalled.
    I can get to some pages, but not others. Any idea why I'd be getting this? Google searches report this as being seen in Safari for Windows and non-US instances, I'm definitely in the US and not using it in Windows.

    I am experiencing the same problems on my old iMac. (G4 longneck). It will not open any browser window and asks for a clean install. The problem is how to install? Go to the product page on the Apple site and there is only a download for the Windows version.
    Very frustrating.

  • Logging configuration is missing or invalid for target

    Hi,
    I am getting this error while starting the SOA Server
    HTTP to server: '[2001:0:cf2e:3096:30be:1076:3f57:fefc]', port: '7001'
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:314)
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:404)
    at weblogic.net.http.HttpClient.New(HttpClient.java:240)
    at weblogic.net.http.HttpURLConnection.connect(HttpURLConnection.java:17
    2)
    at weblogic.deploy.service.datatransferhandlers.HttpDataTransferHandler.
    getDataAsStream(HttpDataTransferHandler.java:75)
    Truncated. see log file for complete stacktrace
    >
    java.net.ConnectException: Tried all: '1' addresses, but could not connect over
    HTTP to server: '[2001:0:cf2e:3096:30be:1076:3f57:fefc]', port: '7001'
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:314)
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:404)
    at weblogic.net.http.HttpClient.New(HttpClient.java:240)
    at weblogic.net.http.HttpURLConnection.connect(HttpURLConnection.java:17
    2)
    at weblogic.deploy.service.datatransferhandlers.HttpDataTransferHandler.
    getDataAsStream(HttpDataTransferHandler.java:75)
    at weblogic.deploy.service.datatransferhandlers.DataHandlerManager$Remot
    eDataTransferHandler.getDataAsStream(DataHandlerManager.java:153)
    at weblogic.deploy.internal.targetserver.datamanagement.AppDataUpdate.do
    Download(AppDataUpdate.java:39)
    at weblogic.deploy.internal.targetserver.datamanagement.DataUpdate.downl
    oad(DataUpdate.java:56)
    at weblogic.deploy.internal.targetserver.datamanagement.Data.prepareData
    Update(Data.java:97)
    at weblogic.deploy.internal.targetserver.BasicDeployment.prepareDataUpda
    te(BasicDeployment.java:682)
    at weblogic.deploy.internal.targetserver.BasicDeployment.stageFilesForSt
    atic(BasicDeployment.java:725)
    at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeploy
    ment.java:104)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(Dep
    loymentAdapter.java:39)
    at weblogic.management.deploy.internal.DeploymentAdapter.prepare(Deploym
    entAdapter.java:187)
    at weblogic.management.deploy.internal.AppTransition$1.transitionApp(App
    Transition.java:21)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionA
    pps(ConfiguredDeployments.java:233)
    at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(Con
    figuredDeployments.java:165)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(Conf
    iguredDeployments.java:122)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(De
    ploymentServerService.java:173)
    at weblogic.management.deploy.internal.DeploymentServerService.start(Dep
    loymentServerService.java:89)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    <Aug 27, 2009 12:15:16 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initia
    lize the application 'usermessagingdriver-email' due to error weblogic.managemen
    t.DeploymentException: Exception occured while downloading files.
    weblogic.management.DeploymentException: Exception occured while downloading fil
    es
    at weblogic.deploy.internal.targetserver.datamanagement.AppDataUpdate.do
    Download(AppDataUpdate.java:43)
    at weblogic.deploy.internal.targetserver.datamanagement.DataUpdate.downl
    oad(DataUpdate.java:56)
    at weblogic.deploy.internal.targetserver.datamanagement.Data.prepareData
    Update(Data.java:97)
    at weblogic.deploy.internal.targetserver.BasicDeployment.prepareDataUpda
    te(BasicDeployment.java:682)
    at weblogic.deploy.internal.targetserver.BasicDeployment.stageFilesForSt
    atic(BasicDeployment.java:725)
    Truncated. see log file for complete stacktrace
    java.net.ConnectException: Tried all: '1' addresses, but could not connect over
    HTTP to server: '[2001:0:cf2e:3096:30be:1076:3f57:fefc]', port: '7001'
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:314)
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:404)
    at weblogic.net.http.HttpClient.New(HttpClient.java:240)
    at weblogic.net.http.HttpURLConnection.connect(HttpURLConnection.java:17
    2)
    at weblogic.deploy.service.datatransferhandlers.HttpDataTransferHandler.
    getDataAsStream(HttpDataTransferHandler.java:75)
    Truncated. see log file for complete stacktrace
    >
    <Aug 27, 2009 12:15:17 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initia
    lize the application 'soa-infra' due to error weblogic.management.DeploymentExce
    ption: [J2EE:160149]Error while processing library references. Unresolved applic
    ation library references, defined in weblogic-application.xml: [Extension-Name:
    adf.oracle.domain, exact-match: false], [Extension-Name: oracle.sdp.messaging, e
    xact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: adf.oracle.domain, exact-match: false], [Exten
    sion-Name: oracle.sdp.messaging, exact-match: false].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:609)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:37)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:185)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:53)
    Truncated. see log file for complete stacktrace
    >
    <Aug 27, 2009 12:15:18 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initia
    lize the application 'worklistapp' due to error weblogic.management.DeploymentEx
    ception: [J2EE:160149]Error while processing library references. Unresolved appl
    ication library references, defined in weblogic-application.xml: [Extension-Name
    : adf.oracle.domain, exact-match: false], [Extension-Name: oracle.jsp.next, exac
    t-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: adf.oracle.domain, exact-match: false], [Exten
    sion-Name: oracle.jsp.next, exact-match: false].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:609)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:37)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:185)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:53)
    Truncated. see log file for complete stacktrace
    >
    <Aug 27, 2009 12:15:20 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initia
    lize the application 'b2bui' due to error weblogic.management.DeploymentExceptio
    n: [J2EE:160149]Error while processing library references. Unresolved applicatio
    n library references, defined in weblogic-application.xml: [Extension-Name: adf.
    oracle.domain, exact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: adf.oracle.domain, exact-match: false].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:609)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:37)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:185)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:53)
    Truncated. see log file for complete stacktrace
    >
    <Aug 27, 2009 12:15:20 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initia
    lize the application 'DefaultToDoTaskFlow' due to error weblogic.management.Depl
    oymentException: [J2EE:160149]Error while processing library references. Unresol
    ved application library references, defined in weblogic-application.xml: [Extens
    ion-Name: adf.oracle.domain, Implementation-Version: 11.1.1.1.0, exact-match: fa
    lse], [Extension-Name: oracle.jsp.next, exact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: adf.oracle.domain, Implementation-Version: 11.
    1.1.1.0, exact-match: false], [Extension-Name: oracle.jsp.next, exact-match: fal
    se].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:609)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:37)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:185)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:53)
    Truncated. see log file for complete stacktrace
    >
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    Aug 27, 2009 12:15:47 PM oracle.wsm.common.logging.WsmMessageLogger logSevere
    SEVERE: Failure in looking up EJB component QueryService#oracle.wsm.policymanage
    r.ejb.IStringQueryServiceRemote.
    <Aug 27, 2009 12:16:29 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to ADMIN>
    <Aug 27, 2009 12:16:34 PM IST> <Warning> <Log Management> <BEA-170011> <The LogB
    roadcaster on this server failed to broadcast log messages to the admin server.
    The Admin server may not be running. Message broadcasts to the admin server will
    be disabled.>
    <Aug 27, 2009 12:17:11 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to RESUMING>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    3]" is now listening on fe80:0:0:0:39b9:eee1:8736:8262:8001 for protocols iiop,
    t3, ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    4]" is now listening on fe80:0:0:0:30be:1076:3f57:fefc:8001 for protocols iiop,
    t3, ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    7]" is now listening on 0:0:0:0:0:0:0:1:8001 for protocols iiop, t3, ldap, snmp,
    http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    1]" is now listening on 192.168.1.3:8001 for protocols iiop, t3, ldap, snmp, htt
    p.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default"
    is now listening on 2001:0:cf2e:3096:30be:1076:3f57:fefc:8001 for protocols iio
    p, t3, ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    5]" is now listening on fe80:0:0:0:c931:e3ad:23b7:a24c:8001 for protocols iiop,
    t3, ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    2]" is now listening on fe80:0:0:0:39e8:36d5:9f8b:f988:8001 for protocols iiop,
    t3, ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    6]" is now listening on fe80:0:0:0:0:5efe:c0a8:103:8001 for protocols iiop, t3,
    ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    8]" is now listening on 127.0.0.1:8001 for protocols iiop, t3, ldap, snmp, http.
    >
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <WebLogicServer> <BEA-000357> <Started W
    ebLogic Independent Managed Server "soa_server1" for domain "domain1" running in
    Development Mode>
    <Aug 27, 2009 12:17:16 PM IST> <Warning> <Server> <BEA-002611> <Hostname "Metamo
    rph26-PC", maps to multiple IP addresses: 192.168.1.3, fe80:0:0:0:30be:1076:3f57
    :fefc%11, fe80:0:0:0:c931:e3ad:23b7:a24c%13, fe80:0:0:0:0:5efe:c0a8:103%14, 2001
    :0:cf2e:3096:30be:1076:3f57:fefc>
    <Aug 27, 2009 12:19:24 PM IST> <Warning> <JMX> <BEA-149509> <Unable to establish
    JMX Connectivity with the Adminstration Server AdminServer at service:jmx:t3://
    [2001:0:cf2e:3096:30be:1076:3f57:fefc]:7001/jndi/weblogic.management.mbeanserver
    s.domainruntime.
    java.io.IOException
    at weblogic.management.remote.common.ClientProviderBase.makeConnection(C
    lientProviderBase.java:187)
    at weblogic.management.remote.common.ClientProviderBase.newJMXConnector(
    ClientProviderBase.java:81)
    at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnec
    torFactory.java:338)
    at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFacto
    ry.java:247)
    at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainR
    untimeService.getDomainMBeanServerConnection(RegisterWithDomainRuntimeService.ja
    va:206)
    Truncated. see log file for complete stacktrace
    javax.naming.CommunicationException [Root exception is java.net.ConnectException
    : t3://[2001:0:cf2e:3096:30be:1076:3f57:fefc]:7001: Destination unreachable; nes
    ted exception is:
    java.net.ConnectException: Connection timed out: connect; No available r
    outer to destination]
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(Exceptio
    nTranslator.java:40)
    at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLIni
    tialContextFactoryDelegate.java:783)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:367)
    at weblogic.jndi.Environment.getContext(Environment.java:315)
    at weblogic.jndi.Environment.getContext(Environment.java:285)
    Truncated. see log file for complete stacktrace
    java.net.ConnectException: t3://[2001:0:cf2e:3096:30be:1076:3f57:fefc]:7001: Des
    tination unreachable; nested exception is:
    java.net.ConnectException: Connection timed out: connect; No available r
    outer to destination
    at weblogic.rjvm.RJVMFinder.findOrCreateInternal(RJVMFinder.java:216)
    at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:170)
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:153)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLI
    nitialContextFactoryDelegate.java:400)
    at weblogic.jndi.Environment.getInitialReference(Environment.java:245)
    Truncated. see log file for complete stacktrace
    java.rmi.ConnectException: Destination unreachable; nested exception is:
    java.net.ConnectException: Connection timed out: connect; No available r
    outer to destination
    at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:464)
    at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:315)
    at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java
    :251)
    at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:194)t
    at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:238
    Truncated. see log file for complete stacktrace
    >
    <Aug 27, 2009 12:20:06 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to RUNNING>
    <Aug 27, 2009 12:20:06 PM IST> <Notice> <WebLogicServer> <BEA-000360> <Server st
    arted in RUNNING mode>
    I have reinstall it again and again but the same exception is coming.Please help me out.
    Thanks
    Ap

    It seem that you are missing libraries to start the application:
    Error while processing library references. Unresolved applic
    +ation library references, defined in weblogic-application.xml: [Extension-Name:+
    adf.oracle.domain, exact-match: false], [Extension-Name: *oracle.sdp.messaging*, e+
    +xact-match: false]..+
    weblogic.management.DeploymentException: J2EE:160149Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    +application.xml: Extension-Name: adf.oracle.domain, exact-match: false, [Exten+
    sion-Name: oracle.sdp.messaging, exact-match: false].
    Either you haven't installed the libraries or you have installed them to the Admin server and need to activate them on the managed server. You should be able to see if they are installed if you look at the deployments overview in the weblogic console. I found this blog entry usefull when I needed to install the libraries for adf:
    http://one-size-doesnt-fit-all.blogspot.com/2009/01/configuring-weblogic-server.html
    If they are installed you might want to check each of them if they are assigned to you managed server target. You can select them in the deployment overview and choose the target option. There should be a check mark at the server you deployed your application to.
    Best regards,
    Sturla

  • One problem with constraints missing in source and target database....

    DB Gurus,
    In my database I am going to export and import data using datapump but dont specify CONTENT clause.
    so when I start working on my application, I came to know there are some constraints are missing. now how to check what are the constraints are missing from Source database and how to create those missing constraints on Target database?
    Suggest me if you have any idea.

    Create a database link between source and target schema.
    Use all_/dba_/_user_constraints to generate the difference using MINUS operator.
    something like this:
    select owner,constraint_name,constraint_type from dba_constraints@source
    MINUS
    select owner,constraint_name,constraint_type from dba_constraints

  • Billing documents missing in SD data target.

    Hello All,
    In a SD data target some Billing documents are missing. I cheked in R3. In R3 some billing documents are there but they didn't load in BW. Becouse of these In report it is showing net value inccorrect while in R3 it is somthing else.
    Plz tell me How I will load those missing Billing documents in BW.
    Thanks

    Here are the steps :
    1 - Determine what are the Billing documents that are not appearing in BI.
    2 - Check the document flow of these Billing documents using TCode VF03 
    3 - If you found that the steps of this Billing documents are not complete, then SD/ FI users need to do further processing on them to be loaded in BI.
    4 - If Billing document's document flow is complete, then follow the steps mentioned by our friends .. i.e fill the setup table..etc
    Regards
    MultiABAP

  • Text tool in Photoshop CS3 missing default resource files.

    when I try to use the text tool in my Photoshop CS3 I always get a message that says that I am missing the default resource files for the tool.  How do I solve this..? And if possible, where can I get said files..?

    Can you reinstall the application from your original media?
    Keep in mind that if you do so you'll need to apply any updates to the CS3 product from Adobe's site again as well.
    -Noel

  • How can I diagnose or resolve missing AD groups for target audience rules

    Hello everyone,
    I'm having some problems with the target audiences I have set up in my SharePoint 2010 farm. I have set up a single rule for each target audience in Central Administration, pointing to a group in Active Directory. Up until a couple of weeks ago I had no
    problem using the people picker to look up AD grups and everything seemed to be working, but now I am suddenly not able to find any groups in AD.
    The User Profile Synchronisation is running without any errors. I have already performed a full synchronisation and compiled all audiences with no luck. I have also checked the property called peoplepicker-searchadforests with stsadm and that appears to
    be correct as well. If I try and look up the same AD group in a peoplepicker on one of the site collections it is immediately displayed with no errors. All of the AD groups I'm using are global security groups and the ULS log contains no errors from when the
    target audience compilation started until it ended.
    What puzzles me is that AD groups on our test environment can be found in the peoplepicker in Central Administration without any problems, despite the fact that the target audience rule fails with the message "Non-existent Membership group...".
    It would seem to me that SharePoint does not look up the security groups directly in AD but rather somewhere else - a lot of posts suggests that SharePoint stores information about target audience it in the ProfileDB but I haven't been able to find which table.
    I know I'm leaving out a lot of other details but what I really need to know is how I can investigate this issue further, e.g. does SharePoint in fact look up the groups in the ProfileDB and if so from what table? Is there any kind of tool or technique I
    can use to actually see what happens in SharePoint from the moment I try and search for an AD group in the people picker?

    Hi SharePointMC,
    Thank you for the info - I didn't know about $wa.PeoplePickerSettings :-)
    I have compared all the properties from PeoplePickerSettings between our prod- and test environment and the only difference I found was that the domain was added to "distributionlistsearchdomains" on prod but not on test. Adding the value in test did not
    reproduce the issue though.
    I'm not sure if I can see somewhere which account was used to set up the people picker but the account I used to look up AD-groups is not locked out and there is no filter set for peoplepicker-searchadcustomfilter. If there is a way to see which account
    was used to set up the people picker I would very much like to know.
    However I did manage to find some clue in the profile database. It turns out that querying the MemberGroup table I was able to locate all target audiences on our test environment (not counting the "all site users"), but I was not able to find any of the
    groups in prod. If the peoplepicker is indeed looking for the AD groups in ProfileDB then that might explain why I cannot find any groups.
    The question is how I can persue this further - how does SharePoint update the Profile database and what would be a good place to look for any errors?

  • _wl_cls_gen.jar artifact is missing some resources

    After deploying an Enterprise Application Archive (EAR) to Weblogic Server, for each WAR file contained in the EAR file, a <strong>wlcls_gen.jar</strong> artifact is generated in &lt;ORACLE_SERVER&gt;\user_projects\domains\&lt;DOMAIN_NAME&gt;\servers\&lt;SERVER_NAME&gt;\tmp\_WL_user\&lt;APP_NAME&gt;\mbo9wa\war\WEB-INF\lib folder.
    This artifact contains the resources (.class , .xml , .properties , ...) that were originally located in the WEB-INF\classes of the WAR file that was deployed on the Weblogic server. During deployment, Weblogic Server moves the WEB-INF\classes resources into the generated WEB-INF\lib\_wl_cls_gen.jar file
    The problem we're facing with this approach is the fact that we have a JSF application that uses Facelets as the view technology. Using facelets, the application streams tagsource files from the JAR file where the facelets configuration file is located. Unfortunately, these resources have the jspx extension.
    It turns out that during the wlcls_gen.jar generation, all jspx files located in the WEB-INF\classes folder are ignored, in the sense that they are not added to the wlcls_gen.jar file, but kept at the WEB-INF\classes level. As Facelets tries to stream those resources from the JAR file, we get the following error :
    javax.servlet.ServletException: /test.jspx @6,22 Facelet Not Found:
    zip:C:/oracle10_3_server/user_projects/domains/base_domain/servers/AdminServer/tmp/_WL_user/app/mbo9wa/war/WEB-INF/<strong>lib/_wl_cls_gen.jar!/tagsource/resource/resource.jspx</strong>
    The problem here is that the file is located in the classes folder, and not in the generated JAR file.
    C:/oracle10_3_server/user_projects/domains/base_domain/servers/AdminServer/tmp/_WL_user/app/mbo9wa/war/WEB-INF/<strong>classes/tagsource/resource/resource.jspx</strong>
    Is there any way to override this behavior, without us having to resort to changing the extension of those files (we use the jspx extension for code completion).

    After deploying an Enterprise Application Archive (EAR) to Weblogic Server, for each WAR file contained in the EAR file, a <strong>wlcls_gen.jar</strong> artifact is generated in &lt;ORACLE_SERVER&gt;\user_projects\domains\&lt;DOMAIN_NAME&gt;\servers\&lt;SERVER_NAME&gt;\tmp\_WL_user\&lt;APP_NAME&gt;\mbo9wa\war\WEB-INF\lib folder.
    This artifact contains the resources (.class , .xml , .properties , ...) that were originally located in the WEB-INF\classes of the WAR file that was deployed on the Weblogic server. During deployment, Weblogic Server moves the WEB-INF\classes resources into the generated WEB-INF\lib\_wl_cls_gen.jar file
    The problem we're facing with this approach is the fact that we have a JSF application that uses Facelets as the view technology. Using facelets, the application streams tagsource files from the JAR file where the facelets configuration file is located. Unfortunately, these resources have the jspx extension.
    It turns out that during the wlcls_gen.jar generation, all jspx files located in the WEB-INF\classes folder are ignored, in the sense that they are not added to the wlcls_gen.jar file, but kept at the WEB-INF\classes level. As Facelets tries to stream those resources from the JAR file, we get the following error :
    javax.servlet.ServletException: /test.jspx @6,22 Facelet Not Found:
    zip:C:/oracle10_3_server/user_projects/domains/base_domain/servers/AdminServer/tmp/_WL_user/app/mbo9wa/war/WEB-INF/<strong>lib/_wl_cls_gen.jar!/tagsource/resource/resource.jspx</strong>
    The problem here is that the file is located in the classes folder, and not in the generated JAR file.
    C:/oracle10_3_server/user_projects/domains/base_domain/servers/AdminServer/tmp/_WL_user/app/mbo9wa/war/WEB-INF/<strong>classes/tagsource/resource/resource.jspx</strong>
    Is there any way to override this behavior, without us having to resort to changing the extension of those files (we use the jspx extension for code completion).

  • I am missing "other" as a target for the result state

    Hi,
    I am trying to implement a quite complex scenario using guided procedure design time.
    I am not able to find “other” as a target for the result state of a callable object (the system proposes me just the sequential action or termination, nothing more, so I am not able to change my flow as I would like).
    My portal is NW04s SP10.
    I fount that target (other) using a portal sp11, so I suppose that it could be a problem concerning sp10 release, but I was not able to find a confirmation for that
    Regards
    Giuseppe

    Hi Giuseppe,
    If I have well understood you’re trying to call in result state an action that is not in your current block.
    To do this you have to install SP11 and the “other” will appear as possible choice in the result state target.
    Regards
    alessio

  • Safari 3.0.4 won't open; "missing important resources"

    Since installing the 3.0.4 thru Apple Software Update, Safari won't open at all. I've uninstalled, deleted ~\AppData\Local\Apple Computer\Safari and ~\AppData\Roaming\Apple Computer\Safari folders. Rebooted. Reinstalled. Signed up for ADC and tried again using the version there (same as Software Update??).
    Anyway, I'm using Vista Business on a Dell Latitude notebook. I don't have any add-ons or other software related to Safari that I know of.
    Please help. I miss Safari!

    Can't speak for 'King,' but I first just clicked Install on the Apple Software Update when it popped up. It had iTunes and QuickTime in there too, I believe. It suggested that I restart when it was finished. I did.
    Then, after I discovered that Safari wouldn't open, I uninstalled and used the installer without QuickTime from Apple's main download page. And, for the last attempt, I signed up for ADC and tried the installer from there. It just had some kind of a build number, and I think it included QuickTime.
    My account name is cjones. Here's the path (copied from my address bar) of one of the two folders: C:\Users\cjones\AppData\Local\Apple Computer\Safari
    Message was edited by: cee--jay

  • VXI-MXI-2 missing in resource manager

    Hello,
    I have a VXI-MXI-2 and I configure the A16 write posting to enable. After that i can not work with VXI-MXI-2.
    When resman run, it found a instrument at address 1 but got a Generic I/O error on VXI D16 peek.
    I try to set all jump status to default and set the U35 Restore Factory Configuration to Yes. it is the same.
    How do i fix this problem?

    My Friend.
                I understood your frustration totally. I got the same problem. There is not much you can do about it. Probably you won’t like my solution either. It is very painful experiences. Are you ready? Here is the solution.
                            Reinstall all of your software.
                            Yes, Reinstall it. The whole thing, LabVIEW, Drivers, and etc. But you must uninstall first.
                            If it does not work, change the computer.
                            The system should run and found the device. It may takes you a couple of days to do it. But it should work.
                            I ran into this issue a few times. Every time I end it up uninstall and reinstall every thing. And it runs without any problems.

  • Ibmtbctl reports it is missing a resource dll -- need to reinstall it -- how?

    Since I took on Vista Service pack 2 I have this problem. Where does one get an install image of ibmtbctl in order to re-install it?

    hi, i'm getting the same message, this after installing some fixes using the Lenovo update tool.  i've reinstalled some of the tablet related fixes directly from lenovo's site but problem still persists.  tablet functionality still seems to work, tho, just the message keeps popping up.
    i'd appreciate any ideas for resolution, thanks!

Maybe you are looking for

  • Path in Lookout

    In my application I have a Spreadsheet object I want that generates a file outside of lookout folder: in C:\Production\Shift.csv. This computer is connected to a LAN with more drives (J:, I:, H:, etc). What path should I type to save the data? Should

  • Profit centre creation - how to default CCs unchecked?

    Hello When I create a profit centre (ECC6.0), all company codes are assigned by default.  This means that I must de-select all of the company codes which I don't want assigned, which is onerous since we have many company codes, and only wish to have

  • In Safari, screen magnifies automatically and cannot return to 100%

    When I'm in Safari, my screen will occasionally magnify and I can't discover what mouse movement makes that happen or return the screen to 100% view. Any ideas what is happening?

  • Sales order due for MD04

    Hello Friends, I am creating MTO sales order and production people are creating MD04. How from SD point of view one can see the list of sales order which have been considered in MD04 / Pending list of sales order that are yet to be considered for MD0

  • Cisco Unity Connection 8.0 / access to the user configuration is very slow

    Hello!! The access to the user configuration is very slow. When you click on an user it need about 2-3 minutes until the configuration sidewill be loaded. What could be the reason? How is it possible to load the user configuration a little bit faster