Docs about "Debug settings.xml" for Indesign Server

Hi,
In the "Indesign Server Debug" CS5.5 I found a file "Debug Settings.xml" (also in the desktop version). I suppose this is about enabling/disabling certain loggings. Default, all features are disabled. I tried to enable some of the features but I can't see any difference in the logging.
So, I have 3 questions:
- Is this somewhere documented on what this settings do? What can I expect if I enable a certain feature?
- In the desktop debug version there is a menu "Test" with many diagnostic and other tests. Can these somehow being performed in IndesignServer debug? Is this documented somewhere?
- I followed the steps described in this thread: http://forums.adobe.com/thread/883151 to obtain a "Leaks.txt" file. The approach described in that thread works in the desktopversion of Indesign but not for IndesignServer. Any ideas how I can obtain this for IndesignServer?
Thanks in advance for any input.
Bart Devos.

The only strategy that I can think of involves a lot of pain.
First you should remove all but the plugin that you're working on. The point of this is to check there might be some other plugin that is leaking. No point trying to fix a problem when it's not in your code.
Once you verify that nothing is leaking without your plugin, use Dolly to create a simple plugin and add it. Check this for leaks. This is to create a base system that we can be confident doesn't leak.
Now comes the painful stuff. Slowly add a piece of your code at a time being sure to test your changes.(That's important, don't just add code but test it throughly to see if you trigger leaks.)
When leaks appear, go through what you just added and start commenting things out. Hopefully you'll get to a line that you can comment and uncomment to make the leak appear and dissappear.
But be careful. Sometimes the leak isn't in the line that you find, but at least you're probably in the ballpark. This should help narrow your focus to where you need to look.
Once you fix that leak kept slowly adding the rest of the code, testing as you go. Who knows, maybe there's more than one leak.
It's not the prettiest approach but I find that it works.

