Weird scripts in corrupted RH9 project

Hi!
I'm having trouble with a small 75-topic project in RH9. I just upgraded it from RH7 last month. The application runs on XP, service pack 3. The project file is located on a desktop and has a short access path (c:\RH9Projects\). I have in all 4 small RH projects, and created backups for each before upgrading to RH9. For simplicity purposes, the corrupted project will be identified as project A, and the others as B, C and D.
After I finished tweaking the upgraded files and cleaning up unnecessary html in project A a few weeks ago, I generated my regular webhelp output and published it on the web. Everything was running smoothly. Since that upgrade from 7 to 9 went well, I repeated the steps for projects B, C and D. All was well again. I had also created backups at that time.
Yesterday I went back to project A, and a lot of things are wrong. The TOC pod is empty, images that were in drop-down hotspots have disappeared and weird scripts have appeared in the topics' html. I first noticed those dreaded red squares at the top of all topics, sometimes 1 or 2. They also appear at the bottom of the topics.
I closed project A without saving and tried opening project B. Everything is fine, nothing is missing. Same thing for project C and D. I tried opening a backed up copy of project A and that one too is corrupted. The backup copy was in a different folder but still with a short path. In this one, however, the opning topic is blank and has 6 red squares.
Here's the script corresponding to the red square at the top of the topic:
<script type="text/javascript" language="javascript1.2">//<![CDATA[
<!--
if (window.gbWhTopic)
        var strUrl = document.location.href;
        var bc = 0;
        var n = strUrl.toLowerCase().indexOf("bc-");
        if(n != -1)
                document.location.href = strUrl.substring(0, n);
                bc = strUrl.substring(n+3);
        if (window.addTocInfo)
        addTocInfo("Aide en ligne JMS");
addButton("show",BTN_TEXT,"Afficher","","","","",0,0,"","","");
        if (window.writeBtnStyle)
                writeBtnStyle();
        if (window.writeIntopicBar)
                writeIntopicBar(1);
        document.write("<p style=\"text-align:right\"> ");
AddMasterBreadcrumbs("H_HLP_FR.htm", "", "&gt;", "Home", "1000.htm");
document.write("Aide en ligne JMS<\/p>");
        if (window.setRelStartPage)
        setRelStartPage("H_HLP_FR.htm");
                autoSync(1);
                sendSyncInfo();
                sendAveInfoOut();
else
        if (window.gbIE4)
                document.location.reload();
//-->
//]]></script>
Here's the script corresponding to the red square at the bottom of the topic:
<script type="text/javascript" language="javascript1.2">//<![CDATA[
<!--
if (window.writeIntopicBar)
        writeIntopicBar(0);
highlightSearch();
//-->
//]]></script>
In some cases I also see this script - from a second red square:
<script src="../../../ehlpdhtm.js" type="text/javascript" language="JavaScript1.2"></script>(top)
<script type="text/javascript" language="JavaScript1.2">//<![CDATA[
        if( typeof( TextPopupInit ) != 'function' ) TextPopupInit = new Function();
        TextPopupInit('a1','POPUP386155265');
        TextPopupInit('a2','POPUP386287878');
//]]></script>(bottom)
All RH9 versions of project A, original file and backup files, have this problem. If I open project A backup file using RH7, the file is okay. I know I can still start over with a new upgrade if need be, but I'm trying to figure out what happened. Everything was fine on April 20
Aside from a techsupport guy, I am the only one who accesses this computer. There are no known technical issues with it. It is not connected to the Internet, only to the company's network, and security is thight.
Does anyone have any clue as to what might have happened?
Thank you in advance
Nathalie

Hi there
Well it would appear that somehow you managed to copy your generated WebHelp output files over your pristine source files. Time to resort to your backup.
You, ummm, DO have a backup. Right?
In case you don't, follow the link below.
Click here to view
Cheers... Rick
Helpful and Handy Links
RoboHelp Wish Form/Bug Reporting Form
Begin learning RoboHelp HTML 7, 8 or 9 within the day!
Adobe Certified RoboHelp HTML Training
SorcerStone Blog
RoboHelp eBooks

