Tell block ends prematurely

Hi,
I'm trying to use Image Events to scale an image within an AppleScript I wrote. As a stand alone app, using only Image Events (IE), copying the script from one of the examples, all works fine. When I put that example script into mine as a subroutine, it doesn't work. The tell block that it's in ends, and the finder takes over.
my callling routine:
... setup stuff
tell application "Finder"
if not (exists folder "image gallery" of base_folder) then make new folder at base_folder with properties {name:"image gallery"}
set the_files to every file of base_folder
repeat with each_file in the_files
if the name extension of each_file is "jpg" then
my scaleImage800(duplicate each_file to (folder "image gallery" of folder base_folder))
end if
end repeat
end tell
my subroutine:
on scaleImage800(the_file)
try
tell application "Image Events"
launch
-- open the image file
set this_image to open the_file
-- perform action
scale this_image to size 800
-- save the changes
save this_image with icon
-- purge the open image data
close this_image
end tell
on error msg
display dialog msg
end try
end scaleImage600
and the results:
end tell
tell application "Image Events"
launch
current application
------ here's the problem
end tell
tell application "Finder"
------ where does this come from?
open document file "Fishing.jpg" of folder "image gallery" of folder "rmearns" of folder "Submitted Images" of folder "Camera Roch site template" of folder "IE downloads" of folder "Downloads" of folder "benbarlo" of folder "Users" of startup disk
end tell
tell current application
display dialog "The variable this_image is not defined."
"User canceled."
For some reason, the "tell application "Image Events"" statement doesn't "hold". AS does an "end tell" and "tell application "finder"" on its own right after, which causes the "open" statement to be executed by finder, not IE.
What's happening?
Thanks,
Ben
macbook 13, DP Quicksilver   Mac OS X (10.4.9)   Macbook 512MB, QS 1.5GB
macbook 13, DP Quicksilver   Mac OS X (10.4.9)   Macbook 512MB, QS 1.5GB
macbook 13, DP Quicksilver   Mac OS X (10.4.9)   Macbook 512MB, QS 1.5GB

property images_folder : "image gallery" -- User definded folder.
property originals_folder : "_originals" -- Location of duplicated files.
property processed_folder : "_processed" -- Location of resized files.
tell application "Finder" -- Required for 'path to', 'exists', 'every file of', and 'name extension' commands.
set base_folder to (path to desktop folder from user domain) as string -- Hardwired location of 'images_folder'.
if (exists folder (base_folder & images_folder)) then -- Determine if 'images_folder' exists. If so, continue ...
set the_files to every file of folder (base_folder & images_folder) -- Obtain full path of each file in 'images_folder'.
-- Determine if 'originals_folder' exists. If not, create it.
if (not (exists folder (base_folder & images_folder & ":" & originals_folder))) then make new folder at folder (base_folder & images_folder) with properties {name:originals_folder}
-- Determine if 'processed_folder' exists. If not, create it.
if (not (exists folder (base_folder & images_folder & ":" & processed_folder))) then make new folder at folder (base_folder & images_folder) with properties {name:processed_folder}
repeat with each_file in the_files -- Cycle throught the list of obtained files.
duplicate each_file to folder (base_folder & images_folder & ":" & originals_folder) with replacing -- Store a master copy, in 'originals_folder'.
if ((name extension of each_file) is "jpg") then my scaleImage800(each_file as string) -- Process only '.jpg' files.
move each_file to folder (base_folder & images_folder & ":" & processed_folder) with replacing -- Store the processed copy, in 'processed_folder'.
end repeat
else -- ... otherwise, create a new 'images_folder' at 'base_folder'.
make new folder at folder base_folder with properties {name:images_folder} -- Create new 'images_folder' folder.
display dialog "A new (empty) folder, titled '" & images_folder & "' has been created on the 'Desktop." buttons {"OK"} default button "OK"
end if
end tell
try -- Optional code.
tell application "Image Events" to quit -- Quit 'Image Events'.
end try
try -- Optional code.
tell application "Image Capture Extension" to quit -- Quit 'Image Capture Extension.
end try
on scaleImage800(the_file)
try
tell application "Image Events" -- Required fo 'open', 'scale to', 'save with', and 'close' commands.
launch
set fRef to open the_file -- Open the image file
scale fRef to size 800 -- Scale the image
save fRef with icon -- Save the image
close fRef -- Close the image
end tell
on error msg
display dialog msg -- Handle any errors.
end try
end scaleImage800
  Mac OS X (10.4.6)  

