Quantcast
Channel: Adobe Community : Popular Discussions - InDesign Server Developers
Viewing all 20709 articles
Browse latest View live

Clover is not responding to any command

$
0
0

Hi

 

I'm running "Adobe InDesign Server CC 2014 trial" on Windows Server 2012 R2 (All 64 bit)

As I started Clover after running indesign server, I sent command via RESTful; but clover seems inactive to receive commands.

 

(I checked many times IOR and IDSQUEUE properties file, seems no mistakes.)

 

I can successfully run the same in my pc. Please find the attached screenshot of "Clover".

Could anyone help me to understand the issue / suggest a troubleshooting method.

 

InDesignServer-CloverIssue.png

Thank you

Ays.Hakkim


InDesign Server crashing on hyperlinks - HYPERLINKS.RPLN

$
0
0

When trying to access properties of a hyperlink it causes InDesign to crash. I can assign properties of the hyperlink but if I try and retrieve properties it hangs and crashes resulting in the error below. I'm using InDesign Server 64bit version 7.0.4.553. What's interesting is this works completely fine when testing using InDesign CS5 client version.

 

I have used Extend script toolkit to try and debug the issue but you can't even use the databrowser to look at the hyperlink properties as it'll crash there as well. But if I debug using toolkit with client version of InDesign it works fine. It really seems like an issue with InDesign Server and I'm not sure what I can do to work around/fix this problem.

 

Example script -

 

var myDoc = app.open([document path]);

for (i = 0; i < myDoc.hyperlinks.length; i++)

{

     var myHyperlink = myDoc.hyperlinks[i];  

     var newDestination = myHyperlink.destination; // - this causes indesign to crash

     //Do some processing...

}

 

 

Faulting application name: InDesignServer.exe, version: 7.0.4.553, time stamp: 0x4d891c6d

Faulting module name: HYPERLINKS.RPLN, version: 7.0.4.553, time stamp: 0x4d891ef9

Exception code: 0xc0000005

Fault offset: 0x000000000006e33b

Faulting process id: 0x1dfc

Faulting application start time: 0x01ccd52e23e3216c

Faulting application path: C:\Program Files\Adobe\Adobe InDesign CS5 Server x64\InDesignServer.exe

Faulting module path: C:\Program Files\Adobe\Adobe InDesign CS5 Server x64\Required\HYPERLINKS.RPLN

 

Any help would be great! I can post more information if needed.

InDesignServerService not running on specified port

$
0
0

Hello,

 

 

 

I'm having an issue where I've downloaded the trial version of InDesign CC Server 2014 for use with Sitecore's PXM module. According to their instructions, if I were to modify the .msc file located at C:\Program Files\Adobe\Adobe InDesign CC Server 2014 by setting the port setting to a specific value, it should then listen on that port provided I restart the service. The InDesignServerService is running according to the task manager, but when I check via netstat, I don't see it at all.

 

Is anyone familiar with issue and if so, what might I be missing? Any help is appreciated.

 

 

 

Thank you,

 

Anthony

InDesign Server Load Balancing Queue (LBQ)

$
0
0


We are trying to use Adobe InDesign Server Load Balancing Queue (LBQ) on a Windows Server.  The LBQ starts and funcitons, but it stops for unknown reason and we need to restart it.  Is there something we need to do to make sure it continues to run and not shut down?

InDesign Server 10 CC 2014

$
0
0

Hi there,

 

we are using InDesign CS4 upt o CC 2014 and have some automation going with InDesign Server.

Our latest InDesign Server is 9. This workflow can't handle CC 2014- Documents.

 

Is there any Release-Date for InDesign Server CC 2014?

 

Many thanks,

Florian

ScriptArgs attached to an EnqueueJob command in LBQ

$
0
0

Hello,

I'm currently using a soapClient in php to launch indesign server commands on instances with specific ports.

******

$myHost = $host . ':' . $port;

 

