Pdf forms can always send the xml data (even if the pdf does not extend)?

Hello

My problem is the following. I have Acrobat Professional license, so I can create pdf forms.

I added a shipment through the mail button to my form and sent to the end user, who had only the acrobat reader software. He was able to complete the form and send its data via the e-mail button, and I got an xml with the data file.

Because I had not extended the document, I suppose it's always possible, so I can always receive the xml data in completed forms, I can't?

Then also extended the professional Acrobat document (Tools-> enable usage rights in Adobe Reader), because I need the final customer, be able to save the form. Now, I just sent this document extended by mail (do not use the tool Distribuite form in Acrobat), the user has clicked the button and again once I received my xml.

Now, I want to back my document to a maximum of 500 customers, I have no limitation?

I quote acrobat licenze agreement:

14.13.3 for any unique Document extended, you may only either (a) deploy this Document extended to an unlimited number of recipients unique but shall not extract information from more than five hundred 500 unique of this extensive Document instances or any representation of a paper copy of this Document extended with fields of form [...]

Since the function I described before (the xml data emailing) is granted even if the document is not extended, I think that this limitation does not apply to me. Am I wrong?

The limitation applies instead if I use the function 'Distribuite form' (forms-> Distribuite forms...) in acrobat professional. If I use this feature for distribuite the form, an email is automatically sent by acrobat (and not manually by me, as before) and pdf dataset is created. When the end customer cliks button, a pdf file (and not an xml) with the data are sent to me. If I double click on acrobat fills the dataset that was created with the data. It is the extraction of information to which the license relates?

This is my conclusion: a pdf form can still send data xml by the player, and if I Express with acrobat, the end-user can also record. The only restriction is to distribute the form using "Distribuite form", but if I use it not I have no limitation on the number of times where ever I can get xml data.

Can anyone confirm that my conclusion is just?

Thank you very much

Giuseppe Romeo

You can try the link "contact us".

Tags: Acrobat

