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

InDesign Server Custom Dictionary Management

$
0
0

Hi,

 

I have an InDesign Server with 8 ports running in one Windows Server. Currently, I have assigned 4 InDesign ports for UK client, and 4 InDesign ports for US client.

 

How can I configure the ports in such way 4 ports to use UK Dictionary always, and US Dictionary for the rest of ports. Especially, I have customer defined dictionaries to use.

 

Please advise how to achieve this.


Indesign CC 2014 Server.

$
0
0

Hi,

Is InDesign CC 2014 Sever compatible with "Windows 2008 Server R2" ?

Script for Data merge InDesign CC server 2014

$
0
0

I am executing following script for data merge operation. Not generating any error, But neither it merge data from csv data source into new indd file.

 

var myFile = new File("E:/*.indd");

 

var myDocument = app.open(myFile);

Script for Data merge InDesign CC server 2014

with (myDocument.dataMergeOptions) {

linkImages = true;

removeBlankLines = false;

createNewDocument = true;

documentSize = 100;

} // (end of dataMergeOptions)

 

myDocument.dataMergeProperties.selectDataSource(new File ('E:\Employees.csv'));

myDocument.dataMergeProperties.mergeRecords();

 

myDocument.save(new File("E:/*indd"));

myDocument.close ();

 

 

I am working on InDesign CC Server 2014 with ExtendScript toolkit.

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

How to Use CS4 using C#

$
0
0

Hello guys am new to adobe forum. please help me. am in trouble!!!

i  have got one project regarding IN DESIGN. am .net developer, i have downloaded CS4 server free trail.

can any one please tell me how to use CS4 using c# ? urgent please.

ExtendScript Toolkit cannot launch InDesign CS6 Server

$
0
0

I have installed the trial version of InDesign Server CS6 on Windows 2008 and am trying to run scripts against it using the ExtendScript Toolkit, but it is not working. When I select "Adobe InDesign CS6 Server" from the drop-down list in the upper left, I get an alert box that says "Cannot launch target Adobe InDesign CS6 Server!". When expanding the details box it just repeats that same message.

 

I can start InDesign fine using either the command line or the windows service and it responds to requests. As far as I can see, it is just ExtendScript that is having problems with it.

 

I have combed through the event logs and can't find anything there indicating what the problem might be. I have also googled everything I can think of looking for a solution with no luck.

 

Has anyone else run into this? Any suggestions on a solution or at least where I might be able to track down a useful error message that says why it can't launch InDesign?

How to define script object for plug-in

$
0
0

hi all,

 

I'm new developer in InDesign Server.

I'm having a look at the SnipRunner & BasicPersistInterface.

In the file SnippetRunner.jsx:

 

// get the SDKCodeSnippetRunner object

var snippetRunner = app.sdkCodeSnippetRunnerObject;

 

In the file BasisPersitInterface.jsx:

app.basicpersistinterfacePreferences.bpiData = "default";

if (app.basicpersistinterfacePreferences.bpiData != "default") {}

 

really, I dont understand where & how to define the "sdkCodeSnippetRunnerObject" & "basicpersistinterfacePreferences" in the source code of plug-ins written in C/C++

so anyone can help me on this?

 

thanks

XML to News E-Edition PDF

$
0
0

How do i create e-edition pdf (looks similar to newspaper) on the fly. I have a java based web application that need to create pdf looks similar to newspaper from bunch of articles. How do automate this thing. Do i need to work with Desktop Indesign or What solution fit my need. Help needed urgently.


Why can't I download Indesign CC? It keeps saying I have a server error.

$
0
0

I just purchased the cloud...I have been trying to download Indesign CC and everytime it asks me to login, I do as such, and then it tells me that an Unknown Server has occured. This has been going on for quite some time...is there something wrong with my compatibility? Is there a direct link that can be provided to download Indesign? And I am not talking about the trial. Is my fire wall blocking it or what? Because I have purchased the cloud and I feel like I'll be wasting my money if I can't even download anything. If there is another way to download the programs, can I do that without accessing the website?

Indesign Server CS6 errors

$
0
0

Hi

We use indesign server cs6 highly for background processing, but we got often too much problems (bugs) and did not know where to find support, we are going crazy.

 

Problems:

1) We get this error when opening and exporting to jpg and xml some indesign files. THIS HAPPENS on EXPORT JPG of indesign. Code:

