ColdFusion Script not work with Httpservice

At first I use PHP to generate xml output on page then use
the data to my httpservice with resultformat e4x. Everything is
fine. But now I want to use coldfusion script since I'm planning to
use ColdFusion as my web server. I have this script located on my
server and generate the data in XML file then the XML file is used
in my web, loaded through httpservice.
My PHP code was like this :
<?php
define( "DATABASE_SERVER", "localhost" );
define( "DATABASE_USERNAME", "root" );
define( "DATABASE_PASSWORD", "" );
define( "DATABASE_NAME", "MyCinema" );
$mysql = mysql_connect(DATABASE_SERVER, DATABASE_USERNAME,
DATABASE_PASSWORD) or die(mysql_error());
mysql_select_db( DATABASE_NAME );
$Query = "SELECT * FROM film";
$Result = mysql_query( $Query );
$Return = "<movies>";
while ( $film = mysql_fetch_object( $Result ) )
$Return .= "<film><judul>".$film->JUDUL.
"</judul><deskripsi>".$film->DESKRIPSI.
"</deskripsi><genre>".$film->GENRE.
"</genre><produser>".$film->PRODUSER.
"</produser><produksi>".$film->PRODUKSI.
"</produksi><homepage>".$film->HOMEPAGE.
"</homepage><durasi>".$film->DURASI.
"</durasi><url>".$film->URL."</url></film>";
$Return .= "</movies>";
mysql_free_result( $Result );
print ($Return);
?>
And now I try to get the same result using coldfusion script.
At first I dont write the XML to file, I just cfoutput it just like
I do with PHP just print result but it doesnt work out with my
HTTPservice. Until I try to write it to XML file then coding my
httpservice to read directly from that XML file. here is my
coldfusion code.
<cfcomponent>
<cffunction name="a" returnType="Void" output="true"
access="remote">
<cfprocessingdirective suppresswhitespace="Yes">
<cfquery name="GetFilm" datasource="myCinemaData">
SELECT b.* FROM playing a, film b
WHERE a.kode_film=b.kode_film AND a.start >
<cfqueryPARAM value = "#DateFormat(Now())#"
CFSQLType = "CF_SQL_STRING">
</cfquery>
<cfxml variable="userXML">
<movies>
<cfloop query="GetFilm">
<cfoutput>
<film>
<judul>#GetFilm.JUDUL#</judul>
<deskripsi>#GetFilm.DESKRIPSI#</deskripsi>
<genre>#GetFilm.GENRE#</genre>
<produser>#GetFilm.PRODUSER#</produser>
<produksi>#GetFilm.PRODUKSI#</produksi>
<homepage>#GetFilm.HOMEPAGE#</homepage>
<durasi>#GetFilm.DURASI#</durasi>
<url>#GetFilm.URL#</url>
</film>
</cfoutput>
</cfloop>
</movies>
</cfxml>
</cfprocessingdirective>
<cffile action="write"
file="#expandPath(".")#\userXML.xml" output="#userXML#">
</cffunction>
</cfcomponent>
Because I need to create the XML files first I try to execute
this coldfusion script first using webservice before I execute my
Httpservice but the XML file creation is slower than the execution
of my httpservice afterthat so it shows an error that my XML file
isn't not available. What can i do? I've tried to show the output
using cfoutput and run that script directly on my httpservice just
like the way I use print result on PHP but it produce an
error.

... I try to execute this coldfusion script first using
webservice before I execute my Httpservice but the
XML file creation is slower than the execution of
my httpservice afterthat so it shows an error
that my XML file isn't not available.
Then it might help to apply a named lock to ensure that the
Httpservice runs only after the web service call is complete. For
example, apply an exclusive named lock on the code that calls the
web service and a readonly lock of the same name to the Coldfusion
code that interacts with the Httpservice.