Similar Messages

  • How to automatically create the custom migration scripts after recreating SSMA project?

    How to automatically create the custom data migration scripts after recreating SSMA project?
    There is number of tables ( big tables with BLOBS)  which I want to set up automatically to be migrated with custom migration scripts (replacing e.g. attribute named "FILE" with "TO_BLOB('') AS FILE" ).
    So the question is how to open MB file (I think that it should be standard db of some destktop RDBMS) ? 

    Hi Roman.Pokrovskij,
    According
    to your description, we can use SSMA tool to migrate data from one database (including Access, Oracle and so on) to SQL Server via GUI or the scripts. There is an example about migrating Access database to SQL Server via the
    custom migration scripts, you can review refer to them.
    <?xml version="1.0" encoding="utf-8"?>
    <ssma-script-file xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="C:\Microsoft SQL Server Migration Assistant for Access\Schemas\A2SSConsoleScriptSchema.xsd">
    <config>
    <output-providers>
    <output-window suppress-messages="false"
    destination="stdout"/>
    <upgrade-project action="yes"/>
    <data-migration-connection source-use-last-used="true"
    target-server="target_1"/>
    <progress-reporting enable="false"
    report-messages="false"
    report-progress="off"/>
    <object-overwrite action="skip" />
    </output-providers>
    </config>
    <servers>
    <!-- Server definition for Sql server target server-->
    <sql-server name="target_1">
    <sql-server-authentication>
    <server value="$SQLServerName$"/>
    <database value="$SQLServerDb$"/>
    <user-id value="$SQLServerUsrID$"/>
    <password value="$SQLServerPassword$"/>
    <encrypt value="true"/>
    <trust-server-certificate value="true"/>
    </sql-server-authentication>
    </sql-server>
    </servers>
    <script-commands>
    <create-new-project project-folder="$project_folder$ "
    project-name="$project_name$"
    overwrite-if-exists="true"/>
    <connect-target-database server="target_1"/>
    <load-access-database database-file="$AccessDbFolder$\$AccessDatabaseFile$"/>---
    <!--Schema Mapping-->
    <map-schema source-schema="$AccessDatabase$" sql-server-schema="$SQLServerDb$.dbo" />
    <!-- Convert schema -->
    <!-- Example: Convert entire Schema (with all attributes)-->
    <convert-schema object-name="$AccessDatabase$"
    object-type="Databases"
    conversion-report-overwrite="true"
    verbose="true"
    report-errors="true" />
    <!-- Synchronize target -->
    <!-- Example: Synchronize target entire Database with all attributes-->
    <synchronize-target object-name="$SQLServerDb$.dbo"
    on-error="fail-script" />
    <!-- Data Migration-->
    <!--Example: Data Migration of all tables in the schema (with all attributes)-->
    <migrate-data object-name="$AccessDatabase$.Tables"
    object-type="category"
    report-errors="true"
    verbose="true"/>
    </script-commands>
    </ssma-script-file>
    There is a similar scripts about migrating Oracle database to SQL Server, you can use powershell script to automatically run the console for scripts/variable files, saved in the specified folder. For more information, review the following
    article.
    http://blogs.msdn.com/b/ssma/archive/2010/09/09/performing-database-migration-assessment-using-ssma-console-application.aspx
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Pointing RH9 project at new linked FM files without a complete rebuild

    Seems simple but we can't figure out how to "point" an existing RH9 project with linked FM files to a new set of FM files. 
    As a background, our practice is that with each new version, we copy all FM files to a new directory and create a new version of the FM book and files.  Hence, after this process our RoboHelp file points at the old files and we'd like to easily update this without completely rebuilding the project and all settings.

    Try deleting the book file from RH and relinking to the new location.

  • In oracle Open Script (OATS) OracleEBS/Forms project all the elements or fields are being identified as web objects.

    In oracle Open Script (OATS), we have created an OracleEBS/Forms project. But when we try to record the script all the elements or fields are being identified as web objects. Due to this we are unable to use the functions like getText. Hence, please help.
    Example: The below line when executed gives an error " Failed to connect to the Oracle Forms applet after 90 seconds. Verify that the applet launching page opens, and that the Forms Startup Timeout setting is high enough for this site."
    forms.textField("/web:window[@index='0' or @title='Person']/web:document[@index='7' or @name='tabPage']/web:input_text[@id='PER_ID' or @name='PER_ID' or @index='0']").getText();
    We have already set the event timeouts in OpenScript Preferences -> Playback -> OracleEBS/Forms Functional as
    Forms startup time out = 90Sec
    Forms Action timeout = 120Sec
    Forms Response Timeout = 120 Sec.
    OpenScript
    Version: 12.4.0.1 Build 139

    If it is a name resolution I would try either replacing the server name in the script with the IP address or making an entry in the local host file of the machine trying to play back the script
    If you try one or both of those approaches does the script play back?

  • Does anyone have corrupt premiere projects and autosave files?

    A Premiere CC project that I have been working on for weeks now is corrupt and will not open.  I get a message "the project appears to be damagaed".  All of the associated autosave files are also now messed up (some are a month old). Everything else on the drive that contains the projects is fine. Even other older Premiere projects are fine.  I open the bad autosave projects in notepad and it is filled with jibberish compared to the other uneffected projects.  Is this a bug or have I been hacked by the recent Adobe securiy issue?  Here is a link to the project file http://adobe.ly/1awiNVO
    All of my autosave files look like this too.  How could all of my auto save files change to this jibberish too?  I could understand if a save to my current project goes to left field, but how do all of my autosaves get corrupted too?
    I have written out large portions of the project to finished movies, but still have a few I will need to start over from scratch if no one has a solution to my problem here.  I would really like to have a chance to go back and re-edit if I see anything I want to touch up in the exported movies I have.  Thank God I at least have what I do otherwise it would be a months worth of work down the tube.   Has anyone else had this issue, or better yet have a fix? 

    Thanks Jon, I was not aware of the new zip files for the project files in CC.  As Ann had confirmed, the project file was actually intact.  I moved all of my assets and the project to another machine and it opened just fine.  I still do not know why the project will not open on the other machine.  Premier will open and start a new project, but I get an error code if I try to open that project.  I did start the project in CS6 and convert it to CC when we upgraded, but a bug there still does not explain why the same project works on one computer but not the other.  I will do a better job of asset management next time I work on that computer just in case:)

  • Is it possible to fix a corrupt FCPX project?

    here is my crash detail:
    Process:         Final Cut Pro [226]
    Path:            /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    Identifier:      com.apple.FinalCut
    Version:         10.0.3 (192356)
    Build Info:      ProEditor-192350600~1
    App Item ID:     424389933
    App External ID: 5878386
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [145]
    Date/Time:       2012-03-25 15:54:04.457 -0400
    OS Version:      Mac OS X 10.7.3 (11D50)
    Report Version:  9
    Interval Since Last Report:          524351 sec
    Crashes Since Last Report:           17
    Per-App Interval Since Last Report:  343264 sec
    Per-App Crashes Since Last Report:   13
    Anonymous UUID:                      5BB4EB19-3BCE-4DF8-AFBF-2C3D21AC5B3F
    Crashed Thread:  14  BGTask: MEBackgroundLoadManager  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    Background exception: 'Unexpected exception' --> { (
              0   CoreFoundation                      0x00007fff8ad85fc6 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8972dd5e objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8ae102a9 -[NSException raise] + 9
              3   Flexo                               0x00000001008df709 FFApplicationHandleExceptionThatShouldNotBeIgnored + 153
              4   Flexo                               0x000000010084c204 -[FFBackgroundTask main] + 884
              5   Foundation                          0x00007fff825f86d8 -[__NSOperationInternal start] + 705
              6   Foundation                          0x00007fff8260b936 ____NSOQSchedule_block_invoke_2 + 124
              7   libdispatch.dylib                   0x00007fff865578ba _dispatch_call_block_and_release + 18
              8   libdispatch.dylib                   0x00007fff86558799 _dispatch_worker_thread2 + 255
              9   libsystem_c.dylib                   0x00007fff8ca9a3da _pthread_wqthread + 316
              10  libsystem_c.dylib                   0x00007fff8ca9bb85 start_wqthread + 13
    objc[226]: garbage collection is OFF
    abort() called
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x00007fff8cade54c OSAtomicCompareAndSwap64Barrier$VARIANT$mp + 8
    1   com.apple.CoreFoundation                0x00007fff8aceae17 CFRelease + 551
    2   com.apple.CoreFoundation                0x00007fff8acef432 __CFBasicHashDrain + 450
    3   com.apple.CoreFoundation                0x00007fff8ad290a6 CFDictionaryRemoveAllValues + 310
    4   com.apple.CoreFoundation                0x00007fff8adabc88 parseTag + 392
    5   com.apple.CoreFoundation                0x00007fff8adac2be parseTag + 1982
    6   com.apple.CoreFoundation                0x00007fff8adac2be parseTag + 1982
    7   com.apple.CoreFoundation                0x00007fff8adac2be parseTag + 1982
    8   com.apple.CoreFoundation                0x00007fff8adac2be parseTag + 1982
    9   com.apple.CoreFoundation                0x00007fff8ada9d4c parseXML + 7436
    10  com.apple.CoreFoundation                0x00007fff8ada7c8f CFXMLParserParse + 415
    11  com.apple.procore.framework             0x0000000100160cdf PCXMLReadStream::parse() + 31
    12  com.apple.prochannel.framework          0x0000000102793f1e OZChannelBase::configureWithState(__CFData const*) + 68
    13  com.apple.prochannel.framework          0x00000001027ea207 -[CHChannelFolder configureDescendantsWithChannelState:] + 60
    14  com.apple.Flexo                         0x0000000100bfedeb -[FFEffectStack initWithCoder:] + 1387
    15  com.apple.DeepSkyLite                   0x0000000101e54056 -[DSSyncContext load:persistentObject:] + 125
    16  com.apple.DeepSkyLite                   0x0000000101e58b8f -[DSObject DSObjectInitWithInvocation:] + 260
    17  com.apple.CoreFoundation                0x00007fff8ad72ff4 ___forwarding___ + 756
    18  com.apple.CoreFoundation                0x00007fff8ad72c88 _CF_forwarding_prep_0 + 232
    19  com.apple.Flexo                         0x0000000100a27a4d -[FFAnchoredObject _addUserEffectsFromEffectStack:toArray:] + 45
    20  com.apple.Flexo                         0x0000000100a27a04 -[FFAnchoredObject _shallowEffects] + 116
    21  com.apple.Flexo                         0x0000000100a2b0e4 -[FFAnchoredObject _assetRefs:includeAnchored:activeOnly:] + 68
    22  com.apple.Flexo                         0x0000000100a2b3f8 -[FFAnchoredObject _assetRefs:includeAnchored:activeOnly:] + 856
    23  com.apple.Flexo                         0x0000000100a2b2bf -[FFAnchoredObject _assetRefs:includeAnchored:activeOnly:] + 543
    24  com.apple.Flexo                         0x0000000100a27c91 -[FFAnchoredObject assetRefsIncludingAnchored:activeOnly:] + 81
    25  com.apple.Flexo                         0x0000000100c11d7c -[FFSequenceProject assetReferences] + 156
    26  com.apple.Flexo                         0x00000001007f366c -[FFProject mediaReferences] + 76
    27  com.apple.Flexo                         0x00000001007f5efb -[FFProject _updateOfflineReasonsForQuality:] + 267
    28  com.apple.Flexo                         0x00000001007f756f -[FFProject mediaAvailable] + 127
    29  com.apple.Flexo                         0x0000000100c8e909 -[FFProjectOrganizerModule updateCell:forNode:] + 441
    30  com.apple.Flexo                         0x0000000100c8b7ea -[FFProjectOrganizerModule _assetsChangedNotification:] + 506
    31  com.apple.CoreFoundation                0x00007fff8ad7575d -[NSObject performSelector:withObject:] + 61
    32  com.apple.Flexo                         0x00000001006fc8cf Observers::Notify((anonymous namespace)::Notification const&) + 303
    33  com.apple.Flexo                         0x00000001006fd427 +[FFNotificationCenter postNotification:] + 199
    34  com.apple.Flexo                         0x00000001006fb703 +[FFNotificationCenter postNotificationName:object:userInfo:] + 67
    35  com.apple.Flexo                         0x00000001007f3260 -[FFProject _deferredAssetChangedNotification] + 96
    36  com.apple.Foundation                    0x00007fff82630d88 __NSFirePerformWithOrder + 382
    37  com.apple.CoreFoundation                0x00007fff8ad45bd7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    38  com.apple.CoreFoundation                0x00007fff8ad45b36 __CFRunLoopDoObservers + 374
    39  com.apple.CoreFoundation                0x00007fff8ad1ace9 __CFRunLoopRun + 825
    40  com.apple.CoreFoundation                0x00007fff8ad1a676 CFRunLoopRunSpecific + 230
    41  com.apple.HIToolbox                     0x00007fff883d031f RunCurrentEventLoopInMode + 277
    42  com.apple.HIToolbox                     0x00007fff883d75c9 ReceiveNextEventCommon + 355
    43  com.apple.HIToolbox                     0x00007fff883d7456 BlockUntilNextEventMatchingListInMode + 62
    44  com.apple.AppKit                        0x00007fff86979f5d _DPSNextEvent + 659
    45  com.apple.AppKit                        0x00007fff86979861 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    46  com.apple.AppKit                        0x00007fff8697619d -[NSApplication run] + 470
    47  com.apple.prokit                        0x000000010030b3a6 NSProApplicationMain + 387
    48  com.apple.FinalCut                      0x0000000100001568 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8a673e06 __select_nocancel + 10
    1   libdispatch.dylib                       0x00007fff8655931e _dispatch_mgr_invoke + 251
    2   libdispatch.dylib                       0x00007fff8655814e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8a673bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8ca9c274 _pthread_cond_wait + 840
    2   com.apple.progl.framework               0x0000000101b04029 (anonymous namespace)::threadFunc(void*) + 61
    3   com.apple.procore.framework             0x0000000100165cf0 PCThread::startup(void*) + 18
    4   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 3:: com.apple.flexo.throttled-scheduled-io
    0   libsystem_kernel.dylib                  0x00007fff8a673bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8ca9c274 _pthread_cond_wait + 840
    2   com.apple.Flexo                         0x000000010088c808 Synchronizable::Wait() + 56
    3   com.apple.Fig.provider                  0x000000010812e2d8 0x108100000 + 189144
    4   com.apple.Flexo                         0x000000010089560a Thread::RunHelper(void*) + 42
    5   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8a674192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8a674192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8a674192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 7:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff8a673bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8ca9c2a6 _pthread_cond_wait + 890
    2   com.apple.CoreVideo                     0x00007fff8678c63f CVDisplayLink::waitUntil(unsigned long long) + 279
    3   com.apple.CoreVideo                     0x00007fff8678baa5 CVDisplayLink::runIOThread() + 559
    4   com.apple.CoreVideo                     0x00007fff8678b85d _ZL13startIOThreadPv + 148
    5   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8a674192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8a674192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8a674192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8a674192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8a674192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 13:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff8a673bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8ca9c2a6 _pthread_cond_wait + 890
    2   com.apple.CoreVideo                     0x00007fff8678c63f CVDisplayLink::waitUntil(unsigned long long) + 279
    3   com.apple.CoreVideo                     0x00007fff8678baa5 CVDisplayLink::runIOThread() + 559
    4   com.apple.CoreVideo                     0x00007fff8678b85d _ZL13startIOThreadPv + 148
    5   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 14 Crashed:: BGTask: MEBackgroundLoadManager  Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff8a673ce2 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a7d2 pthread_kill + 95
    2   libsystem_c.dylib                       0x00007fff8ca8ba7a abort + 143
    3   com.apple.Flexo                         0x00000001008df807 FFApplicationHandleExceptionThatShouldNotBeIgnored + 407
    4   com.apple.Flexo                         0x000000010084c204 -[FFBackgroundTask main] + 884
    5   com.apple.Foundation                    0x00007fff825f86d8 -[__NSOperationInternal start] + 705
    6   com.apple.Foundation                    0x00007fff8260b936 ____NSOQSchedule_block_invoke_2 + 124
    7   libdispatch.dylib                       0x00007fff865578ba _dispatch_call_block_and_release + 18
    8   libdispatch.dylib                       0x00007fff86558799 _dispatch_worker_thread2 + 255
    9   libsystem_c.dylib                       0x00007fff8ca9a3da _pthread_wqthread + 316
    10  libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff8a674192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 16:: com.apple.helium-unit
    0   libsystem_kernel.dylib                  0x00007fff8a673bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8ca971a1 pthread_mutex_lock + 545
    2   com.apple.Helium.HeliumRender           0x0000000102e6bd82 hg_pthread_loop(void*) + 98
    3   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    4   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 17:: com.apple.helium-unit
    0   libsystem_kernel.dylib                  0x00007fff8a673bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8ca971a1 pthread_mutex_lock + 545
    2   com.apple.Helium.HeliumRender           0x0000000102e6bd82 hg_pthread_loop(void*) + 98
    3   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    4   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 18:: com.apple.helium-unit
    0   libsystem_kernel.dylib                  0x00007fff8a673bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8ca971a1 pthread_mutex_lock + 545
    2   com.apple.Helium.HeliumRender           0x0000000102e6bd82 hg_pthread_loop(void*) + 98
    3   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    4   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 19:: com.apple.helium-unit
    0   libsystem_kernel.dylib                  0x00007fff8a673bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8ca971a1 pthread_mutex_lock + 545
    2   com.apple.Helium.HeliumRender           0x0000000102e6bd82 hg_pthread_loop(void*) + 98
    3   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    4   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff8a674192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff8a674192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff8a674192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff8a674192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 24:: MIO Mounting Thread
    0   libsystem_kernel.dylib                  0x00007fff8a673bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8ca9c2a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff82639a80 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff82603252 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proapps.MIO                   0x0000000101777cdc -[PluginLockPair scanPaths] + 284
    5   com.apple.Foundation                    0x00007fff8260a74e -[NSThread main] + 68
    6   com.apple.Foundation                    0x00007fff8260a6c6 __NSThread__main__ + 1575
    7   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 25:: MIO Mounting Thread
    0   libsystem_kernel.dylib                  0x00007fff8a6726b6 semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x0000000127126d67 semaphore_wait(viona_semaphore_t*) + 55
    2   com.apple.AVCHDPlugin                   0x00000001271352a8 WinPort::DoMessage(long, long) + 264
    3   com.apple.AVCHDPlugin                   0x00000001270bd201 DDP_OpenPlayerWithPath + 1265
    4   com.apple.AVCHDPlugin                   0x0000000127141149 FDVDProcessor::FCDVDManager::OpenPlayer(unsigned char, unsigned char) + 1113
    5   com.apple.AVCHDPlugin                   0x0000000127144519 FDVDProcessor::FCDVDManager::OpenAVCHDMediaFile(FSRef&) + 1529
    6   com.apple.AVCHDPlugin                   0x00000001270d4944 FAVCHDOpenMediaFile + 52
    7   com.apple.AVCHDPlugin                   0x0000000127049de5 0x127047000 + 11749
    8   com.apple.AVCHDPlugin                   0x00000001270497bb 0x127047000 + 10171
    9   com.apple.AVCHDPlugin                   0x0000000127049322 0x127047000 + 8994
    10  com.apple.proapps.MIO                   0x000000010177730e -[PluginLockPair mountPath:] + 286
    11  com.apple.proapps.MIO                   0x0000000101777d0c -[PluginLockPair scanPaths] + 332
    12  com.apple.Foundation                    0x00007fff8260a74e -[NSThread main] + 68
    13  com.apple.Foundation                    0x00007fff8260a6c6 __NSThread__main__ + 1575
    14  libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    15  libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 26:: MIO Mounting Thread
    0   libsystem_kernel.dylib                  0x00007fff8a673bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8ca9c2a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff82639a80 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff82603252 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proapps.MIO                   0x0000000101777cdc -[PluginLockPair scanPaths] + 284
    5   com.apple.Foundation                    0x00007fff8260a74e -[NSThread main] + 68
    6   com.apple.Foundation                    0x00007fff8260a6c6 __NSThread__main__ + 1575
    7   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 27:: MIO Mounting Thread
    0   libsystem_kernel.dylib                  0x00007fff8a673bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8ca9c2a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff82639a80 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff82603252 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proapps.MIO                   0x0000000101777cdc -[PluginLockPair scanPaths] + 284
    5   com.apple.Foundation                    0x00007fff8260a74e -[NSThread main] + 68
    6   com.apple.Foundation                    0x00007fff8260a6c6 __NSThread__main__ + 1575
    7   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 28:: MIO Mounting Thread
    0   libsystem_kernel.dylib                  0x00007fff8a673bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8ca9c2a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff82639a80 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff82603252 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proapps.MIO                   0x0000000101777cdc -[PluginLockPair scanPaths] + 284
    5   com.apple.Foundation                    0x00007fff8260a74e -[NSThread main] + 68
    6   com.apple.Foundation                    0x00007fff8260a6c6 __NSThread__main__ + 1575
    7   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 29:: com.apple.dvdplayback-DDPTask
    0   libsystem_kernel.dylib                  0x00007fff8a673d52 __read_nocancel + 10
    1   libsystem_c.dylib                       0x00007fff8ca94c25 _sread + 19
    2   libsystem_c.dylib                       0x00007fff8ca95166 __srefill1 + 30
    3   libsystem_c.dylib                       0x00007fff8ca95a2e _fseeko + 769
    4   libsystem_c.dylib                       0x00007fff8ca95acb fseeko + 79
    5   com.apple.AVCHDPlugin                   0x00000001271ecea4 CClipInformationFile::GetStreamData(unsigned char*&, unsigned long&, unsigned char, unsigned short, unsigned int, unsigned int) + 308
    6   com.apple.AVCHDPlugin                   0x00000001271fb20b CClipInformationFile::CreateStreamMetaData(CCFDictionary&, unsigned char, unsigned short, unsigned int, unsigned int) + 107
    7   com.apple.AVCHDPlugin                   0x00000001271acb7b CPlaybackControlEngine::GenerateClipObjects() + 10171
    8   com.apple.AVCHDPlugin                   0x000000012717c95f BDMVDiskPlayerFactory::CreateDiskPlayer(WinPortServer*, VDR*, GenericProfile*, DVDDiskType, BDMVFileSystem*, unsigned char, CDDiskPlayerClass*&) + 127
    9   com.apple.AVCHDPlugin                   0x00000001270ba149 DDPScheduler::Message(long, long) + 3881
    10  com.apple.AVCHDPlugin                   0x0000000127134422 WinPortServer::ProcessMessages() + 1042
    11  com.apple.AVCHDPlugin                   0x00000001270b8753 DDP_Init + 723
    12  com.apple.AVCHDPlugin                   0x0000000127126570 ST20Thread::Run(PThreadRunParams*) + 32
    13  libsystem_c.dylib                       0x00007fff8ca9a768 _pthread_body + 59
    Thread 30:
    0   libsystem_kernel.dylib                  0x00007fff8a67267a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a671d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8ad126fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8ad1ae64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8ad1a676 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8ad2a38f CFRunLoopRun + 95
    6   com.apple.qmaster.do                    0x000000011f0a6461 swamp::CRAdReceiver2::ReceivingThread::runOnce() + 187
    7   com.apple.AECore                        0x00000001084cb49f aecore::CThread::runThread() + 35
    8   com.apple.AECore                        0x00000001084c9470 threadProc(void*) + 9
    9   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    10  libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib                  0x00007fff8a6726b6 semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x0000000127126d67 semaphore_wait(viona_semaphore_t*) + 55
    2   com.apple.AVCHDPlugin                   0x0000000127134a10 WinPortServer::FlushMessages(WinPort*, unsigned int, int) + 1344
    3   com.apple.AVCHDPlugin                   0x0000000127126570 ST20Thread::Run(PThreadRunParams*) + 32
    4   libsystem_c.dylib                       0x00007fff8ca9a768 _pthread_body + 59
    Thread 32:
    0   libsystem_kernel.dylib                  0x00007fff8a6726b6 semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x0000000127126d67 semaphore_wait(viona_semaphore_t*) + 55
    2   com.apple.AVCHDPlugin                   0x0000000127134a10 WinPortServer::FlushMessages(WinPort*, unsigned int, int) + 1344
    3   com.apple.AVCHDPlugin                   0x0000000127126570 ST20Thread::Run(PThreadRunParams*) + 32
    4   libsystem_c.dylib                       0x00007fff8ca9a768 _pthread_body + 59
    Thread 33:: com.apple.dvdplayback-CPresentationEngine
    0   libsystem_kernel.dylib                  0x00007fff8a6726b6 semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x0000000127126d67 semaphore_wait(viona_semaphore_t*) + 55
    2   com.apple.AVCHDPlugin                   0x0000000127134a10 WinPortServer::FlushMessages(WinPort*, unsigned int, int) + 1344
    3   com.apple.AVCHDPlugin                   0x0000000127126570 ST20Thread::Run(PThreadRunParams*) + 32
    4   libsystem_c.dylib                       0x00007fff8ca9a768 _pthread_body + 59
    Thread 34:
    0   libsystem_kernel.dylib                  0x00007fff8a674192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 35:
    0   libsystem_kernel.dylib                  0x00007fff8a674192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ca9a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ca9bb85 start_wqthread + 13
    Thread 36:: com.apple.helium-texture-finish
    0   libsystem_kernel.dylib                  0x00007fff8a673bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8ca9c274 _pthread_cond_wait + 840
    2   com.apple.Helium.HeliumRender           0x0000000102e51c27 textureFinishThread(void*) + 183
    3   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    4   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 37:: com.apple.coremedia.scheduledfileio
    0   libsystem_kernel.dylib                  0x00007fff8a673bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8ca9c274 _pthread_cond_wait + 840
    2   com.apple.CoreMedia.ProAppsSupport          0x000000010029fc3d WaitOnCondition + 14
    3   com.apple.CoreMedia.ProAppsSupport          0x000000010029fe09 FigSemaphoreWaitRelative + 167
    4   com.apple.CoreMedia.ProAppsSupport          0x000000010029df16 FigScheduledFileIOThread + 5109
    5   com.apple.CoreMedia.ProAppsSupport          0x00000001002a0d16 figThreadMain + 397
    6   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 38:
    0   libsystem_kernel.dylib                  0x00007fff8a673df2 __select + 10
    1   com.apple.AECore                        0x00000001084cb4cc aecore::CThread::runThread() + 80
    2   com.apple.AECore                        0x00000001084c9470 threadProc(void*) + 9
    3   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    4   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 39:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8a673df2 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8ad63cdb __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    3   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 40:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff8a673e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8ca4edea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff8ca4ebb5 usleep + 53
    3   com.apple.AppKit                        0x00007fff86bb0c73 -[NSUIHeartBeat _heartBeatThread:] + 1727
    4   com.apple.Foundation                    0x00007fff8260a74e -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff8260a6c6 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff8ca988bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff8ca9bb75 thread_start + 13
    Thread 14 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x0000000122274b48  rdx: 0x0000000000000000
      rdi: 0x000000000000e607  rsi: 0x0000000000000006  rbp: 0x0000000122274b70  rsp: 0x0000000122274b48
       r8: 0x00007fff73ac2fb8   r9: 0x0000000000000000  r10: 0x00007fff8a673d0a  r11: 0xffffff80002d8220
      r12: 0x00000001012e5688  r13: 0x000000013c10e328  r14: 0x0000000122275000  r15: 0x000000012f5fc020
      rip: 0x00007fff8a673ce2  rfl: 0x0000000000000206  cr2: 0x0000000105a08000
    Logical CPU: 0

    The reason it is pointless to submit the crash log here is because nowhere does it tell you which clip, which title/event/generator/transition, or any other named portion of your project FCPX died in. It is literally no help whatsoever to you, only to Apple engineers trying to debug the software. When it crashes, fill out what you were doing when it crashed 'cause even *they* need a hint!  All we can discern is that FCPX crashed on Thread 14 on BGTask: MEBackgroundLoadManager and right before that was a call for a dynamically linked library. That could be anything... but my guess would be an "effect" (possibly with a corrupt font.) If you knew which effect you were "playing with" when FCPX crashed (or even if you simply moused over one), you could go in and remove it temporarily; restart FCPX and (if you get that far) delete the "red-screen alert" item from the project. If there was a corrupt font involved -- get rid of it! (You can analyze fonts in Font Book) and afterwards, you can re-add whatever effect was removed. [For clips, you can take them "offline" temporarily by moving them out of the event folder... I don't recommend this course of action, I don't believe the "base video" would ever be an issue if it were transcoded on or before import... only trying to use H.264 "raw" would be something that might "choke" FCPX.]
    In my experience, the things that bring down FCPX: corrupt fonts used for any text (FCPX will die immediately even if you pass over them with the mouse on your way to selecting something else - you might not even know which font that was either); Motion effects I'm developing that push the envelope a little too far (but that would be just for me I try to make sure they're stable before releasing them to the public -- but this implies other 3rd party effects that might not be so stringently checked out); and not much else. [Other possibilities I usually place "outside of FCPX" - such as launching other memory hungry apps while FCPX is open... etc. Poor(er) memory management in other apps might overwrite RAM buffered data and cause a "fault"...]
    If you *know* what exactly offended FCPX, there are (usually) steps you can take to remove the offending "software" and upon reopening FCPX, FCPX will make necessary substitutions (defaulting fonts, putting up the "red alert" screen, etc...)
    **OR** much easier: use Andy's tip about getting to the last backup. (Tip: if you do have corrupt fonts, using backups all the time isn't really going to help you that much.)
    [You would think that after over 20 years of dealing with bitmapped, PostScript and Truetype fonts Apple would have developed a way of "intercepting" problems that arise... but NOOOOOOOO! We are *still* at the mercy of corrupted fonts. PS - Ditto for Motion!   (ok, i'll be gettin' down from my soapbox now...)]

  • Calling ant script from another's project ant script

    Hello there,
    I would like to ask something about ant script. Sorry if this is not the right forum but I could not find a better one.
    I have 2 projects ProjectA and ProjectB in 2 different direcory structures, that contain 2 different build.xml files. I am trying to call ant of ProjectA inside the build.xml file of ProjectB like the following:
             <!-- inside build.xml of ProjectB-->
            <target name="buildProjectA">
                <ant antfile="${ProjectA.root}/build.xml" dir="${ProjectA.root}" inheritAll="false"/>
            </target>Unfortunately I get a different output than calling ant for Project A from the command prompt. Shouldn't this call to ant for ProjectA from ProjectB be exactly the same as calling ant from the command Prompt

    thanks for your reply,
    the problem is not that it does not file the xml file (although you re right, I changed it) but that later on in the building it behaves differently
    So, basically, what I want to know, is this the right way I am doing it or the two approaches are different cause in my approach ant is not called from the project's directory but from another ant script?

  • Ant deployment scripts for BPM 11g project

    Hi,
    Can i deploy a BPM project containing both BPM and ADF project using Ant script.
    If yes, can somebody share the ant scripts please.
    Any inputs are highly appreciated.
    Thank you,
    ~V

    See links I gave in this Post:Deploying TaskFlow applicaition as part of BPM composite
    Thanks
    Ravi Jegga

  • How do I Fix This XML Error From my corrupt Premiere Project?

    So I've been trying to recover a corrupt Premiere Pro CC project for the past 3 and a half hours and I think I'm almost there. I kept getting the error "The Project appears to be damaged, it cannot be opened."
    Back Story & Info
    After hours of searching and trying to repair the project I stumbled upon a thread that said to use an app called "XMLWrench" to repair the raw XML file of the project.
    Upon trying to open the project's XML data in XMLWrench I was greeted with complete and utter non-sense code composed of 90% random symbols and alien looking text. But, upon further research I found out that Premiere Pro CC vs CS6 stores the XML data in a some what compressed format. So what I did was add the file extension ".zip" to the end of my project and tried to extract it. Success! The extracted file was the un-compressed XML file which I was able to open and recognize as a Premiere Project.
    Now here's where I need help
    Now that I can import the XML file from the project into XMLWrench I'm able to scan it for errors. Apparently there appears to be only one. (Thank god, I think...). I'll add an image of the error message below along with a download link to the actually XML file to examine.
    Project XML File: MEGA
    Thank you!
    - Matt

    i was able to rename extension to .prproj and it opened in premiere. what happens if you do that?  i did open and save it from notepad++, but that shouldn't have done anything to the file...

  • Archiving corrupts iDVD project

    Hey there, Im new to iDVD (but not macs). Have successfully created and played a couple of iDVD projects. Since I don't have a burner in this machine I have attempted to archive 2 projects and move them to another machine via flash drive so they can be burned. Once the project is finished archiving, and shows the appended "archived" file name, that archived version plays fine in Preview mode. However, if I save it, close iDVD, then re-open the same file the app hangs. If I save the archived project to flash or CD and try moving it to a new machine iDVD on that machine yields an error message and wont load the project. Im using os 10.4.6 and iDVD 5.0.1 so that is all up to date. What is causing the corruption upon saving??
    Thanks!

    Sue, you are a font of information.
    Thanks for the great tip, but No, that has no affect. The ownerships were already at read/write for myself and others. Also, it is not just others who cant play it.,..I cant' play it on the machine I made it on. I get the menu page, but navigaiting to a slideshow hangs the app. It kinda buggin' me as I am used to stuff working. I did find that iMovie '05 has a bug regarding "make movie last as long as selected song" feature...so maybe this app is goofy too? I always favor solutions that dont require an upgrade Thanks!!

  • Global Templates Corrupted in Project 2010

    Has anyone had an issue with project templates, associated with EPT's, causing Project Pro 2010 to crash whenever the drop-down selection on a column (field) is chosen?
    I am running Project Server/Pro 2010 SP1 patched to Oct 2012.
    I have 3 templates that are similar (small, medium, large).  The medium and large when opened as templates were fine, so I simply saved them back and they are working fine.  The small one was corrupted whenever the column drop-down was clicked. 
    I opened another version of the small template from my lab system (same content as production) and saved it to production and all is good.  I am at a loss to figure what happened prior to this exercise. I saved a copy of the corrupted small template and
    the corrupted projects for further examination.  Any ideas?  The fix for the projects with the corrupted template requires saving all the PWA and Project Site information, deleting the project and its associated site and starting over from scratch. 
    Those with actual hours will take even longer.  What a mess.
    Update 4/29/14 -
    Regarding the corrupted template and project files that occurred recently, Microsoft has stated that this behavior is fixed after installing the April 2014 CU. 
    I will verify this when the April CU is applied to the test machine in our lab. 
    The cause of the crashing was related to a null setting in the filter-by and group-by settings.  A null is not a setting that can be selected, so I am unclear as to how it got that way in the template.
     There is no answer as to why the selections are null and it cannot be corrected. 
    This is a bug.

    Dinesh,
    I am painfully aware of the fix to the corruption.  I have removed all the corrupted templates and replaced them with non-corrupted ones.  I am now working to fix 32 projects that have the corrupted template.  Some of these 32 have actual
    hours posted making the task even more time consuming.
    No I did not initiate a ticket with Microsoft.  My experience after working through several bug tickets with them it is that it takes a lot of effort to provide them what they need (problem description, creating compressed copies of all 4 databases,
    uploading, fielding calls from the support techs, then dealilng with the folks they hand off to, then getting acknowledgement that it is a bug and will be addressed by the development team and placed in a private fix or CU in an upcoming cycle).  In the
    meantime, I have projects to fix!  I realize that we are not up-to-date on CU's and SP's.  I am working on that now.
    Thanks.

  • BUG: Proto and creative cloud generates a corrupted zip project file

    I have uploaded a proto project to creative cloud, and later I have downloaded it as a zip file, but the ZIP is corrupted and can't be opened. I have tried cloning the project and downloading several times, and it is alway corrupted.
    After tring to fix the zip, I got this:
    $ unzip Project1Fixed.zip
    Archive:  Project1Fixed.zip
      inflating: Project 1/Index.html   
      inflating: Project 1/Proyecto.html 
      inflating: Project 1/Navegaci??????n.htm 
      error:  invalid compressed data to inflate
      inflating: Project 1/Proyecto 2.html 
      inflating: Project 1/Navegaci??????n 2.htm 
      error:  invalid compressed data to inflate
      inflating: Project 1/Proyecto 3.html 
      inflating: Project 1/Index.css    
      inflating: Project 1/Proyecto.css 
      inflating: Project 1/Navegaci??????n.cs 
      error:  invalid compressed data to inflate
      inflating: Project 1/Proyecto 2.css 
      inflating: Project 1/Navegaci??????n 2.cs   bad CRC cb3cd105  (should be 3565a7d2)
      inflating: Project 1/Proyecto 3.css 
      inflating: Project 1/jQuery/jquery-1.4.4.js 
      inflating: Project 1/jQuery/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png 
      inflating: Project 1/jQuery/themes/base/images/ui-bg_flat_75_ffffff_40x100.png 
      inflating: Project 1/jQuery/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png 
      inflating: Project 1/jQuery/themes/base/images/ui-bg_glass_65_ffffff_1x400.png 
      inflating: Project 1/jQuery/themes/base/images/ui-bg_glass_75_dadada_1x400.png 
      inflating: Project 1/jQuery/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png 
      inflating: Project 1/jQuery/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png 
      inflating: Project 1/jQuery/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png 
      inflating: Project 1/jQuery/themes/base/images/ui-icons_222222_256x240.png 
      inflating: Project 1/jQuery/themes/base/images/ui-icons_2e83ff_256x240.png 
      inflating: Project 1/jQuery/themes/base/images/ui-icons_454545_256x240.png 
      inflating: Project 1/jQuery/themes/base/images/ui-icons_888888_256x240.png 
      inflating: Project 1/jQuery/themes/base/images/ui-icons_cd0a0a_256x240.png 
      inflating: Project 1/jQuery/themes/base/jquery.ui.accordion.css 
      inflating: Project 1/jQuery/themes/base/jquery.ui.all.css 
      inflating: Project 1/jQuery/themes/base/jquery.ui.autocomplete.css 
      inflating: Project 1/jQuery/themes/base/jquery.ui.base.css 
      inflating: Project 1/jQuery/themes/base/jquery.ui.core.css 
      inflating: Project 1/jQuery/themes/base/jquery.ui.tabs.css 
      inflating: Project 1/jQuery/themes/base/jquery.ui.theme.css 
      inflating: Project 1/jQuery/ui/jquery.effects.slide.js 
      inflating: Project 1/jQuery/ui/jquery.ui.accordion.js 
      inflating: Project 1/jQuery/ui/jquery.ui.core.js 
      inflating: Project 1/jQuery/ui/jquery.ui.tabs.js 
      inflating: Project 1/jQuery/ui/jquery.ui.widget.js
    I think that this is related to some of my project pages having accented characters in their name, as all the ????? in the filenames corresponds to just those files, and they are the corrupted ones.

    Hi,
    It happened only to that project, and I actually fixed it by hex editing the project. The problem was related to then enconding and size of the filenames in the zip file, I used accented filenames with (If I remember correctly) UTF8 encoding. Some of the characters used 2 bytes to represent the filename, but only 1 was accountedd in the zip headers. I just added one to those size fields of the zip headers, and the it opened just fine.

  • Scripting problems with upgraded project file

    Hello,
    I hope someone can offer a bit of help on this one. I have a v3 project file that I upgrade to v4. I decided to add a "return to menu" script to this project file. 3 scripts to set GPRM 0 mov to 0,1,2 for three different menus. And a final Jump script to Jump to Menu 1 if GPRM 0=0, Jump to Menu 2 if GPRM 0=1, Jump to Menu 3 if GPRM 0=2.
    This doesn't work - won't work in simulator nor on a build. I suspect that the culprit is the upgraded project file. I made a new v4 project file and replicated these same exact scripts and behold! It works!
    So I figured out that it's the upgrade project file that is the reason why these scripts won't work! Very disappointing.
    But now, what can I do short of rebuilding this project all the way from scratch?!?
    It's too bad you can't open 2 projects and copy and paste from one into another.
    Using DVDSP 4.0.3
    Dual 2 ghz G5   Mac OS X (10.4.5)  

    If you'd like to strip out the project assets (video and audio) and use .pict images as place holders instead, then send me the file (with the place holders), I'll happily take a look at it for you. It should be working fine, and I suspect there is something small we have both overlooked.
    There are no real issues with projects from v3 going on to v4 where scripting is concerned - the scripts are identical. There will be something else going on here...
    Just to be sure your scripts are:
    mov GPRM1, 0
    Jump MainMenu // your actual menu name is here
    then
    mov GPRM1, 1
    Jump SceneSelection1 // again, your actual menu name is in here
    and
    mov GPRM1, 2
    Jump SceneSelection2 // and again for the menu name
    Then your final script reads:
    Jump MainMenu If(GPRM1 = 0)
    Jump SceneSelection1 If (GPRM1 = 1)
    Jump SceneSelection2 If(GPRM1 = 2)
    The first script is the start up item for the disc, the second and third scripts are set as targets for buttons on the main menu (which means the script is run before the footage plays) - the last script is set as the menu call and end jump for the track.
    You are sure that you are correctly re-setting the GPRM each time you move between menus?
    If this simple scripting system isn't working then there is going to be a reason for it besides the upgrade... send me the file, I'll have a look. Alternatively, have a look here for downloadable stuff, and find the zip archive called 'Chi-Ho Lee', which is a simplified PAL version of how I think you should have this set up.

  • Problem with exported ant build scripts of a  WebService Project

    Hi All,
    My current task is a migration of working application (from Weblogic 8.1 to Weblogic 10.2).
    We have several independent projects and an EAR type of project in the workshop.
    When running ant from the command line, I am getting the following build error:
    BUILD FAILED
    D:\HPRA2\Services\BuildScripts\build.xml:388: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\BLD_Transformation.xml:125: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\BLD_Transformation.xml:67: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\workspace_build.xml:30: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\Ear_Transformation\build.xml:199: The following error occurred while executing this line:
    jar:file:/D:/HPRA2/Services/workshop-lib/workshop-antlib.jar!/com/bea/workshop/cmdline/antlib/antlib.xml:86: The following error occurred while executing t
    his line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\Ear_Transformation\build.xml:211: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:413: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:207: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:546: java.lang.NullPointerException
    at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:539)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:384)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)
    at org.apache.tools.ant.Target.performTasks(Target.java:369)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    at org.apache.tools.ant.Main.runBuild(Main.java:668)
    at org.apache.tools.ant.Main.startAnt(Main.java:187)
    at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
    at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
    Caused by: D:\HPRA2\Services\CoreServices\Transformation\BLD_Transformation.xml:125: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\BLD_Transformation.xml:67: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\workspace_build.xml:30: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\Ear_Transformation\build.xml:199: The following error occurred while executing this line:
    jar:file:/D:/HPRA2/Services/workshop-lib/workshop-antlib.jar!/com/bea/workshop/cmdline/antlib/antlib.xml:86: The following error occurred while executing t
    his line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\Ear_Transformation\build.xml:211: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:413: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:207: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:546: java.lang.NullPointerException
    at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:539)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:384)
    at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:107)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)
    at org.apache.tools.ant.Target.performTasks(Target.java:369)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:37)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:382)
    ... 12 more
    Caused by: D:\HPRA2\Services\CoreServices\Transformation\BLD_Transformation.xml:67: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\workspace_build.xml:30: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\Ear_Transformation\build.xml:199: The following error occurred while executing this line:
    jar:file:/D:/HPRA2/Services/workshop-lib/workshop-antlib.jar!/com/bea/workshop/cmdline/antlib/antlib.xml:86: The following error occurred while executing t
    his line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\Ear_Transformation\build.xml:211: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:413: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:207: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:546: java.lang.NullPointerException
    at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:539)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:384)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)
    at org.apache.tools.ant.Target.performTasks(Target.java:369)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:37)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:382)
    ... 21 more
    Caused by: D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\workspace_build.xml:30: The following error occurred while executing this line
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\Ear_Transformation\build.xml:199: The following error occurred while executing this line:
    jar:file:/D:/HPRA2/Services/workshop-lib/workshop-antlib.jar!/com/bea/workshop/cmdline/antlib/antlib.xml:86: The following error occurred while executing t
    his line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\Ear_Transformation\build.xml:211: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:413: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:207: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:546: java.lang.NullPointerException
    at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:539)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:384)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)
    at org.apache.tools.ant.Target.performTasks(Target.java:369)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:37)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:382)
    ... 29 more
    Caused by: D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\Ear_Transformation\build.xml:199: The following error occurred while executing
    this line:
    jar:file:/D:/HPRA2/Services/workshop-lib/workshop-antlib.jar!/com/bea/workshop/cmdline/antlib/antlib.xml:86: The following error occurred while executing t
    his line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\Ear_Transformation\build.xml:211: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:413: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:207: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:546: java.lang.NullPointerException
    at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:539)
    at org.apache.tools.ant.taskdefs.MacroInstance.execute(MacroInstance.java:380)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)
    at org.apache.tools.ant.Target.performTasks(Target.java:369)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:37)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:382)
    ... 37 more
    Caused by: jar:file:/D:/HPRA2/Services/workshop-lib/workshop-antlib.jar!/com/bea/workshop/cmdline/antlib/antlib.xml:86: The following error occurred while
    executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\Ear_Transformation\build.xml:211: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:413: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:207: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:546: java.lang.NullPointerException
    at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:539)
    at org.apache.tools.ant.taskdefs.MacroInstance.execute(MacroInstance.java:380)
    at net.sf.antcontrib.logic.ForTask.doSequentialIteration(ForTask.java:259)
    at net.sf.antcontrib.logic.ForTask.doToken(ForTask.java:268)
    at net.sf.antcontrib.logic.ForTask.doTheTasks(ForTask.java:299)
    at net.sf.antcontrib.logic.ForTask.execute(ForTask.java:244)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:64)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.taskdefs.MacroInstance.execute(MacroInstance.java:378)
    ... 45 more
    Caused by: D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\Ear_Transformation\build.xml:211: The following error occurred while executing
    this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:413: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:207: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:546: java.lang.NullPointerException
    at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:539)
    at com.bea.workshop.cmdline.antlib.AntExTask.execute(AntExTask.java:408)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:64)
    at net.sf.antcontrib.logic.IfTask.execute(IfTask.java:197)
    at sun.reflect.GeneratedMethodAccessor68.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.tools.ant.TaskAdapter.execute(TaskAdapter.java:123)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:64)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.taskdefs.MacroInstance.execute(MacroInstance.java:378)
    ... 55 more
    Caused by: D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:413: The following error occurred while executing t
    his line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:207: The following error occurred while executing this line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:546: java.lang.NullPointerException
    at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:539)
    at com.bea.workshop.cmdline.antlib.AntExTask.execute(AntExTask.java:408)
    at com.bea.workshop.cmdline.antlib.AntCallExTask.execute(AntCallExTask.java:118)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)
    at org.apache.tools.ant.Target.performTasks(Target.java:369)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
    at com.bea.workshop.cmdline.antlib.AntExTask.execute(AntExTask.java:406)
    ... 69 more
    Caused by: D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:207: The following error occurred while executing t
    his line:
    D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:546: java.lang.NullPointerException
    at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:539)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:384)
    at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:107)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)
    at org.apache.tools.ant.Target.performTasks(Target.java:369)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
    at com.bea.workshop.cmdline.antlib.AntExTask.execute(AntExTask.java:406)
    ... 77 more
    Caused by: D:\HPRA2\Services\CoreServices\Transformation\Java\Transformation\TransformationWS\build.xml:546: java.lang.NullPointerException
    at weblogic.wsee.tools.anttasks.JwscTask.execute(JwscTask.java:181)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)
    at org.apache.tools.ant.Target.performTasks(Target.java:369)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:37)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:382)
    ... 85 more
    Caused by: java.lang.NullPointerException
    at weblogic.wsee.tools.jws.decl.WebTypeDecl.getTargetNamespace(WebTypeDecl.java:213)
    at weblogic.wsee.tools.jws.decl.WebTypeDecl.<init>(WebTypeDecl.java:84)
    at weblogic.wsee.tools.jws.decl.WebResultDecl.<init>(WebResultDecl.java:22)
    at weblogic.wsee.tools.jws.decl.WebMethodDecl.<init>(WebMethodDecl.java:68)
    at weblogic.wsee.tools.jws.decl.WebServiceSEIDecl.buildMethod(WebServiceSEIDecl.java:317)
    at weblogic.wsee.tools.jws.decl.WebServiceSEIDecl.initMethods(WebServiceSEIDecl.java:303)
    at weblogic.wsee.tools.jws.decl.WebServiceSEIDecl.<init>(WebServiceSEIDecl.java:95)
    at weblogic.wsee.tools.jws.decl.WebServiceSEIDecl.<init>(WebServiceSEIDecl.java:68)
    at weblogic.wsee.tools.jws.decl.WebServiceDeclFactory.newInstance(WebServiceDeclFactory.java:54)
    at weblogic.wsee.tools.anttasks.JwsModule.buildAndValidate(JwsModule.java:463)
    at weblogic.wsee.tools.anttasks.JwsModule.loadWebServices(JwsModule.java:454)
    at weblogic.wsee.tools.anttasks.JwsModule.generate(JwsModule.java:306)
    at weblogic.wsee.tools.anttasks.JwsModule.build(JwsModule.java:226)
    at weblogic.wsee.tools.anttasks.JwscTask.execute(JwscTask.java:174)
    ... 93 more
    I really dont know what exactly the problem is?
    Any assistance would be highly appreciated.
    Thanks,
    Nirmal

    Hi...
    Actually the build.xml is created by the workshop itself when we use export ant scripts.
    And this build.xml contains the following target:
    &lt;target name="webservice.build" depends="init,generated.root.init"&gt;
    &lt;path id="jwsc.srcpath"&gt;
    &lt;path path="${java.sourcepath}" /&gt;
    &lt;pathelement path="build/assembly/.src" /&gt;
    &lt;/path&gt;
    &lt;taskdef name="jwsc" classname="weblogic.wsee.tools.anttasks.JwscTask" &gt;
    &lt;classpath&gt;
    &lt;path refid="weblogic.jar.classpath" /&gt;
    &lt;/classpath&gt;
    &lt;/taskdef&gt;
    &lt;property name="jwsc.module.root" value="${project.dir}/build/weboutput"/&gt;
    &lt;property name="jwsc.contextpath" value="TransformationWS"/&gt;
    &lt;property name="jwsc.srcpath.prop" refid="jwsc.srcpath"/&gt;
    &lt;path id="jwsc.classpath"&gt;
    &lt;path refid="weblogic.jar.classpath" /&gt;
    &lt;path refid="java.classpath" /&gt;
    &lt;pathelement path="${java.outpath}" /&gt;
    &lt;/path&gt;
    *&lt;jwsc*
    *destdir="${project.dir}/build"*
    *classpathref="jwsc.classpath"*
    *&gt;*
    &lt;module name="weboutput" explode="true" contextPath="${jwsc.contextpath}"&gt;
    &lt;jwsFileSet srcdir="${jwsc.srcpath.prop}"&gt;
    &lt;include name="**/*.java"/&gt;
    &lt;/jwsFileSet&gt;
    &lt;descriptor file="${jwsc.module.root}/WEB-INF/web.xml" /&gt;
    &lt;descriptor file="${jwsc.module.root}/WEB-INF/weblogic.xml" /&gt;
    &lt;/module&gt;
    &lt;/jwsc&gt;
    &lt;/target&gt;
    I never touch this build.xml as for rest of the services this gives no error.
    But for one of the services it gives the the error mentioned above.....
    Moreover the property "*jwsc.classpath*" is not set in the script.
    Although it seems that build script tries to set this property. How can I manually set this property as to run the script successfully.
    Thanks
    Nirmal...
    Edited by: nirmal_kumar on Jan 4, 2009 11:02 PM
    Edited by: nirmal_kumar on Jan 4, 2009 11:05 PM

  • Corrupt / Damaged Project

    I worked really hard on this ongoing Captivate 2 project
    & decided to add Navigation Menus to it via Captivate 2's new
    Menu feature.
    I did that & went back & forth a few times to alter
    the Menu items.
    All of the sudden, I tried opening my project & it tells
    me that the project is either damaged or corrupt.
    I didn't do anything negative to it; didn't loose a network
    connection while I had it open; I tried rebooting the file server a
    few times & to no avail, cannot open this particular project.
    This happened a few days ago & I'm still stuck.
    Does anyone have any advise that they can share?

    Hi Michael
    I'm seeing lots of references here to networks. Is your
    project by chance placed on the network? And you are opening
    Captivate on your local PC and making edits to the project while it
    is in the network location? If so, that's likely your issue. My
    guess is that there is typically little to no chance of recovery of
    the original project. So you will likely have to start over.
    One possibility would be to try creating a new, blank project
    that is sized identically to the errant one. Then click File >
    Import/Export > Import Slides/Objects from other Adobe Captivate
    projects... and see if the movie can be recovered that way. I
    believe I've seen my fellow Community Expert Larry Walther (AKA
    CatBandit) report that if you get to the Captivate start screen and
    hover the link to the corrupt project and you actually see
    information, your chances of recovery are greater. But if you don't
    see information in the popup, you are probably sunk. Not sure if
    this still applies in the Captivate 2 world, but it probably does.
    Assuming this fails to work, and further assuming you were
    editing files while they are on a Network share, consider this a
    lesson hard earned and vow never to edit projects while on the
    network ever again. It's always best practice to work off your
    local PC. This means the C drive. Now if your IT folks insist on
    having your project files stored on the network share for backup
    purposes, this is fine. Just be sure to copy there frequently. Not
    only will it provide them with a warm fuzzy, it will likely give
    you a good avenue of recovery if something happens to your project.
    In addition to this, you might want to take a moment to complete a
    Wish form asking the Captivate developers to please, Please, PLEASE
    provide some sort of a decompiler that will take a Captivate
    created. .SWF or .EXE and convert it to a working .CP file. I
    suggest this because I regularly see posts where the .CP file is
    somehow corrupt and the person has a working .SWF. And I know other
    decompilers are out there.
    The link for suggestions is visited by
    clicking
    here.
    Cheers... Rick

Maybe you are looking for

  • Is it possible for multiple users to use a "generic" account simultaneously without screen sharing?

    Hey and thanks for checking out the thread. I am wondering if it is possible to have users use a generic account at the same time without any sort of screen sharing. I have set up a generic user account (for example useraccount, password 1234) for us

  • When I used time machine to recover lost photos, iPhoto lost my recent photos.

    Yesterday, I noticed that iPhoto was missing all the photos from one event that was actually a number of events that I had merged together fairly recently. I used time machine from an external drive to recover them, but when I restored the photo libr

  • How to use php variable for default tabbed panel

    I have a tabbed panel and with tabs labelled with the days of the week.  What I want to do is open up the tab that correspond to the current day.  I have been using the following to get the day in 3 char format: <?php $jd=cal_to_jd(CAL_GREGORIAN,date

  • TreeMap.put() Problem

    I am having a problem with adding different types of objects as keys to a TreeMap, although the javadoc says that the method takes two arguments of type object, I am getting a casting error when I try the following. TreeMap matched = new TreeMap(); m

  • My video icons disappeared

    I downloaded some video podcasts and i edited some infomation in "Get Info". And my video icons just disappeared. I think it's ok and syn them into my iPod and all my podcast video display in "Music". How can I change it back??