How to update the HTML file so that we can Control our process in real time

After installing following three steps as per the lookout 4 online help I am unable to Monitor and control the Process in HTML format, which was exported manually in lookout server.
1) Creating a Web Client Page in Lookout
2) Download a Lookout Web Client
3) Setting Up Own Web Server
My browser shows only the instance, which I have uploaded manually without any update
Problem: How to automatically update/refresh the HTML file so that we can Monitor/Control our process in real time/bi-directional mode.

Hi,
It seems like your process is not updating. When you create a Web Client, it uses ActiveX which lets you control the Lookout process fully. Make sure that you run the process. You can do this by pressing CTRL+Spacebar which puts it in Run-mode. Perhaps then you may see your graphs, etc updating.
Also, please refer to page 11-1 of the Users Manual linked below:
http://www.ni.com/pdf/manuals/322390a.pdf
What kind of Web Server are you using? Make sure all the settings in it are done properly. If you have LabVIEW, you can use the LabVIEW Web Server.
Hope this information is helpful. Please let us know if you have any further questions.
Regards,
A Saha
Applications Engineer
National Instruments
Anu Saha
Academic Product Marketing Engineer
National Instruments

Similar Messages

  • How to embed the html file into form 6i?

    How to embed the html file into form. What control activeX should i use? please help!!!!!!

    You can use web.show_document function for this purpose. See
    form builder help topics for more details.
    Hope this helps.

  • Can AnyOne Please Tellme How to configure the HTML files

    This is very Urgent.
    1.I am using the WLS7.0 sp1 .I need to configure theHTML files which are in a
    different path how can I map them to the present DefaultWebAPP directory.
    2. How can I get rid of the port number when I am fully using in production mode.
    I have been posting this query since long but in vain. Please guide me

    1. I got rid of port number with link provided by the karthik.
    2.How can I create a link .The link appends to the defaultwebapp directory
    and checks from their .I need to know how to configure the
    HTML files which are not in the DefaultWebApp.But completely in directory.
    Any suggestions !!!!!!!
    Shehzad <[email protected]> wrote:
    1. You can create a link to that directory
    2. In order to get rid of port number, either boot weblogic at default
    port 80, or use Apache or Iplanet webserver, and use Weblogic plugin.
    That way all the traffic comming in from http will comein at port 80
    to the webserver, and would then be forwarded to Weblogic at whatever
    port it is booted.
    This is very Urgent.
    1.I am using the WLS7.0 sp1 .I need to configure theHTML files whichare in a
    different path how can I map them to the present DefaultWebAPP directory.
    2. How can I get rid of the port number when I am fully using in productionmode.
    I have been posting this query since long but in vain. Please guideme

  • How to limit the number of items that a list control can hold?

    Hi,
    I am using a Flex3 List control for one of my projects.
    I add drag & drop functionality to it, so that i can drag & drop elements from one control to another.
    How to limit the number of items that a list control can hold / can be dropped in a list control ?
    - Sen.

    1. Listen for the dragdrop event on the control you are dragging onto.
    2. check the length of the items in the dataprovider - if it exceeds your maximum override the default drop action with e.preventDefault(); (assuming you used e for the event on the handler).
    Regards,
    Mark.

  • How to mail the html file using javamail????

    hi
    i have captured the output of a jsp page in a html file....
    now i wish to send it in the mail ( *** not as an attachment)
    ie
    i wish the output of the jsp ie the html file to be displayed in
    the message box (ie text area) ..... and then when recieved by the
    receipient it shoud be displayed in the message area....
    is there any way to do this ........

    well as said by my fellow poster googling could have given you quick results.
    Anyways,if you are unable to do so checkout the below code snippet.
    SendMail.java:
    ===========
    import java.io.File;
    import java.io.FileReader;
    import java.io.BufferedReader;
    import java.util.Properties;
    import javax.mail.Session;
    import javax.mail.Message;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;  
    import javax.mail.internet.MimeMessage;
    import javax.activation.*;
    * @Author RaHuL
    * uses SMTP to send Email.
    public class SendMail {
        /** Method used to read contents of html/text/XML file */
        public String readFile(String fileName){
           StringBuffer sb = new StringBuffer();
           BufferedReader input = null;
           try{
               input = new BufferedReader(new FileReader(fileName));
               String str = null;
               while ((str = input.readLine()) != null){    
                      sb.append(line);
           }catch(Exception exp){
               exp.printStackTrace();
           }finally{
                  try {
                        if (input!= null)  
                          input.close(); 
                   }catch (Exception ex) {
                         ex.printStackTrace();
           return sb.toString();
        /** Send an HTML Email with the specific subject to specfic toAddress based on specified fromAddress & Smtp Hostname
          * and returns true on success.
        public boolean sendMail(String toAddress,String fromAddress,String hostName,String subject,String htmlMessage,String contentType) {
           boolean flag = false;    
            try {
                 String to = toAddress;
                 String from = fromAddress;     
                 String host = hostName;
                 // Setting Mail properties
                 Properties props = new Properties();
                 props.put("mail.smtp.host",host);
                 props.put("mail.debug","true");
                 // Getting a New Instance Generated by the API
                 Session session = Session.getInstance(props);
                   NOTE: a Mail Session could be configured and could be got from the Container via JNDI
                         which could be a better practise.
                // Instantiate a message
                Message msg = new MimeMessage(session);
                //Set message attributes
                msg.setFrom(new InternetAddress(from));
                InternetAddress[] address = {new InternetAddress(to)};
                msg.setRecipients(Message.RecipientType.TO, address);
                // Setting Subject Type
                msg.setSubject(subject);
                msg.setSentDate(new Date());
                // Setting Content Type
                msg.setContent(contentType);
                // Set message content
                msg.setText(htmlMessage);
                //Send the message
                Transport.send(msg);
                flag = true;
            }catch (Exception mex) {
             // Prints all nested (chained) exceptions as well
                mex.printStackTrace();
         return flag;
        public static void main(String args[]){
            SendMail sm = new SendMail();
            String htmlMessage = sm.readFile("myHtmlFile.html");
            boolean flag = sm.sendMail("[email protected]","[email protected]","your.smtp.server","EMail SubJect",htmlMessage,"text/html");
            if(flag)
              System.out.println("MAIL SENT SUCCEFULLY");
             else
              System.out.println("MAIL SENDING FAILURE");                          
    }NOTE:
    =====
    Make sure you inculde javamail & java activation libraries.
    Hope that might help :)
    REGARDS,
    RaHuL

  • How to display the HTML File Titles instead of File Names

    Hello All,
    I want to display the HTML file titles instead of File names in the Search Results. I've tried to give this command in the 'Visible Properties' in the 'SearchResourceRenderer' as:-
    Visible Properties: rnd:displayTitle
    However this is not working for me. If anyone has an idea of what to pass here or any other alternative to display the Titles.
    Regards
    Vaib

    Summary of steps:
    1) Standard Layout Set used: SearchResultLayoutSet
    2) Create a new layout set using ADVANCED COPY
    3) Change properties as you require
    4) Next modify the search OTH file to reflect this newly created Layout Set (under KM > root > etc > oth > search.oth edit xml file property rndLaoutSet from SearchResultLayoutSet to MyCustomSearchResultLayoutSet)
    5) Check in the document to complete the editing process if Edit Locally is used!
    6) Lastly, activate the OTH file by –
    •     Setting Debugging settings via Debugging Settings
    •     Performing a normal search
    •     Clicking Rendering information and then following link OTH Overview click on Reload
    7) Reload above reloads the OTH file and performing search again will yield the desired result
    8) To turn off the Rendering Information link remove the user id from Debugging Settings.
    Cheers
    Ankit

  • How to set the color scale so that we can get same color for same intensity of color in various runs

    Hi
    I am trying to get the color pattern of mashed potato trays and diferent trays has different color intensity but if IF i am chsooing rainbow plateu it's giveing red color for dark region of each tray but two tray has different intensity of dark color. Can you suugest me how should I set the color scale so that I can distinguish which tray has higher degree of intensity of darkness.
    I will be obliged to get the suggestions

    Hello,
    Thank you for contacting National Instruments. I just have a few questions for you to help us clarify your application:
    What API, such as LabVIEW or C, are you programming your application in?
    Are you using Vision, and if so what specific functions are you currently using?
    Is the lighting consistent and just the color of the trays changing?
    How are you displaying the image in your program? Are you using an Image Display control?/li>
    Depending on what functions you have available, then we may be able to work on finding a way to distinguish between the different intensities. If you could provide a little information to your application based on these questions then will be able to better understand and help you with your app
    lication.
    Regards,
    Michael
    Applications Engineer
    National Instruments

  • How do i make the pdf file so that people can fill in the blanks

    i converted a file i had into adobe but i need to know how to make it so that people can fill in the blanks only on the form without being able to change it

    If you have Acrobat, you add form fields. In Acrobat 11, you'd select: Tools > Forms > Edit
    When you do this it will ask if you want Acrobat to detect form fields for you. This is known as the Form Wizard and it will attempt to divine where it thinks form fields should go based on the content. It work fairly well sometimes, but you will often want to make refinements such as changing the types of fields, the field names, certain field properties, etc.
    You decline this automatic field generation and create them all yourself using the various tools available in form editing mode.
    More information is available in Acrobat's help and numerous tutorials at http://www.AcrobatUsers.com

  • HTML control has javascript errors: how to update the HTML control in AIR ?

    I have an AIR application (flex 4.6 or flex 4.7), using  AdobeAIR3.7 or AdobeAir4.0
    I use a HTML browser component
        <mx2:HTML id="browser" width="100%" height="100%">
    Problem is: when navigating to page, JS gives errors, whereas it works fine with firefox, chrome, ie or safari
    When I display the brower navigator.appVersion gives me :
        5.0 (windows;u;fr-FR) AppleWebkit/533.19.4(KHTML, like Gecko) AdobeAIR/3.7
        5.0 (windows;u;fr-FR) AppleWebkit/533.19.4(KHTML, like Gecko) AdobeAIR/4.0
    Maybe this is an OLD version : is there a way to UPDATE the internal browser used by Flex ?
    JS script I got in the AIR HTML (I don't get in normal browsers):
        ReferenceError: Can't find variable: Uint8Array
        TypeError: Result of expression 'messageHandler.on' [undefined] is not a function.

    You might be able to use StageWebView: StageWebView - Adobe ActionScript® 3 (AS3 ) API Reference
    Currently we're stuck between a very old embedded WebKit version used by HTMLLoader, and StageWebView which uses the system WebKit and doesn't allow for any DOM interaction. See here: How do you use AIR's WebKit/htmlloader?

  • How to update the Help Files

    Hi Team,
    I am in the process of creating a customized help file.
    In the All Projects Tab,under Help Menu can I go and replace the existing pdf downloads with the customized help files?.If yes ,then kindly let me know  the steps.
    Regards,
    Avinash

    You do this in the BP Setup of the BP in question.  So, if this BP lives in the All Projects shell, you could navigate to that shell and switch to Admin mode.  if it is in a Project under that shell, you can navigate to that project and switch to Admin mode.  Then, go to Setup > Business Process.  Open the desired BP and open the general BP setup. You should see a Help File field in the General tab. Remove the existing file and add a new file, as desired.
    This will add the file for that particular shell instance only, so if you want this to be the new help file for all instances of that shell, you can follow the procedure above for a shell template of that type, then update the shells.
    Sean

  • HOW DO I LOAD PDF FILES SO THAT I CAN READ THEM ON MY IPOD?

    I have books that I downloaded from Free Ebooks that are stored on my compuer as PDF files.  Can I import them directly into ITUNES and then to my IPOD?

    You can either email them to yourself and pick up the email in your iPod and open the PDF attachment, or transfer them to your iPod via these instructions:
    http://support.apple.com/kb/HT4094
    Regards.

  • How to I lock a file so that it can't be editored by someone else?

    I have done a large file for a sign and I don't want the sign company to be able to edit the file.  The image is 3m x 1m so it's a large file.

    Having the file saved as a Photoshop PDF would allow you to password lock the file for edits, yet still print it commercially.
    I have High Quality Print as a preset, but there is a Press Quality setting.

  • How do I convert mbox files so that I can read them?

    I have moved my old emails from Mail to my google drive to free up some space but still want to be able to access them and read attachments.  Would be great if anyone knows how to read or convert mbox files.  Or do you know of another way to archive emails?
    Thank you

    To import iMovie 6 projects, see iMovie Help here.
    http://help.apple.com/imovie/#mov39f853b1

  • Allright, I've updated the PATH file, but I still can't use 'javac'.

    Is there anything else I need to do to be able to compile a program?

    Try running javac from the directory where it is installed. For example, if you installed j2sdk into a directory named c:\j2sdk1.4.0, then javac will be in c:\j2sdk1.4.0\bin. Enter the command "cd c:\j2sdk1.4.0\bin" Then enter "javac" You should not get the "bad command" error - you should get a display of the command options for javac.

  • Dynamically updating an HTML file

    hello everyone,
    I have recently developed a simple web server and now wish to update it so that i can include my own tags. These tags will be recognised by my server applicaion using the java.util.regex .
    However when the app stumbles across one of my tags in the web page i want it to replace it with a displayable element. For example if i emmbed the tag <time> in the page i want it replaced with code that places the current time in the displayed page. I understand that i may need to actually update the HTML file, however the File class is only an analyser of files and as far as i can see the HTML class doesn't have a way of ammending / replacing tags or text.
    Does anyone know of a way i can go about this? any help would be much appreciated.
    Thanks in advance.

    Your web server is going to get "HTML" from a file somewhere on your server, transform it according to certain rules, and send the result on to the client who requested it.
    I wouldn't use regex for this. I would store XML files on your server and use XSLT to transform them according to your rules, then send the resulting HTML on to the client.
    PC&#178;

Maybe you are looking for

  • ABAP Client Proxy from ECC 6.0 to XI message irregular recieving

    Hi Gurus Any one has come across issue whereby the ECC 6 system trigger ABAP Client proxy to SAP PI 7.0. The first time the PI is able to recieve it in the SXI_MONITOR. But subsequent trigger from the ECC 6.0 system the SAP ABAP program to trigger th

  • IMac troubles

    I have an Intel-Based iMac running OS 10.4.11 Tiger. Although most things seem to work normally, any attempt to load OS 10.5 Leopard results in the error code, "System X cannot be installed on this computer." Yet System X is obviously already install

  • Same item used in different pages & for different tables

    Hi, i created some items, which work like a filter for my tables. I've got a lot of tables and the items have always the same function. They filter the same column but they're used for different tables! If i want to copy 1 item to another page, it's

  • Hyperion Business Rules Restore

    Hi, I've Oracle EPM 11.1.2.1 installed on AIX 6.1 server. The Oracle EPM server crash. I've only a backup of Database schemas. Can I restore HBR? Only a database backup is enough to restore it? Into the EAS schema i can see the Business Rules descrip

  • How can I transfer my photoshop elements information (catalog, etc.) from Windows to Mac

    I have been using photoshop elements for year. I'm currently using version 11 on Windows 7. I'm considering switching to a Mac and getting version 12 there. But before I do that, I want to make sure that there is a way to convert or transfer the cata