How can I login to a website from LabVIEW, for example to Hotmail ?

I'd like to use the Data Socket Write VI to be able to give my
loginname and my password from LabVIEW 6i. I really don't know how
this VI works, and/or if this is possible.
Thanks for your help.

Hello,
Thank you for your inquiry regarding website login. I understand that you would like to logon to Hotmail using LabVIEW 6.i. DataSocket however, is used to send and receive data between computers running LabVIEW. One possible solution is to use ActiveX events to run an internet browser window on the front panel of your VI. I assume however, that you would like LabVIEW to automate this task. Unfortunately Hotmail is a secure site using Microsoft Passport .NET. .NET is supported by LabVIEW 7.0 but the .NET control of Passport would have to be provided by Microsoft. The following link is a great resource to learn more about the .NET single-login system.
http://msdn.microsoft.com/msdnmag/issues/02/09/Passport/
I hope this resource helps. Let me know if you wo
uld like more help using a browser window on your front panel using ActiveX.
Shea C.
Applications Engineering

Similar Messages

  • How can I stop my iphone 4s from asking for my icloud, yahoo and other passwords all the time?

    How can I stop my iphone 4s from asking for my icloud, yahoo and other passwords all the time?

    As long as you share that AppleID for iCloud, you cannot.  You are sharing a a single iCloud account and sync services.  The only thing you can do is get a second AppleID and use it with iCloud - you do not have to use that new AppleID for anything but iCloud (ie. you can still share an AppleID for iTunes and App store purchases).
    P.S. I am assuming you both want to sync your contacts with iCloud?

  • How can I remove, delete unused website from bookmarks?

    How can I delete dated unused website fron Safari bookmark list?

    In the Safari menu bar, click on Bookmarks and select Show All Bookmarks. Find the bookmark you want to delete, click on it once, then click the Delete key on the keyboard.

  • How can I read the trace data into LabVIEW for E5071B

    HI 
    I am setting up the measurement using vector network analyzer (VNA) E5071B controlled by NI 488.2. How can I read the trace data into LabVIEW and display on the graph? If anyone having an idea or know well about this process please give me the suggestion, I will much appreciate it.
    Many Thanks

    You want to start with the driver
     In case you do not know it, you can do the driver search in LabVIEW from Tools>Instrumentation>Find Instrument Drivers. You might also want to bookmark the Instrument Driver Network for information on what a driver is and how to use it.

  • How can i login to a website using java

    hi,
    i tried to write a java program to which will take username and password and login to a given site. but some how its not working. i am actually trying to login to the follwoing website:
    https://roundup.ffmpeg.org/roundup/ffmpeg/
    can anyone provide some example program to login to this website.
    br
    mahbubul-syeed

    Hi,
    i am really sorry... but i am new in this forum and i did not know this. here is my code that i have written. it did not show any error and displays the content of the page but did not logged in. please give your comment.. i badly need a solution.
    package myUtility_files;
    import java.net.*;
    import java.io.*;
    public class LogInByHttpPost {
         //private static final String POST_CONTENT_TYPE = "application/x-www-form-urlencoded";
    private static final String LOGIN_ACTION_NAME = "submit";
    private static final String LOGIN_USER_NAME_PARAMETER_NAME = "__login_name";
    private static final String LOGIN_PASSWORD_PARAMETER_NAME = "__login_password";
    private static final String LOGIN_USER_NAME = "mahbubul";
    private static final String LOGIN_PASSWORD = "mahbubul007";
    private static final String TARGET_URL = "http://roundup.ffmpeg.org/roundup/ffmpeg/";
    public static void main (String args[])
    LogInByHttpPost httpUrlBasicAuthentication = new LogInByHttpPost();
    httpUrlBasicAuthentication.httpPostLogin();
    public void httpPostLogin ()
    try
    // Prepare the content to be written
    // throws UnsupportedEncodingException
    String urlEncodedContent = preparePostContent(LOGIN_USER_NAME, LOGIN_PASSWORD);
    HttpURLConnection urlConnection = doHttpPost(TARGET_URL, urlEncodedContent);
    //String response = readResponse(urlConnection);
    System.out.println("Successfully made the HTPP POST.");
    //System.out.println("Recevied response is: '/n" + response + "'");
    BufferedReader in = new BufferedReader(new InputStreamReader(urlConnection.getInputStream()));
                   String inputLine;
                   while ((inputLine = in.readLine()) != null)
                        System.out.println(inputLine);
    catch(IOException ioException)
         ioException.printStackTrace();
    System.out.println("Problems encounterd.");
    private String preparePostContent(String loginUserName, String loginPassword) throws UnsupportedEncodingException
    // Encode the user name and password to UTF-8 encoding standard
    // throws UnsupportedEncodingException
    String encodedLoginUserName = URLEncoder.encode(loginUserName, "UTF-8");
    String encodedLoginPassword = URLEncoder.encode(loginPassword, "UTF-8");
    String content = "login=" + LOGIN_ACTION_NAME +" &" + LOGIN_USER_NAME_PARAMETER_NAME +"="
    + encodedLoginUserName + "&" + LOGIN_PASSWORD_PARAMETER_NAME + "=" + encodedLoginPassword;
    return content;
    public HttpURLConnection doHttpPost(String targetUrl, String content) throws IOException
    HttpURLConnection urlConnection = null;
    DataOutputStream dataOutputStream = null;
    try
    // Open a connection to the target URL
    // throws IOException
    urlConnection = (HttpURLConnection)(new URL(targetUrl).openConnection());
    // Specifying that we intend to use this connection for input
    urlConnection.setDoInput(true);
    // Specifying that we intend to use this connection for output
    urlConnection.setDoOutput(true);
    // Specifying the content type of our post
    //urlConnection.setRequestProperty("Content-Type", POST_CONTENT_TYPE);
    // Specifying the method of HTTP request which is POST
    // throws ProtocolException
    urlConnection.setRequestMethod("POST");
    // Prepare an output stream for writing data to the HTTP connection
    // throws IOException
    dataOutputStream = new DataOutputStream(urlConnection.getOutputStream());
    // throws IOException
    dataOutputStream.writeBytes(content);
    dataOutputStream.flush();
    dataOutputStream.close();
    return urlConnection;
    catch(IOException ioException)
    System.out.println("I/O problems while trying to do a HTTP post.");
    ioException.printStackTrace();
    // Good practice: clean up the connections and streams
    // to free up any resources if possible
    if (dataOutputStream != null)
    try
    dataOutputStream.close();
    catch(Throwable ignore)
    // Cannot do anything about problems while
    // trying to clean up. Just ignore
    if (urlConnection != null)
    urlConnection.disconnect();
    // throw the exception so that the caller is aware that
    // there was some problems
    throw ioException;
    br
    mahbubul-syeed
    Edited by: mahbubul-syeed on Jun 11, 2009 5:07 AM

  • How can i call a DLL file from labview?

    Iam using a sensoray 2601 module.It is given as DLL file(S2600.DLL).How can i call this function from LabVIEW?
    Please Mark the solution as accepted if your problem is solved and donate kudoes

    As far as I can tell problems might occur with the call library function node if the the DLL from visual basic is actually an ActiveX dll if that is the case it seems calling the dll by using the Invoke node is the way to go.
    Have a look at this 
    /sletten

  • How can I control a base ACCESS from labview ?

    Hi,
    I'm working on a projet on labview and ACCESS and I want to say how can I do to control a database from labview ???
    Thanks in advance
    Cordially,
    Hasna

    On Tue, 9 Jul 2002 02:50:12 -0700 (PDT), kiki wrote:
    >could you give me more informations about Database Connectivity
    >Toolset ???
    >
    >I notice that we can write data in excel file thanks to an ActiveX but
    >is it possible with a table ACCESS ??
    DCT it's a suite of VIs (I think Optionals) the contains anything you
    need to connect to to a DB.
    I used them with access... since I'm not really happy with performance
    (read/write max 50 records/sec) it's quite quick to develop
    applications that read/write DB.
    (Write a Cluster it's trivial.... plug the cluster, prepare a table
    with fields of the same type and the same order, yo've did it)
    I think you can also use ActiveX, but I've never did.

  • How can I delete Business Catalyst websites from my Creative Cloud panel?

    Hey guys,
    I would like to know how to delete temporary websites that I've created from my right sidebar in Creative Cloud panel.
    Thanks!

    Hi Leo,
    Please contact us using http://www.businesscatalyst.com/contact and give us your temporary site URL, and we will delete it for you.
    Best regards,
    Aniela

  • How can I stop videos on websites from automatically playing?

    On many sites like Forbes and Accuweather, videos automatically start playing when I load the site. Not only is this annoying, the video also draws unnecessary bandwidth when I tether from my Verizon smartphone.
    Is there any way through Firefox to prevent autoplay of videos on websites?
    There used to be a plugin available, but no longer.
    http://just-ask-kim.com/stop-auto-play-videos-audios-firefox/

    Adblock Plus can also block some of them if you never want to see them again.
    But you could also use this option from Firefox:
    Type in the address bar:
    ''about:config''
    Then search for:
    ''plugins.click_to_play''
    Double click and it will be set to true.

  • How can I find the serial number from CS4 for my mac? I remembered it being on the box, but now I can't find it, and they website I thought to have registered it to doesn't recognize the e-mail I would have used then I got it.

    I don't know if this is the right place to ask this, but the website recommend I ask here. I bought the CS4 when I bought my macbook pro in when I was in college. I remember there being 2 serial numbers, so I could install to one other computer. That macbook pro finally died, and now I have a new mac which I am trying to re-install the creative suite on, only I can't find the serial number.  The two stickers on the back of the CS4 box (which i thought were the serial numbers) don't look like that they're asking for, and the website listed on the inside of the box for me to register to doesn't recognize my e-mail (which hasn't changed since buying CS4).  Any idea where I could find the serial number?

    To locate the serial number:
    http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • How can I find movies with subtitles from iTunes for iPad?

    The problems are two:
    1) Using an iPad, can I find subtitled only movies? If were possible, how?
    2) Ever with an iPad, it's possible setting on/off subtitles in movie? If were possible, how?
    Thanks,
    Cristiano.

    You turn it on by going to settings-video-closed captioning=on.
    If a video has captioning, should have the closed captioning symbol on the video description screen in iTunes store.
    You can get software to add captions to your own videos.
    Handbrake:
    HandBrake can now include subtitle tracks that can be turned on and off, instead of rendering them onto the video track permanently (which also reduces video compression). This means you can include Closed Captioning data from DVDs and TV broadcasts, or find SRT text subtitle files on the 'net and include them. When using the Matroska container, you can also store the graphical subtitle images (VobSubs) from a DVD as a separate track. An added benefit is that multiple subtitle tracks can be included in the same output video.
    Road movie:
    http://www.bitfield.se/roadmovie/about_subtitles.html

  • How can I stop my iphone 5 from asking for Apple ID Password constantly?

    I've had this problem ongoing for awhile now and it's starting to drive me nuts.
    A few months back I was using an app where you could purchase in-game points which would come through your apple ID. I purchased the points and they never arrived, but it's like my phone is constantly now trying to buy the points over and over. Randomly even when the app is closed I'll be asked for my Apple ID password, even if the app is deleted from my phone. If I enter my password it'll go away for a little while and then try again later. So I figure it is just continually trying to make the purchase and fails each time.
    I've contacted the support for the app and they never reply to any support email questions, I've looked around online and similar problems seem to be fixed by people looking at pending downloads sitting in itunes on their PC, but there is nothing pending at all. I've changed my Apple ID password. I've made sure it was synced with my phone, I've cleared it from my phone and re set it up again ... nothing seems to work.I even reset my phone entirely and it continues to ask .. it's like the problem is linked more with my apple ID rather than the phone itself. But I'm out of ideas of how to stop it.
    Any suggestions? It's incredibly frustrating!

    Turn the account off in settings.

  • How can I pass in continuous value from labview to teststand?

    Hello
    I want to run a vi using teststand. I want this vi to send values to teststand. My problem is that the value is only updated at the end of the vi execution and I want to get the value before the end of the vi execution. If somebody can help me ...
    Thanks
    Corentine 

    Corentine,
    you can think of TestStand calls to LabVIEW-VIs just like functioncalls in C/C++. The main continues running only if the subroutine is fully executed. Furthermore, LV returns values to the parameters (connector block) only at the end of the execution of the VI.
    So you cannot use "simple VI calls" in your sequence if you need datatransfer during execution from steps. If you like to do something like this, the easiest way would be to create a VI which runs continuously in the background and supplies data via mechanisms like Queues (if executed in the same instance) or TCP/IP. In the stepmodules you can retrieve the data when needed.
    hope this helps,
    Norbert B.
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • How can i take off encryption code from itunes for iphone?

    "Encrypt iphone Backup" option got selected on itunes by me while ago  when i hooked my iphone with my computer the first time. Now i can backup my iphone on itunes but cannot restore that backup or any backup on my iphone because i don't remember that encrypted code. whien i try to deselect this option still it asks for the code.
    I got stuck now, what to do..?
    Please help..

    Hi Saini22,
    You may be able to recover the encrypted backup of you iPhone using the suggestions in this article -
    iOS: Troubleshooting encrypted backups - Apple Support
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • How can we update or manage the Adobe Product for example Adobe Reader and Flash Player in a enterprise environment.  Enterprise lifecicle management

    We want to maintenance the adobe products in the enterprise environment. Specially Update for he reader and players.
    Thanks

    You will need to apply for both Reader and Flash Player Distribution agreements if you intend on enterprise deployments of these products.
    Adobe - Adobe Runtimes / Reader Distribution License Agreement
    If you are using SCCM and SCUP then use the available catalogs for both products.
    11   SCCM-SCUP — Enterprise Administration Guide
    Flash Player enterprise deployment | Adobe Developer Connection

