Online form problem

Hello
I have a site (2004 MX) which houses an online form.
When the form is completed and the submit button clicked I
have noticed that TWO messages are sent to the Webmaster. Sometimes
one is blank and the other completed as it ought to be.
Is this likely to be a server script error (I am using CDO),
or something in Action Script?
Many thanks.
Steve

Hello  Markus,
let's say I have two systems. One - X - installed J2EE+ABAP and configured WD pdfobject WS proxy to point to second system - Y - with correctly configured ADS (inculding Redaer Rights Credential). Do I have to setup this Reader Rights Credentila also on system X ?? Do I have to setup something else on system X to work with Interactive forms in WD Java on system X ?
PS: Our ABAP calls from X to ADS on Y are working okay, but I didn't try WD ABAP as basis is too low.
Thanx, Richard.
Message was edited by:
        Richard Calaba

Similar Messages

  • Problem executing an Online Form in Web DynPro(Adobe Form)

    Gurus,
    I am trying to create an Online Form in Web DynPro(Adobe Form), i could successfully create the form and deploy it.
    But when i executed, i am getting the below error.
    <<
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Error during call to AdobeDocumentServer: Processing exception during a "UsageRights" operation.
    Request start time: Thu May 18 16:31:04 CEST 2006
    com.adobe.ProcessingError: Error while retrieving a password for credential: ReaderRights:
    java.lang.Exception: Could not retrieve a password for credential: ReaderRights
         at com.sap.tc.webdynpro.clientserver.adobe.AdobeFormHelper.createPDFDocumentForUIElement(AdobeFormHelper.java:420)
    >>
    Any Help would highly be appreciated
    Regards,
    Arvind Kugasia

    Hello  Markus,
    let's say I have two systems. One - X - installed J2EE+ABAP and configured WD pdfobject WS proxy to point to second system - Y - with correctly configured ADS (inculding Redaer Rights Credential). Do I have to setup this Reader Rights Credentila also on system X ?? Do I have to setup something else on system X to work with Interactive forms in WD Java on system X ?
    PS: Our ABAP calls from X to ADS on Y are working okay, but I didn't try WD ABAP as basis is too low.
    Thanx, Richard.
    Message was edited by:
            Richard Calaba

  • PDF Online Form in Safari Not Working

    I'm using a macintosh computer (powermac G5, osx 10.5.8). When I use the online form at this local website it opens the window and it acts like a PDF. I know it's a PDF that you can fill out online. But the way my Mac handles PDFs is it opens the PDF within Safari. The page is an html page but it's a PDF that you fill out online and submit online in a web browser. So I can't download it and upload when finished. It has to be filled out online. I can do it on a PC but I don't have access to that.
    Anyone know what I can do?
    P.S. I've tried Opera Browser, Camino, Firefox.
    Message was edited by: Jim Felder

    So are you saying it works as in you can go to the next page and see the form to be filled out or are you saying you can see the page when it comes up? I see the first page of the document but I can't scroll or go to the next page that has the actual form fields to fill out.
    I don't see font dupes but I do have several "minor problems" with an exclamation beside them.
    I don't see how font's would prevent this pdf from being viewed.
    oops I do see the dupes. that is why there's a warning. How do I get rid of the dupes? If I click remove selected fonts will it remove both of the fonts or just the dupe?
    Message was edited by: Jim Felder

  • I fill out a online form and when i hit send firefox resets the page

    When i fill out an online form of some kind and it takes over a certain amount of time firefox will clear all my information and reset the form to all blank responses. I assume it must be firefox and not the website I'm using because it has happened on multiple occasions on multiple websites.

    Go to the address '''about:crashes''' and tell us your latest crash IDs. We can then look at the data specific to your crash and have a better idea of what is causing the problem.

  • Online forms

    Hello everybody,
    When I try to fill out an online form for a reservation, an order, a survey etc., it works in approximately 70% of the cases. In the other 30% of the cases, the button 'conform' or 'proceed' or 'next step' doesn't work. The strange thing is: it doesn't freeze, it doesnt remove the data I filled in, just NOTHING happens. I read several discussions about Java, but that doens't seem to be the problem. Does anybody know what the problem is and how to solve it? Is it the web site, not workin properly in Safari? Is it some setting on my iMac? Is it some setting in my Intego Internet Security Pack? I would be grafetul if you could help me out!
    Regards, Arjan.

    http://web.mac.com/varkgirl/iWeb/Varkgirl/Add%20forms.html

  • HTTPUnit: submitting an online form in Java

    Hi, I have a problem filling out an online form using the HttpUnit API in Java. I have a java program that opens up an IE browser and goes to the website, but when I try to send the WebRequest, the program gives me a "Connection timed out" error. Not sure what I'm missing here, I have the same coding as many other examples I've found around the web for form validation. Here is my code:
    import com.meterware.httpunit.*;
    import com.meterware.httpunit.cookies.CookieProperties;
    import com.meterware.httpunit.cookies.CookieListener;
    import com.sun.org.apache.xerces.internal.util.URI;
    import java.awt.*;
    import java.net.URL;
    public class expertLogin
    public static void main(String[] args)
    try
    String url = "http://fedexifc.infousa.com/QAA/demo/Login.aspx";
    WebConversation wc = new WebConversation();
    CookieProperties.setDomainMatchingStrict(false);
    CookieProperties.setPathMatchingStrict(false);
    HttpUnitOptions.setExceptionsThrownOnScriptError(false);
    CookieProperties.addCookieListener(new CookieListener()
    public void cookieRejected(String s, int i, String s1)
    System.out.println("CookieProperties.isDomainMatchingStrict() = " + CookieProperties.isDomainMatchingStrict());
    System.out.println("CookieProperties.isPathMatchingStrict() = " + CookieProperties.isPathMatchingStrict());
    System.out.println("s = " + s);
    System.out.println("s1 = " + s1);
    System.out.println("Reason: " + i);
    Runtime.getRuntime().exec("C:\\Program Files\\Internet Explorer\\iexplore.exe \"http://fedexifc.infousa.com/QAA/demo/Login.aspx\"");
    WebRequest req = new GetMethodWebRequest("http://fedexifc.infousa.com/QAA/demo/Login.aspx");
    WebResponse resp = wc.getResponse(req);
    WebForm loginForm = resp.getFormWithName("form1");
    String[] cookies = wc.getCookieNames();
    for (int i = 0; i < cookies.length; i++)
    String cooky = cookies;
    System.out.println(cooky + " = " + wc.getCookieValue(cooky));
    loginForm.setParameter("TextBoxUsername", username");
    loginForm.setParameter("TextBoxPassword", "password");
    loginForm.setParameter("TextBoxGroup", "group");
    loginForm.submit();
    for (int i = 0; i < cookies.length; i++)
    String cooky = cookies[i];
    System.out.println(cooky + " = " + wc.getCookieValue(cooky));
    resp = wc.getCurrentPage();
    System.out.println(resp.getText());
    catch (Exception e)
    e.printStackTrace();

    I'll try this again. I have a problem filling out an online form using the HttpUnit API in Java. I have a java program that opens up an IE browser and goes to the website, but when I try to send the WebRequest, the program gives me a "Connection timed out" error. Not sure what I'm missing here, I have the same coding as many other examples I've found around the web for form validation. Here is my code:
    import com.meterware.httpunit.*;
    import com.meterware.httpunit.cookies.CookieProperties;
    import com.meterware.httpunit.cookies.CookieListener;
    import com.sun.org.apache.xerces.internal.util.URI;
    import java.awt.*;
    import java.net.URL;
    public class expertLogin
    public static void main(String[] args)
    try
    String url = "http://fedexifc.infousa.com/QAA/demo/Login.aspx";
    WebConversation wc = new WebConversation();
    CookieProperties.setDomainMatchingStrict(false);
    CookieProperties.setPathMatchingStrict(false);
    HttpUnitOptions.setExceptionsThrownOnScriptError(false);
    CookieProperties.addCookieListener(new CookieListener()
    public void cookieRejected(String s, int i, String s1)
    System.out.println("CookieProperties.isDomainMatchingStrict() = " + CookieProperties.isDomainMatchingStrict());
    System.out.println("CookieProperties.isPathMatchingStrict() = " + CookieProperties.isPathMatchingStrict());
    System.out.println("s = " + s);
    System.out.println("s1 = " + s1);
    System.out.println("Reason: " + i);
    Runtime.getRuntime().exec("C:\\Program Files\\Internet Explorer\\iexplore.exe \"http://fedexifc.infousa.com/QAA/demo/Login.aspx\"");
    WebRequest req = new GetMethodWebRequest("http://fedexifc.infousa.com/QAA/demo/Login.aspx");
    WebResponse resp = wc.getResponse(req);
    WebForm loginForm = resp.getFormWithName("form1");
    String[] cookies = wc.getCookieNames();
    for (int i = 0; i < cookies.length; i++)
    String cooky = cookies;
    System.out.println(cooky + " = " + wc.getCookieValue(cooky));
    loginForm.setParameter("TextBoxUsername", username");
    loginForm.setParameter("TextBoxPassword", "password");
    loginForm.setParameter("TextBoxGroup", "group");
    loginForm.submit();
    for (int i = 0; i < cookies.length; i++)
    String cooky = cookies[i];
    System.out.println(cooky + " = " + wc.getCookieValue(cooky));
    resp = wc.getCurrentPage();
    System.out.println(resp.getText());
    catch (Exception e)
    e.printStackTrace();
    }{code}
    The error message is:
    {code}
    java.net.ConnectException: Connection timed out: connect
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         ...11 more
    Caused by: java.net.ConnectException: Connection timed out: connect
    ...9 more{code}

  • Cursor automatically jumps to end to text when clicking inside and online form

    When I type text in an online form like the one I am using to post this question and I want to go back and edit my text I click on the text/line I want to edit in the online form  but my cursor automatically jumps to the very end of the text. 
    Is there a setting I can change to stop this from happening?
    Thanks.

    the best way to test is to remove OnKeyUp="this.value=this.value.toUpperCase();"  and then check whether you still have the problem
    strange that the problem is there even when you replace OnKeyUp with onChange because the function should not be executed until the change is complete. also replace OnKeyUp with onBlur
    share the results

  • Secure Acrobat online form?

    There's a form that I want to offer to people online for them to be able to fill out and send back to me. At least as a short term solution, I do not have the option of setting up a normal online form (html, cgi, etc.), so I want to use pdf files that the users can open in Acrobat Reader. (I'm using Acrobat 9, btw.) Unfortunately, I also need the form info that they type in to be returned to me in a secure fashion.
    The problem that I'm running into is that, putting a "Submit" button into the form does not seem to offer a secure option. I know that I have the option to distribute through Acrobat.com, but I'm not actively sending this form to people; I'm making it available to them through my website, and I don't see a way to do that and use Acrobat.com as the return method.
    So...is there a way for me to make a pdf form available on my website (using Acrobat 9), that people can then open on their computer, fill out, and send back to me securely?
    Thanks very much for anything you know about this.

    Thanks for your reply Liam.
    That's fine for a login form.
    Working on a form that has 6 secure zone options for 3 currencies with recurring and non-recurring payment option for each currency.
    The customer would like to try use Google Analytics ecommerce tracking within the thankyou page but I need the invoice ID/order ID and amount to render on the confirmation page.
    When going to the standard webform confirmation page, the invoice number is rendered and so can be picked up, however BC is redirecting to the start page for the secure zone that was selected to allow for payment to be processed the way we need.
    I've tried various workarounds, One of which would be to substitute the Entity ID and Case ID for order/invoice numbers for tracking purposes and try to pass the amount in the url as a parameter and direct to a thankyou page where I could use {module_url,amount}, {module_url,CID} and {module_url,EID} however the form process redirecting seems to drop my additional parameter of amount.
    I'm running out of ideas so if you have any - would love to hear them

  • Need help with required fields for my online form

    Hi, I've been mucking around with my online form for a while
    and I just can't see what the problem is in the code.
    I am trying to make all but two of the form items to be
    required upon form validation. However, it doesn't work, nothing is
    required now.
    I'm using these two ways of doing it (natemail.php is my form
    handler).
    <form action="../NateMail.php" method="post"
    enctype="application/x-www-form-urlencoded" id="Man Meets Woman
    Long Form Opt-in"
    onsubmit="MM_validateFormMM_validateForm("date","first_name","last_name","alias","address ","city","prov_state","postal","country","phone","email","birthdate","Sex","marital_status ","other_forums","methods_known","want_learn","coaching","invite_friends","about_myself"," terms_conditions");return
    document.MM_returnValue">
    ...is one way and the other is:
    <input name="require" type="hidden" id="require"
    value="date,first_name,last_name,alias,address,city,prov_state,postal,country,phone,email ,birthdate,Sex,marital_status,other_forums,methods_known,want_learn,coaching,invite_friend s,about_myself,terms_conditions"
    />
    The page is
    http://www.vancouversocialboard.com/register.html
    Can anyone tell me my error and tell me the proper way to do
    this?
    Thank you!

    > (never did figure out what the 'MM_validateForm code was
    supposed to be)
    It's a call to a Dreamweaver javascript function that
    validates your form.
    The function definition should be in the head of the page.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "audio90" <[email protected]> wrote in
    message
    news:ghsljj$4ll$[email protected]..
    >
    quote:
    Originally posted by:
    Newsgroup User
    > On first glance, the problem seems to be that both the
    onsubmit event
    > and the JavaScript function inside are encapsulated with
    double quotes.
    > Try wrapping the onsubmit attribute/event in single
    quotes instead, like:
    >
    >
    >
    onsubmit='MM_validateFormMM_validateForm("date","first_name","last_name","alias"
    >
    ,"address","city","prov_state","postal","country","phone","email","birthdate","S
    >
    ex","marital_status","other_forums","methods_known","want_learn","coaching","inv
    > ite_friends","about_myself","terms_conditions");return
    > document.MM_returnValue'
    >
    >
    > [snip]
    >
    >
    >
    > No, it didn't work. But I solved it to be acceptable. I
    removed the
    > 'MM_validateForm and used the Natemail action. My
    mistake there was that I
    > put
    > "require" rather than "required". It comes up with a
    different screen when
    > form
    > items are missing, rather than a pop up video, but good
    enough.
    >
    > thanks
    >
    > (never did figure out what the 'MM_validateForm code was
    supposed to be)
    >
    >
    >

  • I have completed an online form and am trying to send it to the organization. When I say submit, it tries to connect to File:///C/users/Gail/Downloads and not to the organisations site

    I have completed an online form and am trying to send it to the organization. When I say submit, it tries to connect to File:///C/users/Gail/Downloads and not to the organisations site

    There's nothing you can do about it. Report the problem to the organization. They need to fix it and send you a new version of the PDF.

  • Online submission problem

    in all of my apple devices (macbook pro, iPhone, iPad) there is a problem; while I try to submit any online form. The 'submit' or 'continue' button is disabled but the 'cancel' button works! does anybody know the problem? and any solution? for the same internet these things work promptly in android and pcs!

    Some web pages are defective and don't work in Safari. Try another browser, such as Firefox.

  • Is there a save function for online forms?

    Hi, I've created an online form which requests quite a lot of information from those who it is sent to.  Because of its size, I have made use of the skip logic rules to so that users can quickly skip sections that don't apply to them.  Notwithstanding this, the form asks questions which users may need to reseach and come back to so it wouldbe really useful if the form had a save function.  Does anyone know if such a function exists and if not, whether there are there imminent plans to develope one?
    If not, regreattably I will have to try and find another solution for online information gather that has a save and return function.

    hi randy
    I wholely support the request for a save feature for online forms, any idea of an ETA for this?
    Also to expand on this- the ability to print the  web form would be brillant.
    a few options for the  web forms submit to print, save.
    Web forms after/before  submission maybe to save as a pdf locally -  which then could be printed out.

  • "Access Denied" pop up error while opening adobe online form in IE8.

    "Access Denied" pop up error while opening adobe online form in IE8. I use crosslink to connect to client network and then open IE with App Tunnel. Tried to re-install Acrobat reader multiple times but issue still persist. Even tried to change the PDF properties (Edit-> Preference- General/Internet/Security Enhanced)

    Hello Adobe technical Team,
    I am struggling to fix the issue. Tried a lot of combinations to manipulate PDF preference, browser setting but failed to fix the issue. Can someone please look into the details and advise? Thanks in advance for any help.input.

  • Online form... is there a way to do this?

    My company's website has been using formGenie for several years to process our online forms.
    http://www.form-genie.com
    I initially began using their script to process our online application located here:
    http://www.escswa.org/Application.pdf
    formGenie solved my issue several years ago, in that it allows you to create a form, then using a few hidden fields and a simple script file, you can transmit the form to an email address where it will open the information back up in the same online pdf form so that it looks like the "filled out form" on the receiving end as well. This worked well for my employer who just wanted to be able to print the online application once she got it (and wanted it to look like our application instead of a string of data).
    In the past couple of years we have started having issues with the form. Our biggest is that people on Mac computers can't submit the form most of the time. I am needing to create a lot of forms this month and wanted to see if there are other options available now. I use CS3... is there a way that I can create and process my own form online - so that it will visually look like the actual form when received by an email address and opened?
    Andi

    When you create a form in FormsCentral you can set up the option to recieve email notifications (with the option to include the responses in the email).  You can save/distribute the form as a PDF and when the user clicks the "Submit" button the data is collected in FormsCentral and the notification is sent to you. 
    If you wanted to have the actual PDF emailed to you that is not currently supported using the FormsCentral data collection PDF but you could create the form in FormsCentral and save a PDF that is not enabled to collect data (from the Design Tab clicking "File - Save as PDF form" will save a PDF without the Submit button) you could then modify the PDF in Acrobat adding your own Submit button that would email the PDF back to you.
    Thanks,
    Josh

  • I have a online form created with my paid account that has just stopped working.

    I have a online form created with my paid account that has been working for months that just started displaying a message that starts "This form was easily created for FREE with FormsCentral. See how..." The inline frame that it shows up in has also changed to be very small. The form is set to open in FormsCentral and shows the message and inline frame size when I choose preview. What's up?

    Checked when I got back in to work today and everything is working as it should. All of our online forms were screwed up yesterday, but are working this morning. I know this won't help anyone in the future, but just wanted to follow-up.

Maybe you are looking for

  • HP Photosmart Printer-cannot get the apps to work with a USB hook up

    I purchased a HP Photosmart Printer C310 and hooked it up to a USB, not wireless. The apps on the printer will not work, says it has to be on wireless for those features to work. When I purchased it the guy said I could use those apps even if it was

  • ITunes stop interacting with Windows - freezing and needs to be closed down

    The error message is: Description A problem caused this program to stop interacting with Windows. Problem signature Problem Event Name: AppHangB1 Application Name: iTunes.exe Application Version: 7.6.2.9 Application Timestamp: 47efc82f Hang Signature

  • PPV Purchase Price Variance - PeopleSoft

    What is the minimum that a purchase price variance will update an item? We have several items that are priced in the 10th and 100th of a penny for large volume items.

  • Flashing sleep light

    Can't get my 15" MBP to run (just get a blue screen). Can anybody tell me what it indicates when the sleep light flashes 3 times quickly repeatedly with the screen open?

  • Tab between panels in develop

    This is my third (and last) request (in no particular order) related to better keyboard navigation in the develop module (see also Snap exposure adjustment to round number and Use Tab to move between adjustment brush settings). My preferred way to wo