[IDS CS3 WIN] .tmp and .idlk files not getting cleaned up

I'm using a C# Soap client with CS3 Server on Windows. My script is opening a template file, importing a tagged file, then saving an ID document and generating a PDF file. The script closes the document before quiting, but I'm seeing a trail of .idlk and .tmp files left behind on the server.
Example: I'm starting with the following files... importTemplate.indd and importTest.txt. The script opens importTemplate.indd, imports importTest.txt and creates importTest.indd and importTest.pdf, then closes the document.
For testing purposes, these files are all located in the same location. What I see in the directory after the script has run (successfully) now includes the following:
tes493.tmp
~importtemplate~uvw2ve.idlk
~importtest~borbth.idlk
~importtest~myhstu.idlk
I am closing the document with the following:
app.documents.item(0).close(SaveOptions.no);
I could understand if the document wasn't getting closed that I would see one .idlk file, but why 3?
Has anyone else encountered this problem?

Hi again
does the '3 days ago' actually set the time? so '1 week ago' would be valid too?Ah, was afraid you might ask that
'3 days ago' does "set the time" as you say. '1 week ago' might work, but the man pages are not particularly helpful on what works and what doesn't. The find man page refers you to the cvs man page, which says:
However, cvs currently accepts a wide variety of other date formats. They are intentionally not documented here in any detail, and future versions of cvs might not accept all of them.But that gives an example of "1 hour ago" being valid, so I tried a few variations
wacking whole directories scares me... especially since there are live directories in here that I think shouldn't be deleted... can I take this part out?Yes, you can leave out the complete second "find" command if you wish. But applications shouldn't leave files or folders lying around in /tmp or /var/tmp and expect them to still be there when they come back!
excuse my ignorance what language is this?This is the Bourne Shell or more accurately bash. You can try reading the man page, but if you're interested I think you'd find an introductory shell scripting book a lot more readable!
My weekly hasn't run since Nov 18th but the Monthy and daily both say Dec 1st!!!No problem. My weekly hasn't run since Nov 15th. It will eventually get run, after about a week of cpu time (not sleeping).
Now that the periodic scripts are managed by launchd, rather than cron, they do eventually get run. Unless you are running a busy server with hundreds of users, rotating the log files is no big deal with today's typical disk sizes.

