How do I reconnect a distributed form/response file created in 9 to XI so I can get my responses?

I've created quite a few forms in Adobe Pro 9 and have recently been upgraded to Adobe Pro XI.  When I opened my response files I get a message that the response file is no longer connected to the server.  How do I reconnect it so I can pick up the data that has been entered and is waiting for me to download?  BTW, when XI was downloaded, it wrote over the Pro 9 program.  Please tell me there is a way to do this so I don't lose what has already been entered and have to redo it all.

This is the Adobe Reader forum; you are more likely to get a useful response if you ask in the Acrobat forum.

Similar Messages

  • HT3345 How do I open a password protected excel file created on a PC?  I get a message that the "file is encrypted and can't be opened"

    How do I open a password protected excel file created on a PC in numbers 09, on a MacBook Air?  I get a message that the "file is encrypted and can't be opened"

    This is actually not true; I support users who are doing this w/ Excel 2011 (v14.2.2+) for Mac and Windows users w/ Excel 2003 & 2007.  Win users are from finance dept, and who have pasword-protected various budget files.  The Mac users are (surprise) "creative" users, who enter pw to unlock and edit these budget files.
    These files are shared from a Mac server (running 10.6.8 server), and I do have an erratic problem where all users have read-only access to these pw-protected Excel files.  The manual work-around has been to copy the troublesome file(s) and confirm users have full access again.  I also do a shuffling of filenames, so that the new, working file has original file name.
    FYI: the Mac server POSIX and ACL permissions are correct, and don't appear to be source of the problem.
    It's easy an SMB file-locking issue or concurrent users trying to edit these files.  I keep reminding them that Excel is not a database!

  • How to send a file from a java program to a servlet and get a response

    Hi,
    How can I call a servlet from a standalone java program and send a file to a servlet using POST method and in return gets the status back from the servlet. Any help is appreciated any small sample will help.
    Thanks.

    Hi,
    I am trying the following sample I got from net and am getting the following error. Any help what I am doing wrongs:
    06/12/24 02:15:58 org.apache.commons.fileupload.FileUploadBase$InvalidContentTypeException: the request doesn't contain a multipart/form-data or multipart/mixed stream, content type header is null
    06/12/24 02:15:58      at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:294)
    06/12/24 02:15:58      at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:268)
    06/12/24 02:15:58      at mypackage9.Servlet1.doPost(Servlet1.java:38)
    06/12/24 02:15:58      at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    06/12/24 02:15:58      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    06/12/24 02:15:58      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    06/12/24 02:15:58      at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    06/12/24 02:15:58      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
    06/12/24 02:15:58      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    06/12/24 02:15:58      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    06/12/24 02:15:58      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)
    06/12/24 02:15:58      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)
    06/12/24 02:15:58      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    06/12/24 02:15:58      at java.lang.Thread.run(Thread.java:534)Here is the sample client code:
    import org.apache.commons.httpclient.HttpClient;
    import org.apache.commons.httpclient.methods.PostMethod;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    public class PostAFile {
        private static String url =
             "http://192.168.0.17:8988/Vulcan_Materials-ServletPost2-context-root/servlet/Servlet1";
        public static void main(String[] args) throws IOException {
            HttpClient client = new HttpClient();
            PostMethod postMethod = new PostMethod(url);
            client.setConnectionTimeout(8000);
            File f = new File("C:\\load.txt");
            System.out.println("File Length = " + f.length());
            postMethod.setRequestBody(new FileInputStream(f));
            int statusCode1 = client.executeMethod(postMethod);
            System.out.println("statusLine>>>" + postMethod.getStatusLine());
            postMethod.releaseConnection();
    }Here is the sample servlet code:
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.PrintWriter;
    import java.io.IOException;
    import org.apache.commons.fileupload.DiskFileUpload;
    import org.apache.commons.fileupload.FileItem;
    import java.util.List;
    import java.util.Iterator;
    import java.io.File;
    public class Servlet1 extends HttpServlet
      private static final String CONTENT_TYPE = "text/html; charset=windows-1252";
      public void init(ServletConfig config) throws ServletException
        super.init(config);
      public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
        try
          response.setContentType(CONTENT_TYPE);
          PrintWriter out = response.getWriter();
          java.util.Enumeration e= request.getHeaderNames();
            while (e.hasMoreElements()) {
              String headerName=(String)e.nextElement();
              System.out.println(headerName +" = "+request.getHeader(headerName));
           //System.out.println("Content Type ="+request.getContentType());
            DiskFileUpload fu = new DiskFileUpload();
            // If file size exceeds, a FileUploadException will be thrown
            fu.setSizeMax(1000000);
            List fileItems = fu.parseRequest(request);
            Iterator itr = fileItems.iterator();
    System.out.println("***************************");
            while(itr.hasNext()) {
              FileItem fi = (FileItem)itr.next();
              //Check if not form field so as to only handle the file inputs
              //else condition handles the submit button input
              if(!fi.isFormField())
                System.out.println("\nNAME: "+fi.getName());
                System.out.println("SIZE: "+fi.getSize());
                //System.out.println(fi.getOutputStream().toString());
                File fNew= new File("C:\\", fi.getName());
                System.out.println(fNew.getAbsolutePath());
                fi.write(fNew);
              else
                System.out.println("Field ="+fi.getFieldName());
            out.println("SUCCESS123456: ");
          out.close();
        catch(Exception e)
          e.printStackTrace();
    }Any help on what is wrong.
    Thanks

  • How to read data in binary form from file?

    Hi,
    i try to write an implementation of LZW. I need to read data in binary form from a file. How can i do that? I cannot find something like "binary input stream" ...
    Thanks

    Hi,
    i try to write an implementation of LZW. I need to
    read data in binary form from a file. How can i do
    that? I cannot find something like "binary input
    stream" ...
    ThanksInputStream reads bytes. I don't understand your question.

  • How to Compare Two Oracle 10g Form(FMB) file.

    Hi,
    One developer had done some changes in one file called N004 version 2. I have done some changes in N004 version 3. If I like to see difference between two Oracle Form Version(FMB) then How can we see them..?
    Thanks,
    Div

    I'd convert it to xml before, as you can't be sure that two fmb's which are exact the same could look different in a text editor; first form got compiled with forms compiler and the second not => should not differ in functional way but I'm pretty sure that the files itself look diffrerent.
    regards

  • How do I reconnect my iTunes with the files?

    So my wife, after not using iTunes for awhile, opened iTunes to find absolutely nothing at all. No lists of any artists or songs at all; it was like we just bought a new Macbook and opened iTunes on it. All her media files are on an external drive (mine are there, too, and we have not had this problem in my profile on this computer, btw), not in the original iTunes library folder, and we've never had problems before with this...I used the advanced preference tab to change the folder where all the media was stored for both of us to save local hard drive space.
    Well, after googling profusely, I followed the advice found here: http://support.apple.com/kb/TS1967
    Well, that seemed to work, as all of her content has been restored into iTunes, but every single song has the iCloud icon next to it as a download symbol. Even when I have the folder on the external drive set as the folder to find the media files, iTunes still will not go looking there, it expects me to download off the Cloud, which I don't think even contains all the thousands of songs she has.
    So, after doing what I did to restore the lists of content in iTunes, how the heck do I get iTunes to find all her files where they are?

    And I just discovered another problem. The method I used to restore things to iTunes only restored that which is on the iCloud. Which is a tiny fraction of the content she actually has. So I'm back to square one with this, I guess, as the vast majority of her content is still not listed in iTunes. Frustrating.

  • Tried to download itunes audio book.  Partially loaded.  Upon checking itunes app can get no response to any commands.  How to fix?

    Tried to download audio book from itunes.  Already paid for with gift certificate.  Partially downloaded. Says "waitin" has for last 18 hours.  Cannot get into itunes app....nothing happens or changes.  How to fix problem? 

    Hello Russlsmith
    Close out of iTunes and then open it back up and try to resume the interrupted download of your audiobook. If you are still unable to download it, then report the issue to the iTunes store about your purchase.
    iTunes: How to resume interrupted iTunes Store downloads
    http://support.apple.com/kb/ht1725
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/HT1933
    Regards,
    -Norm G.

  • How to extract a single colum form XML files and load in a table

    Hi below I have a structure of xml files , I just need to extarct <RecordReference>PQPMID:7358</RecordReference>
    from file and load in to oracle ..
    Please let me know how to do ..??
    file content below
    HoldingsRecord>
         <RecordReference>PQPMID:7358</RecordReference>
         <NotificationType>00</NotificationType>
         <SerialVersion>
              <SerialVersionIdentifier>
                   <SerialVersionIDType>07</SerialVersionIDType>
                   <IDValue>1068624X</IDValue>
              </SerialVersionIdentifier>
              <SerialVersionIdentifier>
                   <SerialVersionIDType>01</SerialVersionIDType>
                   <IDTypeName>PMID</IDTypeName>
                   <IDValue>7358</IDValue>
              </SerialVersionIdentifier>
              <Title>
                   <TitleType>02</TitleType>
                   <TitleText>Pittsburgh Post - Gazette</TitleText>
              </Title>
              <Publisher>
                   <PublishingRole>01</PublishingRole>
                   <PublisherName>Post Gazette Publishing Company</PublisherName>
              </Publisher>
              <OnlinePackage>
                   <OnlineServiceName>ProQuest</OnlineServiceName>
                   <Website>
                        <WebsiteRole>03</WebsiteRole>
                        <WebsiteLink>http://proquest.umi.com/pqdweb</WebsiteLink>
                   </Website>
                   <HoldingsDetail>
                        <JournalIssue>
                             <JournalIssueRole>04</JournalIssueRole>
                             <JournalIssueDate>
                                  <DateFormat>00</DateFormat>
                                  <Date>19930118</Date>
                             </JournalIssueDate>
                        </JournalIssue>
                        <JournalIssue>
                             <JournalIssueRole>06</JournalIssueRole>
                             <JournalIssueDate>
                                  <DateFormat>00</DateFormat>
                                  <Date>20080915</Date>
                             </JournalIssueDate>
                        </JournalIssue>
                        <EpubFormat>10</EpubFormat>
                   </HoldingsDetail>
              </OnlinePackage>
         </SerialVersion>
    </HoldingsRecord>

    DECLARE
      l_clob    CLOB;
      l_bfile   BFILE;
      l_parser  dbms_xmlparser.Parser;
      l_doc     dbms_xmldom.DOMDocument;
      l_nl      dbms_xmldom.DOMNodeList;
      l_n       dbms_xmldom.DOMNode;
      l_temp    VARCHAR2(1000);
    src_csid       NUMBER := NLS_CHARSET_ID('UTF8'); 
    dest_offset    INTEGER := 1;
    src_offset     INTEGER := 1;
    lang_context   INTEGER := dbms_lob.default_lang_ctx;
    warning        INTEGER;
      TYPE tab_type IS TABLE OF gt_pq_pmid%ROWTYPE;
      t_tab  tab_type := tab_type();
    BEGIN
      l_bfile := BFileName('XML_DIR', 'SOH_sample.xml');
      dbms_lob.createtemporary(l_clob, cache=>FALSE);
      dbms_lob.open(l_bfile, dbms_lob.lob_readonly);
      dbms_lob.loadclobfromFile(  l_clob,
                              l_bfile,
                             dbms_lob.getLength(l_bfile),
                            dest_offset,
                            src_offset,
                            src_csid,
                            lang_context,
                            warning);
      dbms_lob.close(l_bfile);
      dbms_session.set_nls('NLS_DATE_FORMAT','''DD-MON-YYYY''');
          l_parser := dbms_xmlparser.newParser;
      dbms_xmlparser.parseClob(l_parser, l_clob);
      l_doc := dbms_xmlparser.getDocument(l_parser);
      dbms_lob.freetemporary(l_clob);
      dbms_xmlparser.freeParser(l_parser);
      -- Get a list of all the row  nodes in the document using the XPATH syntax.
      l_nl := dbms_xslprocessor.selectNodes(dbms_xmldom.makeNode(l_doc),'HoldingsRecord/');
      FOR cur_stage_xml IN 0 .. dbms_xmldom.getLength(l_nl) - 1 LOOP
        l_n := dbms_xmldom.item(l_nl, cur_stage_xml);
        t_tab.extend;
         dbms_xslprocessor.valueOf(l_n,'RecordReference/text()',t_tab(t_tab.last).pq_pmid);
      END LOOP;
      FOR cur_stage_xml IN t_tab.first .. t_tab.last LOOP
        INSERT INTO
          gt_pq_pmid (
           pq_pmid   )
        VALUES
        (t_tab(cur_stage_xml).pq_pmid);
      END LOOP;
      COMMIT;
      dbms_xmldom.freeDocument(l_doc);
    EXCEPTION
      WHEN OTHERS THEN
        dbms_lob.freetemporary(l_clob);
        dbms_xmlparser.freeParser(l_parser);
        dbms_xmldom.freeDocument(l_doc);
    raise ;
    END;---------- and i am getting below error
    ERROR at line 1:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00210: expected '<' instead of 'H'
    Error at line 1
    ORA-06512: at line 65

  • How to excute scripts for distributing SAPLOGON.ini file

    Hi Experts,
    Could you please tell the steps if I have to distirbute new SAPLOGON.ini file to all clients as existing one is having issue of empty entry for item1 for server details.
    I have got script code from the below mentioned link:
    Installation Server package event scripting for services file
    But I dont know how these scripts are to be executed?
    Thanks
    Depesh

    hello
    please read the installation server help.chm file carefully!
    There you find the information which you looking for.
    You need an Frontend Installation server and then you can use the exampleas in the
    installation serverhelp.chm file to deploy thesaplogon.ini with our nwsaspetup scripting
    included in the frontend installation server.
    In the Installationserverhelp.chm you find the chapter
    Administering an Installation Server ->
    Maintaining Installation Packages ->
    Configuring Packages and Scripting Events ->
    Package Event Scripting Samples ->
    Example 1: Copying a customized u201CSapLogon.iniu201D and u201Cservicesu201D-file  -->
    Also please red the Frontend Installation Guide.
    All Information which you need you can find in this 2 documentations!
    Best Regards, Sven

  • How to wrap a cell in a xls file created from SQLplus

    Hi,
    I have the following sql script in Unix which creates a xls file for me -
    set pagesize 9999 lines 130                                                    
    set echo off                                                                   
    set termout off                                                                
    set markup HTML on                                                             
    set enpmap off                                                                 
    spool $test/userxyz/testfile.xls;                                   
    -- BEGIN:  Data exctraction from REFINTEG                             
    ttitle ' REPORT FOR DATABASE x1111y0'                                          
    select ' ' || error_message as ERROR, ' ' || error_type as TYPE, '&nbs
    p;' || data_selection as DATA_SELECTION, ' ' || description as DESCRIPTION,
    ' ' || npp as NPP, ' ' || item as item                    
    from   refinteg;                                                       
    spool off;          
    set markup HTML off;
    EXIT;               
    /                    The xls file I am getting needs to have the DESCRIPTION column as wrapped. i.e the contents will sizing the cell.
    Could you provide any leads as to how to include this formatting in my sql script.
    Thanks.

    I am trying to give a snapshot of how my csv is looking like currently and how I want it to be -
    Error      Type      Data_Selection    Description                      NPP      Item
    AAA         new       nsdancsjjsjqs      abc=123 xy=12 pq=34      john       12345678
    BBB         old         dsiuhfdcndhjd      mno=345 cd=56 ij=89      kate       23456667
    How I want it to look like (pls. note the Description column) -
    Error      Type      Data_Selection    Description                      NPP      Item
    AAA          new       nsdancsjjsjqs      abc=123                          john      12345678
                                                        xy=12
                                                        pq=34
    BBB         old        dsiuhfdcndhjd      mno=345                         kate       23456667
                                                     cd=56
                                                     ij=89
    i.e each of the new values in the description column of my spreadsheet would occupy a newline inside the same cell.I do not know how this can be achieved in the SQLplus. Do we need to add any formatting parameters in the sql file.
    Thanks.

  • How to make a category required for all files created within a folder

    I've defined a category. It has attributes which have been flagged as required.
    When I view the properies of a particular workspace (library), the category is shown as available to the workspace. However, the category is not shown as required. And the "required" checkbox is not clickable.
    So .. how, from the OCS DHTML applet, do I make a particular category a required category for all files in a folder?

    Perhaps the Category Attribute is not marked as "configurable" when it was created. You can check this by "switching into Admin Mode" and drilling down the Categories using "Manage Categories" link. Check if the category attribute is marked as configurable or not.
    Ravikiran

  • How to display russian from a an html file created in textedit?

    I have created an html page in textedit which contains some russian text, how can i get safari to display this text properly?? In my textedit i used plain text but for some reason it comes out all starange in safari....

    Safari is using the wrong encoding.  Normally you would go to View > Text Encoding in your browser and try the different ones for Cyrillic until the display is correct.
    When you make an html page, you are always supposed include code which tells the browser what encoding to use.  Have you done that?  I would recommend that when you save in TextEdit you use UTF-8 and also put that in the html code.
    http://www.w3schools.com/tags/att_meta_charset.asp

  • HT201303 How do I clear out the old card  to enter a new card so that I can get free apps

    How can I get my free apps if it's telling me to enter
    Enter a card I no longer have what do I need to
    Do?

    Entries in the location bar drop down list with a yellow (blue on Mac) star at the right end are bookmarks.<br />
    You can remove such a bookmarked item that shows in the list if you open that url in a tab and click the yellow star in the location bar.<br />
    This will open the "Edit This Bookmark" dialog and you can click the Remove button to remove the bookmark if you want to remove such a bookmarked entry.<br />
    See also:
    * https://support.mozilla.com/kb/Clearing+Location+bar+history
    * https://support.mozilla.com/kb/Cannot+clear+Location+bar+history

  • I keep losing the line at the top of the page which includes "file,edit veiw,bookmarks,history,help etc" I can get it back by pressing lt+F8 but it goes again when i press another key.how can I restore this permanently

    I have lsot the line in the toolbar spaces which include "file,edie,veiw,bookmarks,history,help"etc.Ican get it back by pressing Alt+F8 but it goes when I press any other key.How can I restore this permanently

    Thanks for the information, is this a windows 7 problem?

  • How to open in Ipad a PDF Master file created with MS WORD?

    In word you can create a master document containing other documents that are conected to the master document trough Hyperlinks, after create it, you can compile (Export) to PDF and sent it to anyone. I found a way to transfer the compiled PDF to IOS, but the hyperlinks doesn't work. I would like to know if somebody has any way to export this MASTER-PDF to IOS with all it's functionallity, thanks for your help in advance. :-)

    Are you trying to see the preview of a PDF attachment in your mail app on your Windows computer?
    Do you have the desktop version of Adobe Reader installed on your Windows computer?  You need to launch Adobe Reader and accept the End-User License Agreement first.

Maybe you are looking for