Similar Messages

  • Installing Transparency Flattener Preset for Indesign Server CS4

    I'm trying to figure out how to install a transparency flattener preset for InDesign Server CS4.
    I can see how they are installed for the InDesign app.  Edit -> Transparency Flattener Presets...
    But I'm not sure which directory to install these on for the server.
    I've seen a post that mentions:
    C:\Documents and Settings\<UserName>\Application Data\Adobe\InDesign\Version 6.0\en_US\Transparency Flattener Presets
    /Users/<UserName>/Library/Preferences/Adobe InDesign/Version 6.0/en_US/Transparency Flattener Presets
    for the Desktop version.  But when I place files here even for the CS4 Desktop, they don't seem to show up in the UI.
    Any help would be appreciated,
    Thanks,
    Dennis

    Thanks, to get this working in a server script, I ended up just programmatically creating the flattener preset, rather than worrying about the .flst files.  (Java code below)
      //Setup Transparency Flattener (if not in application)
      FlattenerPreset flattenerPreset = app.getNamedChildFlattenerPreset("Test");
      if (flattenerPreset == null) {
          flattenerPreset = app.addFlattenerPreset();
          flattenerPreset.setName("Test");
          flattenerPreset.setRasterVectorBalance(VariableTypeUtils.createLong(100));
          flattenerPreset.setLineArtAndTextResolution(2400.0);
          flattenerPreset.setGradientAndMeshResolution(400.0);
          flattenerPreset.setConvertAllTextToOutlines(false);
          flattenerPreset.setConvertAllStrokesToOutlines(false);
          flattenerPreset.setClipComplexRegions(false);
      pdfPreset.setAppliedFlattenerPreset(flattenerPreset);

  • Issue in setting Load balancing for Indesign Server CS5.5

    Hi All,
    I need to set up load balancing mechanism for Indesign Server CS5.5 on Windows Server 2008 R2(64 bit version).
    I have dutifully following all steps defined in "WORKING WITH LOAD BALANCING AND QUEUEING FOR ADOBE INDESIGN CS5 SERVER.pdf"
    After running Indesign server using batch file "startup-indesign-server-CORBA-4instances.bat" from "<ID_SDK>\samples\load-balancing-and-queuing-clients\indesignserver-startup-scripts", I get only one instance of Indesign Server running. How to run multiple instances of the INDD server ? Is running multiple instance has something to do with type of licensing ?
    Now I run Clover.cmd script, I get this screen. I have no idea why its not working. Please help. Please let me know, if the scenario is not clear and more information is required.
    Thnx,
    D

    This is the image after running clover.bat

  • Perl client for InDesign Server

    Please help to setup a perl client for InDesign server to run javascripts: Below is the code I tried to run "MakeDocument.jsx"
    use SOAP::Lite;
      use CGI::Carp qw(fatalsToBrowser);
      my $soap = SOAP::Lite->new(proxy=>'http://172.16.32.43:18444/service?wsdl');
      my %script_parameters = ( "scriptFile"=>"MakeDocument.jsx", "scriptLanguage"=>'javascript'); 
      my $result = $soap->call('RunScript',%script_parameters)->result; 
      print $result;

    What's the error you are getting? Where is the script placed?

  • Visual Studio compiling 64 Bit Plugin for InDesign Server CS5

    Hello guys,
    Again I have a problem compiling 64 bit plugins, but this time in windows environments, the 32 bit compiling works fine (also on 64 bit machines). The first thing I've done was creating a new project configuration for 64 bit environments copying the 32 bit settings. Now I changed the precompiled libraries to use the 64 bit ones and changed the output directories. After that the compilation process completed without errors, but the resource files have not been copied to the output directory (the directory for them has been created, but it remains empty). Adding the created plugin into the servers directory ends up with a server message that the plugin could not be recognized. Have I missed something that is necessary for compiling 64 bit plugins?
    I'm using the 64 Bit Developer Version of the indesign server CS5. The operating system is a Windows Server 2008 x64 R2 with Visual Studio 2008.
    Thanks!
    P.S. a plugin compiled with 32 bit settings (including 32 bit libraries) also works for the 64 bit version of the server, so does it make any difference if I'm using 32 bit or 64 bit libraries?

    The libraries were all correct (all using 64-bit).  The problem was a pathing issue.  libxml2 needs iconv.dll, but it couldn't find the 64-bit version that I built.  Once it found it, everything worked correctly.
    The funny thing about depends.exe is that it isn't right all the time.  For example, if you open one of the 64-bit .aip files that ships with Illustrator (rename it to .dll first), you'll see what I'm talking about.  It complains that you're mixing x86 and x64 CPU types, even though you're not.
    The program I used to discover my issue is Process Monitor (http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx).  I've been using it for years and love it.

  • What's needed for a PDF processing module for InDesign Server?

    Hello,
    After digging through lots of documentation and whitepapers, I am still puzzled about what would be an efficient way to implement a software module that handles some specific processing tasks of PDF output (automatically generated in InDesign Server and targeted for various types of print configurations from small-run LFP up to very high volume commercial printing).
    We have a working standalone script that uses Acrobat's preflight and correction functions, and now we would like to port and integrate this into a server-based workflow. Apparently, there is no Acrobat Server product available. Distiller Server does exist, but seems to be limited to converting PostScript to PDF without the PDF-to-PDF processing features we need. Some of the functionality that is typically found in RIPs (e.g. converting colours to a preset output intent with highly configurable options [for pixel/vector elements, black and spot colour ink issues etc.] and flattening native transparency) could probably be implemented using the Adobe PDF Print Engine, but this seems a bit overkill and would probably require extensive programming from scratch. I suspect there should be a smarter way to use existing software – but which? I am not yet familiar with InDesign Server; does its SDK permit full access to the same parts/functions of the PDF library that Acrobat uses for its preflight and correction features?
    Any help is welcome.
    Eric

    Gordon,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • 5.0.2 dot release available for InDesign Server

    The 5.0.2 Dot Release for InDesign, InCopy and InDesign Server is now live on Adobe.com and available through Help>Updates. This update provides key fixes in the areas of Anchored Objects, Character Alignment, Step and Repeat, Indexing and Table of Contents, Text and Fonts, Dictionaries, Color, Scripting, Import/Export Graphics, InDesign Interchange files (INX), XML, Library files, Printing, and others.
    For a full list of resolved issues, please see the Adobe InDesign CS3 5.0.2 ReadMe.pdf at http://www.adobe.com/go/id5_readme.
    This installer includes fixes from all previously released InDesign CS3 5.0.x updates. Note that the previous InDesign 5.0.x updates are no longer available separately.

    Kuassi,
    I see that files "javadoc.zip" and "demo.zip" report the same file sizes for both 10.2.0.2 and 10.2.0.1 versions. Are the 10.2.0.2 versions of these files identical to the 10.2.0.1 versions?
    Thanks,
    Avi.

  • Developer Update for InDesign Server Developers

    Hello all,
    If you are creating plug-ins for the Creative Suite of Adobe applications, you'll want to attend this ninety minute session for an update on developing plug-ins for Photoshop, Illustrator, InDesign, Bridge, Version Cue, and XMP.
    Topics include the C and C++ APIs, Extendscript and other developer details. Dan Brotsky, Chief Architect for the Creative Suite, will discuss highlights of the Version Cue SDK, and the Creative Suite Activation Software. This presentation is not for the technically faint of heart expect high technology at high speed!
    This session will be recorded for later review, and a summary document made available for reference.
    Who should attend? Any developer that is interested in creating plug-ins for any products in the Creative Suite.
    May 3rd. 9:00 am to 10:30 am PST
    Free
    Online via Acrobat Connect - watch from your desktop - no special software require to participate.
    Register at:
    http://www.adobe.com/cfusion/event/index.cfm?event=detail&id=883099&loc=en_us
    MNR

    I have spent some time geting Java automation to work with InDesign, it's not my favorite language but I learned some things that may help and put them into some course content that Adobe should put out shortly; will post here when it is available online.
    Our company, Silicon Publishing, provides general InDesign Server automation training, though we don't have a current offering that specifically targets Java we teach some of the basics of working with Java (many unique techniques!) and could arrange a limited form of training.
    The documentation and samples with the SDK should take you part of the way there: for specific scripts, it has been helpful to us to get things working in an easier-to-write (i.e. JavaScript) script first, then translate such a script to Java, taking into account the unique characteristics of the language and various tactics (outlined in the SDK documentation) to address these.
    Max
    Max Dunn
    Silicon Publishing
    www.siliconpublishing.com
    [email protected]

  • Develop plugin for indesign server

    Hi,
    i donno if this question is really trivial or if i'm just approaching this the wrong way. I need to develop a plugin that i'll have to run using indesign server. I have been reading the sdk documentations and trying to understand whatever i can. I've also developed the writefishprice plugin, however from what i understand that one won't run in the server. Is there any documentation that i can read that'll get me started on this, right now i feel like i'm between a rock and a hard place. any help will be greatly appreciated.
    thanks,
    Paul

    Hello,
    Even I have developed an Indesign server plugin, but I also face the problem in its invokation. I have read " indesign-server-plugin-techniques.pdf". It talks about how to make your plugin so as to make it compatible with indesign server, but doesn't talks about how does the server plugin gets invoked??
    Kindly help.

  • When I try to connect LDAP server with Directory certificate installed in Onboard Administrator , I get the below error message. Initiating Directory Settings diagnostic for LDAP server 10.0.0.2 port 636

    10.0.0.2Accepting Directory Server certificate for /CN=qtp-ldap.oaqtp.com signed by /DC=com/DC=oaqtp/CN=qtp-ldap
    Skipping certificate 1 (/CN=qtp-ldap.oaqtp.com): subject issuer mismatch 
    Certificate of Directory Server cannot be verified with the installed LDAP certificate. 
    Unable to establish SSL connection with directory server. 
    You may need to install a certificate for your server to allow SSL connections. 
    It says "Subject Issuer mismatch" .. What could be the reason ?
    -Shibi Keyan

    Well, it sounds like the certificate name is different than what you are trying to connect to. Can you try connecting to the DNS name instead? This sounds like a DNS and Certificate Name issue.
    http://social.technet.microsoft.com/wiki/contents/articles/2980.ldap-over-ssl-ldaps-certificate.aspx
    Kurt Hudson, Sr. Technical Writer AD DS, AD CS, PKI, Azure AD

  • Ps exporting for indesign server+js

    i can able to export the ps file from indesign cs2, but i cant do it in indesign server,
    syntex i used there:
    myDoc.print(app.printPresets[1],true)
    while executing this line i got message as
    the configuration was invalid or the user cancelled. plesae try the same operation in the user interface to see detailed information.
    thanks in advance
    subha

    On Nov 27, 2008, at 2:08 AM, Olav Kvern wrote:
    Hi Ole!
    This reminds me. I think your scripting documentation and sample scripts are too difficult. :-)
    Likewise, I can't tell whether you're suggesting a workaround here or not. I've just got, you know, something hanging out with the right side at 38.768, and I want it at exactly 37.1, and I don't want to move the left side, and I can't drag the handle where I want it even if I want to, because it only goes to 36.934 or 37.226 argh, and I still don't have a way to simply put it at 37.1(00).
    Failing that, maybe one of you wonderful guys will tell me how to correct this:
    set
    find what
    of
    find text preferences
    to
    set
    change to
    of
    change text preferences
    to
    thin space
    thin space
    change text
    document
    1
    O
    It says it was expecting a string or nothing and I hate to disappoint it, but I found that "thin space" in the dictionary and had the audacity to think I could use it. Which I suppose I can, somewhere, only apparently not here.
    Thanks,
    Roy
    Hi Roy, Dave,
    Actually, that's the difference between the resize and reframe methods in scripting, which mirror the difference between the scale x/scale y and width/height fields in the Control panel. But I agree that the Proxy version was better.:-)

  • "Perfect" Hardward for InDesign Server CS 5.5 and CS6.

    So I have INDS CS 5.5 running off a 4 GB, 2 CPU system (2.20 GHz). When a job hits (via SOAP) it pegs the CPU to about 50% for a while until the job times out or finishes (or sometimes doesn't). Do I need a larger server to make this perform better?

    I am having the same issue. I am pssing thru SOAP call through
         sampleclient.java -host localhost:12345 "c:\myJSXScript.jsx" myXml="myXmlLocation"
    JSX:
    function main() {
        try {
            var myInDesignXml;
            app.consoleout("isDefined:=" +app.scriptArgs.isDefined("myXml"));
            if (app.scriptArgs.isDefined("myXml")) {
              myInDesignXml = app.scriptArgs.getValue("myXml")
            app.consoleout("myXml:=" + myXml);
        } catch (e) {
            app.consoleout('General Exception');
        return result;
    main();
    Output:
    isDefined:=false
    I should get the text that we have assigned to myXml param.
    Please Help on this.
    Regards,
    JK

  • Configuring web.xml for Weblogic Server 5.1

    Hi,
    I am working on Weblogic Server (WLS) 5.1 SP 12. I have a web application running on it. At present, it does not have a web.xml file. I want to use Front Controller pattern, and therefore I need to have a web.xml file (to specify the URL Pattern for Front Controller) inside WEB-INF directory on server. I have placed the web.xml file inside WEB-INF directory of application, and have marked the URL pattern. However, the application is not taking into consideration that thing, i.e. mu front controller is not getting into picture, its entry is being ignored. How to make sure that it is not by-passed?
    My application is not in a .war format. WLS 5.1 SP12 is running on Sun Solaris.
    Is there a way to make sure that the intended thing happens?
    Plz help.
    Regards,
    Raj

    Yes, I restarted the app server after making changes to web.xml file. No effects.

  • Creating a TOC via script on InDesign Server [CS5.5]

    I have been struggling for about two weeks with trying to figure out how to script the creation of a TOC and an index for a book.  I've successfully created the book, and have also been able to create the table of contents, however I cannot place the contents in the book.  From the UI it's simple because it loads up the cursor with the TOC contents.  But in script, it simply provides an array with a single Story object.
    I have no idea how to make the story appear in my document.  Here's my current code:
    var book = app.open("book.indb");
    var doc = app.open("table_of_contents.indd");
    var tocStyle = doc.tocStyles.firstItem();
    var stories = doc.createTOC(tocStyle, true, book, ["1in", "1in"], false, doc.layers.firstItem());
    When I hit that final line, I get the following error:
    Invalid value for parameter 'destinationLayer' of method 'createTOC'. Expected Layer, but received Layer.
    Okay... so, if it's expecting a Layer and I'm providing a Layer - what gives?
    Originally I had figured that I:
    Had to create a TOC document from a template which contains a single text frame that automatically flows from page-to-page (using a master)
    Add the document to the book at the beginning
    Copy the contents of the Story into the TextFrame
    Iterate the Lines collection of the Story, copying the paragraph and character styles for each line
    This works, but it's no longer a TOCStory type.  I would like to maintain the TOCStory type and just have the content flowed into the new document which I add.  This makes sense, logically, but I know that nothing in InDesign is really that logical.  It seems to be a lot of collection manipulations, but I cannot figure out which collections to manipulate.
    The Index.generate() method seems so much more logical because the first argument is where to place the content.  If it were only that simple for the TOC!  If you've had experience doing this, please let me in on the secret...  I don't have access to the menu items so I cannot invoke actions.  Those threads don't seem to apply for InDesign Server (and that makes sense, since it's headless)
    Thanks,
    - Brett

    Hi Brett,
    here is the code that worked for me.
    Michael
    var bk=app.books.add(File("C:/Users/wwadmin/Desktop/testbook.indb"));
    for(i=0; i<5; i++){
    var doc=app.documents.add()
    var page=doc.pages.firstItem()
    var frame=page.textFrames.add({geometricBounds:[0,0,'10in','10in']})
    frame.contents="Hello World!!!!!";
    var style=doc.paragraphStyles.add({name:"Body"});
    frame.paragraphs.firstItem().appliedParagraphStyle=style;
    doc.save(new File("C:/Users/wwadmin/Desktop/doc"+i+".indd"))
    bk.bookContents.add(File("C:/Users/wwadmin/Desktop/doc"+i+".indd"));
    var doc=app.documents.add();
    var page=doc.pages.firstItem();
    style=doc.paragraphStyles.add({name:"Body"})
    tocstyle=doc.tocStyles.add({name:"myStyle"});
    tocstyle.tocStyleEntries.add({formatStyle:style, name:style.name});
    doc.save(new File("C:/Users/wwadmin/Desktop/test.indd"))
    bk.bookContents.add(File("C:/Users/wwadmin/Desktop/test.indd"));
    doc.createTOC(tocstyle, true, bk, undefined, true, doc.layers.firstItem())
    bk.save()
    for(a=app.documents.length-1; a>(-1); a--){
    app.documents[a].save(File(app.documents[a].fullName));
    app.documents[a].close();
    bk.close()

  • Indesign server application

    I have a separate web application, which among other things works with Indesign files.
    I need to process indesign files:
    1)extract text; return extracted text to my application;
    2)replace some specific text content inside document; return output document to my webapplication;
    I need this entire processing to be automated. So I would like to pass file to some application (idnesign server script/plugin? running somehwere ), which would work with file and give me an output.
    Is it feasible? How would I go about such task? What bits of Adobe software would I need?
    It seems that I need Indesign Server CC, but I can't figure out theoretical workflow. From what I gathered, I can develop some script for indesign server, that will do the job. But how would script inside server might be triggered and notified about incoming file?
    Any suggestion/links/information is deeply appreciated.

    Doing some searching I came across this thread in the Adobe Reader forum which is the first place I've seen a concrete answer, so you might want to give it a try: http://forums.adobe.com/thread/392875?tstart=0

Maybe you are looking for

  • File with appropriate disk space, but with nothing on it!

    Hi! I have this friend whom accordingly recorded some her stuff. Everything was fine then somebody did something with it (and can't explain what exactly) and now it's still as big as before (like 700 Mo of disk space) but when you open it, well there

  • Bug: albums with similar names get mixed up in album shuffle mode

    I got 2 albums with the same name Splinter from Offspring, and Splinter from Sneaker Pimps. When i use 'album shuffle', there 2 albums get mixed up together: the iPod treats it as 1 album and play one track from Offspring and one from Sneaker Pimps a

  • OVM Linux service hangs the system reboot

    System: Oracle VM Manager Version: 3.1.1.305 Hello everybody, I have the script to start the node manager on system reboot on run level 2. After rebooting my VM I can't log on with putty anymore. So I opened the console with my RealVNC from OVM Manag

  • How to setup private network in oracle rac

    Hi all, Iam trying to setup oracle 2-NODE RAC , now i stuck in setup private network.. how to setup private network, what i have to do for that. please help us provide step by step process

  • Viewing online seminars from apple website

    I've tried several times to watch some of the online seminars from the apple web site and they are so choppy, keep stalling, and the video and audio keep getting out of sync so bad it's difficult to watch. I can watch tutorials from the same web site