Similar Questions

  • After HA failover, can I do the VM does not restart?

    After HA failover, can I do the VM does not restart on the target host?

    You can set the priority "VM Restart" to "Disabled" to exclude a VM restarted on another host.

    André

  • Microsoft Bluetooth Notebook 5000 - I can click but the cursor does not move

    Greetings,

    I have a Bluetooth Notebook 5000 mouse that has a weird problem. It is well connected to my computer bluetooth, and I have all the updated drivers. Since last week, when I move the mouse, the cursor does not move (on the screen), but when I click on (either on the middle left, right, even scroll to the top and bottom), it works.

    My guess is that the laser under the mouse thing is probably broken. I tried different surfaces to see if I got any kind of reaction, but none works.

    Now the other problem is that the PID (as well as other numbers) number under the mouse is partially illegible due to wear. I can't see the last part of the PID.

    Anyone got any ideas? And is there a way that it could be replaced under warranty, even with an incomplete PID?

    Best regards

    Philippe

    Hello Philippe,

    Thanks again for the update.

    It is possible that there is a hardware problem.

    I suggest you to contact Microsoft hardware support.
    Reference:
    How to replace Microsoft software or hardware, order service packs and replace product manuals
    http://support.Microsoft.com/kb/326246

    Thank you

  • Send the event does not

    I am trying to send my data class event when the data has been changed using the logic below. I've reproduced my problem below in a sample application based on one I found on a blog, I've created. I use a click on a button to call the dispatcher of events for the event class, but the main class of DispatchEventDemo does not seem to raise the event.

    When I put an instance of the DispatchEvenExample class in the FormWithButton class, it works but only within the same class (if uncomment the addEventListener method in FormWithButton).

    What I'm doing wrong? Is it because I'm dealing with the wrong instance of the DispatchEventExample? I think I need an observer model configuration...

    package
    {
    import flash.display.Sprite;
    import flash.events.Event;
    import flash.events.MouseEvent;
    import flash.text.TextField;
    import flash.text.TextFieldAutoSize;
    import flash.text.TextFieldType;

    SerializableAttribute public class DispatchEventDemo extends Sprite
    {
    private var _dispatchExampleispatchEventExample.
    private var saveBtnPright;
    private var myForm:FormWithButton;
    public void DispatchEventDemo() {}
    _dispatchExample = new DispatchEventExample();
    _dispatchExample.addEventListener ("Will", onEvent, false, 0, true);
                
    myForm = new FormWithButton();
    this.addChild (myForm);
    }
    private void onClick(e:MouseEvent):void
    {
    trace ("Click");
    _dispatchExample.sendEvent ();
    }
            
    private void onEvent(evt:Event):void {}
    trace ("_dispatchExample dispatched an event");
    }
    }
    }

    package
    {
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    import flash.events.EventDispatcher;
    import flash.events.Event;
    import flash.display.Sprite;
        
    SerializableAttribute public class DispatchEventExample extends EventDispatcher {}
    private var _timer:Timer;
    public void DispatchEventExample() {}
    }
    public function sendEvent (): void
    {
    dispatchEvent (new Event ("will"));
    }
    }
    }

    package
    {
    import flash.display.Sprite;
    import flash.events.Event;
    import flash.events.MouseEvent;
    import flash.text.TextField;
    import flash.text.TextFieldAutoSize;
    import flash.text.TextFieldType;
        
    SerializableAttribute public class FormWithButton extends Sprite
    {
    private var saveBtnPright;
    private var _dispatchExampleispatchEventExample.
    public void FormWithButton()
    {
    _dispatchExample = new DispatchEventExample();

    _dispatchExample.addEventListener ("Will", onEvent, false, 0, true);
    saveBtn = new Sprite();
    addChild (saveBtn);
    saveBtn.x = 190;
    saveBtn.y = 10;
    saveBtn.useHandCursor = true;
    saveBtn.graphics.lineStyle (1);
    saveBtn.graphics.beginFill (0xcccccc);
    saveBtn.graphics.drawRoundRect (0, 0, 30, 20, 5, 5);
    var saveLbl:TextField = new TextField();
    saveBtn.addChild (saveLbl);
    saveLbl.text = "Save";
    saveLbl.selectable = false;
    saveBtn.addEventListener (MouseEvent.CLICK, onClick);
    }
    private void onClick(e:MouseEvent):void
    {
    trace ("Click");
    _dispatchExample.sendEvent ();
    }
    private void onEvent(evt:Event):void {}
    trace ("_dispatchExample sent a test of FormWithButton");
    }
    }
    }

    I think what you need here, it is a singleton class. you create two instances of the object and add the listener to these two different instances. so when an event is being shipped via an instance your application is listening for the event to another instance then its never read correctly.

    Here is a link to a post that jtegen posted there on singelton classes:

    http://supportforums.BlackBerry.com/T5/Tablet-OS-SDK-for-Adobe-Air/going-back-to-main-page/m-p/71241...

    in this case, the singleton is the DispatchEventExample class.

    using the method htat and attach your headset to the same instance, it should do what you want it to do. Good luck!

  • The use of password for show/hide forms - anyway to keep the setting "does not print?

    I have a George_Johnson script that allows me to enter a password to show/hide the fields selected (keys actually).  It works perfectly, but when I enter the password and buttons appear again, setting general/Common Properties amounts to 'visible' instead of ' visible but does not print ', and the buttons appear when I print the document.  I thought I could change these lines and print buttons...

    case 'password': / / your password goes here

    getField("x").readonly = readonly;

    getField("x").display = readonly? Display.Hidden: display.visible

    App.Alert ("level 1 support is now" + readonly_desc + "d", 3);

    break;

    .. .to change the 3rd line to read as follows: getField("x").display = readonly? display.hidden: display.visible but does not print  (or _but_doesn't_print;)

    but then I started to make syntax errors in the 4th line.  I don't know about Java, but I thought I might get lucky.  I get hot?  What is the "3" that needs to change?  Or is that I started quite wrong?

    Thanks for reading,

    Zac

    You can't guess correctly that the value can be and expect it to work... You should consult the documentation.

    In this case, what you're looking for is "display.noPrint".

  • Send the link does not work in Firefox

    "Send link" does nothing. Recently I reset Firefox and have version 22.0 and Win7.
    None of the answers I see work - IE, the mailto option is correct (Outlook) and the default mail program is Outlook. Bit worried using about: config, but maybe there is a simpler solution.
    What else can I try?

    Ok. I have it fixed. Went in tools/options. Hit the mailto, which has already been set at Outlook (default) and press "ok" instead of just going out.
    He is currently working.
    Thanks to all for trying to help me.

  • Send the link does not

    running windows 7, firefox 14.0.1 - "send link" is not a link with Thunderbird (by default). Tried the "everything: config" fix and checked "Network.protocol - handler.external.mailto" which was set to 'true', as required. I closed and reopened Firefox and Thunderbird and restarted Windows 7 but without success. What now?

    Hello

    Please also try to set the mailto action in Firefox Tools (Alt + T) > Options > Applications

    Options

  • iTunes can't find the music, does not recognize mouse clicks

    I am in iTunes in an environment Windows 10.

    Due to a series of hardware problems, I had to spend all my music on an external hard drive, and I think that I put in place the appropriate file structure, with songs in the album folders, album files in the files of the artist, artist folders in a folder titled music and this folder in a folder called iTunes. The library database is on C, where is the iTunes program. No matter if I put iTunes preferences to search for music in E:\\iTunes\ or E:\\iTunes\Music, it can't find about 60 000 pieces. If I orders of iTunes to the location of the 1 of them, it can not find others in the same album folder which it considers as missing. AND, at this point, iTunes begins to ignore mouse clicks; so I can not help it find any music more without stopping it through master. (This is a newly installed version of iTunes, I can't get it to display the version number).

    If I left click on the icon of iTunes in the taskbar at the bottom of the screen, nothing happens. If I right click I can get iTunes to view by clicking on "go to the current song," which shows the current song, but also shows a spinning blue "O" (windows 10 equivalent of the hourglass).

    Any ideas on how I can:

    -Download iTunes to see all my files;

    -Recognize mouse clicks?

    Thank you.

    False alarm on the mouse click on the question; the program was busy to search for files and insensitive to the clicks as it did.

    He found all but about 2 000 files. It is a manageable number for me locate manually.

  • I can't uninstall several programs to add and remove programs, due to a file finding.msi problem, if I can find myself, the computer does not recognize my file.

    I use:(Microsift XP, Service Pack 3 ou 4 maintenant je suppose, il a été récemment installé par MS Update.) X 86, 32-bit construction. Anyway, oddly enough since I got the virus, I had MSE was not woking for a few weeks, big I don't know if this is related to my problem. It was a kind of 'Trojan horse'. MSE new beta version is now in place and the work. But, the question is, why when I try to remove programs, many of them claim that the folder that contains the installation package ___.msi is missing and trying to find it, so when I find, he continues to say the same thing. I really need to get rid of some of these programs, can help you, I hope! I almost installed a Windows installation package 'day', but scared myself and thought I'd better ask the experts! Thanks for your precious time! Kina.

    Hello

    1. What are the programs you want to uninstall?
    2. who was the update that has recently been installed on your computer?
    3. What is the exact error that you receive when you try to uninstall programs?
    4 is this specific problem with some programs all programs you are trying to uninstall?
    5. have you made changes on the computer before this problem?
    You can run the fix - it mentioned in the following link.
    Solve problems with programs that cannot be installed or uninstalled
    http://support.Microsoft.com/mats/Program_Install_and_Uninstall/
    Please provide us with more information, so that we can help you further.
  • Windows live mail send the receipt does not work

    I clicked on the box in order to receive the receipt of sending emails that I send, but it won't let me know if the person has received or read. It used to work before but never stopped, I haven't changed the settings or anything like that

    Who sends a request to the recipient you would like confirmation. They are not obliged to do so.

  • Problems with scripted patterns.  In the drop-down list, the trees do not appear and the box does not extend on the low side.

    I run Photoshop cc 2015, fully updated on a PC under windows 7

    Hi disable Question,

    The location of the tree models was changed to Filters > make > trees in Photoshop.

    Let us know if it helps.

    Concerning

    Sarika

  • Photosmart HP 5510: The printer does not print in black

    All of a sudden, my printer does not print in black. I replaced the cartridge with a new black cartridge with the same result. All other colours print fine. I checked the settings on the device and it shows that the black cartridge is full.

    If anyone has had this problem and can offer a solution? Thank you very much.

    In the paper here troubleshooting steps can help solve the black does not print on your Photosmart 5510.  Be sure to check the events on the cartridge, as described in the document.  If you go through all the troubleshooting steps without resolving the question then can help to manually clean the print head as shown in the post here.

  • What is: IDT PC AUDIO - SHANGHAI DEVELOPMENT CENTER? I get this request to declare a 'mistake' and always send the request to the 'centre '.

    In the middle of something on the internet an error request. I get this request of the 'centre' above to respond to the request to report this error

    I always send the request for postponement of this 'error '.  It does not resemble the normal application I use to get from Windows Update.

    IDT stands for "Integrated Device Technology" and is probably the company providing your audio device driver.  Something wrong with the driver or the audio material.  If this happened to me, I would remove the device in Device Manager and reboot to allow the relocation of the unit.  I would also visit the web site of the manufacturer of the PC and download the latest driver for the audio device.  Usually, IDT provides drivers for OEMs and provides no support for the end user.  This can be quite useful: http://www.idt.com/products/audio-products/audio-driver-support-for-users-faq

  • How can I send the snowdrift police to my brother

    How can I send the snowdrift police to my brother

    It comes in a zip file that you can attach it to an email. Or, simply let him download itself.
    http://www.xmasfonts.com/details/snowdrift.html

  • in Outlook Express, how can I send the same message to a group important (in the address book already), but have to each recipient can only see his name (not the Group)

    In Outlook Express, how can I send the same message to the large group (already in the address book), but have to each recipient can only see his name (not the Group)?

    To use the functionality of the BCC (Blind Carbon Copy), in a new message window, click View | All headers and type the addresses separated by a; Or: Click the button to. You will see your list of contacts and the choice to put them in the To, CC, or BCC field. Click on an address, and then click BCC to add it. Repeat for all of the contacts you want. (Note: most of the providers have limits as to how many messages you can send both a. 25 is common, but it varies).

    Put your own address in the box to. That's the only name/address that any recipient will see. If you leave the field empty, some people may not receive e-mail because of message rules they put in place, or restrictions imposed by their ISP.

    You can also make an entry in the address book using your e-mail address, but put something like the mailing list in the area of the display.

    *********************

    You can also create groups if you send e-mail to the same people often.

    To create a group of contacts:

    You can create a single group name (or alias) to use when sending a message to several contacts at the same time. Just create a group name and add individual contacts to the group. Then just type the name of the group in the box for when you send mail.

    1. in the address book, select the folder in which you want to create a group. Click New in the toolbar, and then click New Group.
    2. the Properties dialog box opens. In the group name box, type the name of the group.
    3. There are several ways to add people to the Group:
    a. to add a person from your address book list, click Select members, and then click a name in the address book list.
    (b) to add a person directly to the group without adding the name to your address book, type the person's name and e-mail address at the bottom of the Properties dialog box and then click Add.
    to add a person to both the Group and your address book, click New Contact and enter the appropriate information.
    (d) to use a directory service, click Select members, and then click search. Select a directory service in the drop-down list at the end of the text box. After finding and selecting an address, it is automatically added to your address book.
    4. Repeat for each addition until your group is defined.

    Note

    a. to view a list of your groups separately from the list of address book in the address book on the view menu, make sure that folders and groups is selected.
     
    b. you can create multiple groups, and contacts can belong to several groups.

    If you want to send to a group without addresses are displayed for each recipient, open the address book and make a new entry. Enter the name of the group in the area of the display, but use your address. (Some Internet service providers require a legitimate address in the line to and recipients will know it's from the Group).

    Click on the button to. Enter the name of the group using your address. Enter the group in the BCC field.

Maybe you are looking for

  • Map Wi - Fi on Satellite L40 does not connect to the wireless network

    Hello I have Satellite L40-15B with a realtek RTL8187Bcard. Problem is I Don t get a connection on wifi, but everything seems ok. I ve installed the BIOS update, the latest drivers and updates for Vista. Psychic Network is turned on, network switch i

  • HP Mini 210-1015SL cards PCI Express compatible

    I have a HP Mini 210-1015SL netbook. I am looking for a card PCI Express with Bluetooth + WiFi, but the commercial is not compatible with the BIOS. Can someone help me find the right card model?  :-)

  • Question on UCS C series

    Hello I have a question about the series C UCS. Is it possible that some now to connect to 6120 fabric Manager and manage as the blade series. Or are they only manageable through their port MMIC. In depth.

  • I have a mobile Pavilion ZD7005qv

    today when I brought the computer my ROM (D) drive has disappeared from my system.  Where can I go to reinstall the drive.  The drive is HL-DT-ST DVD + RW GCA-4040N.  Thanks for your help. leroy1942

  • Error during the Set Up of Microsoft SQL Server 2012

    I installed Visual Studio 2012 on my system after I installed Microsoft SQL Server 2012. I am getting error while Set Up a Microsoft SQL Server 2012 next: Action required:Use the following information to resolve the error and then repeat the installa