Prevent outside access to a form of Eloqua

I have an email campaign targeting a select list of contacts and you want to only allow these contacts go to the landing page.  E-mail links have a query string that I can check and block foreign access to the landing page via a direct url.  However, if the planned contact had to follow the message to a friend, that won't stop the friend access to the form that the query strings would be present.

As a second check, I could use contact data searches and compare the e-mail to E-mail contact provided, but if they are on a new machine and that you do not have an Eloqua cookie, then this would not solve the problem. Since it is a sort of re-engagement campaign, they are relatively old contacts and this could be the case.

I'm looking for ideas on how to frame this problem and solve it for as many opportunities as I can.  Please post ideas or answers if you have.

Thank you

Donald

Thank you to those who submitted ideas for this problem.

I solved this problem using strings of query on the links in the email that go to the screen.  To ensure no outside access, I use JavaScript to check the query string and if it is not present, I redirect them to the home page of the client. This will prevent any external links to access the form.

In addition, when someone receives email (they'll will receive an email for every single product they have purchased), click and send the form, they are placed in a contact group for the single product via a processing step.  I then use the research data of contact group when the form is responsible for checking that the contact is not in the contact group for the unique product specified in the query string by e-mail.  Are they in the contact group about the unique product, then I redirect to the homepage of the customer.  This method makes sure the contact can access only the form once for each unique product.

Hope this is very convenient for someone on the road facing a similar problem.

Donald

Tags: Marketers

Similar Questions

  • problem with the yellow triangle without preventing Internet access

    problem with the yellow triangle without preventing Internet access.in across the network!
    all PC go to the internet through TMG and some computers work very well and most of the computers triangle shows yellow and always go online, but the connection it needs to slow down, I do everything from restarting all switches and install new TMG and always exist and place on another line to outside the firewall problem disappear?
    What can I do :(

    Hello
    I advise you to follow the link below for Tech Net where your social networking question will be answered by IT pros.
    You can post/search here
    hope this helps,
    B Eddie

  • Is there a documentation on writing a login to a form of Eloqua iOS app?

    The next generation of our iOS app have an option sign up for access to certain features. I want these data to be captured in Eloqua, but I can't find any info. This is documented or has anyone already done this? Thank you!

    You can always use the API to make a form submit Eloqua API how-to: submit form A or even make a blind form present as shown here Eloqua9: trigger multiple actions with a click-through email (via 'send blind form')

  • prevent direct access via webmail

    I want to prevent direct access to common accounts through webmail. for the user X interpreter should be able to display "itsupport" via webmail only after have connected you to its indivisual ID and then open new window https://webmail.domain.ae/Exchange/itsupport and prevent it directly access itsupport via webmail as user X has the permission to access the itsupport

    Thank you

    Hi nouraAJ,

    Your question is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public. Please ask your question in the Forums of Exchange Server.

    http://social.technet.Microsoft.com/forums/en-us/exchangesvrgeneral/threads

  • How can I prevent the access denied message when you use the shutdown command?

    I use shutdown /m \\computername/s

    I have "Access denied (5)" as an answer.
    I am admin on all my computers. Same username and password on each of them.
    How can I get this shutdown command to work remotely, so I can't access every computer command prompt via Remote Desktop?
    How can I prevent the access denied message when you use the shutdown command?

    Hello

    I suggest you to report this issue in TechNet Forums for Windows 7 networks: http://social.technet.microsoft.com/Forums/en-US/w7itpronetworking/threads

    Thank you.

  • Is there a way to get the data for submission of form of eloqua using the REST API?

    I was wondering if there is a way to get the data for submission of form of eloqua using the REST API?

    Thank you

    On the page that egan related, there is a 'RawData' field for FormSubmit activities. In this area, the raw sending the form query string is returned.

    Whatever it is, you can get this info from the activities of the API block, or the endpoints data Rest API.

  • How to prevent participants in a survey form to send multiple responses

    How to prevent participants in a survey form to send multiple responses

    Salvation;

    FormsCentral does not provide a way for you to limit the number of presentations of a user.

    Thank you

    Josh

  • Prevent full access Nested Table

    Hello

    I have a table that I use as a cache for a collection of type of oracle objects. The query to generate the collection object is intense. If the idea is to build once and then store it in the table for the next time that it is needed.

    The challenge is that Oracle wants to complete access table on this table nested each time. Here's my table creation script:
    CREATE TABLE key_cache
    (
       set_id     NUMBER,
       cached_obj t_key_tbl,
       timestamp  DATE,
       CONSTRAINT key_cache_pk
       PRIMARY KEY(set_id)
    )
    NESTED TABLE cached_obj STORE AS cached_obj_tbl RETURN AS VALUE
    TABLESPACE data_sm;
    I will never need to select this table based on any value in the nested table. Is there anyway to prevent full access on the nested table in oracle? I tried to create an index on it, but who did not have Oracle. I hope so, there is another way to avoid this. Thanks for the research!

    user516246 wrote:
    However, I need to select the obj being cached on in a variable, which causes a full access of the cached_obj, high cost, bytes and the CPU cost table.

    Well, it's because you created the nested with STATEMENT OF VALUE AS table. If create you it as INDEX of RETURN WITH:

    SQL> CREATE TABLE key_cache
      2  (
      3    set_id     NUMBER,
      4    cached_obj t_key_tbl,
      5     timestamp  DATE,
      6     CONSTRAINT key_cache_pk
      7     PRIMARY KEY(set_id)
      8  )
      9  NESTED TABLE cached_obj STORE AS cached_obj_tbl RETURN AS LOCATOR
     10  /
    
    Table created.
    
    SQL> explain plan for
      2  select * from key_cache where set_id = 1
      3  /
    
    Explained.
    
    SQL> @?\rdbms\admin\utlxpls
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------
    Plan hash value: 13847710
    
    --------------------------------------------------------------------------------------------
    | Id  | Operation                   | Name         | Rows  | Bytes | Cost (%CPU)| Time     |
    --------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT            |              |     1 |    32 |     1   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| KEY_CACHE    |     1 |    32 |     1   (0)| 00:00:01 |
    |*  2 |   INDEX UNIQUE SCAN         | KEY_CACHE_PK |     1 |       |     1   (0)| 00:00:01 |
    --------------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       2 - access("SET_ID"=1)
    
    14 rows selected.
    
    SQL> 
    

    But if you want to RETURN as VALUE, why don't index you the nested table:

    SQL> CREATE TABLE key_cache
      2  (
      3    set_id     NUMBER,
      4    cached_obj t_key_tbl,
      5     timestamp  DATE,
      6     CONSTRAINT key_cache_pk
      7     PRIMARY KEY(set_id)
      8  )
      9  NESTED TABLE cached_obj STORE AS cached_obj_tbl((PRIMARY KEY(NESTED_TABLE_ID)))
     10  RETURN AS VALUE
     11  /
    
    Table created.
    
    SQL> explain plan for
      2  select * from key_cache where set_id = 1
      3  /
    
    Explained.
    
    SQL> @?\rdbms\admin\utlxpls
    
    PLAN_TABLE_OUTPUT
    -----------------------------------------------------------------------------------------------------------------------
    Plan hash value: 1081321400
    
    ----------------------------------------------------------------------------------------------
    | Id  | Operation                   | Name           | Rows  | Bytes | Cost (%CPU)| Time     |
    ----------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT            |                |     1 |    32 |     1   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| CACHED_OBJ_TBL |     1 |    44 |     1   (0)| 00:00:01 |
    |*  2 |   INDEX UNIQUE SCAN         | SYS_C0014447   |     1 |       |     1   (0)| 00:00:01 |
    |   3 |  TABLE ACCESS BY INDEX ROWID| KEY_CACHE      |     1 |    32 |     1   (0)| 00:00:01 |
    |*  4 |   INDEX UNIQUE SCAN         | KEY_CACHE_PK   |     1 |       |     1   (0)| 00:00:01 |
    ----------------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       2 - access("NESTED_TABLE_ID"=:B1)
       4 - access("SET_ID"=1)
    
    17 rows selected.
    
    SQL> 
    

    SY.

  • Is it possible to import an Access database and forms

    Is it possible to import an Access database and forms in apex

    Yes and no... Sorry... Access data tables and data can be imported into the database through SQL Developer. Will be reported on forms, I think. What will be created by the intermediary is a set of report of maintenance and form sets for each table that you convert to the wire.

    It's a good start to convert the database, because you probably want to redo your access style vba coding to use available models and pl/sql code...

    Thank you

    Tony Miller
    Webster, TX

  • Can I access a variable form of function outside?

    I don't know much about ColdFusion yet. If I declare/cfset a variable inside a function, can I just access this variable directly from anywhere on the. CFM page?

    If you define a variable in a function without specify var then Yes, the variable will be accessible on a global scale.

    See you soon

    Eddie

  • Prevent students access the SSID with the school laptops

    Hi all

    I'm new to the network and I'm having a problem with the ACL.  My router is a RVS4000 that connects to a SG300.  The SG300 is in mode layer 3 and distributes to other sg300/200 that connect to multiple WAP321s. I have all configured for two VLAN, (10) public and private (1).  I need a way to keep my laptop student outside the public network for the purpose of monitoring.  I had hoped to do this with a mac-based acl, but I wonder if it's the best way, and if the ACL must be on WAP or the main switch.  All advice and/or assistance in writing the ACL would be highly appreciated.

    > wap321s cluster up to what it means when I apply the ACL to a unit, it will spread to others?

    Yes, it is the collection point - easier administration with configuration to all units instead of the configuration of per - WAP of multiplication. More on the features and benefits of the grouping of WAP, you can find here.

    But rather than use the ACL, I recommend to use filtering MAC (Wireless-> MAC filtering) for two reasons:

    • the administration if MAC filtering is easier than the ACL (this is a simple list where you put the MAC address you want to allow or deny). This feature is also designed directly to these needs that you have
    • with the help of MAC filtering you will prevent some laptops to connect to wireless networks - which means that these laptops will not connect successfully. But the ACL is designed for situations when you wanted to block some sort of communication for already connected clients.

    If you decide to use the MAC filtering, be sure to choose the option MAC Local filter inside the SSID configuration section.

  • Form of Eloqua does not creation of lead in Salesforce

    Hello

    I have a simple form Eloqua I want to create a lead in Salesforce. Currently, which does not occur. Creates a new contact in Eloqua with success but it is not automatically sync for Salesforce.

    The only stage of processing of forms is "Update Contact - Form Data". There are two approaches for this sync with Salesforce, seems. Is a favorite or am I missing something?

    1. Form processing step:  I guess I could include a processing step "Add a program" that lead to this program - SYSTEM - update CRM (unique Create only leads).
    2. Form of present activity: Activity submit form is currently disabled (integration > going out > internal events > activity > form submit). If I enable it, it seems that this will trigger an external call (form submit - lead) which one field corresponds to the drive ID, the date and description. I'm leaving the form has been disabled on our integration for a reason, but it is incorrect.

    Any help would be greatly appreciated.

    Thank you

    Ron

    Update: Option 1, form processing step did the trick.

  • Memory default error page forms in Eloqua

    Is it possible that we can set up a default form submission error page in Eloqua?

    Hey Rama.

    Yes you can do it in form processing step Page of Confirmation under the advanced options choose separate pages for the success and the failure to use.

    You can then set as default pages using the checkbox.


    See you soon

    Chris

  • Any idea about the error on submit form (form external eloqua built-in)?

    Hi guys,.

    My team Web site operations gets attached all error trying to test the integrated external eloqua form.

    I tested the form by taking the HTML form Eloqua and make presentations to test. It seems to work very well.

    Someone has an idea what could be wrong here? Is there something wrong in integration on the landing page?

    Have you checked that the code is correct in the external page.  Form fields name and that relevant at all?

    Elizabeth

  • How to prevent the overlap in PDF form?

    I am filling an application for employment with the Veterans Health Administration using their required PDF form. Everything works fine until I reached the "Références" box that contains four lines to enter names and etc. In the 'Address' box section, the data entered in the areas of first and fourth automatically duplicated with the same information. I use a MacBook and save and view the PDF with Adobe Reader. Anyone know how to prevent this duplication?

    Here is the link to the PDF and scroll to page 3: http://www.va.gov/vaforms/medical/pdf/vha-10-2850a-091998-fill.pdf

    This is because the creator of the form named these same fields (probably copy and paste to the other create) and all the fields with the same name will be filled in with the same information (this is required).

    Let them know that they need to change the names of field to be unique (for the time being they are all two '29 b Ref-Address1'). It was probably just an oversight.

Maybe you are looking for