Protecting Data

Please forgive me, I'm a Designer newbie & don't know anything about program languages. But I need help...
I want to password protect a pdf form, allow a user with the password to fill it out, and password protect the data that is sent back. Delivery method is email, using the Submit by Email button.
Is there a way to do this? (My resources do not include a server.) I read the help topics that seem to be related, but I didn't see anything about protecting the data that is sent back.
Thanks!

Password protect the xml file, like the form. I'd say encrypt the file, but I don't know that encryption/decryption is available.
Doesn't make a lot of sense to me to password protect an empty form, but not the data that's coming back. The form itself isn't that sensitive, but the contents are.
This might not be possible with the tools I have... I just wanted to make sure.

Similar Messages

  • I recently installed an app CARTOON HD. I stupidly clicked install as I read that it wants access to my protected data. How can I see what it wants access to and how do I delete it

    I recently installed an app CARTOON HD. I stupidly clicked install as I read that it wants access to my protected data.... I think.  How can I see what it wants access to and how do I delete it

    How do I delete it permanently if it has indeed requested my protected/personal data?

  • Recovery of deleted data from Phone memory and Unlock Password Protected Data

    I have lost password of my blackberry (Curver 8520) protected data and by mistake I have also deleted some contacts, sms and memos from phone memory of blackberry set. Can any one help me to get recover my password and deleted data or is their any recovery tool which can be useful for it?

    Hi Kaushalbca
    Welcome to BlackBerry Support Community Forums
    By " BlackBerry Protected Data " do you mean BlackBerry ID password which we use for BlackBerry Protect ? If so , you can reset your password by following this KB Article : 
    KB26361  :How to change or reset a BlackBerry ID password.
    After reset , you can use BlackBerry protect to restore your deleted data ( If you have a backup of those deleted data ) , You can also restore your data if you ever did a backup using Desktop Software . To restore data refer to those KB Articles :
    KB25063  : How to use BlackBerry Protect to restore data to a BlackBerry smartphone
    KB10339 : How to use BlackBerry Desktop Software to restore data to a BlackBerry smartphone from a backup file
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • [ADF-11.1.2] Protecting data, even from DBA

    Hi,
    I am looking for a way to encrypt/decrypt database records of specific table at Application level without loosing BC Features like search functionality.
    Reason: I don't want to expose clean records even to customers/DBA as I want them to come back to us for such usecase - e.g.: Generating Reports.
    I had started working on this one by encrypting values while storing, and decrypting while reading but I released that I will be loosing ADF features like Search.
    So is there anyway I can protect data from DBAs w/o loosing BC features ?

    Is this question related to the original post?
    I don't see the connection :(
    Anyway, who decides how to do the translation? Does 'A%' always mean 'ABC' and 'ACD'?
    What if the user enters 'AB%' or 'B%'?
    There are two possible solution:
    1) http://jobinesh.blogspot.com/2010/12/using-oraclejbodomainarray-with.html
    2) http://tompeez.wordpress.com/2011/08/21/extending-viewcriteria-to-use-sql-contains-4/
    You still have to answer the above questions and implement it using either of the above techniques-
    Timo

  • Helpegarding restore of blackberry protect data

    can you please tell me how can i restore my data from bb preotect using my desktop software. actually my phone got stuck and its taking time to recover in service centre and i need my data urgently. please help me out.

    Here is a guide on how you would restore blackberry protect data back on a blackberry phone.
    http://btsc.webapps.blackberry.com/btsc/viewdocument.do?externalId=KB25063&sliceId=2&cmd=displayKC&d...

  • KM ACLs - protected data

    I am wondering if KM supports a mechanism for users accessing protected data? I have a requirement as follows: 1) ITAR (sensitive) data has to reside on separate hardware, 2)depending on a flag set in directory services (done via Netegrity), users are granted permission to ITAR repository. This being the case, we are wanting to eliminate one of our two portals and have an DBFS for ITAR data being accessed.
    The problem we are unclear on here is, whether cm repositories have an ACL that supports netegrity or are there other means for doing something like this. We have to check if the users has the directory services flag set before they are allow to view content on DBFS server.
    -John

    // Filename: SuperclassA.java                           (1)
    package packageA;
    public class SuperclassA {
        public int superclassVarA;                       // (2)
        public void superclassMethodA() {/*...*/}        // (3)
    class SubclassA extends SuperclassA {
        void subclassMethodA() { superclassVarA = 10; }  // (4) OK.
    class AnyClassA {
        SuperclassA obj = new SuperclassA();
        void anyClassMethodA() {
            obj.superclassMethodA();                     // (5) OK.
    // Filename: SubclassB.java                             (6)
    package packageB;
    import packageA.*;
    public class SubclassB extends SuperclassA {
         SubclassB objRefB = new SubclassB();
         Void subclassMethodB(SuperclassA objRefA){
              objRefB.superclassMethodA();
    //          objRefA.superclassMethodA();    // not ok
              objRefB.superclassVarA=10;
    //          objRefA.superclassVarA=10; // not ok
    }

  • Can you retrieve BB Protect data with another program?

    Can you download your Blackberry Protect date (ie. Address book) to another program?  I want to get my contact info but I no longer have a cell phone.

    Hi Thomas,
    Thanks for the info. Based on my experiments, that's the conclusion I had come to as well, but it's good to get confirmation.
    My work around is to break every TX transaction into small pieces. The NI 8452 supports streaming sample sizes of up to 64 bits (8 bytes). I can make a transaction that is one sample long with "samples" of 4, 6, or 8 bytes, as needed. Continuing my original example, I can do this:
    NumBytes = 8;
    ni845xSpiStreamConfigurationSetNumBits(StreamHandle, 8 * NumBytes);
    ni845xSpiStreamConfigurationSetNumSamples(StreamHandle, 1);
    ni845xSpiStreamConfigurationWave1SetMosiData(StreamHandle, WriteData, NumBytes);
    ni845xSpiStreamStart(DeviceHandle, StreamHandle);
    And I see this transmitted:
    0x0102030405060708
    You can repeat the SetMosiData and StreamStart steps for each additional block of TX bytes.
    I would like to use the ni845xSpiWriteRead() function (that would be much easier), but that doesn't work with the broken pre-production SPI slave I need to talk to. (We will fix it, but I need to work around the problems for today). I need to generate a very small delay at the end of the transaction between when the serial clock stops and when CS deasserts, or else my transaction is ignored. I measured the delay between SPC deassertion and CS deassertion produced by ni845xSpiWriteRead() at 1.19 us. In order to talk to my broken SPI slave, I need a much shorter delay, on the order of one SPI clock period.
    So yes, I hope to upgrade to the basic SpiWriteRead function in the future, but I can't use it today.
    Thanks for your help.
    -jskroch

  • Some users are experiencing difficulty opening certain docx files sent as email attachments. These files contain content controls to protect data in the document. Could someone please confirm that the content controls are the reason the files won't open.

    Some users are experiencing difficulty opening certain docx files sent as email attachments. These files contain content controls to protect data in the document. Could someone please confirm that the content controls are the reason the files won't open.
    These files open correctly when sent as doc files.
    Thanks

    Congrats to Saeid, Ronen, and Ricardo! Big thank you to all our contributors!
     Transact-SQL Technical Guru - February 2015  
    Saeid Hasani
    T-SQL: How the Order of Elements in the ORDER BY Clause Implemented in the Output Result
    Durval Ramos: "Very well structured and with examples that clarify how a T-SQL statement can change the data output order."
    Richard Mueller: "Good use of Wiki guidelines and great examples."
    Ronen Ariely
    Free E-Books about SQL and Transact-SQL languages
    Richard Mueller: "An excellent collection and a great idea."
    Durval Ramos: "A good initiative. Very useful !!!"
    Ricardo Lacerda
    Declare Cursor (Transact-SQL) versus Window with Over - Running Totals
    - Accumulated Earnings
    Durval Ramos: "The "Window function" sample was well presented, but it was unclear how the chart was generated."
    Richard Mueller: "A new idea that can be very useful. Grammar needs work"
    Also worth a mention were the other entries this month:
    [T-SQL] Retrieve Table List with Number of Rows by
    Emiliano Musso
    Richard Mueller: "Short but sweet solution to basic question."
    Durval Ramos: "A simple T-SQL script, but useful."
    [T-SQL] Search for Missing Values within a Numerical Sequence by
    Emiliano Musso
    Richard Mueller: "Clever solution with good code examples."
    Durval Ramos: "You need add more details about development of the idea and create a "Conclusion" section to easy understanding."
    [T-SQL] Converting Multiple Rows into HTML Format single ROW by
    Maheen Khizar (Bint-e-Adam)
    Durval Ramos: "In some situations, It's need to consume and format HTML tags for a UI, but It's important to remember that Best Practices recommend this formatting process preferably in Presentation Layer"
    Richard Mueller: "A great new idea. Some features need more explanation. Avoid first person."
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Export Inactive protection for previous protected data

    Hello,
          I'm running DPM 2012 R2 and running low on disk space. I have 4TB data that is inactive but need to retain for xx amount of days.  Is it possible to export the inactive data off to a different server
    or usb drive?  And can I still recover from the inactive data if need be?  Thank you. 

    Hi,
    USB-drives is not supported to add to the DPM diskpool and the Cmdlet MigrateDatasourceDataFromDPM.ps1 is
    not supported to use on a inactive data source.
    If you are able to present disk-space from another server to the DPM-server as a volume and put the inactive data into protection groups, you could use the MigrateDatasourceDataFromDPM.ps1 too
    move the 4TB of data and its recovery points to the other server.
    If you want to use an USB-drive, which I however not recommend, you could perform a recovery of the data and manually copy it to the USB-drive.

  • Best Way to Protect Data on External Firewire Drives?

    I have a number of external firewire drives on my IMac and like many others have experienced data loss due to various things.
    What I've just started to do is use certain of these drives, external USB drives too, just for backup, not to work on. I put the video work on there each day and then dump the drive in the Trash, turning it off, so that their files can't be corrupted.
    With my other firewire drives I do the same: dump in the trash and turn the drives off. I don't unplug the firewire cables, just dump the drives in the trashcan and turn them off. When I want to use a particular drive I turn it on and it comes up on the desktop.
    I have at times restarted and then powered the external drives on.
    My question is: which is the safest way to do this? is it okay to trash a drive, turn it off and then switch it back on when needed?
    Thanks so much for any help!

    I have been doing what you describe for years now, and have never experienced a problem. When the drive is not needed for a while, I eject it and power it off. You can also disconnect it from the Mac and unplug the drive physically, if you want extra "protection" against, say, a power surge or some other malfunction that might damage the powered off (but still connected) drive, but I would think those types of events are very highly unlikely.
    People might debate whether the risk of wearing out the firewire or USB ports from repeatedly inserting and removing the cables is greater than the risk of some damage when connected to the Mac but powered off. Either one is infinitesimally small, I believe, and neither has probably been accurately measured.

  • Selling and Buying: protect data

    I am buying a new MacBook Air, and will sell my existing MacBook Air. I have copied and removed all the files that I want to to keep, but I want to ensure the future owner cannot access any personal data I may have missed.
    What is the way to do this to ensure all my personal data is removed, whilst ensuring the current OSX system is intact?

    Hi Edward,
    If you're looking for a secure method for erasing your data your best bet is a zero out of the data on the HD, a single pass is usually adequate. However in doing the zero out you will need to wipe the OS and reinstall.
    Another option would be to convert your user account to a File Vault user, after the conversion you can go in and delete all of your personal information, clear cookies/caches, etc. Then remove the File Vault protection and delete the user from root. While definitely not the same as a zero pass, in a "pinch" it's a pretty good way of deleting your information off the machine.

  • How to protect data on time machine drives??

    I have am MBPro and use it in my office and at home. Since I do most of my work in the office, I have an external TM drive there on my desktop that I plugin whenever I work there.
    My concern ist now that anybody could come to my office, take my external drive and it would not be protected by any password stuff or anything, would it?
    So is there any way to leave this data behind in my office securily or should I get a safe to store the external drive in it?

    Zac. wrote:
    What I have found is that the TM backup database is only accessible to the machine that created it. The individual accounts in the TM backup, assuming you have more than one account backed up, is only accessible to that individual account. While it is not Filevault level security, unless your home folder is filevault protected, you should be okay.
    HTH
    zac
    When I disconnect the external drive with the Time Machine backup from my MacBook and connect it to my iMac at work, I can browse the TM folder and access just about any file for any user account that is backed up. Am I really the only one where the backup is not protected?

  • Protecting data in pdf file

    dear all
    please help me, i have a case. if i have pdf file which consist 4 page can I protected ?
    page 1 : consist as image and text, want to protect text only.
    page 2 : consist just a text, unprotect anything
    page 3 : consist image and text, want to protect both
    page 4 : consist image and text, want to protect image only
    regards

    Hi deto_ws,
    There is no way to apply different security settings to just specific parts of the document. The best you could do is to extract pages 2 and 3 to separate PDFs, and apply document permissions to the page you won't to protect, and not to the page that you don't. As for the other pages, they're either protected, or they're not. You can't apply different security permissions to different parts of the page.
    Best,
    Sara

  • Can data be restored, if BB Protect is wiped from a stolen phone???? HELP!!!

    Lost or Stolen BlackBerry -- What to do to retrieve data? 
    Hello,
    I have a problem that goes a step further--my BB had BB Protect installed, but no password protection, when someone stole my phone. The carrier tells me that whomever has it has "wiped" the device (master reset?).....is there any way to restore my data when my new phone arrives? Or, I also have Total Equipment Protection app--can that help me?
    The only pictures I had of family, some members who have passed away, were on the memory card. If I can't locate the phone, they are lost :' (
    But there are also hundreds of phone numbers I infrequently call, but are my only connections to important people in my life; then there's also phone numbers for jobs I've applied to and the numbers I'm supposed to follow up with calls to (and names, email addresses, etc)?!
    It seems like the owner of the BB Protect app should be able to retrieve their data somehow, that it shouldn't get wiped from the Protect account, even if someone wipes the phone.  Please tell me there is some way?
    I really need all the info I can get--is there any way to restore what the theif wiped, at least???
    Any help would be much appreciated!

    You can restore the BB Protect data to any new device.  The data is backed up to a server, so the individual device is of no consequence.  However you have to take note of what data BB Protect actually backs up...  Not everything you listed is actually backed up by BB protect.  For example BB Protect does not backup pictures.  Those are only stored locally on the sdcard unless you uploaded them somewhere.
    http://docs.blackberry.com/ko-kr/smartphone_users/deliverables/25582/Switch_devices_1137911_11.jsp

  • Cl_gui_alv_grid:exporting protected table data MT_OUTTAB to local int.table

    Hi guys,
    this is my problem.
    I've an instance of cl_gui_alv_grid in the reference variable gos_alv. This instance
    is populated by "sap GOS service". 
    Now, i'd like to save locally the internal data table of the gos_alv (populated
    automatically by the service call).
    The data tables is called "mt_outtab" and is a standard protected component of the cl_gui_alv_grid class
    (you can see it in the se24 transaction).
    I think to create a subclass of the cl_gui_lav_grid and make a public method to
    save data like this :
    field-symbols: <outtab> type standard table.
    *       CLASS lcl_gui_alv_grid DEFINITION
    class lcl_gui_alv_grid definition inheriting from cl_gui_alv_grid.
      public section.
        methods : get_tab_line.
    endclass.                    "lcl_gui_alv_grid DEFINITION
    *       CLASS lcl_gui_alv_grid IMPLEMENTATION
    class lcl_gui_alv_grid implementation.
      method get_tab_line.
    * mt_outtab is the data table held as a protected attribute
    * in class cl_gui_alv_grid.
        assign me->mt_outtab->* to <outtab>. "Original data
      endmethod.                    "get_tab_line
    endclass.                    "lcl_gui_alv_grid IMPLEMENTATION
    data : l_alv type ref to lcl_gui_alv_grid.
    But when i do a downcast like this :
    l_alv ?= gos_alv.
    I have an exception of casting error. SO, how i can extract protected data into
    local internal table?
    I've already try to debug the service that build the alv list to understand how the data table
    is populated but it's too complex.
    Thank you
    Andrea

    Hi,
    not yet any suggestion?
    Generally speaking, i cannot understand why i cannot use down-cast with an instance declared as a subclass of a super-class.
    Many examples, shows that i can create a sub-class inheriting from a super-class, add methods and attributes, make something like this : subclass ?= superclass and the call method of the subclass.
    But when i try to do the same with a class derived from cl_gui_alv_grid, i have always a casting type exception in the down-cast instruction.
    Could you explain me why?
    Thank you very much
    Andrea

Maybe you are looking for

  • Is it possible to annotate pdf documents that are received as attachments within the main document?

    Hi There I am using the latest adobe reader app for iPad v11.6.4 and  I have recently received a meeting agenda by email which contained attachments within it. The agenda was prepared by a friend using the 'attach a file' function in acrobat. I can a

  • Item "filename" is used by mac os x and cannot be opened

    Several files within a folder on my son's iMac have become unopenable. The error message is... Item "filename" is used by mac os x and cannot be opened Here are some details... 1) The suspect files represent approximately half a folder's worth of fil

  • How to add a PANTONE color to docs?

    Hi everyone I got this script var docs = app.documents;   for (var i = docs.length-1; i >= 0; i--) {       try{         docs[i].colors.item("Body Text Color").name;         catch (myError){                     docs[i].colors.add({name:"Body Text Colo

  • Down load doesn't work

    Please I need some help. I don't why, i can't get download. My iBook G4 was working well, but (I do not the reason) now it is impossivel to get any down load from internet. Could someone help me? Thanks in advanced. Andres Jorge

  • How to get item's cost price?

    I want to get Item's cost price. I get a business boject 'item',g_oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oItems),There are two key to decide one cost price,one is 'itemcode',another is 'whscode',How to get one record by using 'GetByKey'