Delay in opening and submitting a form

We have a form which is deployed on two servers. From the test server it behaves normally and can be opened and submitted in reasonable time. But on the production server, it sometimes takes time to open the form and during submission. Delay in opening of the form is not consistent. It opens without much delay on most machines most of the time while slow during some times. While submitting the forms causes a delay and in the status bar We see the message connecting to mofbl02 (mofbl02 is the server name).
The form calls .Net webservices on loading. But there are no calls, only some validation on submission.
We are using Adobe LiveCycle Workflow Server version 7.x and Adobe Reader version 7.0.9.

Hi Im new to Adobe live cycle. we were having some forms which need to be developed and put on the net. some of them are static and some are interactive.i heard live cycle is the best solution these days and we need to use adobe live cycle forms and work flows.
are work flows needed and why?
what should be the environment that is least required to have adobe livecycle set up?
please reply to me on [email protected]
thanks in advance
sravya

Similar Messages

  • My iPhone 4S locked to Tmobile so I contacted to Tmobile and submitted unlocking form, but I got a replied said my IMEI number was not recognized. So I tried second and third time submitted the form and got same reply.

    My iPhone 4S locked to Tmobile so I contacted to Tmobile and submitted unlocking form, but I got a replied said my IMEI number was not recognized. So I tried second and third time submitted the form and got same reply.  I've been using same handset they issued to and never changed. But I have know idea why they said they don't recognised my IMEI number. Can anyone help me to solve this issue. Thanks

    You need to call T-Mobile or visit a T-Mobile retail store.

  • Application exits after opening and closing two forms

    Hi,
    <<This message was also posted on the designer forum!>>
    During testing of a migrated application from 6.0 to 6i we found the following (webbased).
    Expected behavior:
    1 start application, startform opens;
    2 select sub-application, startform sub-application opens;
    3 select any form, form opens;
    4 close form, startform sub-application returns
    steps 3 to 4 can be performed many times.
    Real behavior:
    1 start application, startform opens;
    2 select sub-application, startform sub-application opens;
    3 select any form, form opens;
    4 close form, main startform returns
    (this means one level more is closed)
    If we now performs steps 2 to 4 the entire application exits, more or less random during any of the 3 steps.
    Can anyone explain why this is happening?
    Best regards,
    Pascal

    Frans,
    We use headstart version 50. We use the web version with a VMS db-server and a Tru-64 Unix IAS server. And we think that the latter one is part of the problem. Because all modules are ported to Unix a decision was made to use lowercase. Hence all references tot modules (forms, libraries, reports) should also be lowercase.
    We are currently checking if this is the case.
    Regards,
    Pascal

  • Application extis after opening and closing some forms

    Hi,
    During testing of a migrated application from 6.0 to 6i we found the following (webbased).
    Expected behavior:
    1 start application, startform opens;
    2 select sub-application, startform sub-application opens;
    3 select any form, form opens;
    4 close form, startform sub-application returns
    steps 3 to 4 can be performed many times.
    Real behavior:
    1 start application, startform opens;
    2 select sub-application, startform sub-application opens;
    3 select any form, form opens;
    4 close form, main startform returns
    (this means one level more is closed)
    If we now performs steps 2 to 4 the entire application exits, more or less random during any of the 3 steps.
    Can anyone explain why this is happening?
    Best regards,
    Pascal

    Frans,
    We use headstart version 50. We use the web version with a VMS db-server and a Tru-64 Unix IAS server. And we think that the latter one is part of the problem. Because all modules are ported to Unix a decision was made to use lowercase. Hence all references tot modules (forms, libraries, reports) should also be lowercase.
    We are currently checking if this is the case.
    Regards,
    Pascal

  • Opening and closing osk form java program on windows 8

    Hi
    I want to open Osk when ever I click on any text field in windows 8.
    I tried in below mentioned way to open and close but it is usefull. could some body help in opening and closing osk properly on windows 8
    Opening OSK:
    builder = new ProcessBuilder("cmd /c " + sysroot + " /System32/osk.exe");
    Closing Osk:
    Runtime.getRuntime().exec("taskkill /f /im osk.exe");

    Hello,
    It is odd that you are seeing a dialog saying it needs to be removed. Can you post a screenshot of that?
    If a particular update version is already installed, regardless of the build number in the case of EA builds, you will see a message saying that it is already installed, you can then continue or cancel.
    Why is it that you were trying to reinstall? As you called out the 64bit OS it may be the case that a 64bit JRE was installed and the JRE is not working in the 32 browser. I mention this as this is a common case.  Really only IE has a 64bit browser for Windows, Chrome and Firefox are do not provide production 64bit browsers and thus the 64bit plugin will not run in those browsers. Windows 8 as a bit more of a hurdle as Java must be run on the desktop rather then the start screen and the 32bit browser, as I recall, is the default.  Java.com will not provide the 64bit JRE unless a 64bit browser is being used for just this reason. Here are a few links that cover this:
    https://www.java.com/en/download/faq/java_win64bit.xml
    http://windows.microsoft.com/en-us/windows7/32-bit-and-64-bit-Windows-frequently-asked-questions
    You can obtain the 32bit JRE from https://www.java.com/en/download/manual.jsp
    To complete the uninstall there are some steps you can try this first:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall/en
    Only if the above does not work... registry changes, be careful, back up the registry!
    https://www.java.com/en/download/help/regkey_addremove.xml
    Cheers,
    Roger

  • Open and close a form

    Hello,
    I've created a from that is opened when a menu item is clicked.
    But when this form is closed, I cannot open it again when I click the menu item again.
    Does anyone have a working example of how to open a form created with screen painter. And what to do if I want to reopen the form.
    regards,
    John

    Use this example:
    ' Global Variables
    Dim oForm as As SAPbouiCOM.Form
    Private Function InitForm() As Boolean
    Dim oXmlDoc As New MSXML2.DOMDocument ' need the reference in Solution Explorer "MSXML2" a.E. installed MSXML6
    Dim creationPackage As SAPbouiCOM.FormCreationParams
    Try
         ' Form load and creation
         oXmlDoc.load("c:\xxx\Addon\forms\xyz.srf")
         If oXmlDoc.xml = "" Then
              Return False
         End If
         creationPackage = oApplication.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_FormCreationParams)
            creationPackage.UniqueID = "xxx_frm_123"
            creationPackage.FormType = "2000000001"
            creationPackage.BorderStyle = SAPbouiCOM.BoFormBorderStyle.fbs_Sizable
            creationPackage.XmlData = oXmlDoc.xml
            oForm = oApplication.Forms.AddEx(creationPackage)
            oForm.AutoManaged = True
            oForm.SupportedModes = SAPbouiCOM.BoAutoFormMode.afm_All
            oForm.Mode = SAPbouiCOM.BoFormMode.fm_OK_MODE
            Catch ex As Exception
                Return False
            End Try
    End Function
    Maybe you can use the Form.Visible Property to switch show and hide. The close-Property kills the instance and you have to reinitialize the Form.
    Best regards
    Jochen

  • Drop-down menus and submitting completed forms

    Hi,
      I have two questions:
    1)  On my form I have multiple drop-down menus.  Is there a way to allow the user to return the field to its original blank state once an item is selected from the menu?  I noticed that I could add a choice to the menu that is simply spaces and when that line is selected, the field returns to blank.
    Is there a better way?  To reset the form following a "mis-click" on one of those menus would be frustrating for the user.
    2) We would like to set the form up so that when the user is finished, they can click on a button and the form is saved in PDF form and also with the XML data.  In reading about LiveCycle, it seems to me that we need to send it to a URL or by e-mail, but we would like for the user to be able to save it to their own hard drive.  Do you have any suggestions?
    Thanks,
    Michael H

    This bug still occurs:
    How to Reproduce:
    1.Download:
    http://jqueryui.com/resources/download/jquery-ui-1.9.2.custom.zip (or any other version)
    2.Find the default example for sortable:
    jquery-ui-1.9.2.custom\ development-bundle\demos\sortable\default.html
    3. Replace first li item to (just to add a html select)
    <li class="ui-state-default"><select><option value="1">1</option><option value="2">2</option></select>Item 1</li>
    4. The dropdown options will not appear(as if the dropdown is disabled).

  • Can a confirmation email be automatically sent to a person who submits a form?

    I am setting up a job request PDF form for internal use at my company. The team who will be filling out and submitting this form on a recurring basis wants to know if there is a way they can receive a confirmation email after they submit the form, stating the details (date, time) etc of the form submission. As it is, they submit the form and the data goes 'into space' so to speak and they have no record of the form submission or the data inputted. I looked all over and could not find any information about a way to do this. The only other option is for me (the distributor) to manually email them each time I receive form data. Of course I don't want to do this so I'd like to know if there's a way to automate it.

    You will have to set up the form differently than what you get when you distribute it via the "Distribute Form" wizard, unless you can configure your email server to send out an automated response (e.g., a vacation notification response). If you want to go this route, it might be best to set up an account just for your forms and set the vacation response to what you want. You'd then use this email address when you use the distribution wizard. The email address it uses is configured by selecting: Edit > Preferences > Identity > Email address
    You can change it back after you've distributed the form.
    The alternative is to set up the form to submit to a web server, which processes the submission, extracts the user's email address from the form data, sends the notification, and does something with the XFDF. It could forward it on to you in another email.

  • In oracle Open Script (OATS) OracleEBS/Forms project all the elements or fields are being identified as web objects.

    In oracle Open Script (OATS), we have created an OracleEBS/Forms project. But when we try to record the script all the elements or fields are being identified as web objects. Due to this we are unable to use the functions like getText. Hence, please help.
    Example: The below line when executed gives an error " Failed to connect to the Oracle Forms applet after 90 seconds. Verify that the applet launching page opens, and that the Forms Startup Timeout setting is high enough for this site."
    forms.textField("/web:window[@index='0' or @title='Person']/web:document[@index='7' or @name='tabPage']/web:input_text[@id='PER_ID' or @name='PER_ID' or @index='0']").getText();
    We have already set the event timeouts in OpenScript Preferences -> Playback -> OracleEBS/Forms Functional as
    Forms startup time out = 90Sec
    Forms Action timeout = 120Sec
    Forms Response Timeout = 120 Sec.
    OpenScript
    Version: 12.4.0.1 Build 139

    If it is a name resolution I would try either replacing the server name in the script with the IP address or making an entry in the local host file of the machine trying to play back the script
    If you try one or both of those approaches does the script play back?

  • Submiting HTML Forms with JavaFX Webview

    I've long been searching for a good web robot framework. And I also need a gui for my robot.
    So w/ the advent of JAVAFX Webengine it seemed my needs have been met finally. Specially because on the webview tutorial here , Alla Redko says: "+It supports user interaction such as navigating links *and submitting HTML forms*+".
    But after looking at the api it doesn't seem that webengine supports submiting forms, only loading pages w/ the load() method. I guess I could populate the form fields and submit them w/ executeScript() but that's just sloppy.
    Is there a way to actually submit forms w/ webengine? Are there plans to implement this feature, analogous to the load() method?
    Thanks,
    JC

    Yea, as I mentioned in the first post, I could do all that w/ JS but it's just sloppy, since I'm using Java language, not JS.
    The finding certain fields part is easy w/ the Document model and xpath, it's the populating the fields and submiting the form along w/ its hidden input fields that is the missing part.
    Does anyone know if these things are planned for the future of Webview/Webengine?You can already do this in Java today using the existing APIs if you so wished.
    import javafx.application.Application;
    import javafx.beans.property.*;
    import javafx.beans.value.*;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.*;
    import javafx.scene.layout.*;
    import javafx.scene.web.*;
    import javafx.stage.Stage;
    import org.w3c.dom.*;
    import org.w3c.dom.html.*;
    public class WebViewFormPost extends Application {
      public static void main(String[] args) { launch(args); }
      @Override public void start(Stage stage) {
        final TextField fxUsername = new TextField();
        final TextField fxPassword = new PasswordField();
        final BooleanProperty loginAttempted = new SimpleBooleanProperty(false);
        final WebView webView = new WebView();
        final WebEngine engine = webView.getEngine();
        engine.documentProperty().addListener(new ChangeListener<Document>() {
          @Override public void changed(ObservableValue<? extends Document> ov, Document oldDoc, Document doc) {
            if (doc != null && !loginAttempted.get()) {
              if (doc.getElementsByTagName("form").getLength() > 0) {
                HTMLFormElement form = (HTMLFormElement) doc.getElementsByTagName("form").item(0);
                if ("/oam/server/sso/auth_cred_submit".equals(form.getAttribute("action"))) {
                  HTMLInputElement username = null;
                  HTMLInputElement password = null;
                  NodeList nodes = form.getElementsByTagName("input");
                  for (int i = 0; i < nodes.getLength(); i++) {
                    HTMLInputElement input = (HTMLInputElement) nodes.item(i);
                    switch (input.getName()) {
                      case "ssousername":
                        username = input;
                        break;
                      case "password":
                        password = input;
                        break;
                  if (username != null && password != null) {
                    loginAttempted.set(true);
                    username.setValue(fxUsername.getText());
                    password.setValue(fxPassword.getText());
                    form.submit();
                    System.out.println("Submitted login for user: " + username);
        engine.getLoadWorker().exceptionProperty().addListener(new ChangeListener<Throwable>() {
          @Override public void changed(ObservableValue<? extends Throwable> ov, Throwable oldException, Throwable exception) {
            System.out.println("Load Exception: " + exception);
        GridPane inputGrid = new GridPane();
        inputGrid.setHgap(10);
        inputGrid.setVgap(10);
        inputGrid.addRow(0, new Label("Username: "), fxUsername);
        inputGrid.addRow(0, new Label("Password: "), fxPassword);
        Button fxLoginButton = new Button("Login to Oracle Forums");
        fxLoginButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override public void handle(ActionEvent t) {
            if (notEmpty(fxPassword.getText()) && notEmpty(fxPassword.getText())) {
              loginAttempted.set(false);
              engine.load("https://forums.oracle.com/forums/login!withRedirect.jspa");
        final VBox layout = new VBox(10);
        layout.setStyle("-fx-background-color: cornsilk; -fx-padding: 10;");
        layout.getChildren().addAll(
          new Label("Enter your Oracle Web Account credentials"),
          inputGrid,
          fxLoginButton,
          webView
        stage.setScene(new Scene(layout));
        stage.show();
      private boolean notEmpty(String s) {
        return s != null && !"".equals(s);
    }Personally, I think using JavaScript via engine.executeScript calls in combination with jquery might be a less messy solution (as I don't like writing against the raw dom apis), but I understand that there are valid reasons why you might prefer to use a Java only solution.
    https://gist.github.com/jewelsea/3077942 "Embeds jQuery in a document loaded into a WebView."

  • How to set a customer type when submitting a form

    Hello! How do I set a customer's 'Customer Type' when they submit a form? In other words, I have a form on my website and if a user completes and submits that form, I would like that user to be given a specific Customer Type.
    TIA

    You cant yet.
    Soon though.
    The output for these via liquid will be available in the release later today and hopefully the form aspects will be in the new future.

  • Submitting PDF form data

    In the following discussion from last year: http://forums.adobe.com/thread/988633?tstart=0
    it's stated that the only type of submit form action that's supported is where the entire PDF is sent via email. This isn't really a submit though, it's just initiating an email and attaching the form. What I would like is to be able to set up a form to submit to a web server, either the entire PDF or just the form data. This is in fact allowed for PDF forms (Acroforms) that have been distributed through the FormsCentral service (which was added after that discussion linked to above), and when using the various desktop versions of course. The button action for a FormsCentral PDF form uses the submitForm JavaScript method and submits the form data as "HTML", but when I try to do the same thing with a form I create, it simply doesn't work. So either there's some proprietary magic that's enabled for use only with FormsCentral distributed forms, or everything I've tried is somehow wrong. Can anyone from the Reader development team or anyone else provide some clues?
    I noticed that when I replaced the URL in the submitForm statement in a FormsCentral-enabled PDF form, the form still submitted to FormsCentral, probably due to the metadata that's also set when a PDF is distributed via FormsCentral, so there is some sort of magic going on...
    Thanks!

    If the ability to submit is limited to FormsCentral-enabled forms, it would be interesting to know why such a restriction is in place. Reader for Win/Mac has been able to submit form data (as "HTML", FDF and later XFDF and PDF) since forms were first introduced with version 3. What is the justification for this restriction on iOS?

  • How to stop acrobat from submitting a form?

    I have a button with two actions on Mouse Up.
    - Run a javascript
    - Submit the form through HTTP
    The javascript action checks some required fields and sets the focus to them. If I find a required field, I CANNOT stop acrobat from moving to the next action and submitting the form. I tried "exit" with javascript but thats not the solution. I don't know good javascript so can someone point me to the right direction as to how to stop the form submission?
    Thanks

    Thanks try67. The line I used was this:
    this.submitForm({
        cURL: "http://www.snez.org/q/submit.php",
        cSubmitAs: "HTML"

  • Interactive form takes 10-15 minutes to open and exhausts system resources.

    The version of Livecycle designer am using is 7.1
    The interactive form that I designed is taking like 10-15 minutes to open and while its opening, its taking all the system resources as I see a prompt on the task bar besides time/date  "Virtual Memory Minimum Too Low".
    The tutorial project works fine, the TravelRequest.pdf opens just fine: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/user-interface-technology/wd%20java/wdjava%20archive/offline%20interactive%20pdf%20form%20using%20download.pdf
    Would installing version 8.0 solve this ?
    I am on NWDS sp18.
    Thanks
    Tony

    Hi,
    Refer to the following blogs which explains the steps to improve the performance.
    Offline Part u2013 I /people/sankar.narayana/blog/2008/12/23/dynamic-generation-of-offline-adobe-interactive-forms-for-sap-46c-and-ep-70-without-user-intervention-part-150-i
    Offline Part u2013 II /people/sankar.narayana/blog/2008/12/30/dynamic-generation-of-offline-adobe-interactive-forms-for-sap-46c-and-ep-70-without-user-interventionpart-ii
    Adobe Performance : /people/ramesh.kotagiri/blog/2008/12/30/sap146s-magic-solution-to-obtain-amazing-performance-of-dynamic-adobe-interactive-forms-using-zci-forms-zero-client-installation
    Installing the Adobe 8.0 also improves the performance.
    Thanks & Regards,
    Jhansi Miryala

  • How to open and navigate between human task forms in a same page?

    Hi
    I use Oracle BPM 11.1.1.5
    I have a question about taskflows in BPM Application.
    In ADF web application, I create a sipmle task flow and insert view id and bind these to jspx pages, my pages are opend in same page when
    return an outcome.
    For exapmle I have three pages like A,B,C.
    In task flow, insert three view ids and bind to A,B,C.
    My first pages is A, and when outcome is B navigate to B, when my outcome is C then navigate to C in a same page not separate pages.
    But my problem is here.. in BPM Application when create task forms, every task has a separate task flow that there exist a single view id and a wild card flow in it.
    In BPM workspace when initiate human task form is closed, I should press refresh button to see next human task form in task list table.
    I tried to create a simple task flow and insert human task forms in it and navigate between these.. but show human task form in wrong display and don`t show some component and human task payload.
    Now, my question : How to open and navigate between human task forms in a same page like software installation?

    Having a separate Data Control for each human task is normally the case. There is a way to assign multiple human tasks to a single data control (and one task flow), but I don't think that this is going to help you with what I think you're trying to do.
    If your human task is called "EmployeeDetail", then you'd use the data control associated with this for the UI pages in the task flow diagram that is associated with this human task. For example, you might have a first page that has just the basic employee information - the fields (at least the ID field) would come from the EmployeeDetail data control. When the end user clicks "Next", you might have this UI page flow to a second UI page in the task flow diagram that has the employee's address information. You might place the address fields from the EmployeeDetail data control onto this second UI page.
    You might be asking how the work item instance can automatically flow to the next interactive activity in the process while staying inside the first interactive activity's human task's task flow diagram. This is not how it works - the task flow diagram models the end user interaction while inside a single human task that is tied to a specific interactive activity in the process. If you want a the end user to be able to move the instance through multiple interactive activities in the process in one interaction, look at "Activity Guides". Activity Guides do a nice job of this.
    Dan

Maybe you are looking for