How do you connect to a remote Livecycle server using Workbench?

I'm trying to use Workbench ES to connect to an instance of Livecycle Server that is on another machine. If I try to connect to it, it succeeds but upon opening a pdf or xdp (basically anything that opens Designer) it gives me an error, "No path to XDP file input".
I'm not sure if its a bug because, if I just change the Server Name in the "Connect To.." dialog to anything other than "localhost" while leaving the actual address the same, it will give me the exact same error. I can still edit processes but I'm unable to do anything that uses Designer.
Any help with this issue is greatly appriciated

I'm not sure, I think it was installed separate. I fixed the issue by reinstalling them seperately and applying the updates to workbench/designer. Everything works like it should now

Similar Messages

  • Unable to connect to the remote ftp server using dreamweaver.

    For the last one week I have been trying to connect to the remote ftp server using dreamweaver. I spoke to the technical support agency who manage our remote server but they are saying that there is no problem with the server adn they dont know anythign about dreamweaver so cant assist me.
    I was suggested to check with adobe team directly and i spoke to a technical support person on the live chat but they said since the version is CS4 - education version, they cant assist me at all!! This is just ridiculous...I am constantly being sent from one place to the other without anything getting resolved!!
    Please help somebody!!

    I am having a similar problem... maybe.  I was connected to my remote site all day yesterday, then out of the blue I tried to "put" an edited file... as I had been doing all day, and I received an FTP error:  Cannot make connection to host. Your login or password is incorrect.  That's odd, I've been connecting all day.  So I went into my sites > manage sites and clicked the Test button on my remote server information and it returned Adboe Dreamweaver CS connected to your webserver successfully.  I went back to my file and tried once more to "put" it on the remote server... again FTP Error: cannot make connect to host...  So I reboot my computer and start Dreamweaver CS3 again.  I reenter my remoter server information and click the Test button.  "... connect to your webserver successfully".  I try to put any file, FTP error again.  So I call my server administrator, he checks the servers logs and says there are no errors and you've connected successfully several times today.  I went through the trouble shooting steps listed here, though my FTP Logs are empty.  I cannot stay connected or even see the remote folders to try to drag and drop.  I tried to run ftp from a windows command prompt and it seems to connect me.
    I downloaded an installed an SFTP client and was able to successfully connect to my remote server and upload the files.  It's definately a Dreamweaver problem.  Any suggestions?

  • How do you connect ipad 2 to itunes library using home sharing

    How do you connect the ipad 2 to the itunes library using home sharing so you can listen on your ipad 2? I've seen directions for the ipad which tell you how to setup home sharing then open ipod and touch library in the left column, but when I hit library, nothing happens. I'm assuming the ipad 2 has something different about it. Any help would be greatly appreciated.
    Thanks.
    PS, the OS is 4.3.3 (just got it but it's not on the os list)

    See iTunes 9- Understanding Home Sharing and iTunes- Troubleshooting Home Sharing.  Also, open iTunes, select iTunes Help from the Help menu and search for "home shar."

  • Oracle raise ORA-03113 when connect to a remote oracle server using toad

    Hi there,
    when i use the tool toad connect to a remote oracle server which located in a different city,
    when i submit a query in toad,
    if the query returns many rows of data, it will raise the error ORA-03113:end-of-file on communication channel,
    however if the query returns only a few rows, i won't raise such error,
    however, when i use sqlplus connect to that remote server, it won't raise such error,
    what's the reason is, can any one tell me how to tackle this problem if using the tool toad. thanks/

    hi my oracle vsersion is:
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE 11.2.0.1.0 Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    my oracle server is 2 nodes rac server,
    and i've tried two different kind version of toad v9.6 and v10.5, and both have the same problem
    once i query a table, if the result returned more than 30 rows, then it will raise that error, if query returns less than 30 rows, it's ok.
    i assume it is a problem concern with network, but i don't know why no such error raise when using sqlplus ?

  • Cannot connect to a remote JMX server using OC4J 10.1.3

    Hi,
    Running the following code in an EJB deployed in OC4J 10.1.3
    jmxurl = new JMXServiceURL ("service:jmx:rmi:///jndi/rmi://localhost:1060/jmxconnector");
    connector = JMXConnectorFactory.connect(jmxurl);
    gives the following exception:
    java.net.MalformedURLException: Unsupported proto : rmi
    at javax.management.remote.JMXConnectorFactory.newJMXConnector JMXConnectorFactor
    y.java:318)
    at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:246)
    at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:206
    Thanks for help.

    Even using the
    command:
    java - classpath C:\Program Files\Microsoft SQL
    Server 2005 JDBC Driver\sqljdbc_1.1\enu\sqljdbc.jar
    program_name does not work.
    As specified that wouldn't work even if everthing else did. The path has spaces so the value has to be quoted.
    >
    Any help would be greatly appreciated. Thank you for
    at least reading this thread!Connecting has nothing to do with the class path.
    Either it is finding the class or it isn't. You can't even attempt to connect until it finds the class.
    If it is finding the class then everything you posted here is pointless.

  • Problems connecting to a remote OPC server in write mode using CWDataSocket control

    Hi.
    I have been struggling with an odd feature when trying to connect to a remote OPC server using CWDataSocket control, though I'm not sure if it's a CWDataSocket related problem. But anyway, the following error occurs: "Active: Can't write data." Error number: "-2147467259". Now, when I connect to a local OPC server
    and write some data and then again connect to the remote server, no errors occure and reading and writing work fine. The same error occurs when I try the same in LabVIEW. What could be the problem?
    No errors occure when I connect to the server with some other OPC client application.
    Thanks in advance.
    - Asko -

    The ConnectTo operation (as are all DataSocket operations) is asynchronous. In order for it to complete, you must process Windows messages after calling it and before calling another operation. Is it possible that you are trying to write data before the connection operation is complete?
    One easy way to test this would be to put the ConnectTo and the Write in separate control callbacks, cause ConnectTo to be called, wait a while, then cause the Write to be called. Alternatively, you could do something like the following:
    dsWrite.ConnectTo txtUrl.Text, cwdsWrite
    While Not ((dsWrite.Status = cwdsConnectionActive) Or (dsWrite.Status = cwdsConnectionIdle))
    DoEvents
    Wend
    If this is the problem, then you'll probably want to go with the
    second option. In a production system, you should include a timeout in the While loop so that if the connection actually cannot be made, you are not stuck in an infinite loop.

  • HT1555 how do you connect an iphone to be a remote for Apple TV without the apple remote?

    how do you connect an iphone to be a remote for Apple TV without the apple remote?

    you can use the remote app.
    http://www.apple.com/apps/remote/

  • How do you connect edge inspect with chrome !?

    how do you connect edge inspect to chrome

    If you install the Chrome extension then Edge Inspect will syncronize with whichever page is in the current tab.
    =Ryan
    [email protected]

  • How do you connect your macbook pro to a sony bravia tv with a belkin cord????? HELP!!!!!!!!!!!!!!!

    How do you connect you macbook pro to a Sony Bravia tv with a Belkin cord!?!?!?!?!?!?!? We know how to set it up, but what setting do you put your tv on!?!?!? we have tried everything, but it wont work!!!!!!!!! HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    Well, I have connected my mbpr directly to a Sony Bravia using an hdmi cable, then set the tv to use the corresponding input port, and it works just fine. Have also connected via airplay -> appletv -> tv (with the last connection via an hdmi cable), which also works fine.

  • How do you connect two Apple ID's?

    How do you connect two Apple ID's to one another?

    Yes. You can sync multipl iDevices on the same computer using the same Apple ID. You can each have different configurations of apps, books, music, etc. or have identical configurations. In this way, however, your common data - contacts, mail, calendar will be the same on both iDevices.
    The Apple ID doesn't distinguish one phone from another, only how the phone will sync to a computer. The Apple ID is how iTunes knows to which computer a phone syncs. And, the Apple ID determines who is the registered owner of downloaded and purchased items via iTunes.

  • How do you connect your photoshop elements on your computer to your account online? and how do you create a customized url? how does the gallery work and how do you access it? i have trouble signing in on my program from my computer to connect to the onli

    how do you connect your photoshop elements on your computer to your account online? and how do you create a customized url? how does the gallery work and how do you access it? i have trouble signing in on my program from my computer to connect to the online photoshop, and I really want to create my own customized url and post photos to my gallery and share them with the world, family, and friends, but i need help because i can't figure how to do any of this, would really appreciate feedback and assistance, thanks, - claire conlon

    To add to sig's reply, "calibrating" does not calibrate Lithiu-Ion batteries, it calibrates the charge reporting circuitry.  If you look at the effect of deep discharging Lithium-Ion batteries in the data from the independent test group, Battery University, you will see that doing so shortens the life of the battery significantly. It looks like an optimum balance between use and life is at a discharge level of 50%.

  • How do you connect your iPad to a wireless computer?

    How do you connect your iPad to a wireless computer?

    Your question makes no sense. You "connect" an iOS device to iTunes on your computer via WiFi or by using the supplied cable.

  • Brand new Mac user help please! How do you connect a 17" monitor to the MacBook? I have the monitor plugged into the Mac, but the F8 that I am used to with PC does not work. Please help. Thanks.

    Brand new Mac user help please! How do you connect a 17" monitor to the MacBook? I have the monitor plugged into the Mac, but the F8 that I am used to with PC does not work. Please help. I am getting lots of spelling errors as the MacBook laptop screen is too small. Thank you so much! .

    Contentmom6 wrote:
    Brand new Mac user help please! How do you connect a 17" monitor to the MacBook? I have the monitor plugged into the Mac, but the F8 that I am used to with PC does not work.
    Normally, you just connect the monitor to the MacBook using a VGA adaptor that you can buy from an Apple Store.  Now try System Preferences > Displays > Detect Displays.  You should now be able to select a display mode for the monitor.  If it still doesn't work, then I'd check that everything is properly connected.  I've had problems with colours disappearing due to a faulty connection in the VGA adaptor.
    Bob

  • How can you connect your iPod touch to your Vista computer without using Apple Software

    How do you connect an iPod touch to your Vista computer without using any Apple products

    There is no other legit way to sync your iPod than using iTunes. There is 3rd party software to transfer content from the iPod to your computer, but not from the computer to your iPod.
    Disk mode is not supported.
    See also: http://www.apple.com/ipodtouch/specs.html

  • I have a lenovo S410 Touch laptop -with windows 8.1 -Itunes 11.1.1 ,i am trying to connect my iphone 4s but does not connect , it shows that it wants to connect , how can you connect this?

    I have a lenovo S410 Touch laptop -with windows 8.1 -Itunes 11.1.1 ,i am trying to connect my iphone 4s by USB cable but does not connect , it shows that it wants to connect , how can you connect this?

    http://support.apple.com/kb/ts1538

