Copy link to clipboard
Copied
previously we are using Indesign Server 2019 and for multiple instances(signal system) using CORBA
and we pass the parameter to server to executing
request http://localhost:8080/com.adobe.clover.application/api/idsqueue/EnqueueJob?jobName=xyz230078&queueNa...
)
we pass default localhost:8080 and the server automatically balances the queue in 2019,
Now we are moving to the 2023 version, and the 2023 version CORBA process remove by Adobe
and I checked the SOAP process I do not find to execute multiple instances in localhost:8080, do we need to add a specific port?
How to executive multiple instances in 2023. Using SOAP in a single system or any other parameter pass for multiple instances, could someone provide us examples so that we can check?
Thanks
Subhendu Das
Copy link to clipboard
Copied
Load Balancing Feature is removed from Adobe InDesign Server.
You need to implement your own load balancing or rely on third party services.
You can start InDesign Server by passing command line argument "-port port_no".
- Rahul Rastogi
Adobe InDesign C++ Developer
Copy link to clipboard
Copied
thanks and lots
I created multiple instants port and run through cmd
sampleclient -host localhost:12347 C:\JobProcess\Temp\TF-RGET230015\includeFSserverMainScript.jsx myArg="C:\JobProcess\Temp\TF-RGET230015\includeFSserverMainScript.jsx"
sampleclient -host localhost:12346 C:\JobProcess\Temp\TF-RGET230015\includeFSserverMainScript.jsx myArg="C:\JobProcess\Temp\TF-RGET230015\includeFSserverMainScript.jsx"
and server response as per the script
is it possible to pass the default port and takes the visual port by the Indesign server
or is there any sample URL so that I pass the URL to the Indesign server
Thanks
Subhendu Das