Maybe you are looking for

  • Why won't my iPad mini boot up?

    Hi-- Bought my iPad mini last summer and it has worked fine. But now it won't boot up. It just shows a white screen with the black apple logo.  Every other couple of minutes, a sort of blue screen will go over the white screen like a blanket, and the

  • Portugal is inaccurately listed as being in the Central European timezone

    After upgrading from 10.5 to 10.6, I noticed in iCal (with time zone support enabled) that Portugal is listed as being in the Central European time zone. That's not accurate: Portugal is in the Western European time zone.

  • Mouse Click Event Is this a bug

     I have a applet that has popupmenus tied to certain buttons. When a use clicks on one of the buttons a popupmenu is displayed for that button. Originally I used Mouse Click event to show the popupmenu but I found that when you switched buttons mous

  • Weblogic.Deployer -remote option

    Hi, using -remote option in weblogic.Deployer I can deploy applications remotely to servers. Say that I'm deploying apps to remote managed server with port 9001 (admin server port 8001). There is a firewall in between build machine(where I'm deployin

  • Help: Trying to pass a parameter to stored proc from FORMS

    I am working on a FORMS based on stored procedure with 7 parameters. All parameters work except p_sort for ORDER BY CLAUSE. Any suggestions? Thank you in advance. Jimmy