$myWSDL ="$myHost/Service?wsdl";

 

$client = new SoapClient($myWSDL, array('trace' => true, 'encoding' => 'utf-8', 'location' => $myHost));

 

$scriptArgs = array( array("name" => "xmlStr", "value" => $xml));

 

$script_parameters = array("scriptFile" => "C:\Program Files\Adobe\Adobe InDesign CC Server x64\Scripts\script.jsxbin", "scriptArgs" => $scriptArgs, "scriptLanguage" => 'javascript');

 

$script_data = array("runScriptParameters" => $script_parameters);

 

$result = $client -> RunScript($script_data);


******

$xml is a xml string and I pass this argument to my script.


I now want to use the load balancing approach and I successfully launched 4 instances.

How can I pass my scriptArgs (or xml) as parameter to the LBQ http://XX.XX.XX.XX:8080/com.adobe.clover.application/api/idsqueue/EnqueueJob ?


In the documentation, I read that:

"The EnqueueJob command does not provide a mechanism for including script arguments. A workaround for this is to either write the values into the script or generate a script with the parameters written into it that calls the intended script using the app.doScript command. This approach is demonstrated in the AIR client included in the InDesign CS5 Server SDK."


But I have no idea  how to do that with my structure.


Do you have any suggestions or solutions?


Thanks!


Fabien



Custom LBQ?

$
0
0

Has anyone here built a custom LBQ vs the one that's included with InDesign Server? I'm installing CS9 on some new servers and LBQ is being quite difficult in running properly. I have no issues with the default LBQ running on CS6 but with CS9? hmm, not so good. So anyways, didn't know if anyone has written a custom LBQ or is everyone using the default one supplied by Adobe?

[IDSW]: Exiting InDesign Server

$
0
0
Hello Forum,

I'm a newbie in the InDesign Server world, and my question may be a very silly one.

I run ID Server from Windows console. If I exit it with Ctrl-C, my strartup/shutdown services get called. If I just close the console window, the shutdown service is not called. Has anybody come across the problem? Is there a "moral" and portable way to solve it?

I noticed that when I just close the console window, InDesign temporary files are not deleted from the temporary directory. Maybe this is just a bug in InDesign Server, or InDesign server is not supposed to quit normally in this case at all...

Thank you,
Pavel.

InDesign Server Installation and Configuration Guide

