Connecting Via COM with Indesign CC Server

Hi
We are currently using Adobe CS5 Server - and connecting to it VIA COM.
We are looking to upgrade to Indesign CC Server - but we want to know if we can still connect to it via COM ?
Best Regards
Martin

Yes, Adobe InDesign CC Server still supports the COM interface, and it is hard to imagine they would change this. If you download and install the trial, you can test it for yourself... looking at page 24 of the "Intro to InDesign CC Server" document that comes with the install, they have all the same language and no indication of any changes related to the COM interface.
Max Dunn
Silicon Publishing

Similar Messages

  • Dreamweaver cs4 come with a web server or web app server ?

    dreamweaver cs4 come with a web server or web app server ? Or
    can be configured [has menues for] web server local ? When running
    a server localhost
    http://localhost/... , this can be
    run/view a file[in local server] without an internet connection ?
    yes without / no needed ?

    123polis123 wrote:
    > dreamweaver cs4 come with a web server or web app server
    ? Or can be configured
    > [has menues for] web server local ? When running a
    server localhost
    >
    http://localhost/... , this can be
    run/view a file[in local server] without an
    > internet connection ? yes without / no needed ?
    Dreamweaver does not ship with a web server, you have to
    install one, or activate one on your system (IIS or Apache for
    Widows and Apache for Mac are the common choices). When you define
    a site within Dreamweaver you can specify a testing server, as well
    as a remote server. If the testing server and/or remote server are
    available to your system without an internet connection, then you
    can certainly test pages through the web server such as through
    http://localhost/
    If you are creating HTML pages, then there is no need for a
    server at all for creating and testing your pages, but if you are
    working with PHP or ColdFusion, then you will need a web server to
    work with.
    If you have follow up questions, you should ask in the
    Dreamweaver General forum (general Dreamweaver usage questions), or
    the Application Development forum (questions about dynamically
    generated pages), depending on what you're looking to do:
    DW General:
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=12&catid=189&entercat= y
    App Dev:
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=12&catid=263&entercat= y
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • How can i use my iPhone 4 and connect via bluetooth with my macpro

    how can i use my iPhone 4 and connect via bluetooth with my macpro

    The only way that you can connect your iPhone to the mac is to use it for a "Wi-fi hotspot" meaning that you can use the celluar connectivity of your phone to connect your computer to the interent.
    Do you mean a MacBook Pro of the desktop MacPro?

  • Does Mountain Lion come with an Apache server and if so how do I access it?

    Does Mountain Lion come with an Apache server and if so how do I access it?
    On my previous Mac there was a check box for web sharing in the Sharing System Preferences. I used this to experiment with HTML website design. How do I do this on my new Mac?

    Thanks for the reply. Others have asked similar questions. I was directed to a user tip page 
    by etresoftThat gives step by step instructions which should solve my problem.

  • My iphone 5s is connected via bluetooth with mercedes benz e class. I can make the calls and receive the calls but music of my phone can't be play via car music system so pleaase help.

    My iphone 5 s is connected via bluetooth system with my car mercedes benz e class. I can make calls & receive calls but my phone music can't be play via car music system. The car muisc system can't find external devise if it is connected with i phone 5 s via bluetooth or via cable.

    Hello parthivfromahmedabad,
    Thanks for using Apple Support Communities.
    To troubleshoot issues with car stereo bluetooth connections please follow the steps in the article below.
    iOS: Troubleshooting car stereo connections
    http://support.apple.com/kb/TS3581
    Take care,
    Alex H.

  • How to connect via bluetooth with wireless printer

    how to connect my macbook pro via bluetooth with epson all in one wireless TX600FW

    Bluetooth between iOS devices and computers is only for Internet tethering, nothing else.
    See: http://support.apple.com/kb/ht3647

  • Connection in jsp with a sas server?

    Hi i have a problem with connecting a jsp-application to a sas server.
    I have the following code used to make a connection.
    [begin code]
    [import the packages]
    <%@page errorPage="ErrorPageKBO.jsp" %>
    <%@page import="com.sas.rmi.Connection"%>
    <%@page import="com.sas.rmi.Rocf"%>
    <%@ page import="java.io.*,
    java.util.*,
    java.net.*,
                   javax.servlet.*,
                   java.sql.*,
                   java.util.Date,
    com.sas.collection.StringCollection,
    com.sas.servlet.beans.*,
    com.sas.servlet.beans.html.*,
    com.sas.servlet.util.*" %>
    [code used for connection]
    String Lang="";
    if (session.getAttribute("lang").equals("nl"))
         Lang="Dutch";
    if (session.getAttribute("lang").equals("fr"))
         Lang="French";
         Connection connection = new Connection();
         connection.setHost("Localhost");
         connection.setFunnel(true);
         connection.setFunnelHost("Localhost");
         connection.setProfileName("local1");
         connection.setUseProfile(true);
         Rocf rocf = new Rocf();
         // Begin code om de connectie en rocf objecten in de sessie te zetten.
         com.sas.servlet.util.BoundRocf br = new com.sas.servlet.util.BoundRocf(rocf);
         com.sas.servlet.util.BoundConnection bc = new com.sas.servlet.util.BoundConnection(connection);
         session.setAttribute("cleanupConnection", connection);
         session.setAttribute("cleanupRocf", rocf);
         session.setAttribute("cleanupBc", bc);
         session.setAttribute("cleanupBr", br);
         // Einde code om de connectie en rocf objecten in de sessie te zetten.
         session.setAttribute("rocfAttr",rocf);//nieuw
         com.sas.sasserver.submit.SubmitInterface si = (com.sas.sasserver.submit.SubmitInterface)
              rocf.newInstance(com.sas.sasserver.submit.SubmitInterface.class, connection);
         com.sas.servlet.util.SocketListener socket = new com.sas.servlet.util.SocketListener();
         String pgmText;
         if (request.getParameter("V")!=null)
              pgmText=
              "data _null_;"                                                                                     + "\n" +
              "     call symput(\'ond_nr\',PUT((INPUT(\'" + request.getParameter("V") + "\',HEX.)-TODAY()),Z10.));"               + "\n" +
              "run;";                                                                                     
         else
              pgmText =
              "%let ond_nr="+request.getParameter("ON")+request.getParameter("ON1")+request.getParameter("ON2")+";";
         pgmText=pgmText +
              "%let UpdForm=" + session.getAttribute("updateProfile") + ";" + "\n" +
              "%let lang=" + Lang + ";"                                                                                 + "\n" +
              "libname initieel 'd:/rawdata/ftproot/KBO/initieelprivate';"                                                   + "\n" +
              "filename sock SOCKET '" + (java.net.InetAddress.getLocalHost()).getHostAddress() + ":" + socket.setup()           + "';\n" +
              "%include \"d:/ecodata/nl/servlet/kbo_ps/sasprograms/private_onderneming_&lang..sas\";"                                        + "\n" +
              "%include 'd:/ecodata/nl/servlet/kbo_ps/sasprograms/private_onderneming.sas';";
         socket.start();
         si.setProgramText(pgmText);
         //out.write("<pre>" + pgmText + "</pre>");
         //out.write("<pre>" + si.getLastLogText() + "</pre>");
         pgmText=" ";
         socket.write(out);
         socket.close();
         rocf.stop();
         session.removeAttribute("rocfAttr");
    [end code]
    Now they say that to connect from a common server, where the jsp application is stored and executed, with the sas server named "sng3pubsearch". You just have to change "Localhost" into the name of the sas server!
    But i did that and could'nt connect with the sas server.
    I searched on the Internet and found out that you have to give as well the package name and the host.
    But i don't know just how to code that?
    Can anyone help me in this ?
    Thanks a lot!
    grts
    Wimvg

    Start by moving all this code out of the JSP and into a Servlet or something else. JSP's are for presentation and what you're doing is bad practice.
    That said, you should use code tags when you post code. You should post the error if you're getting one (preferably a stack trace as well). And honestly, you haven't posted enough info for me to help. Maybe someone else has more info.
    Try connecting with a standalone class first. Don't do this in a JSP unless you like headaches.

  • How to create JDBC connection in J2ME with MS-SQL server?

    I need to have database connection in PDA with SQL server,as i am new to J2ME ,i dont know how to create jdbc connection on J2ME device.Please help me out with this problem........

    I need to have database connection in PDA with SQL server,as i am new to J2ME ,i dont know how to create jdbc connection on J2ME device.Please help me out with this problem........

  • IPhone 5S 8.0.2 doesn't connect via BT with MacBook Pro Retina

    Hi,
    I'm trying to connect my iPhone with my MBP Retina because I want to try Hand-off and Continuity. I connect them via BT, they exchange the code but after 2-3 sec both the devices lose the connection. It seems like they are unable to recognize each other.
    Moreover, on my iPhone there is a list with old devices they I had connected. I want to delete one of them because I'm not using it anymore, but when I tap on the , the option "disconnect this device" is grey and not blue as usual.
    Any suggestion?
    Thanks

    I solved both problems.
    1) in order to use Handoff, you don't need to connect directly the devices. Just open the BT and connect them on the same Wifi
    2) after the update to iOS 8.1 every useless things are gone.

  • Regarding jms implementation that comes with reference j2ee server from sun

    I have a message bean that is trying to read message off the queue, do something, and put a message on to other queue.
    The problem: I am loosing a message.
    I have tried both the container managed as well as bean managed transaction.
    Is there any bug with the reference JMS server? I am using the SimpleQueueSender that comes with the jms tutorial from sun to send message in a persisted mode. I am running the J2EE server that comes from SUN.
    I will post the code if someone is willing to take a sincere look.
    Thanks
    Aman

    I can tell you one thing about JMS, I have websphere MQ Series, Even the product like MQ from IBM have limitation when using 2 phase commit(), it supports 2 PC only when websphere and MQ Series are installed on the same box, So i would not be surprised if there is a bug in reference JMS implementation and you are losing messages even though in transaction. Are you using distributed transaction.

  • My htc desire 612 won't connect via bluetooth with my buick encore

    I'm having trouble connect the HTC with bluetooth to both my car and my garmin vivosmart.  Any ideas?

    It will not connect because transfering data to other phones via bluetooth is not supported on the iPhone.

  • TS1368 Just changed modems, can connect via wifi with my phone to surf net, but can no longer connect to apple ap store?

    Just changed modems, can connect via wifi to surf the net, but can't connect via wifi to update aps in iTunes store

    OK thanks, I thought that maybe some of the iphone 3s were not able to connect to Wifi,

  • When online via WiFi, Firefox repetedly attempts to connect via dialup, with error dialog box returning every 15 sec. or so.

    At home, I use dial-up. When I'm visiting, or at certain stores, I use a Wi-Fi connection. When I'm on Wi-Fi, Firefox does not fully recognise it. It will, eventually, use the Wi-Fi connection, load pages, etc. But it keeps trying to dial in, even while connected via Wi-Fi! Closing the dialog boxes only works for a few seconds, then it tries again, and again, and again, and again... Arrgh!
    N.B. Could this be Weatherfox connecting to update weather info using its own connection, rather than piggybacking on whatever Firefox is doing?

    You can try to swap the order of the connections and place the Wi-Fi connection at the top to see how that works.
    *Network Connections > Advanced > Advanced Settings > Adapters and Bindings

  • Can't connect via Screen Share or Web Server, but can ping and ssh

    Bit of an odd problem here.
    My Mountain Lion Mac Pro (called "Trogdor" for convenience) is connected to my work university network. I can ping it from anywhere-- elsewhere on the network, from home behind a firewall. Can connect over ssh from everywhere. I can also connect to other computers (on the same network or at home behind a firewall) from Trogdor via ssh, Screen Sharing, etc.
    But I can't Screen Share into Trogdor, and I can't connect to Trogdor's built-in web server, either system-wide (in /Library/WebServer) or for my username (~/Sites). (I can connect to the web server from Trogdor.)
    Note that I can do both of these for other computers on the same network (same subnet, etc), so it's not a network issue. I can't do these from anywhere: same network or from home. I have this problem whether I use Trogdor's hostname or its IP address. (I can look up its hostname using the IP address with the "host" tool in Terminal, and vice versa.)
    So it sounds like a port issue, right? Except I don't think I've ever messed with my port settings directly. How do I diagnose the problem? Should I scan my ports? Can I return port settings to default?
    Thanks!
    Message was edited by: supercres

    Bit of an odd problem here.
    My Mountain Lion Mac Pro (called "Trogdor" for convenience) is connected to my work university network. I can ping it from anywhere-- elsewhere on the network, from home behind a firewall. Can connect over ssh from everywhere. I can also connect to other computers (on the same network or at home behind a firewall) from Trogdor via ssh, Screen Sharing, etc.
    But I can't Screen Share into Trogdor, and I can't connect to Trogdor's built-in web server, either system-wide (in /Library/WebServer) or for my username (~/Sites). (I can connect to the web server from Trogdor.)
    Note that I can do both of these for other computers on the same network (same subnet, etc), so it's not a network issue. I can't do these from anywhere: same network or from home. I have this problem whether I use Trogdor's hostname or its IP address. (I can look up its hostname using the IP address with the "host" tool in Terminal, and vice versa.)
    So it sounds like a port issue, right? Except I don't think I've ever messed with my port settings directly. How do I diagnose the problem? Should I scan my ports? Can I return port settings to default?
    Thanks!
    Message was edited by: supercres

  • Getting error in connecting ios simulator with SMP3.0 server

    Hi,
    We have configure ODATA service on SMP3.0 server  document provided by SAP of "How to configure Application using Security Profile". We are using the SAP Netweaver Gateway DemoSystem for calling the ODATA services-HTTPS (got access of it using http://scn.sap.com/docs/DOC-31221).We also use Server Certificate to get successfully ping to backend steps performed to import the OData Service URL certificate into smp_keystore.(by using  Getting Started with Kapsel - Part 1).
    Now we are trying to build Native app on ios platform using pdf provided in IOS Development study material with the exercise material provided by SAP to call the app deployed on SMP3.0 server.But we are getting an
    Error:- Could not connect to server(screenshot attached) client side
    Error:-.
    2014 02 27 23:42:07#0-800#WARN#com.sybase.security.http.HttpAuthenticationLoginModule##anonymous#http-bio-8080-exec-4###Anonymous authentication is not supported. |
    2014 02 27 23:42:09#0-800#WARN#com.sybase.security.http.HttpAuthenticationLoginModule##anonymous#http-bio-8080-exec-4###Server responded with the status code "401"|
    Can anyone please help me out in resolving this issue.
    Thanks,
    Anjali Agrawal

    Hi Brenton,
    As I have performed the steps for server certificate exchange with SAP Netweaver Gateway DemoSystem which provides me with Sample OData Service (HTTPS) it does not include any need to use"Allow Anonymous Connection" option even without using that I am able to successfully ping the backend server as shown below..
    Know my requirement is to make Native app and get  my ios device/simulator to connected to SMP server 3.0.
    So I am referring the link Getting Started with Kapsel - Part 8 -- AuthProxy which specifies a need to generate client certificate(which will help in authentication betn the client and server when using HTTPS).
    Here also have successfully exchange the client and server certificate but when theirs need to generate the .csr I am getting the following error:-
    Error:-keytool error: java.lang.Exception: Alias <sapserverca> has no key
    Have stuck here badly and not able to find out solution I think their might be some step missing in this document or some thing which we are not doing correctly.
    Can u please help me
              -With some material which involves steps to generate the CSR
              -Some link which will help in configuring OData Service(HTTPS) in SMP3.0
    Any of your guidance regarding this will be helpful to us.Will be waiting for your reply.
    Thanks,
    Anjali Agrawal

Maybe you are looking for

  • My ipad has just faded out and i need it for highschool what do i do

    my ipad has just faded out and i need it for highschool . ITS JUST WENT BLANK WHAT DO I DO

  • Problems with Digital Signatures

    I have a pdf with multiple signature fields. When somebody signs it in  9.x everything is fine, but when somebody signs it in a version earlier  than 9.0 it does not work. The signature fields do not even show up.  Somebody signed the pdf in 8.x and

  • Activity Change in PS

    Hi All, I am using BAPI BAPI_PROJECT_MAINTAIN to change my WBS element.It is working fine.I want to change duration field for the activity of the WBS elements. I am using Activity & Activity update tables of the BAPI but it is not updating the fields

  • Ipad 2 in the classroom

    I am a 4th grade teacher and we are writing a grant through our district for Ipads and smart technology.  I hooked up my ipad2 to my projector that projects to a promethean board.  I am hoping that someone out there knows of a way to used the prometh

  • ClassCastException in executable JAR not inside IDE

    I have a problem running my application outside Eclipse. It gives ClassCastException at the place where the application inside IDE does not. In particular, I output to the terminal the name of the instance I'm trying to cast and inside IDE it gives t