app.consoleout("INIT JPG");

theDocument.exportFile(ExportFormat.JPG, new File(jpg_out) );

app.consoleout("FINISH JPG");:

unknown encoding ##UTF-8: using iso88591 as fallbackcs61.jpg

 

2) When inserting text into some stylerange that contains newlines , randomly, not always, the style of the style range is loosed and do not know why. example of code:

text = text.replace(/{br}/g, "\r");

text = text.replace(/{br_special}/g, "\n");

style_range.contents = text;//LOOSE styleeess??!

 

Please can anyone help or give any suggestions?

Unable to run Multiple Sessions in InDesign Server

$
0
0

Hi,

 

I was trying to execute the following code simultaneously using two threads. But it executed only the first thread and it got stuck with the second thread while it was exceuting the line stub.beginSession(). Please comment on this.

 

try {

 

 

                              // Setup the parameters

                              RunScriptParameters runScriptParams = new RunScriptParameters();

                              runScriptParams.setScriptLanguage("javascript");

 

 

                              runScriptParams.setScriptText("alert('hello world')");

 

                              BasicClientConfig basicClientConfig = new BasicClientConfig();

                              SimpleChain httpChain = new SimpleChain();

                              httpChain.addHandler(new CommonsHTTPSender());

                              basicClientConfig.deployTransport("http", httpChain);

 

 

                              // Make a service

                              Service inDesignService = new ServiceLocator(basicClientConfig);

                              ServiceStub stub = (ServiceStub) inDesignService

                                                  .getService(new URL("http://127.0.0.1:8470"));

 

 

                              UnsignedInt sessionID = stub.beginSession();

                              System.out.println("begin session : " + sessionID.toString());

 

 

                              // Set sessionID into header so that server knows run scripts in

                              // a session context.

                              SOAPHeaderElement header = new SOAPHeaderElement(

                                                  "http://ns.adobe.com/InDesign/soap/", "sessionID");

                              header.addTextNode(sessionID.toString());

                              stub.setHeader(header);

 

 

                              IntHolder errorNumber = new IntHolder(0);

                              StringHolder errorString = new StringHolder();

                              DataHolder results = new DataHolder();

 

 

                              // Execute the script

 

 

                              stub.runScript(runScriptParams, errorNumber, errorString, results);

 

 

                              if (errorNumber.value == 0) {

                                        System.out.println("Script success");

                                        if (results.value.getData() == null)

                                                  System.out.println(": Script reported no errors");

                                        else

                                                  System.out.println(" ("

                                                                      + results.value.getData().getClass().getName()

                                                                      + "): " + results.value.getData());

                              } else {

                                        System.err.println("Error number: " + errorNumber.value);

                                        if (!errorString.value.equals(null))

                                                  System.err.println(errorString.value);

                              }

 

 

                              try {

                                        stub.endSession(sessionID);

                              } catch (NullPointerException e) {

                              }

 

 

                              System.out.println("end session : " + sessionID.toString());

 

 

                    } catch (IllegalArgumentException e) {

                    } catch (IOException e) {

                              System.err.println(e.getMessage());

                    } catch (Exception e) {

                              System.err.println(e.getMessage());

                    }

 

Thanks And Best Regards,

Dinesh.

Single Instance to Multi Instance licensing

$
0
0

Is it possible to upgrade from single instance license to multi instance license? If yes, what is the cost involved?

Indesign CS6 Server Licensing

$
0
0

Hi,


What are the differences between the Limited Single Instance and the Limited Single Instance Development?


I can see the following link however would like to know the following questions as well.

http://www.adobe.com/products/indesignserver/buying-guide.displayTab3.html


What are the restrictions for the Limited Single Instance Development edition that would impact the development and testing activity?


Thanks.

Troubles importing formatting from xlsx

$
0
0

Hi, everyone!

Having troubles importing xlsx with formatting in InDesign Server. Whole file imported as unformatted table.

Sample code using for setting preferences:

var excelPref = application.ExcelImportPreferences;

excelPref.PreserveGraphics = true;

excelPref.TableFormatting = idTableFormattingOptions.idExcelFormattedTable;

excelPref.UseTypographersQuotes = true;

Then I just use frame.Place() for importing file.

Saving file as xls resolves the issue, but it's not an option for my project.

