[IDS Win]How to flush Indesign server.

Hi All,
I am using Indesign server to create documents which contains text, images & tables. My job is to create & export documents to pdf. Document are sometimes contains 300 plus pages. And cs2 server process this jobs one after the other in queue ..may be 100 jobs in a queue. Here after certain amount of time a 'out of memory' error comes up and Indesign server gets crashed(its around after processing 30-40 jobs).
I have taken care to delete all allocated meomary in my program through New- delete pair. Still after each job allocated memory to Indesign keeps increasing.
Is there any way so that I can purge memory from Indesign after my job complition? I tried to use 'PurgeMemory' over IDocumentList but its not that effective.
Any suggestions are most welcommed!
Thanks,
Rahul.

Well, it's been two years since the last activity in this thread, and I am having this exact same problem with InDesign Server CS4.
I have a .NET web application that calls the IDS through SOAP and simply tells it to run a JavaScript.  In simple terms, the script opens an InDesign file, imports some XML, makes some minor formatting changes, and exports the PDF to the filesystem.  The .NET webapp then receives the status message and redirects the user directly to the finished PDF which they can then view/save/etc.
This all works perfectly, but while it's running, I see the memory usage of InDesignServer.exe spike by several MB, and then it settles back down to a still-higher-than-initial value. Eventually, the InDesignServer.exe is taking up several hundred MB and my server starts giving out-of-memory errors.
I'm not sure what I'm doing wrong. Like the original poster asked, it appears as though I should be flushing something that I am not. I've researched this "ErrorList" that was referenced, and my memory "leak" seems to be bigger than this (although I could be wrong), but I can't find anything in the language reference on how to programmatically flush this after each document. I'm not even sure if this is the culprit.
Can anybody help? Many many thanks in advance
The contents of my JavaScript is as follows (and you'll see that I'm closing the document each time):
// We encapsulate the meat of the code in a main() function and then call main() at
// the bottom of the script in order to facilitate proper returns
// see http://ericwillis.wordpress.com/2008/04/18/return-value-from-indesign-server-script-via-so ap/
function main()
     // Our script requires a school code to be passed in as an argument
     // We begin by assuming that it hasn't been passed
     var message='Error: schoolCode parameter required';
     // if the argument HAS been passed...
     if(app.scriptArgs.isDefined('schoolCode'))
          // We change our return message and proceed with processing
           message='Success: No problems reported';
          // This is our work folder
          var projectPath='/E/mywebsite/';
          // this is our starting template
          var doc = app.open(File(projectPath + 'source/Template.indd'));
          // the template has been "tagged" with XML placeholders, so here we are
          // importing the data to replace them. The filename of the XML is
          // dependent on the school code that was passed as an argument
          doc.importXML(File(projectPath + 'work/' + app.scriptArgs.getValue('schoolCode') + '.xml'));
          // The next portion of the script scans the entire document for overset
          // text (text that flows outside of it's container). If any is found, it changes
          // the text colour to red so that the author knows that they overtyped
          //Create a color.
          try{
               doc.colors.item("Red").name;
          catch (myError)
               doc.colors.add({name:"Red", model:ColorModel.process, colorValue:[20, 100, 80, 10]});
          // loop through each "story"
          for(x=0;x<=doc.stories.length-1;x++)
               // if the current story has overset text...
               if(doc.stories.item(x).overflows)
                    // change the text colour to our previously created colour
                    doc.stories.item(x).fillColor = doc.colors.item("Red");
                    // Change the message too so that we know on the server side
                    // that there's a problem
                    message='Warning: Contains overset text';
               // We couldn't find a way to use styles to place an outside border
               // around a variable-width & length table that we're creating
               // dynamically in the XML. To solve this, the following loop finds all
              // of the tables in the document and places a border around their
              // outside-most edges only
               // Loop through each table in this story
               for(y=0;y<=doc.stories.item(x).tables.length-1;y++)
                    // myTable will refer to each table
                    var myTable=doc.stories.item(x).tables.item(y);
                    // Header stroke
                    var myRow=myTable.rows.item(0);
                    myRow.topEdgeStrokeColor="Black";
                    myRow.topEdgeStrokeTint=100;
                    myRow.topEdgeStrokeType="Solid";
                    myRow.topEdgeStrokeWeight=0.5;
                    myRow.topEdgeStrokeOverprint=true;
                    // Do left border
                    var myCol=myTable.columns.item(0);
                    myCol.leftEdgeStrokeColor="Black";
                    myCol.leftEdgeStrokeTint=100;
                    myCol.leftEdgeStrokeType="Solid";
                    myCol.leftEdgeStrokeWeight=0.5;
                    myCol.leftEdgeStrokeOverprint=true;
                    // Do right border
                    var myCol=myTable.columns.item(myTable.columns.length-1);
                    myCol.rightEdgeStrokeColor="Black";
                    myCol.rightEdgeStrokeTint=100;
                    myCol.rightEdgeStrokeType="Solid";
                    myCol.rightEdgeStrokeWeight=0.5;
                    myCol.rightEdgeStrokeOverprint=true;
                    // Do bottom border
                    var myRow=myTable.rows.item(myTable.rows.length-1);
                    myRow.bottomEdgeStrokeColor="Black";
                    myRow.bottomEdgeStrokeTint=100;
                    myRow.bottomEdgeStrokeType="Solid";
                    myRow.bottomEdgeStrokeWeight=0.5;
                    myRow.bottomEdgeStrokeOverprint=true;
          // Set some PDF export prefs
          app.pdfExportPreferences.cropMarks=false;
          app.pdfExportPreferences.colorBars=false;
          app.pdfExportPreferences.bleedMarks=false;
          app.pdfExportPreferences.useSecurity=false;
          // Export the PDF to the filesystem
          // the filename is dependent on the school code that was passed
          // as an argument
          doc.exportFile(ExportFormat.PDF_TYPE, File(projectPath + 'work/' + app.scriptArgs.getValue('schoolCode') + '.pdf'));
          // Close the document
          doc.close(SaveOptions.no);
     // Return whatever message was produced by this function
     return message;
// call our main function
main();

Similar Messages

  • How to get InDesign Server instance on IIS Webservice

        <WebMethod()> _
        Public Function testIDS() As String
            Dim idsAP As InDesignServer.Application = Nothing
            Try
                idsAP = GetObject("myid2")
            Catch ex As Exception
                Return ex.Message
            End Try
            idsAP.Consoleout(" Web Service call test success !(VB) ")
            Return Nothing
        End Function
    I can run it correctly on ASP.NET development server, but it will occurred  error on IIS6 .
    Is the permission problem? How to solve it ?
    I also try this
    idsAP = System.Runtime.InteropServices.Marshal.BindToMoniker("myid2")
    But, no use !

    SQL Server instances define the container for all operations you perform within SQL Server. Each instance
    contains its own set of database, security credentials, configuration settings, Windows services and other SQL Server objects.
    SQL Server 2008 supports the installation of up to 50 instances on SQL Server on a single machine. When connecting to a named instance, you use the combination of the
    machine name and instance name, such as <machinename>\<instancename>
    Please refer to:
    http://msmvps.com/blogs/paulomorgado/archive/2010/07/02/how-to-add-and-remove-sql-server-2008-2008r2-instances.aspx
    http://www.sysads.co.uk/2012/02/add-additonal-sql-instance-to-existing-sql-server-2008-r2-cluster/
    Please vote if it's helpful and mark it as an answer!

  • Document Units between InDesign Server and InDesign Client

    I am working between a Client application using InDesign CC and a Server application using InDesign Server CC.  The problem is that the Clients have their default document width/height settings set to Picas whereas the Server's settings seem to be in Inches.  This is causing problems when Server application is trying to generate a PDF in the units specified by the client.  I need help in figuring out how to get InDesign Server to use Picas instead of Inches.
    Here is a sample of the code used to look at the page width/height values.  I have a module-level boolean called 'mInDesignServer' set to True to test with InDesign Server and False to test with InDesign:
                     If mInDesignServer Then
                        doc = DirectCast(Application.Documents, Global.InDesignServer.Documents).Add
                    Else
                        doc = Application.Documents.Add
                    End If
                    doc.ViewPreferences.RulerOrigin = Global.InDesign.idRulerOrigin.idPageOrigin ' Global.InDesign.idRulerOrigin.idSpreadOrigin
                    doc.ViewPreferences.HorizontalMeasurementUnits = Global.InDesign.idMeasurementUnits.idPicas
                    doc.ViewPreferences.VerticalMeasurementUnits = Global.InDesign.idMeasurementUnits.idPicas
                    doc.ZeroPoint = myZeroPoint
                    ' Look at the document preferences
                    Debug.WriteLine(IIf(mInDesignServer, "Server", "Client") & " " & _
                        "Page Height: " & doc.DocumentPreferences.PageHeight & " " & _
                        "Page Width: " & doc.DocumentPreferences.PageWidth & " " & _
                        "Page Size: " & doc.DocumentPreferences.PageSize)
    Here is the output from the Debug.WriteLine statement when run under both conditions:
         Server Page Height: 11 Page Width: 8.5 Page Size: Letter
         Client Page Height: 66 Page Width: 51 Page Size: Letter
    As stated above, how can I get InDesign Server CC to change its default units to Picas to match that of the Client?
    Thanks,
    Jody

    This worked for me...
    oDocument.ViewPreferences.HorizontalMeasurementUnits = idMeasurementUnits.idMillimeters
    oDocument.ViewPreferences.VerticalMeasurementUnits = idMeasurementUnits.idMillimeters

  • How can I use IClippingPathSuite in InDesign Server

    The IClippingPathSuite can be used 'to apply clipping paths to the current selection'
    However in InDesign server it is not possible to create a current selection. How can I use the IClippingPathSuite on specific items in a document with InDesign Server?

    Can you explain what it is you're trying to do?
    As written, your question doesn't make much sense. Are you trying to stream TO your server, or from it?

  • Needed help in: how to import image in InDesign Server using Java Code

    New to InDesign Server.
    I am not been able to import image to document.
    I tried to import image using the sample snippets "PlaceTextFileInFrame.java".
    modified the line:
    String placefilepath = "C:\\placeFile.txt";
    to
    String placefilepath = "C:\\Image.jpg";
    myTextFrame.place(placefilepath);
    Is this the correct way to import image or there is another solution.
    1.The image gets imported but i am getting blur image(Zoomed image).
    2.The image gets imported to its original image width & height.
    3.I need to know how to set the image width & size.

    My Requirement is-- I ve to connect to msn search page in order retrieve the result set from msn search. The same code which I do pasted below is working for GOOGLE n YAHOO with minor changes.But not for MSN.., Can any one help me.
    I've pasted the code for msn..,
    import java.io.*;
    import java.net.*;
    public class File {
    public static void main(String[] args) throws IOException {
    Socket s = new Socket("search.live.com", 80);
    String query = "java";
    PrintStream p = new PrintStream(s.getOutputStream());
    p.print("GET /results.aspx?q=" + query);
    p.print("User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0\r\n");
    p.print("Connection: close\r\n\r\n");
    InputStreamReader in = new InputStreamReader(s.getInputStream());
    BufferedReader buffer = new BufferedReader(in);
    String line;
    while ((line = buffer.readLine()) != null) {
    System.out.println(line);
    Edited by: Lijo_Java on Jul 13, 2008 9:03 PM

  • How to use external DLLs in InDesign server plugin

    Hi,
    I am working on a project, which is having dependency on libxml2 library. I compiled the code on 64 bit Windows platform and using InDesign server 64 bit version. I put the required DLLs in Adobe InDesign CS6 Server x64 folder(with other DLLs). But now my plugin is not loading in server and also not throwing any error message on command prompt.
    If I remove the libxml2's method call, then plugin is loading successfully.
    Is there any other way to use external DLL or I am missing something?
    Thanks & Regards,
    Harsh

    Hi Sidharth,
    If you are using web dynpro DC perspective then you need to follow the following points to use the external jar files in it.
    1. Create a external library project.
    2. copy the external jars in the library folder os the projects.
    3.) Select all the jars from the u201CLibrariesu201D folder, Right click and then select Development Component and click on Add to Public Part
    4.Select the first Radio Button (Provides an API)and give some nameto it.
    5. Repeat the step no 3 but now select the second radio button other than as selected in step no 4.
    6. Now build your lirary DC.
    7. Now create a j2ee DC project.
    8. ) Expand the node DC Definition and Right Click on Used DC. Select Add Used DC.
    9. Select the External Library DC with build time dependency.
    10.Right click on the J2EE DC and then select Development Component followed by Build
    11. Right click on the J2EE DC and then select Development Component followed by Deploy
    now you can use both the libary DC and the j2ee DC in your web dynpro DC as used DC.
    But if you have created a web dynpro project only(but not DC) than you can directly add the external jars in java build path
    hope this will help
    regards
    Narendra
    Edited by: Narendra Singh on Oct 27, 2009 11:22 AM

  • How do you assign an InDesign server instance to its own drive?

    I am working on optimizing the performance of our InDesign server and read about the possibility of assigning drives to the individual instances in the performance guide. Is there a configuration file or command-line argument for configuring the working drive for each server instance?

    I am not sure about that. Do you mean that all I have to do is provide the interface <cc:attribute name="value" type="lvl1.lvl2.someClass"/> and when I run the method, the returned result will be written into the expression provided in "value"?

  • How to start two instances of InDesign server independently?

    Hello,
    we have a multi instance InDesign server installation.
    And we are able to start two instances of InDesign server on different ports.
    But now we would like to use different plugins for different instances.
    Is it possible somehow? For example install InDesign server two times in different folders or something like that?
    Thank you in advance.

    InDesign plugin loading can be controlled via a file "PluginConfig.txt", refer to search for details.
    InDesign Server has separate configuration folders per instance/configuration.
    *If* the search path for the PluginConfig.txt falls into this folder, that would be the easiest approach.
    I don't have a server installation with me to try it out.
    Dirk

  • InDesign Server CC 2014 Trial  - how to activate the tiral license

    Hi everybody,
    I just downloaded the trial of the InDesign Server CC 2014 for MacOS X but I do not find the correct command to activate the trial license.
    I always get the following error: ERROR [server] Adobe InDesign Server is not properly licensed and will now quit.
    What shall I do to activate the trail?
    TIA & BR
    -- Stefano

    Found: download and install Adobe Provisioning Toolkit Enterprise Edition and in terminal window enter adobe_prtk --tool=StartTrial --leid=V7{}InDesignServer-10-Mac-GM.
    Reference: InDesign Help | InDesign CC Server 2014 Release Notes

  • Cannot install InDesign Server CS4: Win 2003 x64

    One of my customers has just purchased InDesign Server CS4 (Single Instance, Premium License) and I'm trying to install build 525 on Windows Server 2003 Enterprise Edition x64. I select the default 'Easy/Recommended' installation settings and the installer runs through, but then displays the message below. I've tried installing to different directories but hit the same error every time.
    When I select 'Next' the installer lists the following products and components have been successfully installed:
    Adobe InDesign CS4 Server
    ID Server service files
    ID Server components
    ID Server service files (x64)
    However, it doesn't appear to have installed correctly, as if I start the InDesign Server service and then execute the following test script nothing happens:
    #target indesignserver;
    //HelloWorld.jsx
    //Create a new document.
        var myDocument = app.documents.add();
    //Get a reference to the first page.
        var myPage = myDocument.pages.item(0);
    //Create a text frame.
        var myTextFrame = myPage.textFrames.add();
    //Specify the size and shape of the text frame.
        myTextFrame.geometricBounds = ["6p0", "6p0", "18p0", "18p0"];
    //Enter text in the text frame.
        myTextFrame.contents = "Hello World!";
    //Save the document (fill in a valid file path).
        myDocument.save(new File("/e/HelloWorld.indd"));
    //Close the document.
    //Close the document.
        app.documents.item(0).close();
    Any ideas?

    I gave up on this and ended up installing the 32 bit version which works fine. It appears that there is a problem installing 64 bit on Windows 2003 Enterprise Edition so watch out...

  • Indesign server web service - where is the support to upload a file with the script and download the result?

    Hi,
    I am working on a POC that is supposed to convert indd files to pdf (i.e. using of course the indesign server). Basically I want to call the IDS Web Service (located on a different machine perhaps), pass in the input file, the conversion script and retrieve the result as part of the WebService call? 
    Browsing the documentation, examples, etc in the SDK, I couldn't see how the above can be achieved without the client handling the file transfer. Surely I must be missing something ...
    thanks
    Chris

    What do you mean with POC?
    InDesign Server is too precious (i.e. license cost) to waste its time with file transfers.
    For a smaller scale, let a separate process (some http or smb server) on the same server hardware handle the files - so that the InDesign Server can access them on the fastest local volume.
    If you plan for bigger, use a dedicated server for file sharing (your choice of SMB, NFS or whatever), where the input files are prepared by the client process, so that your load balancer can immediately point the next free instance of the InDesign server farm to the file. In that case be prepared for some try and error - high speed file sharing can be tricky with files written from one side not yet visible or incomplete to the other side, locking problems, Unicode file name trouble, unexpected time stamps and so forth.
    Btw, there is also an InDesign Server forum which would be more appropriate for such discussions.
    Dirk

  • Indesign Server CC Trial issues

    The installation instructions states
    You need to download Adobe Provisioning Toolkit Enterprise Edition (APTEE) for using the InDesign Server trial
    The download link only refers to CS6, CS5.5 & CS5 not CC
    Since there is no Adobe Provisioning Toolkit Enterprise Edition for CC I decided just to install and run the trial.
    However I got the Adobe InDesign Server is not properly licensed and will now quit message.
    According to the CC Release notes it says:
    InDesign CC Server needs to be activated before it can be used. If the computer is online, activation is done automatically when you install. You need to provide your Adobe ID, and serial number when prompted by the installer. Unless the software is activated, you'll see an error, "Adobe InDesign Server’ is not properly licensed and will now quit."
    My computer was online yet the it seems it didn't perfom the automatic activation as it suggests. When I entered my AdobeID credentials I did not get any errors saying it could not connect online.
    So I had to do something and decided to use the Adobe Provisioning Toolkit Enterprise Edition for CS6.
    This allowed me to get pass the licensing issue.
    The next problem was I was getting DDE Server Window:InDesignServer.exe System Error popup. Telling me The program can't start because svml_dispmd.dll is missing from your computer.
    C:\Program Files\Adobe\Adobe InDesign CC Server x64>indesignserver
    ================================================================================
    .  InDesign CC Server Version 9.0 x64 Evaluation
    .  Copyright 1999-2013 Adobe Systems Incorporated and its licensors.
    .  All rights reserved. See the other legal notices in the ReadMe.
    ================================================================================
    11/28/13 08:08:49 INFO  [server] Initializing
    11/28/13 08:08:49 INFO  [server] Loading the application
    11/28/13 08:08:49 INFO  [server] Scanning for plug-ins
    11/28/13 08:08:49 INFO  [server] Registering 113 plug-ins
    11/28/13 08:08:53 INFO  [server] Completing Object Model
    11/28/13 08:08:53 INFO  [server] Saving Object Model
    11/28/13 08:08:53 INFO  [server] Initializing plug-ins
    11/28/13 08:08:53 INFO  [server] Calling Early Initializers
    11/28/13 08:08:53 INFO  [server] Starting up Service Registry
    11/28/13 08:09:02 INFO  [server] Executing startup services
    11/28/13 08:09:02 INFO  [server] Using configuration configuration_noport
    11/28/13 08:09:02 INFO  [server] Initializing Application
    11/28/13 08:09:02 INFO  [server] Completing Initialization
    11/28/13 08:09:02 INFO  [server] Calling Late Initializers
    11/28/13 08:09:08 INFO  [server] Image previews are off
    11/28/13 08:09:08 INFO  [server] Server Running
    11/28/13 08:09:08 INFO  [javascript] Executing File: C:\Program Files\Adobe\Adobe InDesign CC Server x64\Scripts\startup scripts\ConnectInstancesToESTK.js
    11/28/13 08:09:08 INFO  [javascript] Executing File: C:\Program Files\Adobe\Adobe InDesign CC Server x64\Scripts\converturltohyperlink\startup scripts\ConvertURLToHyperlinkMenuItemLoader.jsx
    11/28/13 08:09:08 INFO  [javascript] Executing File: C:\Program Files\Adobe\Adobe InDesign CC Server x64\Scripts\converturltohyperlink\ConvertURLToHyperlinkMenuItem.jsxbin
    So after browsing the net to see where I can get this missing svml_dispmd.dll I found this post http://software.intel.com/en-us/forums/topic/285859
    and decided to install what it suggested.
    I still got the missing dll error so I copied it from C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler into C:\Program Files\Adobe\Adobe InDesign CC Server x64
    Now it just sits there and hangs at the same spot
    11/28/13 08:09:08 INFO  [javascript] Executing File: C:\Program Files\Adobe\Adobe InDesign CC Server x64\Scripts\converturltohyperlink\ConvertURLToHyperlinkMenuItem.jsxbin
    What the heck is going on here?
    I have installed Indesign Server CC on another machine and although I did not get the missing dll problem it still however hangs at the same spot mentioned above.
    Could someone from Adobe please help. The already I'm losing days with this trial and I will have little days left to test this product.

    I'm having same trial activation difficulties. How have you activated it with APTEE? What leid did you use?
    Thank you.
    UPDATE: Never mind. I found it and activated server by executing:
    "adobe_prtk.exe  --tool=StartTrial --leid=InDesignServer-CS7-Win-GM"

  • Indesign Server CS5 crashes at launch

    Hi,
    Indesign Server 7.03 on OSX 10.5.8 Intel Xserve.
    When Indesign server CS5 is launched at boot (or with launchctl) it crashes with the following errror in the system log:
    Nov 20 13:32:00 ams1ps01 com.adobe.ids.launchd.8888[799]: /Applications/Adobe InDesign CS5 Server/InDesignServer: line 13:   801 Trace/BPT trap          "$installed_name" "$@"
    Nov 20 13:32:00 ams1ps01 com.apple.launchd[1] (com.adobe.ids.launchd.8888[799]): Exited with exit code: 133
    Nov 20 13:32:00 ams1ps01 com.apple.launchd[1] (com.adobe.ids.launchd.8888): Throttling respawn: Will start in 3 seconds
    Nov 20 13:32:03 ams1ps01 InDesignServer[806]: 3891612: (connectAndCheck) Untrusted apps are not allowed to connect to or launch Window Server before login.
    Nov 20 13:32:03 ams1ps01 com.adobe.ids.launchd.8888[804]: Sat Nov 20 13:32:03 ams1ps01 InDesignServer[806] <Warning>: 3891612: (connectAndCheck) Untrusted apps are not allowed to connect to or launch Window Server before login.
    Nov 20 13:32:03 ams1ps01 com.adobe.ids.launchd.8888[804]: ================================================================================
    Nov 20 13:32:03 ams1ps01 com.adobe.ids.launchd.8888[804]: .  InDesign CS5 Server Version 7.0
    Nov 20 13:32:03 ams1ps01 com.adobe.ids.launchd.8888[804]: .  Copyright 1999-2010 Adobe Systems Incorporated and its licensors.
    Nov 20 13:32:03 ams1ps01 com.adobe.ids.launchd.8888[804]: .  All rights reserved. See the other legal notices in the ReadMe.
    Nov 20 13:32:03 ams1ps01 com.adobe.ids.launchd.8888[804]: ================================================================================
    Nov 20 13:32:04 ams1ps01 InDesignServer[806]: _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
    Nov 20 13:32:04 ams1ps01 com.adobe.ids.launchd.8888[804]: _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
    Nov 20 13:32:05 ams1ps01 kernel[0]: unknown SIGSEGV code 0
    Nov 20 13:32:05: --- last message repeated 1 time ---
    Nov 20 13:32:05 ams1ps01 InDesignServer[806]: [soap] Servicing SOAP requests on port 8888 [8888]
    Nov 20 13:32:07 ams1ps01 InDesignServer[806]: An uncaught exception was raised
    Nov 20 13:32:07 ams1ps01 com.adobe.ids.launchd.8888[804]: 2010-11-20 13:32:07.705 InDesignServer[806:10b] An uncaught exception was raised
    Nov 20 13:32:07 ams1ps01 InDesignServer[806]: Error (1002) creating CGSWindow
    Nov 20 13:32:07 ams1ps01 com.adobe.ids.launchd.8888[804]: 2010-11-20 13:32:07.706 InDesignServer[806:10b] Error (1002) creating CGSWindow
    Nov 20 13:32:07 ams1ps01 InDesignServer[806]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Error (1002) creating CGSWindow'
    Nov 20 13:32:07 ams1ps01 com.adobe.ids.launchd.8888[804]: 2010-11-20 13:32:07.706 InDesignServer[806:10b] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Error (1002) creating CGSWindow'
    When launched while logged on, it launches ok.
    Here's the content of the plist file used to launch ID Server:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"
    <plist version="1.0"> <dict>
    <key>Label</key>
    <string>com.adobe.ids.launchd.8888</string>
    <key>OnDemand</key>
    <false/>
    <key>ProgramArguments</key>
    <array>
    <string>/Applications/Adobe InDesign CS5 Server/InDesignServer</string>
    <string>-port</string>
    <string>8888</string>
    <string>-LogToApplicationEventLog</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
    </dict>
    </plist>
    Please advice.
    Regards,
    Jeroen Peters

    Hi,
         I'm having the same problem. Anybody kows how to do it?
    Thanks

  • Indesign Server Licensing

    I am looking into purchasing a 3rd party product for doing dynamic date publishing using Indesign. The vendor is telling me in order to be complaint with Adobe I need to purchase an Indesign Server license even though the 3rd party application doesnt need it. It will basically sit on the shelf and collect dust. The vendor isnt even looking for us to purchase Indesign Server through, so its not like they are making any money.
    Just doesnt make sense on why I would need to purchase it. I have tried calling Adobe sales reps numerous times and either no one knows the answer or I never get called back from the people who are supposed to know the answer.
    I figured this was the best board to post this on, not sure if it would be better somewhere else.
    Does anyone have any insight into this? Any response is greatly appreciated.
    Thanks!

    I had trouble - the instructions send you down some confusing paths - but I got it working eventually. The "Installation Instructions.pdf" file indicates you need to activate the trial with Adobe Provisioning Toolkit Enterprise Edition (APTEE), but sends you to a link that says nothing about APTEE. It turns out you can find APTEE in a download called Adobe Application Manager Enterprise (AAME), which doesn't say much about APTEE, but does install APTEE in "C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\Enterprise\utilities\APTEE\CS6". You don't actually need to create a distribution package of the product installer with the UI of the installed AAME software as you might be led to believe; in the folder above is a command line tool, for which the "indesign-server-cs6-release-notes.pdf" file provides incorrect command line information regarding how to activate the 90 day trial (spurious spaces at line breaks and in command line options that are supposed to be "--" not "- -"). The actual correct command line I used successfully to activate the trial was "adobe_prtk --tool=StartTrial --leid=InDesignServer-CS6-Win-GM" .
    It really shouldn't have taken that much figuring out (especially since the InDesign Server CS6 installer itself has a UI which suggests you can just choose an option for trial mode). You can only get on the right track by reading and then ignoring the instructions, and searching around for the right download on the Adobe site.
    Glenn

  • Indesign server trial

    Hello, I would like to find a trial version of Adobe Indesign server (CS4 or CS5). I try to download it in the download area, but the link is broken. Thanks.

    I had trouble - the instructions send you down some confusing paths - but I got it working eventually. The "Installation Instructions.pdf" file indicates you need to activate the trial with Adobe Provisioning Toolkit Enterprise Edition (APTEE), but sends you to a link that says nothing about APTEE. It turns out you can find APTEE in a download called Adobe Application Manager Enterprise (AAME), which doesn't say much about APTEE, but does install APTEE in "C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\Enterprise\utilities\APTEE\CS6". You don't actually need to create a distribution package of the product installer with the UI of the installed AAME software as you might be led to believe; in the folder above is a command line tool, for which the "indesign-server-cs6-release-notes.pdf" file provides incorrect command line information regarding how to activate the 90 day trial (spurious spaces at line breaks and in command line options that are supposed to be "--" not "- -"). The actual correct command line I used successfully to activate the trial was "adobe_prtk --tool=StartTrial --leid=InDesignServer-CS6-Win-GM" .
    It really shouldn't have taken that much figuring out (especially since the InDesign Server CS6 installer itself has a UI which suggests you can just choose an option for trial mode). You can only get on the right track by reading and then ignoring the instructions, and searching around for the right download on the Adobe site.
    Glenn

Maybe you are looking for

  • How do I make one large MP3 of whole

    Hi I want to concatenate all 0 tracks of my audio CD and create a single MP3 file with ID3v tags. I can do this easily with iTunes, except for that it produces only ID3v2 tags. I have had a look on the Creative software (Media Creator?) but that does

  • Generating a PDF and then Email it from the report server.....

    All, This is my first post on this forum and I have the following question..... Please note I am not a DB expert nor a reporting expert but I have done my fair share of reporting using Oracle DB with Oracle Reports or Hyperion. I have a report that w

  • Payment run error

    Hi All, When i run payment run Vendor is always separated into few line items...Why they cannot be combined together?? Thanks Rafi

  • Can I get the GP status using GP API.

    Hi all, Can I use the GP API to get one process status present,for example,"reject" or "approve" according to the process instance ID? If there's a way,how can i archive this? Best regards, delma

  • Auto address sometimes uses phone number instead of e-mail address

    How do I stop auto address feature from sometimes using contact phone number instead of their e-mail address when composing an e-mail?