Similar Messages

  • Problem with Nested tell blocks in Applescript

    Hello everyone,
    I've been trying to do a little Applescript, whose purpose is to open a file selector to let the user choose a bunch of images, then prompt him to ask a resizing ratio, and then resize the chosen pictures accordingly (after duplicating the originals in a folder on the desktop, the copied files being the ones resized).
    I'm having problems with the resizing part... Here is the code I've come up with so far... "Image traitées" is the name of the new folder created on the desktop, and "compression" is the factor in %.
         -- Resizing 
         tell application "Finder"
              repeat with photo in folder "Images traitées" of desktop
                   tell application "Image Events"
                        launch
                        scale photo by factor compression * 0.01
                   end tell
              end repeat 
         end tell
    I'm encountering an error number -1708, saying that the 'photo' item doesn't understand the scale message...
    As I'm new to Applescript, I have some difficulties solving this... Could it be due to the nested tell blocks ?
    Thanks a lot for your help !
    Thomas

    Your tell statements are OK, although when nesting them you do need to keep track of what application is getting targeted in any given statement (to avoid terminology conflicts).
    Each application refers to its objects in its own way - unfortunately, not everything knows about Finder references.  Your photo variable contains a Finder reference (e.g. "file x of folder y of disk z"), but Image Events doesn't know what that is.  The solution is to convert the Finder reference to something more standard, such as text or an alias.
    Your script won't work with just that change, however.  Image Events works with the image contained in a file, so you also need to actually get that image, for example:
    set compression to 80 -- used in the following snippet
    tell application "Image Events" to launch -- just need to do this once
    tell application "Finder"
         repeat with photo in folder "Images traitées" of desktop
              tell application "Image Events"
                   set theImage to open (photo as alias) -- get the image from the Finder reference
                   scale theImage by factor compression * 0.01
                   save theImage -- save the changed image
              end tell
         end repeat
    end tell

  • Installation ended prematurely because of an error.

    Hi There,
    could need a bit of insight. I am trying to update my XI 3.1 installl with SP2.3. SP2 installed ok but installing FP1, 2, or 3 fails with the error message in the subject line.
    Sometimes the install does not even start. After running the exe it unpacks everything and then the Language selection pops up and after that nothing more.
    Any idea how I can get that to work? I had no issues with the CR FPs.
    Thanks,
    Stephan

    i've found [a resolution related to a different product|http://forum.ventrilo.com/showpost.php?p=134644&postcount=36| Vista x64 Ultimate - Installation ended prematurely because of an error], where the poster reported the exact same "Installation ended prematurely because of an error" dialog and event id!
    from a command line, i ran:
    +d:\downloads\tempro_setup_dir\TEMPRO_3.3.3.exe /passive+
    and that installed tempro "silently". to quote [the thread where i found the resolution|http://forum.ventrilo.com/showpost.php?p=134644&postcount=36| Vista x64 Ultimate - Installation ended prematurely because of an error]:
    {quote:title=Countdmoney wrote:}{quote}
    > This will run the installation without the dialog boxes of the installer being displayed. Of course you will be accepting all the defaults, but the 64-bit version installs in the "Program Files" directory.
    phew! finally i can now resume all those annoying alerts ;)

  • Slideshows ends prematurely in the middle of a transition?

    I have eight slides in a project so far and for some reason the slideshow ends prematurely in the middle of the transition from the sixth slide. any ideas? TIA jim

    Hi larryjo:
    You need to highlight the clip by clicking on it, then go to Edit / Split Video Clip. You will see a line where the clip has been split.
    Then drag your transition to that split line. It will work then.
    Might want to download these for some help...
    http://manuals.info.apple.com/en/iMovieAtAGlance.pdf
    http://manuals.info.apple.com/en/iMovieLesson1.pdf
    http://manuals.info.apple.com/en/iMovieLesson2.pdf
    http://manuals.info.apple.com/en/iMovieLesson3.pdf
    http://manuals.info.apple.com/en/iMovieLesson4.pdf
    http://manuals.info.apple.com/en/iMovieLesson5.pdf
    http://manuals.info.apple.com/en/iMovieLesson6.pdf
    http://manuals.info.apple.com/en/iMovieLesson7.pdf
    Sue

  • FIM Service and Portal Installation Ends Prematurely

    Hello All,
        I'm in the process of setting up a new production FIM 2010 R2 server. I have already installed the FIM synchronization service and I was able to install this successfully.
    I have already installed SharePoint services (WSS 3.0) and configured it for FIM. But when I try to install the FIM Service and Portal.
    I keep getting and error that says " FIM Service and Portal Installation Ends Prematurely" with no other details. If anybody has any advice please let me know. 
        I have already installed everything on a stand alone box in a dev environment and it all works correctly however I am unable to now install in a production environment 

    Cameron is right - you should consider FIMService account nearly as normal AD account for user*
    An installer account should be admin on the box, where you are installing FIMService and he should be sysadmin on SQL during installation of FIMService. An installer account should be other than FIMService account itself.
    *FIMService account:
    Lock down the Service Account
    The service account should not be used by any other services or users. The account must not be used to logon interactively and requires no access to any additional resources beyond those granted during setup. The service account is used to provide the security
    context for the MIIS service as it accesses resources on the MIIS server and the associated database. It also provides the security context for the execution of any rules extensions.
    Lock down the service account to ensure no malicious user is able to sign in using its credentials and gain access to MIIS data. Configure Group Policies to lock down the account and restrict access to this account. Since the MIIS service only needs the account
    to run as a service, restrict the account as follows:
    Deny logon as a batch job.
    Deny logon locally.
    Deny logon through Terminal Services.
    Deny access to this computer from the network.
    If you found my post helpful, please give it a Helpful vote. If it answered your question, remember to mark it as an Answer.
    Good topic for a Wiki article:
    http://social.technet.microsoft.com/wiki/contents/articles/23330.technet-guru-contributions-for-march.aspx
    Thanks Dominic and Jose!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Why Tempro 3.3.3 "Installation ended prematurely because of an error"?

    hello forum,
    i have a Satellite L500-1XD running windows 7 64 bit. i _had_ tempro 3.0 preinstalled from when i first bought the satellite in mar '10. for months, i ignored tempro's demands to update to tempro 3.3.3; until today. so, i downloaded it from [here|http://eu.computers.toshiba-europe.com/tempro/ToshibaW7TEMPRO.zip|http://eu.computers.toshiba-europe.com/innovation/generic/TEMPRO_W7_RELEASE/].
    when i ran the TEMPRO_3.3.3.exe file, i got the "Welcome to Toshiba TEMPRO Installation Wizard" window as expected. but then when i clicked the "Next" button, all i got was a "Fatal error" dialog that said "Installation ended prematurely because of an error".
    I searched this forum for a solution and i found [this thread|http://forums.computers.toshiba-europe.com/forums/message.jspa?messageID=167329|Satellite P100 fails to instal TEMPRO 2.0.3] that advised the original poster to uninstall the previous version. so, that's what *i* did. i uninstalled the working version 3.0 of Tempro that came preinstalled. but when i tried to install 3.3.3 again, i got the same "Installation ended prematurely because of an error"! now, i don't have tempro at all!
    please, can anybody help with advice on what to do to get this thing successfully installed? i found a related entry in the windows 7 event viewer (see below) if that's of any use.
    thanks in advance for your help.
    =================================
    Event Properties
    General Tab
    Windows Installer installed the product. Product Name: Toshiba TEMPRO. Product Version: 3.33. Product Language: 1033. Manufacturer: Toshiba Europe GmbH. Installation success or error status: 1603.
    =================================
    Event Properties
    Details Tab
    - System
    - Provider
    [ Name] MsiInstaller
    - EventID 1033
    [ Qualifiers] 0
    Level 4
    Task 0
    Keywords 0x80000000000000
    - TimeCreated
    [ SystemTime] 2010-10-29T23:25:17.000000000Z
    EventRecordID 67671
    Channel Application
    Computer ********
    - Security
    [ UserID] S-1-5-21-3117272653-2424292012-3940679202-1001
    ================================================== ==========
    - EventData
    Toshiba TEMPRO
    3.33
    1033
    1603
    Toshiba Europe GmbH
    (NULL)
    7B44424237303231412D333433372D343436462D414345352D 3732363136343441393732437D303030303135663933366262 66613039636634636236336531616535393861636632316330 30303030393034
    Binary data:
    In Words
    0000: 4242447B 31323037 34332D41 342D3733
    0008: 2D463634 35454341 3632372D 34343631
    0010: 32373941 30307D43 35313030 36333966
    0018: 61666262 66633930 36626334 61316533
    0020: 38393565 32666361 30306331 39303030
    0028: 3430
    In Bytes
    0000: 7B 44 42 42 37 30 32 31 {DBB7021
    0008: 41 2D 33 34 33 37 2D 34 A-3437-4
    0010: 34 36 46 2D 41 43 45 35 46F-ACE5
    0018: 2D 37 32 36 31 36 34 34 -7261644
    0020: 41 39 37 32 43 7D 30 30 A972C}00
    0028: 30 30 31 35 66 39 33 36 0015f936
    0030: 62 62 66 61 30 39 63 66 bbfa09cf
    0038: 34 63 62 36 33 65 31 61 4cb63e1a
    0040: 65 35 39 38 61 63 66 32 e598acf2
    0048: 31 63 30 30 30 30 30 39 1c000009
    0050: 30 34 04

    i've found [a resolution related to a different product|http://forum.ventrilo.com/showpost.php?p=134644&postcount=36| Vista x64 Ultimate - Installation ended prematurely because of an error], where the poster reported the exact same "Installation ended prematurely because of an error" dialog and event id!
    from a command line, i ran:
    +d:\downloads\tempro_setup_dir\TEMPRO_3.3.3.exe /passive+
    and that installed tempro "silently". to quote [the thread where i found the resolution|http://forum.ventrilo.com/showpost.php?p=134644&postcount=36| Vista x64 Ultimate - Installation ended prematurely because of an error]:
    {quote:title=Countdmoney wrote:}{quote}
    > This will run the installation without the dialog boxes of the installer being displayed. Of course you will be accepting all the defaults, but the 64-bit version installs in the "Program Files" directory.
    phew! finally i can now resume all those annoying alerts ;)

  • Primavera p6 professional R8.2 setup wizard ended prematurely because of an error.

    i want to install primavera p6 professional R8.2 in my machine after selecting standalone option i am getting following error.
    "Primavera p6 professional R8.2 setup wizard ended prematurely because of an error.your system has not been modified"
    can any one help on this.

    Hi,
    If the typical option is allowing the application to install, then i'd suggest just adding the database side of it manually.
    The client application for PPM and EPPM in P6r8.2 and 8.3 is the same application (P6 Professional) and is 'smart' enough to enable/disable features depending on if it detects a PPM or EPPM database.
    There should be an Oracle XE installation file in the download that you can install (personally I prefer SQL Server Express but you will need to enable Named Pipes and TCP/IP after it is installed).
    I would recommend installing one of these, creating the database manually and then configure the install you have that is pointing to your EPPM database to also point to the PPM database you create after installing OracleXE/SQL Server Express.
    Regards
    Alex

  • Cd ends prematurely

    Sometimes a CD will end prematurely on my ipod touch.  It seems the time counter thinks it is further along than it should be, so it reaches 0.00 before the true end of the CD and cuts it off.  If I go back and play the last few minutes of the CD it cues up properly and plays to the end.  How do I prevent the premature cut off from occurring?  I've down loaded the CD's into my computer and into iTunes then onto my ipod.

    Hey cmir,
    I found the following resource that may provide more information:
    Songs in iTunes may not play back completely
    http://support.apple.com/kb/TS4357
    Occasionally, if a song purchased from the iTunes Store on a Mac or PC was not downloaded completely, the song may not play back fully. The song may abruptly stop during playback, and iTunes may start playing the next song in your library or playlist.
    Resolution
    If iTunes in the Cloud is available in your country, try the following steps to resolve the issue:
    - Delete the purchased song that is exhibiting the problem from your iTunes library.
    - Click on the Purchased link in the iTunes Store to view your previously purchased music.
    - Download your previously purchased song from this list.
    Once you have redownloaded the music, you'll want to replace what is on your device with the new music. I would advise you to uncheck the "Sync Music" checkbox, and apply the changes (so there is ultimately no music syncing to your iPod touch).
    Once you have done that, recheck the "Sync Music" checkbox, and apply the changes once more. This will instruct iTunes to completely remove all music from your device, and then copy the files once more. If you have a large amount of music, this initial sync may take a while.
    Thanks,
    Matt M.

  • Correct duration longer than indicated - playback ends prematurely

    I have some mp3 song tracks the durations for which are actually substantially longer than reported in iTunes (up to 20 or 30 percent longer). When I play one of these songs in iTunes, the song continues to play to the end after the displayed remaining time has reached zero, but on my iPod the song ends prematurely. Options don't let me specify an end point later then the displayed end point for playback. QuickTime Player gets the durations right. How might I repair the incorrect duration information in iTunes? Thanks.

    For me the same used audion lame encoder and showed up in iTunes Library with very strange time settings.

  • VMM Agent Installation Issues (Was previously installed fine, now refuses to install (ends prematurely)

    The VMM agent was installed on two Hyper-V host servers just fine (they were then removed temporarily from SCVMM), but trying to add the servers back into SCVMM it insisted the versions of the agents on the two hosts were unsupported (even though it
    installed them) so it requested they were removed before retrying, after removing the agents it now refuses to install them and suggests installing them locally. Installing them on the local host manually just causes the installation to end prematurely.
    The firewall is completely disabled
    UAC is turned off
    I have also tried running from elevated cmd using msiexec /I
    Any ideas?? 

    Hi,
    Please refer below as it has some useful troubleshooting steps that might help you.
    http://support.microsoft.com/kb/2742275
    As you have tried from an elevated cmd, have you tried restarting Add Host job in VMM as the last step?
    http://networkerslog.blogspot.com/2013/07/unable-to-add-hyper-v-host-due-to.html
    You can use PowerShell to reassociate the Host.
    http://blogs.technet.com/b/jonjor/archive/2013/02/15/managing-hyper-v-hosts-using-virtual-machine-manager-fails-with-error-0x8033803b.aspx
    Let me know of any development.
    Thanks,
    Janaka
    Janaka Rangama MCT MIEEE MBCS (Please take a moment to Vote as Helpful and/or Mark as Answer, where applicable.)

  • Songs ending prematurely

    While on vacation I discovered that two of my songs didn't work on my iPod. When I try to play them, I hear the first second or so of the song, but then it immediately goes on to play the next one as if the song ended there. Both songs play fine on my computer; I tried deleting them from iTunes and my iPod then adding them back but somehow they still have the same problem. I had a similar problem treatable by that method on both my iPod and iTunes where songs end up to a minute prematurely, but this is different; it only affects the iPod and only the first few seconds play. Does anyone know what this could be?

    I had to manually reprocess the songs in Audacity to fix some problem with the files and get it working.

  • Recording ends prematurely when application button is pressed

    I am trying to record a tutorial for a software program which
    plays audio files. When I click the Play button in the software
    program, it triggers Captivate 2 to stop recording. I tried
    changing the End recording button from End to NumLock but with no
    success. The bottom line is I can't record the steps I want because
    Captivate ends too soon. Any suggestions as to how to get around
    this? Thanks

    This question was posted twice. Presumably because of a forum
    glitch. Please direct any responses to the original thread. You may
    do so by
    clicking
    here.

  • FIM Service installation ended prematurely

    Hi all,
    Im trying to install FIM 2010 R2. The sync service and portal are not a problem, but when I want to install the service, it fails. I fill in all the required information and press the "install" button. It starts installing, but when the "copying new files"
    appears, the statusbar stops around 90%, and start to Roll back and the installation failes.
    I tried installing with verbose logging which gives me the following(don't know if this has anything to do with it tbh):
    MSI (s) (34:54) [13:02:30:442]: Hello, I'm your 32bit Elevated custom action server.
    CAQuietExec: 
    CAQuietExec:  URL reservation delete failed, Error: 2
    CAQuietExec:  The system cannot find the file specified.
    CAQuietExec: 
    CAQuietExec: 
    CAQuietExec:  Error 0x80070001: Command line returned an error.
    CAQuietExec:  Error 0x80070001: CAQuietExec Failed
    CustomAction DeleteResourceEndpointAcl returned actual error code 1603 but will be translated to success due to continue marking
    Calling custom action Microsoft.IdentityManagement.ServerCustomActions!Microsoft.IdentityManagement.ServerCustomActions.CustomActions.AddServiceToPerformanceMonitors
    Adding FIMService account to 'Performance Monitor Users' group
    Property name = 'ServiceAccount', value = 'XXXX\XXXX.
    DomainName='XXXX'
    AccountName='XXXX'
    Domain AD found
    Exception thrown by custom action:
    System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Runtime.InteropServices.COMException (0x800706AB): The network address is invalid.
    Any help is appreciated.
    MCTS, MCPD

    I have translated a part ( more french log are repeated): 
    Action 14:59:43: InstallServices. Installing new services
    InstallServices: Service: 
    Action 14:59:45: RollbackPSExtension. 
    Action 14:59:45: InstallPSExtension. 
    Action 14:59:45: DeployAndPopulateDatabase. 
    Action 14:59:58: UpgradeDatabase. 
    Action 15:03:11: SetServiceRecoveryActions. 
    CAQuietExec:   ChangeServiceConfig2 r‚ussite(s)
    Action 15:03:11: StartServices. Starting services
    StartServices: Service: Forefront Identity Manager Service
    Action 15:03:17: RollbackInstallCommonPortal. Rollback solution packs
    Action 15:03:17: InstallCommonPortal. Deploying solution packs
    CAQuietExec:  Microsoft.IdentityManagement.SolutionPackUtility.exe will deploy and/or retract the FIM solution packs.
    This operation may take long time in a SharePoint farm environment. 
    CAQuietExec:  Executing all administrative timer jobs in preparation for FIM solution pack deployment.
    CAQuietExec:  Executing update SharePointc5f0e7e4-0d86-478f-8d20-221613cfd924.
    CAQuietExec:  the work of update SharePointc5f0e7e4-0d86-478f-8d20-221613cfd924 failed‚with the error. This
    task will be ignore echec connexion port IPCÿ: can't found the specified file.
    CAQuietExec:   
    CAQuietExec:  executinf update  SharePointe967be64-3e49-4364-8455-678216363533.
    CAQuietExec:  the
    work of update SharePointe967be64-3e49-4364-8455-678216363533
     failed‚with the error. This
    task will be ignore echec connexion port IPCÿ: can't found the specified file.
    CAQuietExec:   
    CAQuietExec:  Success
    CAQuietExec:  
    CAQuietExec:  Deploying microsoftilmportalcommondlls.wsp
    CAQuietExec:  Ex‚cution de solution-deployment-microsoftilmportalcommondlls.wsp-0.
    CAQuietExec:  Executing
    update SharePointc5f0e7e4-0d86-478f-8d20-221613cfd924.
    CAQuietExec:  Le travail Mise … jour du groupe de processus de traitement SharePointc5f0e7e4-0d86-478f-8d20-221613cfd924
    a ‚chou‚ avec l'erreur suivante. Ce travail va ˆtre ignor‚. chec de la connexion … un port IPCÿ: Le fichier sp‚cifi‚ est introuvable.
    CAQuietExec:   
    CAQuietExec:  Ex‚cution de Mise … jour du groupe de processus de traitement SharePointe967be64-3e49-4364-8455-678216363533.
    CAQuietExec:  Le travail Mise … jour du groupe de processus de traitement SharePointe967be64-3e49-4364-8455-678216363533
    a ‚chou‚ avec l'erreur suivante. Ce travail va ˆtre ignor‚. chec de la connexion … un port IPCÿ: Le fichier sp‚cifi‚ est introuvable.
    CAQuietExec:   
    CAQuietExec:  L'op‚ration s'est d‚roul‚e avec succŠs.
    CAQuietExec:  
    CAQuietExec:  Adding feature for microsoftilmportalcommondlls.wsp
    CAQuietExec:  Ex‚cution de Mise … jour du groupe de processus de traitement SharePointc5f0e7e4-0d86-478f-8d20-221613cfd924.
    CAQuietExec:  Le travail Mise … jour du groupe de processus de traitement SharePointc5f0e7e4-0d86-478f-8d20-221613cfd924
    a ‚chou‚ avec l'erreur suivante. Ce travail va ˆtre ignor‚. chec de la connexion … un port IPCÿ: Le fichier sp‚cifi‚ est introuvable.
    CAQuietExec:   
    CAQuietExec:  Ex‚cution de Mise … jour du groupe de processus de traitement SharePointe967be64-3e49-4364-8455-678216363533.
    CAQuietExec:  Le travail Mise … jour du groupe de processus de traitement SharePointe967be64-3e49-4364-8455-678216363533
    a ‚chou‚ avec l'erreur suivante. Ce travail va ˆtre ignor‚. chec de la connexion … un port IPCÿ: Le fichier sp‚cifi‚ est introuvable.
    CAQuietExec:   
    CAQuietExec:  Success
    CAQuietExec:  
    Action 15:03:27: RollbackInstallFIMPortal. Rollback FIM Portal solution pack
    Action 15:03:27: InstallFIMPortal. Deploying FIM Portal solution pack
    CAQuietExec:  Microsoft.IdentityManagement.SolutionPackUtility.exe will deploy and/or retract the FIM solution packs.
    This operation may take long time in a SharePoint farm environment. 
    CAQuietExec:  Executing all administrative timer jobs in preparation for FIM solution pack deployment.
    CAQuietExec:  update SharePointc5f0e7e4-0d86-478f-8d20-221613cfd924.
    CAQuietExec:  Update SharePointc5f0e7e4-0d86-478f-8d20-221613cfd924
    echec with the error. This task will be ignore echec connexion port IPCÿ: can't found the specified file.
    CAQuietExec:   
    CAQuietExec:  Update SharePointe967be64-3e49-4364-8455-678216363533.
    CAQuietExec:  update SharePointe967be64-3e49-4364-8455-678216363533
    echec with the error. This task will be ignore echec connexion port IPCÿ: can't found the specified file.
    CAQuietExec:   
    CAQuietExec: Success
    CAQuietExec:  
    CAQuietExec:  Deploying microsoftidentitymanagement.wsp
    CAQuietExec:  Ex‚cution of solution-deployment-microsoftidentitymanagement.wsp-0.
    CAQuietExec:  Update
    SharePointc5f0e7e4-0d86-478f-8d20-221613cfd924.
    CAQuietExec:  Update
    SharePointc5f0e7e4-0d86-478f-8d20-221613cfd924 echec with the error. This task will be ignore echec connexion port
    IPCÿ: can't found the specified file.
    CAQuietExec:   
    CAQuietExec:  Update SharePointe967be64-3e49-4364-8455-678216363533.
    CAQuietExec:  update SharePointe967be64-3e49-4364-8455-678216363533 echec with the error. This task will be ignore
    echec connexion port IPCÿ: can't found the specified file.
    CAQuietExec:   
    CAQuietExec:  Success
    CAQuietExec:  
    CAQuietExec:  An exception occurred while running Microsoft.IdentityManagement.SolutionPackUtility.exe:
    the language is not supported by the serveur.
    CAQuietExec:  An error occurred while deploying FIM portal solution
    packs. 
    CAQuietExec:  Error 0xfffffffa: Command line returned an error.
    CAQuietExec:  Error 0xfffffffa: CAQuietExec Failed
    CustomAction InstallFIMPortal returned actual error code 1603 (note this may not be 100% accurate if translation happened
    inside sandbox)
    Action ended 15:03:42: InstallExecute. Return value 3.
    Action 15:03:42: Rollback. Rolling back action:
    Rollback: Deploying FIM Portal solution pack
    Rollback: Rollback FIM Portal solution pack

  • Transaction ending prematurely

              I am having trouble with a custom XAResource that I have written. In a bean managed
              transaction, I am registering and enlisting an XAResource obtained from an Oracle
              XA connection as well as my custom XAResource. I first do some work on the Oracle
              resource. However, when I start to do some work on my custom XAResource, the transaction
              manager suddenly sends it an end() message with flags=TMSUSPEND. Does anyone know
              why the transaction manager might be doing this? Below is my application log showing
              the sequence of events:
              - usertx.begin()
              - tm.registerDynamicResource(XA_RESOURCE_NAME, oracleXAResource): oracle.jdbc.xa.client.OracleXAResource@5bdf42
              - tm.registerDynamicResource(myResourceName, myResource)
              - tx.enlistResource(oracleXAResource)
              - tx.enlistResource(myResource)
              - Do some work on oracleXAResource
              - Try to do some work on myResource
              - myResource.end with flags=TMSUSPEND
              

              Okay, I think I am understanding the problem better, but I don't have a solution
              yet. The transaction mamager is sending an XAResource.end(TMSUSPEND) followed
              by a XAResource.end(TMSUCCESS) which is giving an XAER_RMERR from Oracle. This
              is exactly the bug described in Weblogic JTA manual (oracle bug #1527725). The
              manual also says that "WebLogic Server has provided an internal workaround for
              this bug." - however I am not seeing the behavior expected from this workaround!
              Can anyone help please? I am attaching my server log with JTA debug messages.
              Thanks.
              [OssServer.log]
              

  • Songs end prematurely, skip to next track in iTunes 10.6.3

    I wanted to see if other iTunes users are having this issue. I'm using iTunes 10.6.3 (the latest version), and both my wife and I are seeing the same behavior in our iTunes libraries with songs we've either purchased from the iTunes Store or that we've ripped from CDs. It doesn't seem to matter which.
    The problem is a track will play and then stop abruptly before it's full length has played, and iTunes will then skip to the next track. This happened to me today with a new album I just purchased from the iTunes Store. 2 of the 13 tracks behaved this way. For example, if I'm playing a song that's 5:45 in length, iTunes will stop playing at 5:02 and jump to the next track.
    It also just happened on an album I downloaded from the iTunes cloud. I'd purchased it a couple years ago from the iTunes Store. I played the album today and again, one track stopped short of its true length, and iTunes skipped to the next track.
    So I guess the good news is it doesn't appear to a problem with corrupted tracks or anything. It points to a problem the iTunes application itself.
    If anyone has experienced the same problem, please share what you know. Thanks in advance.

    On the main iTunes screen, click on Purchased. That'll give you a list of your songs & albums stored on the cloud. The song(s) you've deleted should be available for download again (they'll have the cloud icon next to them). If not, sign out of iTunes and then sign back in again and go back through the same steps mentioned above. Hope this helps.

Maybe you are looking for