Similar Messages

  • [js] CS Scripting not working with CS3

    Hello,
    We had a JavaScript made for us that enabled the user to exchange certain text within a document.
    This script works fine with CS (Ver.3.0.1) but gives a JavaScript Error - #55, Error String: Object does not support the property or method 'findPreferences' with CS3 (Ver.5.0)
    I have tried 'tinkering' around with the scripting - but I have zero experience with JavaScript and have not found a solution.
    Additionally the people that wrote the initial script are not available.
    I have bought several books but they all seem like alien-language to me
    Below is the section of origional CS scripting.
    Can anyone point out to me WHY this script does not work with CS3?
    And WHERE I should start looking - changing?
    Thanks in advance for your help and guidence.
    Lee
    // Exchange the text
    function actProjectData(oneDoc, oneResult){
    app.findPreferences = null; app.changePreferences = null;
    oneDoc.search(undefined, true, true, oneResult[0],{appliedCharacterStyle:oneDoc.characterStyles.item(myProjectTitleCharStyleNa me)}, undefined);
    oneDoc.search(undefined, true, true, oneResult[1],{appliedCharacterStyle:oneDoc.characterStyles.item(myOfferNoCharStyleName)}, undefined);
    oneDoc.search(undefined, true, true, oneResult[2],{appliedCharacterStyle:oneDoc.characterStyles.item(myOfferDateCharStyleName) }, undefined);
    app.findPreferences = null; app.changePreferences = null;

    > Come to think of it, maybe it's easier to create a folder "Version 4.0 Scripts" under your scripts folder and place your CS script in there. Maybe that will do the trick. Should have thought of that earlier.
    Tried this, but it didn't seem to do anything... But certainly a 'try' worth.
    Currently playing around with the:
    > app.findTextPreferences.findWhat = "a";
    app.changeTextPreferences.changeTo = "b";
    oneDoc.changeText();
    I've got to the point where I have no error messages :-) Now I'm really flying.....
    Fact is - not all text and also the wrong text is replaced!!!
    I'm currently playing with the script to try and replace
    all texts with a given paragraph style with the entered text...
    Not proving to be simple for me, but I'm learning rather a lot!
    Now that doesn't sound very clear when I go back and read it!
    What I want to say is:
    Each page of the document has the project name, No & Date on it (each having their own paragraph style)
    so
    With this script it asks you the Project name, No. and Date and then goes
    through the whole document and replaces all instants of those texts with specific paragraph styles with the newly 'entered' text.
    Proving to be a little mountain for me - Thought it would only be a hill!

  • ACROBAT STARTUP SCRIPTING NOT WORKING (with extendscript Tooklkit CS6)

    Hi
    I experienced in programming, but newbie in JS-Scripting in CS6.
    I have developed some scripts in the console of Acrobat XI Pro, now I wan't to install that global script callable by a menu.
    I work on Windows-7, with 64bit:
    The script path is:
    C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\Javascripts
    script name is Confg.js
    The script is created with Extendscript Tooklkit CS6 editor
    only contains this line:
    app.alert("Hi, from a globally executed script");
    I expect that an alert is poping up, when I open the Acrobat XI Pro with any PDF-File:
    for a change
    app.addMenuItem({cName:"Menu Test", cParent: "Help",   cExec: "app.alert('Menu Item Test'); "});
    doesn't work either
    after opening PDF XI Pro with an arbitry PDF I get an error in the console:
    Acrobat – Version mit integrierten EScript-Funktionen 11.0
    Acrobat SOAP 11.0
    SyntaxError: illegal character
    1:Folder-Level:App:Config.js
    If I create the file with a plain text editor, things will work fine, as expected.
    If I edit that clean file with Extendscript Tooklkit CS6 editor again the file is corrupted. This is rahter clumsy. Any solution, so I can work with Extendscript Tooklkit CS6 editor?

    Thanks for the reply.
    >>Acrobat is not one of listed programs that Extendscript is used with.
    I was already wondering about this. Thought my installation is corrupted or whatever
    Though with regret, I have to accept that Extendscript Toolkit can't be used with Acrobat XI scripting. I use jEdit meanwhile. This has syntax higlighting and a linenumbering, helpful to spot errorous linenumbers. This does the job so far.

  • Picexport is not working with SCRIPT

    Hi ALL,
    I have upgraded my diadem from 2010 to 11 and now this is not working anymore:
    Call PicExport("X:\transfer\081022\"&SaveFile&"_scaled_tsr","WMF",1,768,1024,"",75,"",0)
    when I try this script i get a first the failure message ==> acsess violation; and when i retry this function I get the message that this function is not activated
    please help me
    THX in advance

    Hy,
    I have tried now almost all formats with the same result:
    - when I use the picexport "by hand" it works fine!
    - when I use the record function for scripting it is working...
    - I stop the recording and want to run the script, it works the first time and then I get first the access violation msg and then the "not activated" msg
    I dont wanna use the PDF eport because I have arround 200-300 pictures per "run" which I want to quickcheck ("scrolling" thru all pics witch a picture viewer) and this not very useful by PDF...
    So there must be a solution?!!!! The same script was working with the last diadem version...
    THX
    Andreas
    Attachments:
    accessviolation.PNG ‏46 KB
    not_active.PNG ‏33 KB

  • Captivate 4 AS2 Text Entry Box not working with Flash Player 11

    I am having issues with text entry boxes not working at all in flash 11. I am using Captivate 4 and exporting an AS2 swf. When you get to the slide you can type but you cannot see anything nor does the button or keystroke to move on. Also there is no cursor. Any ideas?

    You said it is not working with Flash 11, so does that mean you tested with previous version and that worked?
    While publishing choose Flash player as 9 and publish that, verify if that plays in a compatible web browser.
    AS 2 is a legacy scripting, it has been said not too be supported with even Flash Player 10 --
    http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=Part2_AS2_LangRef_1.html
    I believe if you switch back to version 9 while publish your project, it should work.
    Thanks,
    Anjaneai

  • Better privecy does not work with windows vista home prem. what other program removes LSO'S AND HOW can I stop trackers?

    Question
    better privacy does not work with windows vista home prem. what other program removes LSO'S AND HOW can I stop trackers? edit
    Details

    As a temporary workaround, I believe this Adobe management page allows you to clear your "Flash cookies": [http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html Adobe - Flash Player : Settings Manager - Website Storage Settings panel] (hosted on macromedia.com -- Macromedia was the original developer of Flash).
    Regarding the script error, if I'm reading the script correctly, it is related to accessing your Flash cookies directory. It seems the publisher's support forum is not currently available for searching, but that might be a good next step.
    In the meantime, could you check whether the script has the correct location for your Flash cookies directory? If you can't access Tool > BetterPrivacy, you could check here:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''bpr''' and pause while the list is filtered
    (3) There should be a bolded setting named '''extensions.bprivacy.DataDir''' which looks approximately like the following:
    C:\Users\''yourWindowsUsername''\AppData\Roaming\Macromedia
    Do you have a similar value? If you paste the path used by BetterPrivacy into a Windows Explorer window, does it open? Also, click a couple levels in the folder, can you see:
    Flash Player \ #SharedObjects
    If the value is wrong, right-click the wrong value and choose Reset. BetterPrivacy should update the value the next time you try to access it.
    If the value is blank, you could try inserting a sensible value and see whether that helps.
    Any luck?

  • Flash Player 11.3.300.262 Not working with Firefox. I think I found the problem.

    *Flash Player 11.3.300.262 is not working with Firefox. I think I found the problem.*
    Millions of people got off work & turned on there computers recently to discover that Firefox is not playing any videos or flash content. Just like me, millions of people are randomly searching the internet in a futile & frustrating attempt at answers. Unfortunately, many of those people will simply stop using firefox & deem it a glitchy, unreliable browser.
    This happened to me a couple days ago. I started up my computer & got a pop-up from Adobe saying that I need to update my flash player to 11.3.300.262. I've always thought of adobe as being a reliable software company, so I clicked on it with confidence that things will be working even smoother. To my horror, I relalized that right after the update, my main browser, firefox was destroyed. Then I went on the frustrating process of uninstalling, re-installing, running virus scan, researching the internet like a lost child. I said to myself, "that's why I hate updating stuff, because updates always seem to change stuff you don't want it to change & there always seems to be a problem with the updates." I usualy update software months after it releases, because microsoft & all the other software companies always seem not to test there stuff properly before releasing them. Then we have to look at a glitchy computer until the next update fixes it. Well, that is my rant. Now let me discuss the problem I found.
    Problem:
    What I did was, go into my firefox extentions menu & I disabled the 11.3.300.262 & I re-enabled the previous flash player. After that, everything worked perfect again. Then a today (a week later), I turned on my computer & my firefox wasn't playing any videos or flash content again. I went into my firefox extenions menu again, & I discovered that my old flash player had been deleted, & this new glitchy 11.3.300.262 had been enabled. Why did adobe feel the need to into my computer & automaticly delete & update my flash player. Now it doesn't work. THIS IS REALY FRUSTRATING!
    The Issue I discovered:
    "RealPlayer" is the most popular video program & it is installed on millions of computers. For some strange reason Firefox does not want its users to use Real Player. Specifically the RealPlayer Browser Record Plugin 15.0.2. I also discovered that my Browser Record Plugin 15.0.2 was automatically disabled when the Adobe 11.3.300.262 was automatically updated also.
    - Maybe this could be because of some copyright conspiracy to keep people from downloading videos from the web.
    - Maybe firefox wants people to use there download add-on instead of RealPlayers downloader.
    I don't know what ther reason is. But what I do know is Nobody is going to delete there RealPlayer from there computer just to use FireFox. We can simply use Chrome or Internet explorer. I took the advise from Adobe & disabled the FireFox RealPlayer Extention. I also went into my RealPlayer preferences options, But there was no option to disable download recording from FireFox. BECAUSE I ALREADY DISABLED THE ADD-ON in FireFoxes menu.
    Solution:
    Step 1: Adobe needs to update all the computers with the previous flash player. That way we can choose to enable the previous flash player in our FireFox. or wait until a new update fixes the problem with firefox.
    Step 2: Adobe & FireFox need to get together & go back to the drawing board. They need to create a update that actually works on computers that have Real Player installed on them. I don't care which company does the update. All I care about is if it works. Thank You.
    Oh yea, Im running FireFox 13.0.1, Windows 7, HP computer, Real Player is up to date.

    Hey Chris,
    I was able to duplicate this issue on my Windows 7 laptop as follows:
         1)  Completely uninstall FlashPlayer (using your tool) as well as Mozilla Firefox and Mozilla Maintenance Service (used Windows 7 - uninstall from Control Panel).  Please note that I checked the box that said "Remove my Firefox personal data and customizations" to ensure that Firefox was completely gone from my laptop.
         2)  I then went out to the Firefox website and downloaded the "Firefox Setup 13.0.1.exe" app to my laptop.  I ran this app to install Firefox.
         3)  I then went to the following website http://www.ishmael.org.uk/karaoke02.php as I know that this URL uses Flash Player (obviously you can go to any URL that uses Flash Player - I'm just letting you know which one I used).  I then clicked on the icon on this page to install Flash Player.
    Once the install was completed, the URL stops responding and appears to be locked up (although it will occassionally hiccup and display portions of the page and then lock up again).  You will eventually get a pop-up notice from Firefox that has the header "Warning:  Unresponsive script" and says the following: 
         A script on this page may be busy or it may have stopped responding.  You can stop the script now, or you can continue to to see of the script will complete.  Script:  chrome://browser/content/browser.js:6551 
    Selecting "Stop script" will get Firefox working until you hit another page that uses Flash Player.
    To ensure that the above URL is not the culprit, I used one from your website http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html and had the same results.
    Hope this info helps!
    Jeff
    NOTE:  As a reminder, I do not have RealPlayer installed on my laptop (and never have had it installed)

  • Drag and Drop not working with spark HGroup with code

    Can anyone tell me why my HGroup won't fire the dragEnter dragDrop and DragOver events?
    Here is the sample code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import mx.core.IUIComponent;
                import mx.events.DragEvent;
                import mx.managers.DragManager;
                private function dragEnterHandler(e:DragEvent):void {
                    DragManager.acceptDragDrop(e.currentTarget as IUIComponent);
                private function dragOverHandler(e:DragEvent):void {
                    DragManager.showFeedback(DragManager.COPY);
                //user drops src onto target, so re-parent the src to the target
                private function dragDropHandler(e:DragEvent):void {
                    var img:Image = e.dragInitiator as  Image;
                    var newImg:Image = new Image();
                    newImg.load(img.source);
                    var grp:HGroup = e.currentTarget as HGroup;
                    grp.addElement(newImg);
                private function mouseDownHandler(e:MouseEvent):void {
                    DragManager.doDrag(e.currentTarget as IUIComponent, null, e);
            ]]>
        </fx:Script>
        <s:layout>
            <s:HorizontalLayout />
        </s:layout>
        <s:Panel width="50%" height="100%" title="Drag me">
            <mx:Image source="http://www.google.com/intl/en_ALL/images/logo.gif" mouseDown="mouseDownHandler(event);" />
        </s:Panel>
        <s:Panel width="50%" height="100%" title="to Here">
            <s:HGroup width="100%" height="50%" dragEnter="dragEnterHandler(event);" dragDrop="dragDropHandler(event);"  dragOver="dragOverHandler(event);" />   
            <s:HGroup width="100%" height="50%" dragEnter="dragEnterHandler(event);" dragDrop="dragDropHandler(event);"  dragOver="dragOverHandler(event);" />   
        </s:Panel>
    </s:Application>

    Derek,IE11 is having some compatibility issues with the share point.Apart from IE11,it should work on IE10,9 and Firefox and chrome as well.
    Please check the links below that explains the issues with IE11 and the functionality of Drag and drop and limitations as-well.
    1.Since SharePoint 2013 fully support IE 32-bit version above 7, there might be compatibility issue with other browsers. I’d recommend you use IE 8,9,10 32-bit for optimal Performance.
    2. Open the same document library in Internet Explorer as this functions does not work with Firefox or Chrome by default
    3. Make sure the IE (Internet Explorer) Version should be 32-bit and not a 64-bit
    http://expertsharepoint.blogspot.de/2014/08/issues-with-sharepoint-2013-and.html
    http://expertsharepoint.blogspot.de/2013/12/how-to-upload-multiple-documents-in.html
    http://expertsharepoint.blogspot.de/2013/12/sharepoint-server-2013-drag-and-drop.html
    Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • The volume keys on my Logitech K760 wireless keyboard do not work with my 2.3 GHz, Intel Core i5 Mac mini which runs Mac OS X 10.7.4. Anyone know how to correct this without having to re-code firmware?

    My first post to the Apple Support Community so it looks like all I wanted to know is covered in the title. The research I have done led me to solutions that I am not comfortable trying for fear of irreparably damaging my keyboard and/or Mac mini. Does anyone have a simpler solution? Please? Hellooooo?
    Just in case the title is too long to show, I have re-pasted here:
    The volume keys on my Logitech K760 wireless keyboard do not work with my 2.3 GHz, Intel Core i5 Mac mini which runs Mac OS X 10.7.4. Anyone know how to correct this without having to re-code firmware?

    BDAqua wrote:
    Hello & welcome to the Forums!
    I think Spark cured this for another person and the same problem...
    http://www.shadowlab.org/Software/spark.php
    http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=ukelele
    http://doublecommand.sourceforge.net/
    Thank you for the response. Unfortunately, I could not figure out how to work the above applications. I thought that i had managed to assign the appropriate function keys in Spark to their volume counterparts, but it had no effect. Below is a screen shot. Do you see anything amiss?

  • Photoshop CS5 not working with Lucida Grande Regular font

    On my iMac Intel Core 2 Duo 2.66 GHz, I am running OS 10.6.7.
    When using Photoshop CS5, if I try to use the font, Lucida Grande Regular, it causes an error.
    "Could not use the type tool because of a program error."
    When I try to open an existing file that has type layers that include the font Lucida Grande Regular, Photoshop will not open the file. I have several of these files that I want to use. I can open them on another Macintosh and everything works fine.
    First I get a message window that says, " Some text layers might need to be updated before they can be used for vector based output. Do you want to update these layers now?" I click on update and then get the following message. "Could not complete your request because of a program error."
    I have updated Photoshop CS5 to the latest version, 12.0.4.
    I have run the FontTest.jsx script and it shows an error for Lucida Grande Regular.
    (IOError: General Photoshop error occurred. This functionality may not be available in this version of Photoshop.
    - <no additional information available>)
    The other 100+ fonts on my machine did not create errors.
    Since Lucida Grande Regular is an essential font for Mac OS X, I re-installed OS 10.6 in order to have a new version of Lucida Grande Regular. After that re-install I am having the same problems with the font not working in Photoshop.
    It also does not work with Adobe InDesign CS5. The font does work in Microsoft Word.
    The program Font Book verifies Lucida Grande Regular.
    Other fonts including, Lucida Grande Bold, work fine in Photoshop and InDesign.
    What can I do to get Photoshop CS5 to work with Lucida Grande Regular?

    Wow, I'm so glad I found this thread. This problem has been dogging me for years, and it's so sporadic that I've been afraid of breathing the wrong way lest I somehow incur that diabolical Program Error dialog. I'd managed to reach a truce with Photoshop CS5, getting it into a barely working state, and avoiding all updates... until Lion came along today. Then I updated to CS5 12.0.4, and the Program Errors were back again.
    Now I see that the problem does seem to be related to the Lucida Grande font. If there's a layer with that font in it, not only can I not edit that text, but I can't marquee select anything, nor drag any shapes. Deleting caches and massaging fonts are completely ineffectual measures... but if I delete the Lucida layers entirely, we're back in business.
    At least so far.
    Funny to think that of all the innovations I'd like to see Photoshop adopt, the fixing of this one issue is the thing I'd like to see most. I'll be keeping my eye on this thread, and any updates by Mr. Cox.

  • Site list update not working with TED and Zenworks for Servers

    Product: Zenworks for Desktops 7Sp1 and Zenworks For Server/TED 7Sp1HP5
    Subject: Site list update not working with TED and Zenworks for Servers ,
    all on Linux
    Description: We have an exiting environment with 6 ZfS Servers and now we
    brought up a new Server for another location. I configured all same as on
    the other Server and the new one created all NAL-Apps at the new location.
    But in the Application Site list on the golden App is this Application
    missing. So I clicked on the Link up site list on the Distribution Screen
    in C1. On ApplicationSite list the App from the new location is missing.
    So I removed all and added the new from the new location and now i see all
    in the application site list.When I install an app on the client on the
    new location NAL is connecting alway th the same (wrong location-server
    and i get an msi error 1612 or id=53272 with path=\Wrong serverpath to
    file.
    I looked on the other tab on C1 at the golden app an I see the backlinks
    are going to all other servers without the new one. Software installation
    on other locations are ok
    Regards

    Andreas,
    I forgot to mention that you can also set the loging level on the Distributor and the Subscriber to 6. to do this at the Zenworks Server Management prompt type "setconsolelevel 6" if you want to capture this to the log file ted.log then use "setfilelevel 6"
    Next delete the Distribution from the Subscriber and then re-push the channel.
    What we are looking for here in the log is the creation of the object and the linking information about the gold object. it should look like this (not the failure part ;-))) )
    In this excerpt you will see the entry
    Golden App =
    This should be were the link is to
    You can check this both ways in the Golden App and in the Distributed Application.
    Here is a log from me that shows this info as an example of what you should be looking for.
    2008.05.29 03:35:41 [TED:Work Order In(yourserver.yes.com)] Receiving distribution: Creating new application failed,
    Subscriber Tree Name= YOUR-TREE,
    Subscriber DN = SUBSCRIBER_YOURSERVER.BRN.FL.SUBS.SUBSCRIBERS.ZSM. GRS.CBH,
    Golden App = SCRIPT-MS-HOTFIX.APP.BRN.ZENGOLD.GRS.CBH,
    Attempted AppName = SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH,
    error message: Failed creating SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH. With error message: Setting the trustee for BRN.HAVERHI.PALM.FL.CBH on the file "VOL1:\ZEN\UTILS" failed. Look in subscriber log file for more details..
    2008.05.29 03:35:41 [TED:Event Processing] Handle Event: Work order IN completed... Creating new application failed,
    Subscriber Tree Name= YOUR-TREE,
    Subscriber DN = SUBSCRIBER_HAVERHI-FLBRN1.BRN.FL.SUBS.SUBSCRIBERS.ZSM.GRS.CBH,
    Golden App = SCRIPT-MS-HOTFIX.APP.BRN.ZENGOLD.GRS.CBH,
    Attempted AppName = SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH,
    error message: Failed creating SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH. With error message: Setting the trustee for BRN.HAVERHI.PALM.FL.CBH on the file "VOL1:\ZEN\UTILS" failed. Look in subscriber log file for more details..
    2008.05.29 03:35:41 [TED:Event Processing] Received (from haverhi-flbrn1.yesbank.com) Creating new application failed,
    Subscriber Tree Name= YOUR-TREE,
    Subscriber DN = SUBSCRIBER_HAVERHI-FLBRN1.BRN.FL.SUBS.SUBSCRIBERS.ZSM.GRS.CBH,
    Golden App = SCRIPT-MS-HOTFIX.APP.BRN.ZENGOLD.GRS.CBH,
    Attempted AppName = SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH,
    error message: Failed creating SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH. With error message: Setting the trustee for BRN.HAVERHI.PALM.FL.CBH on the file "VOL1:\ZEN\UTILS" failed. Look in subscriber log file for more details..

  • Osascript for remote login does not work with Leopard

    We are testing Leopard on one computer in our labs. The only problem so far is that the osascript that we use to remote login to the computers stopped working (although it works fine on the Tiger machines):
    osascript <<EndOfMyScript
    tell application "System Events"
    keystroke "public"
    keystroke tab
    delay 0.5
    keystroke return
    keystroke tab
    delay 0.5
    keystroke return
    keystroke return
    end tell
    EndOfMyScript
    This is a public account with no user password. I've read the discussion below, but have not been able to tweak the command so that it works with Leopard. Any suggestions?
    Thanks.
    http://lists.apple.com/archives/Remote-desktop/2007/Nov/msg00045.html

    I'm having a similar problem - the script below works with my G5 iMacs running 10.4.9 but not the Intel iMacs running 10.4.8. It almost works - the username and password appear in the right boxes, so I run around the room pressing the Return key.
    # This script when used with ASR Send UNIX command will login workstations at the LoginWindow.
    # The script assumes that the cursor is focused in the Name field.
    osascript -e 'tell application "System Events" to keystroke "username"'; \
    osascript -e 'tell application "System Events" to keystroke tab'; \
    osascript -e 'tell application "System Events" to delay 0.5'; \
    osascript -e 'tell application "System Events" to keystroke "password"'; \
    osascript -e 'tell application "System Events" to delay 0.5'; \
    osascript -e 'tell application "System Events" to keystroke return'
    Message was edited by: Catocop

  • Firefox Version 11.0 not working with Yahoo! Babel Fish!

    I just updated Firefox to Version 11.0 on my Mac OS X Version 10.6.8. The '''Yahoo! Babel Fish''' still does not work with non-Roman based scripts, such as '''Russian''', '''Greek''', '''Chinese''', ''etc''.
    If you attempt to translate text in one of such scripts into English, both the input and output windows get garbled characters (which are supposed to be codes of some sort); if you attempt to translate English into one of these languages, you get a blank space.
    If I use '''Safari''' Version 5.1.4, however, '''Yahoo! Babel Fish''' works perfectly.
    Hope this problem can be solved soon.
    Thanks!

    I've had the same issues for the past couple of months. I did not see your question earlier in the day, so I posted a similar question here:
    https://support.mozilla.org/en-US/questions/923500
    @cor-el - He says it works fine in Safari. It works fine for me in Chrome or IE also. This is not an issue with the babelfish page. This is a Firefox issue.

  • Scripts not working in Numbers

    Applications:  OS X Yosemite 10.10.1  Script Editor 2.7  Numbers 3.5.2  Excel in Office for mac 2011
    I write a simple script...
    tell application "Numbers"
    activate
    open "Macintosh HD:users:xxx:desktop:testfile.numbers"
    set the vale of cell "c4" to "23"
    end tell
    I am told...    Numbers got an error: Can’t set cell "c4" to "23"
    The script works fine if I use the Excel app and and Excel test file?  It does not work with Numbers.  I enabled Apple Script under security settings and can figure anything else to try.
    Any ideas?!?
    tell a

    You tell Numbers to set a value for cell "C4" but cells don't belong directly to Numbers; a cell belongs to a table which belongs to a sheet which belongs to a document which belongs to Numbers.
    So you have to do something like :
    set value of (cell "C4" of table 1 of sheet 1 of document 1) to "23"
    or:
    set a_table to table "sometablename" of sheet "somesheetname" of front document
    tell a_table
    set the value of cell "c4" to "23"
    end tell

  • I just spent an hour composing a reply in a thread ("Firefox will not work with paypal"), only to see "You don't have permission" at Submit - total loss!

    I was logged in to reply in the thread "Firefox will not work with paypal". I spent the better part of an hour carefully composing that reply, testing cases, providing links, etc... [Hint: Firefox, unlike other browsers, has a problem with scripts from server paypalobjects.com.] Because I had taken so long to compose the reply, it seemed like a good idea to check it via the Preview button, but I got a message that that function was not available. Of course I decided to submit it anyway, but when I hit "Submit" I got a message "You don't have permission ..." - at which point I was (stupidly) on a different page with that message, and everything I had composed was gone!

    It might be too late for this, but it's what I use when this happens. Prepare for deep nerdom:
    * Open the web console below the error page by pressing Ctrl+Shift+k
    * Right-click the blank area and turn on logging of the request and response bodies
    * Resubmit the request by clicking the reload button
    * Click the new URL that appears to open the viewer showing the headers and bodies
    There you may be able to copy out the content of your post from the Request Body. You can use a word processor or text editor to find/replace the + characters back to spaces.