Maybe you are looking for

  • How do I share all information on my Calendar with others?

    When you share your calendar with others, what can they see?  Invitations only?  How do you allow them to see your calendar same as it is seen by owner?

  • The customer wants to know the timing ASFACT table creation

    Hi, experts, The customer wants to know when ASFACT table is created and when ASVFACT view update. I check the table property, it seems ASFACT_CLB_DISCUSS_0_2010_04 the creation date was 2010/05/01 18:58. ASFACT_CLB_DISCUSS_0_2010_07 the creation dat

  • Pro*Cobol and DBMS_OUTPUT.PUT_LINE

    I am new to Pro*Cobol and had a simple question (I hope). I have a stored proc that contains DBMS_OUTPUT.PUT_LINE stmts and I can see those in SQLPlus (when serveroutput=on), but I do not see them when I call it from Pro*Cobol. Is there a precompiler

  • Movie in wrong library on same computer

    I bought a movie from Itunes.  I didn't realize that I was on my daughter's log in.  The movie went into that library.  I want to move it to my main Itunes library on my sign in but I can't figure out how to do it.  It is all on the same computer.

  • Where is my iTunes U download?

    I just downloaded Upton Sinclair's "The Jungle" from http://www.openculture.com/freeaudiobooks in the "Free iTunes" format. But now I can't find it on my iPhone 4, either in iTunes or in iTunes U. How do I find it? Thanks.