$
0
0
Hi everybody
I try to ask one silly Q.
Where can I get this document.
I found many references but no link :(

Problems saving CS5 documents with InDesign Server CS5.5

$
0
0

I've come across a problem which appears to be related to saving converted CS5 documents as CS5.5 using InDesign Server.

 

In my C++ server code I have a method to open documents. Here's part of it...

 

============

// Open the document.

IDFile DocumentFile(DocumentPath);

UIDRef TemporaryRef(UIDRef::gNull);

 

if (Utils<IDocumentCommands>()->Open( &TemporaryRef, DocumentFile ) == kSuccess)

{

    InterfacePtr<IDocument> ptrDocument( TemporaryRef, UseDefaultIID() );

 

    if (ptrDocument != nil)

    {

        m_ReferenceID = TemporaryRef;

        HaveSucceeded = true;

         }

}

============

 

In my server console, InDesign reports the following...

 

09/01/11 13:33:17 INFO  [javascript] Executing File: C:\Program Files\My Service\DoAction.jsx
09/01/11 13:33:31 WARN  [server] The document "Test.indd" was converted

 

At this point, I can do pretty much what I want with the document with no problems. That is apart from save it. My code to save the document is as follows...

 

============

// Save the document.

if ((m_ReferenceID != UIDRef::gNull) && m_ReferenceID.ExistsInDB())

{

    if (Utils<IDocumentCommands>()->Save( m_ReferenceID, kMinimalUI ) == kSuccess)

    {

        HaveSucceeded = true;

    }

}

============

 

No change occurs to the document on the file system. In my Visual Studio 2008 Output window, I see the following...

 

First-chance exception at 0x01e62c5e in InDesignServer.exe: 0xC0000005: Access violation reading location 0x00000004.

Windows has triggered a breakpoint in InDesignServer.exe.

This may be due to a corruption of the heap, which indicates a bug in InDesignServer.exe or any of the DLLs it has loaded.

 

My code hasn't given me any problems until now. I can save CS5 documents on IDS CS5, CS5.5 documents on IDS CS5.5. I can also save the same test document in the desktop version of CS5.5 with no problems. I can only assume that something more needs to be done before the document can be saved back in CS5.5 format.

 

Has anyone seen anything similar? Any ideas are most appreciated.

 

Cheers,

Andrew

InDesign Server CC2014 windows installer?

$
0
0

Where can I find InDesign Server CC2014 windows installer?

How do you upload/download Indesign Documents to the server through client interface?

$
0
0

Hi,

 

   I am new to Adobe Indesign Server and just got the trial version and am starting to play around with it. I need the Adobe Indesign server to generate preview from .indd packaged files. Currently I am uploading the .indd files directly on the Indesign server to generate previews. Any idea on how to upload/download files from Indesign Server using their client interface. I am currently using their sampleclient and eventually plan to use the SOAP api for building a client. Any help appreciated.

 

Thanks,

CC

How to get CORBA LBQ started as a Windows service for InDesign Server CS6?

$
0
0

So we have a production InDesign Server (CS6) running 4 instances. The instances are set to start as Windows services and no issues there at all. The problem is my Clover commands that handles the LBQ to manage those instances. Right now I have a .bat file that I run manually and it opens a command prompt and runs it there.

 

The problem is that if the server gets logged off or reboots then that Clover part dies and my LBQ dies with it.

 

How can I go about setting this up as a Windows service so that it runs automatically?

Indesign Server CS6 on OSX slowed down

$
0
0

I have CS6 installation on Mac Pro 4,1 quad core with 16GB of ram with OSX 10.9.

Only four instances are working now, and there are no other processes except one CS4 on this machine.

 

After few months server have problem with speed, sometimes server is working very slow. Changing content in one text frame, changing style takes more than one minute. Content is short, few characters and documents have less than 100 text frames.

This same operation normally takes few ms.

 

CS4 instance on this machine works fine.

 

Regards

 

Piotr

updating internal links crashes IDS

$
0
0

Hi,

 

The relevant flow is that a indd document is passed to the Indesign Server where I have to try and update outdated links before exporting to PDF.

 

This in Windows (7, server, doesn't matter)

 

For each link in the document, I am trying to do this (javascript)

 

if (link.status == LinkStatus.linkOutOfDate) {

    try{

      link.update();

     

    }

    catch(error){

      app.consoleout("Error trying to update links ...");

      app.consoleout(error);

    }

}

 

 

The indesign client is able to update the links fine.

Problem is if the links are internal, meaning link.linkType is "type Internal Linked Story" or "type Internal Linked Object", the script above crashes the indesign server instance with the following.

 

 

Faulting application name: InDesignServer.exe, version: 9.0.0.245, time stamp: 0x51acf1d4

Faulting module name: GENERIC PAGE ITEM.RPLN, version: 9.0.0.245, time stamp: 0x51acf472

Exception code: 0xc0000005

Fault offset: 0x000000000010b65a

Faulting process id: 0x1b48

Faulting application start time: 0x01cfd83481a0cfef

Faulting application path: c:\Program Files\Adobe\Adobe InDesign CC Server x64\InDesignServer.exe

Faulting module path: c:\Program Files\Adobe\Adobe InDesign CC Server x64\Required\GENERIC PAGE ITEM.RPLN

Report Id: ccc9d9af-4427-11e4-8324-b1ee80b6158b

 

Am I doing something wrong with the link.update? It works fine for external links.

 

thanks

Cristian


InDesign Server SOAP API - Status check

$
0
0

Hi,

 

I am running 5 InDesign ports and sending jobs using "Sample Client" SOAP method. For some unknown reason, some ports got crash or not responding. How can I check whether particular port is running without "crash or not-response"? So that, I can notify this by automatically, and send the job to another port.

Clarification on InDesign Activation (trial)

$
0
0

so right now on my windows server which is 2008 r2 I have the following installed

Captur00e.PNG

I am trying to get InDesign CC Server 2014 trial activated and here is what I have done so far

Captur00e.PNG

So I got the error that it is not properly licensed so next I ran the command from the Adobe Manager Directory : adobe_prtk --tool=StartTrial --leid=V7{}InDesignServer-10-Win-GM

Captur00e.PNG

 

Captur00e.PNG

 

Now I got a successful StartTrial indicator, so I will go back and try again

 

Captur00e.PNG

I am confused at this point? I got the right return code for successful, but yet its not licensed properly?

Just wondering if anyone has any suggestions regarding this? or maybe I am missing something and doing something incorrectly somewhere?

Execute javascript on InDesign CC server 2014 with CORBA plugin.

$
0
0

I have installed InDesign CC server 2014 & wants to communicate with InDesign server via scripting.

I checked that we can pass script path with SOAP connection, but here I have to connect with CORBA to get support for LBQ component.

 

I am new to InDesign server scripting. So,comment/ask if you need any more info.

InDesign Server Running Samples trouble

$
0
0

Hi all,

 

I am having troubles to run the sdk samples properly. I downloaded the trial version and "licenced" with a prerelase serial that I have been given as a member of the prerelase program. My intention is not to build any commercial system, I just wish I can have InDesign Server at hand so I can master my skills onto it.

 

So now I am trying to run the sample code as indicated in the sdk :

 

//Running the server with terminal

InDesignServer -port 12345

 

//Exceuting sampleclient

/Applications/Adobe\ InDesign\ CS6\ Server/InDesignServer.command sampleclient -host localhost:12345 /Applications/Adobe\ InDesign\ CS6\ Server/myScript.jsx

 

I am getting an licence error message (rawly translated from French to English): "Your version only allows one single use. Please contact your reseller for an update"

I am guessing the prerelease licence has limited the use of the server.

 

So my question is : how could one get his hands on a unlocked NFR licence for testing purposes ? I mean it could stamp a big red mark, only output jpgs, I really don't care. What I care is getting the idea and mechanisms of driving IDS with PHP/SOAP. As a consultant, I may have to promote and sell InDesign Server to my clients but it would help if could set demos and have a whole understanding of technologies and costs implied.  Is that somehow possible ? I hope so because I work with Enfocus and Callas and they all provide NFR keys to resellers and promoters. It's just making sense to me.

 

Hope I am not misunderstood in my intentions,

 

TIA for your inputs,

 

Loïc

pb running "Catalog Producer"

$
0
0

I'm trying to set up the Demo of "Catalog Producer" in AEM 6.1 which use Indesign CC Server 2014

 

I have a running instance of AEM 6.1

I have a running instance of InDesign CC Server 2014

 

When I create a new catalog page in AEM I get some feedback from IDS but the page generation failed.

 

06/10/15 12:54:32 INFO  [javascript] Ex├®cution du script

06/10/15 12:54:32 INFO  [script] Started IDSPrint Script - Export generation....

06/10/15 12:54:32 INFO  [script] Fetching resource from CQ: /content/dam/catalogs/templates/Geometrixx Shoes.indd

06/10/15 12:55:13 ERREUR        [serveur] JavaScript Erreur !

 

Num├®ro de l'erreur : 54

Chaîne de l'erreur : Uncaught JavaScript exception: open

 

Moteur : main

Ligne : 565

Source :     cleanup(exportFolder);

 

Does it make sens form anybody ?

How/what can I check to find where is the issue ?

 

Many thanks

Viewing all 20709 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>