Maybe you are looking for

  • SQLException: Closed Connection, SQL state [null]; error code [17002]

    Hello All, I am supporting a Java 5 project on Tomcat. We've used Spring and Stored Procedure in the project. Recently we deployed our application in a GoLive environment and have started seeing Timeout errors in log files. After around two days we a

  • HP Laserjet1213nf scanner issue on windows 7 OS

    Hi, I have HP Laserjet 1213nf Printer with network enabled and i am using ScanTo app for users to access the printer instead of full MFP setup. when i am trying to run this program to scan documents its giving error on windows 7 OS 64Bit.  Event View

  • Imac 27inch display with laptop

    Hi there all, I have a iMac 27inch and would like to know if it is possible to use it as a display when working with my windows work laptop? Cheers Straydingo

  • XI takes a lot of disk space in the non sap partition

    Hello We use xi to transfer data from the non sap partition to the production partition. In the non sap partition we have now more than 30 jobs by the name QZDASOINIT   of the xi user. In the job log of these jobs there are many messages that says: "

  • Address Book folder in /Documents/ ?!?

    Just opened /Documents/ folder to find that there's a folder in there at the top level named "Address Book" which contains subfolders named "Metadata" and "Images" Can anyone tell me how it got there, what it is, and what I should do with it?!? Many