Location of LiveCycle example programs on the server?

Hi,
Our team needs to know the location of the xml files that represent the underlying data and design of the samples that are provided with the LiveCycle ES product. The product is using WebLogic as a hosting app server. Any help would be greatly appreciated!

Hi
The output file is stored in $APPLCSF/$APPLOUT
Go to this location and search for file names with your request id. You would find the excel file and the xml output file.
eg:
ls * <<your_req_id>> *
Regards
Nishka
Edited by: Nishka K S on Aug 11, 2010 3:19 AM
Edited by: Nishka K S on Aug 11, 2010 3:19 AM

Similar Messages

  • When I type in a location for an object, Edge Animate keeps changing the location. For example, I enter the x-coordinate as 97 and it changes to 94. What's going on??

    When I type in a location for an object, Edge Animate keeps changing the location. For example, I enter the x-coordinate as 97 and it changes to 94. What's going on??
    I'm trying to put the object starting location very precisely and it won't let me.

    With those specs, I'm surprised that it runs at all.
    What kind of PC to use?

  • Are there any example programs on the web

    Can anyone give a site where i can look at example programs in java, so i can see how certain classes etc... are used
    Ive found some but they are not very good for a beginer like me
    Any help would be much appriciated
    Thanks.....

    The java tutorial has a million examples:
    http://java.sun.com/docs/books/tutorial/
    Mike

  • Executing a program when the server starts

    I have developed a chat program and to run it I have type "java ChatManager".
    Is there a way where this program can start automatically when I start the tomcat.
    Regards,
    Sharad

    The chat application is a java file. I need to keep it running so that I can use it in my applet. The problem is after I start the tomcat, I have start the chat application and for this I open a new window and type "java ChatManager". Once this is done I can start using the chat applet. Is there a way, where the chat application starts automatically when the tomcat starts. Do I need to add something in the server.xml file for this.
    Regards,
    Sharad

  • Calling a remote program on the server from the client

    Hi, I'm new to Java/Jdeveloper/Oracle I'm writing a small app in
    Jdeveloper 3.2 running on Windows that connects to an Oracle
    8.1.6 on a Redhat Linux. I have a few programs writen in C that
    run on the server, and would like to call them from the client
    machine with a few parameters. is there a way of doing that?
    it's just like calling "ls -la filename" from the remote
    client. BTW, I don't need to get a response from the server, I
    just need to initiate the call.
    Thanks for any help.
    John

    JDeveloper is an IDE not a platform. what sort of app are you
    writing: client server application, applet, JSP?
    APC

  • Putting java programs to the server

    Is there any fast way/tutorial to put a java application to the server for multi users?
    Can it be done easily by using Eclipse?
    Can any one help me please?
    Thank you.

    It's silly to say that I'm very new to Java and Eclipse.
    Actually, I've done a project to update data for a company, and I need to find a way to put it into the company server. This program using Swing to show a GUI and allow one user update data at a time. Then data will be saved to file(configuration file), therefore, only one user can do it at a time.
    Please help me for any quick tutorial or sample codes which are similar to my job.
    Thank you.

  • How to find the location of controller class file on the server

    Hi OAF Experts,
    We have a extended controller in which we are making some changes. We have compiled the java file.
    Now we want to deploy the .class file on the server. When we search on the server where we need to deploy the class file, we find two to three paths. Is there a way from which we can decide which path is actually referred ?
    Is there a front end page available from where we will be gettng these details??
    Regards
    Samarth

    Hi,
    You can get the complete path from front end.
    On 'About this Page', there is a section for 'Business Components'. When you expand that, you can see all the controllers used with complete path.
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to find out the hard coded Z program in my server

    Hi,
    I have more than 5000 program in the server in that i need to find out how many programs being hardcoded by developer . If hardcoded what feild they hardcoded Like BUKRS , WERKS like that.
    Is there any standard program to find out ? Please let me know.
    Thanks !
    Regards,
    Nallu

    So many Utilities are there in SAP to find it out a particular string.
    Experiment all and choose more appropriate one for your requirement.
    Program Name : RPR_ABAP_SOURCE_SCAN - Search for a particular string
    Program Name : AFX_CODE_SCANNER - Scans Report/Funct. Group/Class Code
    Transcation code : EWK1 - Cust.Development: Curr.in Report Txt
    Program Name : RKCTSEAR - String search in Programs
    Program Name : RSRSCAN1 - Find a String in a ABAP program
    Even you can use code inspector also

  • Opening Output Stream to a file on the server from Applet

    Hi,
    I am trying to write a little applet which parses a file found on the server , lets the user select some Strings then write the selected Strings to a different file on the server. I use the following code:
    String fileName = new String("LineUp");
    URL docBase = null;
    URLConnection conn = null;
    try {
    docBase = new URL(ApppletName.codeBase, fileName);
    } catch (java.net.MalformedURLException e) {
    System.out.println("Couldn't create image: "
    + "badly specified URL");
    try {
    conn = docBase.openConnection();
    } catch(IOException e) {System.out.println(e);}
    String playerString;
    try {
    conn.setAllowUserInteraction(true);
    conn.setDoOutput(true);
    conn.connect();
    PrintWriter out = new PrintWriter(
    conn.getOutputStream());
    etc..
    The problem I am having is that the getOutputStream routine for the connection object does nothing other than throw an exception (I've stepped through the code and that is all the routine actually does). The connection is actually made but no output stream can be created. I have looked at the Java Tutorial (as I am fairly new to Java) and found a spot where they tell you how to write to a file on the server, which is the example I have followed. Any suggestions? What am I missing?

    Yes, that's what I thought. It talks about writing to a URL, and you have interpreted "URL" as if it meant "file". A URL is a "Uniform Resource Locator", which is a string that identifies a "resource" on the server. Often that corresponds to a file on the server, but not always. It could be a page that is dynamically generated by a script on the server.
    Look again at that page and you will see these words: "At the other end, a cgi-bin script (usually) on the server receives the data, processes it, and then sends you a response, usually in the form of a new HTML page." What that means is, you can't just upload a file to a URL unless you have programmed the server to deal with that upload. That's part of the basic design of the HTTP protocol.
    So, unfortunately, you can't do what you want all that easily. You would have to provide some programming at the server to handle the file upload for you. In Java that means writing a servlet and getting the web server to have that servlet handle all requests to a particular URL. I suspect you don't want to get into that just yet. But if you do, any decent book on Java servlets should have an example of how to upload files like this.

  • Step By Step creation of Smartform in ECC6.0 with example program.

    Hi,
    Can anyone give me the steps to create smartforms in ECC6.0 with example program call the function module created by form.
    Regards,
    Chandru

    Hi   Chandra Prakash,
    Go through the following Links, here u can find example with step
    by step.
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    http://sap.niraj.tripod.com/id67.html
    Check these step-by-step links
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/ccab6730-0501-0010-ee84-de050a6cc287
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292e
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/3c5d9ae3-0501-0010-0090-bdfb2d458985
    Check these links also.
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    for Smartforms material
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    Regards,
    Eshwar.

  • C++ program in J2EE server

    My system has
    * One large C++ program exists. I like to use it within the J2EE server or Apache server without much modification.
    * The client will input some data via GUI or Webpage(JSP). Then the data will be transferred to the Server for process. C++ program on the server will be executed or called during the process. The result of the C++ program will be used for the following Java program in the server.
    My Question is:
    * Can I use the following line
    Runtime.getRuntime.exec (MY_C++exefile_name) ;
    to run the C++ program on the server? If possible, how can I return results of the C++ to the Java program?
    * If not possible, what is technology I can integrate C++ codes in the Java Environment?
    JNI or CORBA may be options, but I have no experience in that. Which may be simpler?
    How long could I to finish this? Could you give me some suggestions?
    Thank you very much!

    your class must call the program and to redirect the standard input, output and error streams.
    //test.exe is name program
    String nomePgm = "test";
    String comando = "a command";
    Runtime rt = null;
    String param[] = null;
    Process p = null;
    // invoca il programma c
    try{
    rt = Runtime.getRuntime();
    p = rt.exec(nomePgm, param);
    }catch(IOException e){
         System.err.println("errore "+ e.toString());
    //ok processo creato
    try{
    // si aggancia verso lo standard input stream del programma
    OutputStream os = p.getOutputStream();
    OutputStreamWriter osw = new OutputStreamWriter(os);
    BufferedWriter bw = new BufferedWriter(osw);
    // si aggancia verso lo standard output stream del programma
    InputStream is = p.getInputStream();
    InputStreamReader isr = new InputStreamReader(is);
    BufferedReader br = new BufferedReader(isr);
    // si aggancia verso lo standard error stream dal programma
    InputStream es = p.getErrorStream();
    InputStreamReader esr = new InputStreamReader(es);
    BufferedReader ber = new BufferedReader(esr);
    //scrive verso il programma (invia comando)
    bw.write(comando);
    bw.flush();
    // legge l'output dal programma
    // e lo stampa
    String s;
    while ((s = br.readLine()) != null) {
         //il processo puo' ritornare un intero.
         if(s!=null) risp = Integer.parseInt(s);
    // legge l'error stream dal programma
    // e lo stampa
    String er;
    while ((er = ber.readLine()) != null) {
         System.out.println("errore "+ er);
    br.close();
    bw.close();
    ber.close();
    }catch(IOException e){
         p.destroy();
    System.err.println("errore "+ e.toString());
    program c: test.exe
    sintassi:
    %d      Dati di tipo int
    %lf      Dati di tipo double
    %c      Dati di tipo char
    %s      Dati di tipo string
    int main()
    int risp;
    char inputData[256];
    scanf("%s", &inputData); //data from java class
    printf("%d\n", risp); //data sent to java class

  • Example program forces front panel screen size

    I am somewhat of a novice at LabView programming.  I used an example program as the starting point.  I expanded the front panel, added buttons and displays, and added code to do additional things.  But when the program gets to the example code, it forces the front panel screen down to its original (example) size.  The help messages talk about going to File > VI properties > screen size but none of the settings solve the problem.  The code that I wrote starts with a full screen front panel and runs fine until the program gets to the example code then the front panel shrinks.  There must be something in that portion of the code that is setting the properties.  Anyone know what is happening?

    Hi Gary,
    Anyone know what is happening?
    You already answered that on your own:
    There must be something in that portion of the code that is setting the properties.
    All you have to do is find that part of code!
    Start searching using breakpoints and step-by-step execution (aka basic debugging techniques)…
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • SWF to play mp3 files located on the server

    Hello,
    Does anyone know if it is possible to create an SWF file that can play mp3 files directly from the server, without the need for a streaming media server or external JS.
    And also for the application to read the current directory its located in and build a playlist based on the files inside.
    any information of examples would be greatly appreciated.
    Peter.

    As for loading and playing the files there is no issue.  Simply load them as you would load any file.  You can even use a relative path if they are in the same folder as the SWF, or a sub-folder that is in the folder with the SWF.
    As for looking at the server directory for what files are there, and using them - I know of no way to do this.  That doesn't mean it is impossible, just that I haven't come across a method in my experience.
    What I typically do is to archive the list of files in an XML file, and load the XML.  I know, that adds an extra step, and an extra file, but it is the easiest method for approximating what you want to do.
    Let me edit this response.
    You could use javascript, or a server language to grab the list of files in the directory and pass it into Flash via the ExternalInterface classes.

  • My Mail program has gone south on Leopard on my 27-month old Macbook. I can't send, even though the server details are correct. I tried reinstalling from the install DVD - but no go: no longer compatible, evidently.. What to do?

    My Mail program has gone south on Leopard on my 27-month old Macbook. I can't send, even though the server details are correct. I tried reinstalling the Mail program from the install DVD, but no go; apparently that two-year old Mail is no longer compatible with my up-to-date Leopard. I tried deleting the account (hotmail) from Mail and setting up a different account (Yahoo). After loading all the inbox two things happened: first, I still couldn't send, and second, when I closed the Mail window the whole inbox then disappeared and doesn't come back. Although I couldn't reinstall the Mail program from the install DVD, would it still be possible to reinstall the whole system from that DVD? If I do, will I lose files or will there be another problem since that DVD is now over two years old?
    Thanks for any suggestions; they will be much appreciated.
    P.S. I've just noticed that now I can't change the desktop picture: I go through the motions in Preferences, but the new picture doesn't appear on the desktop. Is there a systemic problem?

    You are waiting for an apology to something that happened over a year ago? Really? This is why there is a manager in the store. You have a problem with an employee you speak to the manager. Just like you did on the phone. You would have gotten your apology in July 2013.
    Here is the information about your upgrade fee.
    Upgrade Fee
    It is because when you have a problem you (customers) go running to the store and want to take up the time of the reps to fix it. Other carriers have third parties that deal with technical support and those locations are few and far between. VZW provides this directly through their stores. Also, when you subsidize a $650 and pay $200 VZW has to pay $400. Your monthly service fee doesn't begin to scratch the surface of paying that back. Not with all the money that is put into the network and its improvements.
    Then over a year later you get someone on the phone who apologized and offered to waive the fee on your phone and you didn't take it? That offer won't come down the pike again.
    One thing you should know is that all these employees are people and as such they sometimes come off cross. I doubt that you speak to everyone so sweetly all the time. Cut them a little slack and put this whole thing behind you after 15 months. Either upgrade with VZW or move on.

  • The query locator has timed out on the server side.

    Hi
    I am getting the error:The query locator has timed out on the server side.
    What to do now?
    AG

    Hi
    Are you using Salesforce.com for creating reports?
    When joining large-sized tables, you may run into a query locator time out
    error. The query locator is a server-side cursor generated by Salesforce.com
    and is used to navigate the query result. It will automatically expire in 15
    minutes without any activity.
    In the case of joining two tables, the report processing engine will read one
    table partly, and then it will process the other table. If the processing time is
    longer than 15 minutes, the Crystal Reports Salesforce.com Driver will try to
    read the rest of the records in the first table and the cursor in that query will
    time out. In the case of joining multiple tables, the chance of running into a
    query locator time issue is higher as the report processing engine might have
    to return to handle the first table after finishing processing other tables,
    increasing the possibility of a query locator time out error in the first table.
    If you run into query locator time out issue, we recommend that you add
    filters into your report to reduce the amount of records you fetch from
    Salesforce.com.
    However, if that is not possible, you can try to reverse the link order in the
    case of joining two tables. For example, you linked table A to table B, then
    you can try to link table B to table A.
    Hope this helps!!
    Regards
    Sourashree

Maybe you are looking for

  • Run windows 7 on external hard drive?

    I'm purchasing a MAC mini to replace my G4 and PC. I would like to have Windows available for several applications (mainly for the kids) and am wondering if I could install windows on an external hard drive and run it through the Mini. I really don't

  • S405 dim display

    Hi folks.  Bought laptop new with windows 8 for use in a school district I don't have the resources to support 8 right now, so I went to load windows 7. Windows 8 display was bright The setup when loading windows 7 was bright as well.  All going ok.

  • OBIA - Global Currency Code

    I have a question regarding the following parameters for OBIA: $$GLOBAL1_CURR_CODE $$GLOBAL2_CURR_CODE $$GLOBAL3_CURR_CODE In the Configuration guide, it specifically states the following: $$GLOBAL1_CURR_CODE is for Document Currency $$GLOBAL2_CURR_C

  • RBKP and BKPF table update from MIRO

    Hi All, I am using the BADI BADI_FDCB_SUBBAS01 to add a custom field in MIRO transaction. The added custom field is getting updated in RBKP transaction. I also want to update the custom field data in BKPF table, but i dont know when the BKPF table ge

  • PrE8 Will not uninstall/reinstall

    I put in a new drive and formatted the partition PE was on (trying to reduce partitions and add physical drives), failed to uninstall programs thinking they would just reinstall over into the new drive.  Every time I run the installer, it says I am t