Similar Messages

  • HI. I have itunes 10.6.1.7. When I goto movies i am not able to add and when I click on add file to library and select the file and add its not getting added. When i goto Library it says  that movies I add are in library.Which I cant add

    HI. I have itunes 10.6.1.7. When I goto movies i am not able to add and when I click on add file to library and select the file and add its not getting added. When i goto Library it says "feature films and home movies you add to itunes appear in movies in your iTunes library. To play a movie, just double click it". And below are two options for Downloading movies from store and rent movies. Please help.

    I get the exactly the same problem with win 7, i rang apple support who suggested i try another machine/or create another account on my machine???? why should i, stupid ipad 3rd gen is now sitting here un syncable, apple support ....tut tut very poor support, its a shame im out of the 7 day period otherwise this ipad would be going straight back, older versions of itunes worked fine, some one must know a fix for this??

  • Hyperion fdm it is creating lot of tmp and fmt files in inbox while import

    When files are imported in FDM, it is creating a tmp and fmt files for each import. This consumes lot of space. Is there any way to get rid of tmp and fmt file after each import?
    Thanks
    ARB

    These files are for the bulk insert operation. A .tmp and .fmt file is created to perform the bulk insert operation to insert the data into the data seg tables in the FDM application database. You can clear these out at anytime. A new pair will be created after each import and it does not affect the functionality to remove them.

  • How do I move files from my iMac to my Airport without getting 'AirPort can not be modified' message. File sharing is enabled and I'm not getting asked for a password. Thanks

    How do I move files from my iMac to my Airport without getting 'AirPort can not be modified' message. File sharing is enabled and I'm not getting asked for a password. Thanks

    What OS are you running.. this is usually only a problem in Mavericks.
    If so I recommend you mount the hard disk manually..
    Use Go, Connect to server.
    Type in the IP address if static.. eg
    AFP://10.0.1.1
    Or the name.. but you will have issues unless the name is short, no spaces and pure alphanumeric.. if you are using bad names.. fix it by a full factory reset in airport utility and give it all names that comply to the above.
    Type in
    AFP://TCname.local Where TCname is replaced with the actual name.
    You will be asked for the password the first time which is public unless you changed it.. please remember to save this in the keychain.
    Copy files then to a new directory you create on the TC.. do not place files inside the TM sparsebundle. Nor directly under the main directory.

  • I have 2nd gen. Ipod shuffle I restored it and now when i am trying to sync it, it is showing that some files are missing and it is not getting sync what should i do???

    I have 2nd gen. Ipod shuffle I restored it and now when i am trying to sync it, it is showing that some files are missing and it is not getting sync what should i do???

    Master reset...? Your device was jailbroken prior to you purchasing the device. The only symbol you should see on reboot is an Apple symbol. Download redsnow... google it! Download the latest version and your IPSW (ipod restore firmware) it has to be the correct version. And the "just boot tethered" should fix your device.
    But that's only if you didnt back the device up. If you don't care about any of the data on the ipod then you can simply open itunes navigate to the device and click the restore button. This will restore the ipod firmware and install a fresh copy. Good luck let me know if you have any problems.

  • Macs and aiff files not recognised by older hi fi.?

    I have burnt audio cds using external burner(itunes 8).They are on the cd as it plays in the mac but will not play on our cd player.Iread something online about macs and aiff files not recognised by older hi fi.
    http://en.wikipedia.org/wiki/AudioInterchange_FileFormat
    any help please

    Several possible issues.
    1) Did you burn the CD as an audio format CD or did you just burn AIFF files to a CD as a data CD? CD players require an audio format CD, not just AIFF files burned to a CD as AIFF files.
    2) Older CD players can have problems reading burned CDs. Sometimes using a different brand CD, a longer burn time (slower burn speed) can help, but sometimes you just have to buy a newer player. CD-RW can present big problems unless it is specified as supported.

  • File not getting deleted using File.delete()

    Hi guys,
    I have a code like this:
    File tempdir = new File("tempdir");
    tempdir.mkdir();
    File temporaryFile = new File("tempdir\tempfile.txt");
    FileWriter writer = new FileWriter(temporaryFile);
    // write data into file
    writer.flush();
    writer.close();
    try {
        // Do something
    catch (Exception e) {
        // Do something
    temporaryFile.delete();
    tempdir.delete();The program runs successfully. The directory and the file is created and data is written successfully into it. However, the file as well as directory is not getting deleted at the end of the program. I tried temporaryFile.deleteOnExit(), but this also didn't help.
    Can anyone provide some input as to what can be the possible reasons for the file not getting deleted?
    Thanks..

    I want the file to be created inside the directory I specified. Hence, I put the "\". Please let me know if there is some other way to achieve this. This way I am getting the file created at the location I want.
    One more interesting thing which I noticed. Actually this code is part of a JUnit test. In the same JUnit, I am creating new files in atleast 2-3 test methods. But the deletion of files is really random. Sometimes, 2 out of 3 get deleted, sometimes only 1 gets deleted. However, I didn't come through a single instance wherein all the 3 files got deleted. :-(
    Also, the directory is never deleted. However, I got the reason behind this. As per the File API, the directory will not be deleted if it is not empty.

  • File not getting picked with Sender Adapter

    Hello Experts,
    i have configured file sender adapter which is polling configured directory every 60 sec. But i could see file not getting picked up. when looked into Communication channel monitoring i could see following error:
    Putting message into send queue failed, due to: com.sap.aii.af.ra.ms.api.DuplicateMessageException : Message ID aa2ec9a0-44b3-11dc-9c5b-0003baa19669(OUTBOUND) already exists in database: com.sap.sql.DuplicateKeyException: ORA-00001: unique constraint (SAPDX1DB.SYS_C00120924) violated.
    is this due to adapter cache. we are on SP20.
    has anybody faced this problem earlier?
    Thanks in advance.
    Regards
    Rajeev

    Hello
    actually there was small problem in file generation and hence it was failing in message mapping which is resolved. but still that problem is there when it is attempting to delete the file. hence it is not able to delete that file.
    can we manually clear the send queues or should we refresh CPA cache?
    Thanks
    Rajeev

  • Username and password do not get applied to WS Invocations in PS3 project

    I am running into a situation where username and password do not get applied to WS Invocations in PS3 project I am deploying using config plan, this is used to work correctly in PS2. Did the syntax for the deployment configuration plans for PS3 BPM have changed?
    This is the error that I am getting from the BPM soa_server.log file:
    <Feb 9, 2011 1:04:16 PM PST> <Error> <oracle.wsm.resources.enforcement> <WSM-07501> <Failure in Oracle WSM Agent processRequest, category=security, function=agent.function.client, application=default, composite=SpringWorkflow, modelObj=ActivityService, policy=oracle/wss_username_token_client_policy, policyVersion=null, assertionName={http://schemas.oracle.com/ws/2006/01/securitypolicy}wss-username-token.
    oracle.wsm.common.sdk.WSMException: WSM-00015 : The user name is missing.
    Caused by: oracle.fabric.common.PolicyEnforcementException: WSM-00015 : The user name is missing.
    at oracle.fabric.common.AbstractSecurityInterceptor.processResult(AbstractSecurityInterceptor.java:239)
    at oracle.fabric.common.BindingSecurityInterceptor.processRequest(BindingSecurityInterceptor.java:95)
    I enabled ws logging for incoming and outgoing P6 web service requests, I see that the BPM server is not making an outgoing webservice call, looking more into the log file from soa_server.log I see that the exception is a PolicyEnforcementException confirming my suspicion that the username and password from the deployment config plan are not getting applied at runtime. This is used to work correctly in PS2. Any suggestions?
    Config-plan:
    <reference name="ActivityService">
    <!--Add search and replace rules for the binding properties-->
    <binding type="ws">
    <attribute name="port">
    <replace>http://xmlns.oracle.com/Primavera/P6/WS/Activity/V1#wsdl.endpoint(ActivityService/ActivityPort)</replace>
    </attribute>
    <attribute name="location">
    <replace>http://x.x.x.x:7001/p6ws/services/ActivityService?wsdl</replace>
    </attribute>
    <property name="weblogic.wsee.wsat.transaction.flowOption">
    <replace>WSDLDriven</replace>
    </property>
    <property name="oracle.webservices.auth.username">
    <replace>admin</replace>
    </property>
    <property name="oracle.webservices.auth.password">
    <replace>admin</replace>
    </property>
    </binding>
    </reference>
    Deployment Log from Jdev:
    [04:05:01 PM] ---- Deployment started. ----
    [04:05:01 PM] Target platform is (Weblogic 10.3).
    [04:05:01 PM] Running dependency analysis...
    [04:05:01 PM] Building...
    [04:05:11 PM] Deploying profile...
    [04:05:11 PM] Updating revision id for the SOA Project 'SpringWorkflow.jpr' to '1.0'..
    *[04:05:11 PM] Copying file:/E:/dev/bpm11g/springdemo/SpringWorkflow/SpringWorkflow_cfgplan.xml to soaconfigplan.xml*
    [04:05:11 PM] Adding soaconfigplan.xml to archive.
    [04:05:11 PM] Wrote Archive Module to E:\dev\bpm11g\springdemo\SpringWorkflow\deploy\sca_SpringWorkflow_rev1.0.jar
    [04:05:11 PM] Deploying sca_SpringWorkflow_rev1.0.jar to partition "default" on server soa_server1 [x.x.x.x:8001]
    [04:05:11 PM] Processing sar=/E:/dev/bpm11g/springdemo/SpringWorkflow/deploy/sca_SpringWorkflow_rev1.0.jar
    [04:05:11 PM] Adding sar file - E:\dev\bpm11g\springdemo\SpringWorkflow\deploy\sca_SpringWorkflow_rev1.0.jar
    [04:05:11 PM] Preparing to send HTTP request for deployment
    [04:05:11 PM] Creating HTTP connection to hostx.x.x.x port:8001
    [04:05:13 PM] Sending internal deployment descriptor
    [04:05:13 PM] Sending archive - sca_SpringWorkflow_rev1.0.jar
    [04:05:15 PM] Received HTTP response from the server, response code=200
    [04:05:15 PM] Successfully deployed archive sca_SpringWorkflow_rev1.0.jar to partition "default" on server soa_server1 [x.x.x.x:8001]
    [04:05:15 PM] Elapsed time for deployment: 14 seconds
    [04:05:15 PM] ---- Deployment finished. ----

    We should take a look at the log files to see what's really going on but if you haven't done anything with the installation yet then "reinstalling" is very easy.
    In the directory where you launched the jar file, you should find a directory named "crx-quickstart". Simply rename this directory to "crx-quickstart.old" and restart the jar file. Your new environment will be ready in a couple of minutes.  Keep the old directory and look into the [your directory]\crx-quickstart\logs directory for details on your original problem.

  • I had to G5's 2.2Ghz donated, and they were not wiped clean, and I don't have a Leopard CD. Anyone know what I can do? I am a non profit.

    I would greatly appreciate some help here. I have two PowerPC's that were donated to my community center, and they were not wiped clean. (insert major frowny face) I am at a loss on what to do, being a non profit I don't have much money to spend on having these cleaned off at a local "Authorized Mac Store." I have my figners crossed that someone here might be able to offer me some guideance.
    Thanks in advance,
    Brandon

    Some folks have experienced difficulties loading a new system.
    Restore Tiger 10.4 & Leopard 10.5  DVDs are available from Apple by calling 800-767-2775 as of January 20, 2013.
    https://discussions.apple.com/thread/4720126?tstart=0
    (0)
    Be careful when deleting files. A lot of people have trashed their system when deleting things.
    Place things in trash. Reboot & run your applications. Empty trash.
    Go after large files that you have created & know what they are.  Do not delete small files that are in a folder you do not know what the folder is for. Anything that is less than a megabyte is a small file these days.
    (1)
    Empty the trash.  Space isn't reclaimed until you empty the trash in three places!
    The trash can...
    --  in the dock
    -- for iPhoto
    -- with Mail
    (2)
    Run
    OmniDiskSweeper
    "The simple, fast way to save disk space"
    OmniDiskSweeper is now free!
    http://www.omnigroup.com/applications/omnidisksweeper/download/
    T
    Requirements for Mac OS X v10.5
    http://support.apple.com/kb/HT3759
    TenFourFox -- It's a port of the latest FireFox to run on older hardware and software.
    "World's most advanced web browser. Finely tuned for the Power PC."
        --  works for me on 10.4.  Supports 10.5
    http://www.floodgap.com/software/tenfourfox/
    alternative download site:
    http://www.macupdate.com/app/mac/37761/tenfourfox
    OmniWeb uses the lastest Safari framework.  The open source WebKit. Other browsers like Safari and iCab use the OS version of WebKit.  The OmniWeb downloaded dmg includes it's own copy of the latest WebKit.
    http://www.omnigroup.com/products/omniweb/
    Safari 4.1.3 for Tiger
    http://support.apple.com/kb/DL1069
    Safari 5.0.6 Leopard.
    http://support.apple.com/kb/dl1422

  • My photoshop element 10 stop working,  I am not able to open ti anymore.  ?  I posted this question a few days ago and I did not get any anwer yer,  please help

    My photoshop element 10 stop working,  I am not able to open ti anymore.  ?  I posted this question a few days ago and I did not get any anwer yer,  please help

    I have photoshop premiere element 10  editor and organizer    and I have a Macbook pro 10,9,9
    When I try to open a picture with element editor or if I try to open PS editor directly  I see this
    file:///Users/main/Desktop/Screen%20Shot%202014-11-26%20at%201.17.35%20PM.png
    when I click on   Modify    it doesn't open and I have this window
    file:///Users/main/Desktop/Screen%20Shot%202014-11-26%20at%201.21.07%20PM.png
    and if I click  REOPEN  , I still have the same message
    Lucie

  • Printer went offline after a print was interrupted and I can not get it to work again.

    Printer had been set up and was working but a paper interruption stopped it and I can not get it to print or remove the offline setting

    That will probably be because its their licence and will be registered to them..??
    You won't be able to open CC files in CS2, that is to many versions back.

  • I am using my time capsule to back up and I can not get the green light, what should I do

    Hi everyone
    I posted a quesiton yesterday and when I got up this morning the time machine / capsule (not sure of the difference) had unlocked itself!. The other problem persists and that is that the amber light continues to flash and I can not get the macbook to talk to the time thingy.
    Obviously I am not very good at these things and I live in a country where I-systems knows about as much as I do!
    Thank you
    Gillian

    So you have never actually used the airport utility.. you were almost there.
    You posted this picture.
    Screen+Shot+2013-03-15+at+13.20.55.png
    Click edit button on that page.
    Voila.. airport utility in all its manual setting glory.
    Or install a decent utility.. 5.6.
    This is not required but to my eyes.. it is much easier to understand and has more useful tool items than later versions.. which are made iOS pretty picture like.
    How to load 5.6 into ML.
    1. Download 5.6 for Lion.
    http://support.apple.com/kb/DL1482
    Click to open the dmg but do not attempt to install the pkg.. it won't work anyway.
    2. Download and install unpkg.
    http://www.timdoug.com/unpkg/
    Run unpkg on the desktop.. it is very simple.. drag the AirPortUtility56.pkg file over to unpkg.. and it will create a new directory of the same name on the desktop.. drill down.. applications utilities .. there lo and behold is Airport utility 5.6 .. drag it to your main utilities directory or just run it from current location.
    You cannot uninstall 6.1 (now 6.2 if you updated) so don't try.. and you cannot or should not run them both at the same time.. so just ignore the toyland version.. the plastic hammer.. and start using 5.6.. a real tool.
    For screen shots see this post.
    https://discussions.apple.com/thread/4668746?tstart=0

  • I am missing my saved passwords and I do not get prompted to remember passwords since downloading a recent update, why?

    I use AOL mail and saw a banner for a supported firefox download and I made the mistake of downloading the update. Since I have none of my saved passwords and I do not get a prompt when I enter a site for the choice to save the password. I am looking to change to Google Chrome if this cannot get corrected.

    I encountered precisely this problem after the first upgrade to iOS 8, also on a 5s: empty Recents lists, failure to log any calls and a badge showing a -1 (minus 1).  It appears to be a problem with corruption of the iPhone backup file, whether backed up to the computer or to iCloud (I tried both).  Whether it was introduced by the iOS 8 upgrade process is open to speculation as I'd had no problems with restoring from backup with a couple of prior iOS 7 updates.
    Restoring the iPhone to Factory settings solves the problem, but then restoring from a backup re-introduces it.  Setting the device up as a new phone is the only way to fix it.  Problem is, you lose your contacts and SMS history, unless you've used a third-party app to back them up outside iTunes.  If that's no problem, simply do a Factory Restore then set up the phone as new and the problem is gone.
    If it is a problem (it was for me), I found two apps that enable you to back up & subsequently restore Contacts & Messages.  Syncios is free and worked like a charm for getting my Contacts backed up & restored to the phone.  However, it can only back up & restore Messages if the device is jailbroken.
    This phone was not JB'd so I had to find another app for Messages: Backuptrans iPhone SMS Backup and Restore.  It is $19 for up to 3 devices but was worth it in my case; creates a backup file on your computer that you can restore from after the Factory Restore.  Very simple & straightforward.
    The photos, apps & music, etc., were easily restored to the phone via iTunes sync.
    Hope this is of help to others similarly affected.  Must be relatively rare, though, as even the Senior Apple Advisors I worked with had not encountered it before.  I made them aware of this thread, FWIW.

  • Excise rate and value is not getting defaulted from the purchase order

    Hi all,
    While capturing excise invoice , the excise rate and value is not getting defaulted from the purchase order and in Excise Item Tab BED,AED,ECS is Zero at both header as well as item level for only one material in STO process and if we are doing same process taking other material all things are coming perfectly and We are maintaining condition with respect to vendor,plant and material combination.Any input related to this will be helpfull and rewarded.
    Regards
    Vishal

    Hi,
    Follow STO Process for this;
    1.Create a vendor for the company code of receiving plant, using account group: 0007 using T-Code XK01.
    2. Assign this vendor to Delivering plant
    Go to XK02 >Purchasing view>Extras>Add. Purchasing data>Plant
    3. Create internal customer with the sales area of the vendor. Go To XD01
    4. In pricing procedure determination relevant to STO, assign document Pricing Procedure and customer pricing procedure appropriate for STO to get the pricing in the invoice.
    5. Maintain condition records for the relevant pricing condition.
    6. Some more setting for STO: Go to MM> Purchasing > Purchase Order > Set up STO > define shipping data for plants > Go to Receiving plant >assign customer here & Supplying SA (for billing) to Receiving plant here
    7. Go to MM > Purchasing > Purchase Order > Set up STO > define shipping data for plants > Go to Supplying plant and assign the sales area of receiving plant.
    8. Go to MM > Purchasing > Purchase Order > Set up STO > assign delivery Type & Checking rule
    Assign the delivery type to document type. In this case, Delivery type NLCC is assigned to Document type NB
    9. Go to MM> Purchasing > Purchase Order > Set up STO > Assign document Type, One step Procedure, Under delivery tolerance
    Assign the document type NB to supplying plant and receiving plant
    10. After all settings, Create the STO using T-Code: ME21N and maintain pricing conditions of freight and Save.
    11. In supplying plant Maintain condition record in sales using VK11 the same will flow in receiving plant when referring the OBD no during MIGO.
    10. Create Delivery: VL10G
    12. Picking, PGI: VL02N
    13. Billing: VF01
    Save the document and its done
    14. J1IIN - Outgoing Excise Invoice
    15. MIGO - Goods Receipt against outbound Delivery
    16. J1IEX - Capture & Post Excise Invoice
    Rgs

Maybe you are looking for

  • I've added an external hard drive, do I now need more memory?

    Hello, Ever since I added the external harddrive, I've encountered some problems: one is that my internet access has slowed down tremendously, behaving like a dial up instead of broadband cable. The other is in iDVD, I get an error message when burni

  • Webdynpro for ABAP - Interactive Form property 'Enabled'

    Hi All, I have developed a webdynpro and created a Interactiveform in main view. In Property if i check Enabled the form is not displaying in the output. If I uncheck it 'The form is not interactive (means user input not allowed)'. How can i make the

  • How i can connect php and oracle9i ?

    hello am new to php.i have oracle 9i and php and apache.oracle is installed at one system and php inother one at network .when i have at same pc's i connect it.but now it's at different systems how i can connect.plzz tell me complete steps of apache

  • Trying to synch nano 1st gen broke my itunes

    let me start by saying that originally all i had was a 30gb ipod video, that up until now worked perfectly fine. today, a friend of mine gave me his 1st gen ipod nano, and when i plugged it into my usb connection it initially worked fine. itunes reco

  • Upgraded from Aperture 2 to 3 and now photos are no longer in photo book

    Hi, I've recently upgraded my copy of Aperture from version 2 to 3 and after my library had updated everything seemed fine until I looked at a photo book I was working on. It appears that all of the photos that I had placed in the book are no longer