Skip to main content
Known Participant
February 1, 2021
Answered

Problem with launching Indesign Server and link with Extendscript Toolkit

  • February 1, 2021
  • 3 replies
  • 3081 views

Hello,

I'have installer Indesign Server Trial Edition on my WIndows 10 Pro computer. No problem for that.

I launch IndesignServer in a windows command : 

C:\Program Files\Adobe\Adobe InDesign Server 2020\InDesignServer

Everything seems ok because I can see in the windows command the line "[serveur] Serveur en cours d'éxecution" (See Capture1.png attached).

I tryed to "connect" to my IndesigServer instance by selecting "Adobe Indesign Server" in the dropdown list in the Extendscript Toolkit in order to launch my first .jsx script but Extendscript Toolkit says me "Adobe Indesign server must be be in execution...Do you want to launch IndesignServer ?" (message translated from French ;).

So it seems that Extendscript Toolkit can't find my Indesign Server instance.

 

Please, regarding pictures attached, do you think that my Indesign server instance is well lauched ?

Do you think it's a problem with Extendscript Toolkit ?

 

Well, I google all the help I could find but unfortunaltly, I can not resolve this problem.

 

Anys help ?

 

Thks in advance for your time.

 

V.G

 

 

This topic has been closed for replies.
Correct answer Manan Joshi

Did you try what @Dirk Becker mentioned? It does also helps sometimes. I will postulate the steps that you can try for that.

  • Run IDS to process SOAP requests via a command like indesignserver -port 12345
  • Create a jsx file with a simple statement like $.writeln("Hello")
  • Execute this script using the sampleclient utility shipped with IDS installation. The command would be as follows.
sampleclient -host localhost:12345 yourScriptPath

If this works fine, it should launch ESTK and log the message Hello in its console, and henceforth you should be able to see the entry of IDS in the dropdown.

-Manan

3 replies

Manan JoshiCommunity ExpertCorrect answer
Community Expert
February 3, 2021

Did you try what @Dirk Becker mentioned? It does also helps sometimes. I will postulate the steps that you can try for that.

  • Run IDS to process SOAP requests via a command like indesignserver -port 12345
  • Create a jsx file with a simple statement like $.writeln("Hello")
  • Execute this script using the sampleclient utility shipped with IDS installation. The command would be as follows.
sampleclient -host localhost:12345 yourScriptPath

If this works fine, it should launch ESTK and log the message Hello in its console, and henceforth you should be able to see the entry of IDS in the dropdown.

-Manan

-Manan
Vincent42Author
Known Participant
February 3, 2021

Hello Manan,

A big big thank for your help, the process you described on final woks fine !

Thanks again !

Vins

Legend
February 2, 2021

The InDesign Server sometimes won't register itself at ESTK.

Try to send a SOAP request executing a $.writeln() which should end up at ESTK console.

You could also use a startup script, but be careful to remove that in production because that initial connection takes a while, annoying if you restart frequently.

 

Community Expert
February 2, 2021

Try launching IDS listening to a port I suppose the command would like follows

indesignserver -port 12345

Then you should be able to see this new entry in the dropdown of ESTK.

-Manan

-Manan
Vincent42Author
Known Participant
February 2, 2021

Hello Mana,

A big thank for your anwer. Unfortunatly, it does'nt solve my problem.
I retest with the following process :

1. Open Extendscript Toolkit windows

2. Launch IndesignServer with command : InDesignServer -port 12345

3. Seems that the IndesignServer but I can't see the entry in the dropdown of ESTK (see Capture.png)

 

I have tried almost everything... Do you think that desinstalling ands reinstalling IndesignServer could solve the problem ?

 

Thnks in advance for your help.

Vincent.

Community Expert
February 2, 2021

Once IDS has started using the command I gave then launch ESTK, i.e. close ESTK, launch IDS, and then open ESTK.

-Manan

-Manan