Another thing is that desktop InDesign imports formatting just fine.

 

I've looked through documentation and haven't found anything except ExcelImportPreferences. Maybe there's some poperty that I missed or there's another way for importing files?

 

Appriciate any help!

InDesign Server CC2014 Trial issue

$
0
0

Hi,

 

I cannot start our InDesign Server CC 2014 (Windows Server 2008). I have installed the software and was logged with our Adobe ID and installation was successful without any error message. The installation manual states that “InDesign CC Server needs to be activated before it can be used. If the computer is online, activation is done automatically when you install.” However, I got an error message when I tried to launch InDesign Server: “Adobe InDesign Server is not properly licensed and will now quit”.

 

Since  I had previously installed InDesign Server CS6 on another machine, I tried to use the APTEE to start the trial. I used the CS6 one because I did not find any version for CC 2014, I finally got the message:

StartTrial Successful

Return Code = 0

but when I tried to launch again InDesign Server, I always get the Adobe InDesign Server is not properly licensed and will now quit message.

I also read this thread but did not find the solution Indesign Server CC Trial issues

 

Thanks for help!


Export data from Indesign to Mysql

$
0
0

I have an indesign file. I can open the indesign file in adobe in design. This can export the full xml for the created indesign.

Now what i need is from Indesign i need to export contents directly to my sql database by giving field mapping for title description.

 

Do we have any plugin in indesign to map the tables and insert it directly from indesign.

Can we insert images in this format from the indesign file. Which format will the image be sorted image.

Physical image file will be copied and path can be modified or these images are copied as bits in database.

 

Do we have to have the same image location shared as indesign files and images will be on a different server and the website which is working on database will be on a different server.

Is creation of complex vector art possible with InDesign Server?

$
0
0

Hello,

 

Since Illustrator Server is, sadly, not available from Adobe, I wonder how far can InDesign Server be pushed in terms of vector art and typography? Specifically, I'd like to know if it's possible to programmatically create, say:

  • an arc or any other math based shape,
  • a repeatable pattern fill from a .ai file,
  • a custom/imported brush stroke applied to a path,
  • a clipping mask shape retrieved from dynamically created text,
  • any vector based effects, e.g. halftoning an image.

 

Are there any examples of graphically rich artwork created with ID Server?

 

Also, is it possible to test scripts aimed at InDesign Server with regular version of InDesign CC 2014?

 

Thank you!

does adobe charge maintenance on adobe indesign server subscription model?

$
0
0

does adobe charge maintenance on adobe indesign server's subscription model?

Getting unable to snap in error when trying to run indesign server as service

$
0
0

Hi,

 

I am trying to get the indesign server cs5 as a service to run at a particular port on 64bit windows vm platform. The documentation pointed towards trying to operate the .msc file in <installation_folder>/adobe/indesign x64/ folder.  However I am getting a snap-in error. I have tried installing it through mmc.exe, but fails with the same error. It is a trial version right now.

 

The error reads

"MMC could not create a snap in. The snap-in might not have been installed correctly.

Name: IndesignServerService

 

CLSI ID:{xxxxxxxxxxxxx}

"

 

I have uninstalled, reinstalled and restarted many times.

Any info will be helpful. I am wondering if all the dlls have been registered correctly.

 

Thanks

Ravi

InDesign Server CS5.5 installation issue

$
0
0

I am developing solution using InDesign Servers via COM which is hosted on Windows Server 2008 R2. And I am experiencing problem utilizing CS 5.5 server:

 

When InDesign Server CS5.5 is installed on Windows Server 2008  (64bit) its COM component is registered with following parameters: CLSID = {96D10A00-63E3-423e-A223-DFC4BEA21206}, ProgId =  InDesignServer.Application.CS5.

 

The problem is that those are the same parameters that are used for InDesign Server CS5 COM component. And therefore I can't have CS5 and CS5.5 installed on the same server, which is required for solution I am deleloping.

 

Has anyone experienced that problem or maybe know some workaround for it?

 

Meanwhile, When InDesign Server CS5.5 is installed on Windows 7 (32bit) its COM component is registered with unique parameters: CLSID ={34701EBC-5975-411C-8A45-E78E0934AADD}  and ProgId = InDesignServer.Application.CS5.5

Viewing all 20709 articles
Browse latest View live


Latest Images

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