Lookout 6.0 Login Part 2

Being new to this forum stuff i clicked the wrong button and said my last post was solved. Lookout 6.0 comes up to the login screen and will not let anyone sign in, not even the administrator after a clean install and registry strip. it is connected to a Modicon PLC using Modbus and has been working for about 6 months now. The computer had XP SP3 on it.  I had uninstalled SP3 and reinstalled Lookout.  Same issue.  The customer is in the process of a clean XP install on teh computer.  Thank god i was able to get the new touch screen up and running.

You mentioned this is a touchscreen. Does it have a real keyboard or software?  If software, the security in lookout may be set to prevent running other applications, causing a software keyboard to not function.
Mike
Message Edited by Mike@DTSI on 10-06-2009 04:55 PM
Mike Crabtree - Lead Developer
Destek of Nevada, Inc. / Digital Telemetry Systems, Inc.
(866) 964-6948 / (760) 247-9512

Similar Messages

  • My MacBook Pro 15 inch that I bought back in 2012 at the apple store keeps restarting Every time I open it. And when it's in the restarting mode it just turns off and restarts again it doesn't even get to the login part where you choose accounts.

    I can actually hold a key and it will take me to the logins and when I login I have to hold the key the whole time I'm on it or else it restarts. What do I do to fix this problem? Please help

    Hi Thebestest1v1er,
    Based on your description of being able to Safe Boot (holding down the shift key) but not boot normally, it sounds like your startup/restart issue may be related to one of the things that Safe Boot disables. You can find more information about them here:
    OS X: What is Safe Boot, Safe Mode?
    http://support.apple.com/kb/ht1564
    It may also be related to a disk or file system issue (as that is also something checked during Safe Boot). You may find these articles helpful as well:
    Apple Support: Resolve startup issues and perform disk maintenance with Disk Utility and fsck
    http://support.apple.com/kb/TS1417
    OS X: About OS X Recovery
    http://support.apple.com/kb/ht4718
    Regards,
    - Brenden

  • Use JAVA Applet to do the login part

    Hi...
    I am very new in java.I don know how to make a java applet so that user can type user name and password and then login to the system.
    (If the username and password are matched)
    Would anyone mind helping me to solve this problem??

    You will be able to do this at least half a year later, for you gotta know JDBC, server-side programming, SSL, HTTPS and other scarry words :)

  • My computer won't start it's loads the logo but than shuts off before the login part

    My computer won't start it's loads the logo but than shuts off before the login part

    Hello Tara-louise,
    I would be concerned too if my MacBook Pro was booting just to the gray screen with the Apple logo on it.  I recommend following the steps in the article below for the issue you are experiencing:
    Mac OS X: Gray screen appears during startup
    http://support.apple.com/kb/TS2570
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • How to get the current session details in windows phone 8 when using Facebook ,Google and Microsoft login

    I want to get the session details like access token , provider etc on a page (ExamplePage.xaml.cs) , i used the following example from nokia developers community (link)
     and implemented the login part but how can i get session details  so that i can send it to my API
    The SessionService class manages the session on facebook,google,microsoft login:
    /// <summary>
    /// The service session.
    /// </summary>
    public class SessionService : ISessionService
    private readonly IApplicationSettingsService _applicationSettings;
    private readonly IFacebookService _facebookService;
    private readonly IMicrosoftService _microsoftService;
    private readonly IGoogleService _googleService;
    private readonly ILogManager _logManager;
    /// <summary>
    /// Initializes a new instance of the <see cref="SessionService" /> class.
    /// </summary>
    /// <param name="applicationSettings">The application settings.</param>
    /// <param name="facebookService">The facebook service.</param>
    /// <param name="microsoftService">The microsoft service.</param>
    /// <param name="googleService">The google service.</param>
    /// <param name="logManager">The log manager.</param>
    public SessionService(IApplicationSettingsService applicationSettings,
    IFacebookService facebookService,
    IMicrosoftService microsoftService,
    IGoogleService googleService, ILogManager logManager)
    _applicationSettings = applicationSettings;
    _facebookService = facebookService;
    _microsoftService = microsoftService;
    _googleService = googleService;
    _logManager = logManager;
    /// <summary>
    /// Gets the session.
    /// </summary>
    /// <returns>The session object.</returns>
    public Session GetSession()
    var expiryValue = DateTime.MinValue;
    string expiryTicks = LoadEncryptedSettingValue("session_expiredate");
    if (!string.IsNullOrWhiteSpace(expiryTicks))
    long expiryTicksValue;
    if (long.TryParse(expiryTicks, out expiryTicksValue))
    expiryValue = new DateTime(expiryTicksValue);
    var session = new Session
    AccessToken = LoadEncryptedSettingValue("session_token"),
    Id = LoadEncryptedSettingValue("session_id"),
    ExpireDate = expiryValue,
    Provider = LoadEncryptedSettingValue("session_provider")
    _applicationSettings.Set(Constants.LoginToken, true);
    _applicationSettings.Save();
    return session;
    /// <summary>
    /// The save session.
    /// </summary>
    /// <param name="session">
    /// The session.
    /// </param>
    private void Save(Session session)
    SaveEncryptedSettingValue("session_token", session.AccessToken);
    SaveEncryptedSettingValue("session_id", session.Id);
    SaveEncryptedSettingValue("session_expiredate", session.ExpireDate.Ticks.ToString(CultureInfo.InvariantCulture));
    SaveEncryptedSettingValue("session_provider", session.Provider);
    _applicationSettings.Set(Constants.LoginToken, true);
    _applicationSettings.Save();
    /// <summary>
    /// The clean session.
    /// </summary>
    private void CleanSession()
    _applicationSettings.Reset("session_token");
    _applicationSettings.Reset("session_id");
    _applicationSettings.Reset("session_expiredate");
    _applicationSettings.Reset("session_provider");
    _applicationSettings.Reset(Constants.LoginToken);
    _applicationSettings.Save();
    /// <summary>
    /// The login async.
    /// </summary>
    /// <param name="provider">
    /// The provider.
    /// </param>
    /// <returns>
    /// The <see cref="Task"/> object.
    /// </returns>
    public async Task<bool> LoginAsync(string provider)
    Exception exception = null;
    try
    Session session = null;
    switch (provider)
    case Constants.FacebookProvider:
    session = await _facebookService.LoginAsync();
    break;
    case Constants.MicrosoftProvider:
    session = await _microsoftService.LoginAsync();
    break;
    case Constants.GoogleProvider:
    session = await _googleService.LoginAsync();
    break;
    if (session != null)
    Save(session);
    return true;
    catch (InvalidOperationException e)
    throw;
    catch (Exception ex)
    exception = ex;
    await _logManager.LogAsync(exception);
    return false;
    /// <summary>
    /// The logout.
    /// </summary>
    public async void Logout()
    Exception exception = null;
    try
    var session = GetSession();
    switch (session.Provider)
    case Constants.FacebookProvider:
    _facebookService.Logout();
    break;
    case Constants.MicrosoftProvider:
    _microsoftService.Logout();
    break;
    case Constants.GoogleProvider:
    _googleService.Logout();
    break;
    CleanSession();
    catch (Exception ex)
    exception = ex;
    if (exception != null)
    await _logManager.LogAsync(exception);
    /// <summary>
    /// Loads an encrypted setting value for a given key.
    /// </summary>
    /// <param name="key">
    /// The key to load.
    /// </param>
    /// <returns>
    /// The value of the key.
    /// </returns>
    private string LoadEncryptedSettingValue(string key)
    string value = null;
    var protectedBytes = _applicationSettings.Get<byte[]>(key);
    if (protectedBytes != null)
    byte[] valueBytes = ProtectedData.Unprotect(protectedBytes, null);
    value = Encoding.UTF8.GetString(valueBytes, 0, valueBytes.Length);
    return value;
    /// <summary>
    /// Saves a setting value against a given key, encrypted.
    /// </summary>
    /// <param name="key">
    /// The key to save against.
    /// </param>
    /// <param name="value">
    /// The value to save against.
    /// </param>
    /// <exception cref="System.ArgumentOutOfRangeException">
    /// The key or value provided is unexpected.
    /// </exception>
    private void SaveEncryptedSettingValue(string key, string value)
    if (!string.IsNullOrWhiteSpace(key) && !string.IsNullOrWhiteSpace(value))
    byte[] valueBytes = Encoding.UTF8.GetBytes(value);
    // Encrypt the value by using the Protect() method.
    byte[] protectedBytes = ProtectedData.Protect(valueBytes, null);
    _applicationSettings.Set(key, protectedBytes);
    _applicationSettings.Save();

    I need to get the session details in the following page AllEvents.xaml.cs  :
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Net;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Navigation;
    using Microsoft.Phone.Controls;
    using Microsoft.Phone.Shell;
    using AuthenticationSample.WP80.ViewModel;
    using AuthenticationSample.WP80.Services.Model;
    using AuthenticationSample.WP80.Services;
    using AuthenticationSample.WP80.Resources;
    using System.Threading.Tasks;
    namespace AuthenticationSample.WP80.Views
    public partial class AllEvents : PhoneApplicationPage
    public AllEvents()
    InitializeComponent();
    MainViewModels FakeData = new MainViewModels();
    FakeData.LoadData();
    DataContext = FakeData;

  • How can I create a Login-Page???

    Hello,
    I have to create a page with JSP code on the Netweaver Developer Studio.
    But I do not know how I do it.
    Can anyone tell me what to write in the portalapp.xml?
    An example would be very helpful.
    Thank you
    Greetings

    Hello Cilvaring,
    How about searching on the forums? There are ample of leads on portal logon page. And if you're looking what to write in Portalapp, then please download std. logon PAR, import it in NWDS and have a look into it. You'd not need to create everything from scratch.
    Here are a few quick links for you:
    http://wiki.sdn.sap.com/wiki/display/EP/Portalloginpage+modification
    Portal Customizations Intro - Login Part 1
    Portal Customizations Intro - Login Part 2
    Portal Customizations Intro - Look&Feel Part 3
    Customizing Portal Logon Screen
    Ameya
    Edited by: Ameya Pimpalgaonkar on May 26, 2011 12:13 PM

  • New scene after login success AS3

    Hi guys,
    I'm really new to actionscript so i have trouble in understanding the code. I tried many ways to go to a new scene after login successful but sadly failed. I followed one of the tutorials on the login part..It works and i'm happy wif it..but currently, it displays only the success message. Instead, i wanna go to a new scene but don't know how. I'll post the code below. Hope u can help ..I have a dateline for this project. Thanks!
    [actionscript]
    package actions {
        import flash.display.MovieClip;
        import flash.events.*;
        import flash.net.*;
        import flash.text.*;
        public class main extends MovieClip {
            public function main ():void {
                submit_button.buttonMode = true;
                submit_button.addEventListener(MouseEvent.MOUSE_DOWN, checkLogin);
                username.text = "";
                password.text = "";
            public function checkLogin (e:MouseEvent):void {
                if (username.text == "" || password.text == "") {
                    if (username.text == "") {
                    username.text = "Enter your username";
                    if (password.text == "") {
                    password.text = "Enter your password";
                } else {
                    processLogin();
            public function processLogin ():void {
                var phpVars:URLVariables = new URLVariables();
                var phpFileRequest:URLRequest = new URLRequest("login.php");
                phpFileRequest.method = URLRequestMethod.POST;
                phpFileRequest.data = phpVars;
                var phpLoader:URLLoader = new URLLoader();
                phpLoader.dataFormat = URLLoaderDataFormat.VARIABLES;           
                phpLoader.addEventListener(Event.COMPLETE, showResult);
                phpVars.systemCall = "checkLogin";
                phpVars.username = username.text;
                phpVars.password = password.text;
                phpLoader.load(phpFileRequest);
            public function showResult (event:Event):void {
                result_text.autoSize = TextFieldAutoSize.LEFT;
                result_text.text = "" + event.target.data.systemResult;
    [php]
    <?php
    include_once "dbconnect.php";
    $username = $_POST['username']; //variables from flash
    $password = $_POST['password'];
    if ($_POST['systemCall'] == "checkLogin") {
    $sql = "SELECT * FROM users WHERE username='$username' AND password='$password'";
    $query = mysql_query($sql);
    $login_counter = mysql_num_rows($query);
    if ($login_counter > 0) {
    print "systemResult=Welcome $username!";
    } else {
    print "systemResult=Invalid User!";
    ?>

    You probably want to check the value that it returns and use it to decide whether to go to the next scene or not.
            public function showResult (event:Event):void {
                result_text.autoSize = TextFieldAutoSize.LEFT;
                result_text.text = "" + event.target.data.systemResult;
                if(String(result_text.text).indexOf("Welcome") == 0) {
                       gotoAndPlay(1, "Scenename");
    What the first line does is checks to see if the word Welcome is at the start of whatever is in the textfield (starts at index 0).  If it does, then it issues the command to move to another frame/scene

  • Editing login Pages and links for EP6 SP2- how to?

    Hi Gurus,
    I'm exploring the possibility of modifying the existing screens of the log in page of EP6. ( eg, the "forgotten password" flow logic page and password recovery page of the "Logon Problems? Get Support" link.
    It's my first time using EP6 so I'm not familiar with the procedure. my search for tutorials or walkthough have been fruitless.
    Can anyone guide me with a URL/link  of an useful guides and tutorials of the process of customizing the views? Thanks a billion!!
    Regards,
    Jansen

    Hi,
    Have a look on this web logs
    Is your Portal Logon Page more colorful?
    A fast and easy Portal logon page customizing
    Change the portal logon page image programmatically
    Portal Customizations Intro - Login Part 1
    Portal Customizations Intro - Login Part 2
    Modifying The Logon Par(or customising the Logon Screen)
    Regards,
    Vishal
    PS: Reward points for helpful answers.
    null

  • Problem Installing Lookout 6.1 After Install/Un​install Lookout 6.5

    I'm getting the message "You have a higher version of NI Uninstaller in your system" when I was trying to re-install Lookout 6.1 after installing and uninstalling Lookout 6.5.
    The error says for me to uninstall the higher version of NI Uninstaller?  Where and how do I do this?
    Thanks,
    Max

    I'm running Windows 7 Professional (64 bit)
    1) This is the error I get when installing Lookout 6.5
    I then select "Yes" to continue, choose "evaluation mode" and let it complete the install, restart computer and run Lookout 6.5.
    But Lookout 6.5 does not run and I get the following error:
    2) Now I try and install Lookout 6.1,  the part where it is initializing the installer completes and I click on "Next"
        I go through with the information input for user/company/serial, select complete install, license agreement and then click next and I get the following error:
    And now I am at the problem.
    So I click on Yes (to continue) and I get the following error:
    and I continue and get the next error
    and so on...
    Thanks for your help.  I'm almost short of formattimg the drive and reinstalling the entire system but I'm hoping it's just a minor item that was overlooked.

  • "Other-" appearing on login screen

    Hi
    I've got a MacBook Pro mid 2012 running OS X 10.8.5. I was running some commands about the root user on Terminal and suddenly I changed the password of the root user using these commands:
    sudo su
    Password:*******
    passwd
    & now I see another thing on the login screen named "Other..." which is the root user(Admin) . And its password is the password that I changed using Terminal.(It is the login part for the root user)
    I want to get rid of that, is it possible?
    I just wanted to remove it using system preferences but it doesn't appear on that part(Users & groups)!
    I think it would be possible to delete it using the Terminal.

    Disable Root User if enabled.
    "How to disable the root user"
    https://support.apple.com/en-us/HT204012

  • Automatically Login To A WebPage

    Hi Everyone! I'm trying to automatically login to a webpage. I've searched extensively on the web and I know that apache httpclient seems to be the best solution, but for the sake of education, I'd like to do this through solely the built in libraries.
    My code is here , it is a modification (only the parameters have been modified) of the code found here:
    When I run this code it just takes me back to the login page. I believe the problem is with the "login=" part of this parameter (highlighted in the above link)
    <br />
    String content = "login="  +LOGIN_ACTION_NAME+ " &"  +LOGIN_USER_NAME_PARAMETER_NAME+ "="<br />
    +encodedLoginUserName+  "&"  +LOGIN_PASSWORD_PARAMETER_NAME+  "=" + encodedLoginPassword;<br />To the best of my understanding this is unique to the original code's login page php script. The problem is I'm not sure what it should be changed to.
    Thanks for the help!
    TLDR What string do I pass to a .cfm script while posting to it.

    CodeLearnerz wrote:
    Sorry, I accidentally posted that last message long before it was ready. Here it is in full.
    Here's the relevant code, sorry for including the whole thing originally (wasn't sure how to cut it down while still getting the gist of the program across). And no, I'm not doing a GET.
    The basic idea is take the content string (where parameter_names are taken from the html source code: they're the name attribute of the input tags inside the form tag) and write it to an output stream retrieved from the original url. I've left out the housekeeping portions of the code for the sake of brevity (ie URLConnection.setDoOutput(true) and urlConnection.setRequestProperty("Content-Type", POST_CONTENT_TYPE) ).
    String TARGET_URL = "http://bowl.classicproducts.com/login.cfm"
    urlConnection = (HttpURLConnection)(new URL(targetUrl).openConnection());
    dataOutputStream = new DataOutputStream(urlConnection.getOutputStream());
    String content = "login=" + LOGIN_ACTION_NAME +" &" + LOGIN_USER_NAME_PARAMETER_NAME +"="
    + encodedLoginUserName + "&" + LOGIN_PASSWORD_PARAMETER_NAME + "=" + encodedLoginPassword;
    dataOutputStream.writeBytes(content);
    dataOutputStream.flush();
    dataOutputStream.close();
    Note that nothing is actually sent to the server until you invoke urlConnection.getInputStream() which I don't see you doing in the above. The whole thing above is a no-op from the server's perspective because you never sent anything to it, unless there's more code that does it that you didn't post here.
    All of which would be mitigated better if you'd just use the HttpClient rather than reinventing the wheel.

  • Customize Login Times?

    I'm interested in having the login mode from the Security preferences run on a set schedule. For example: I'd like to have my computer set to require login on particular days of the week, but not on others.
    Does anyone know if/how to accomplish this?
    PB G4   Mac OS X (10.4.7)  

    Hi,
    To change the image in the logon page follow these steps
    1.Copy the image(s) you want to use in your project in the the folder dist-->layout.
    2.Find the tag < img src="" > in the umBotArea.txt
    3.Change the src attribute in the img tag to src="<%=webpath + "layout/image1.jpg" %>". /image1-->ur image name/
    4.The webpath is already defined in the file logon_proxy.txt and ready to use.
    Note:
    I checked .its working fine.
    Refer the following links
    Portal Customizations Intro - Login Part 1
    http://help.sap.com/saphelp_nw2004s/helpdata/en/23/c0e240beb0702ae10000000a155106/frameset.htm
    Modifying The Logon Par(or customising the Logon Screen)
    Regards,
    Tamil K

  • REG : Login Link in mast head

    Hi Experts ,
    We have customised standard logon par file (headeriview .jsp)
    Now we have login link in mast head.teh link login is coming as follows
    LOGIN_
    Could you pelase let me know why this underscore is coming.
    Regards,
    Anu

    Hi Anu,
    every link, text or button has a key, which is used in the language property files.
    It seems that the key was added or changed to LOGIN_ and so the correct text cannot be retrieved from the property files.
    See more about this feature in my blog Portal Customizations Intro - Login Part 1
    in the paragraph Changing Text
    Regards,
    Kai Unewisse

  • LookOut expression problems

    Hello guys,
    I've encountered a very strange situation today.  I created an expression in a server file which then be used for another calculation.  To be sure that my expression was working fine, I dragged the expression out to a panel to see if I could get a number, and I did.  The strange thing was that expression was X out as if there was no connection, but my number was still updated.  I could see my number correctly changing up and down, but the whole thing just X out.  I've tried to reboot the server to no available.  I assume that LookOut might take correct parts and leave the wrong one out which resulted in the X.  However if something in my expression was wrong (such as mistyping), LookOut wouldn't even take it at all.  I've tried to break that long expression down to piece by piece, and every single one was working fine. What would be the problem here?
    Frank Nguyen
    Solved!
    Go to Solution.

    I tried to create an expression = Pot1.value+FieldPoint1.AI000.00.
    The FieldPoint module doesn't exist. So, I got alarm on the FieldPoint1 object.
    I saw X on the expression, and when I control Pot1, the expression value changes.
    So, it looks like the same behaviour. Take a look at the expression, does it read any data from driver object?
    Another way is to replace every single part of the expression with a constant value one by one.
    Ryan Shi
    National Instruments

  • Custom portal login application...?

    Hi Experts..
    Can any one tell me how to create a custom login application so that a user can change his portal login password.......
    Pls give me details......

    Hi Sumit,
    please check this blog
    Portal Customizations Intro - Login Part 1
    http://help.sap.com/saphelp_nw04/helpdata/en/23/c0e240beb0702ae10000000a155106/frameset.htm
    Thanks n Regards
    Santosh
    Reward if helpful !!!

Maybe you are looking for

  • Access to file in HTMLDB_APPLICATION_FILES

    Hello, I have uploaded file to HTMLDB_APPLICATION_FILES and now I want to copy data from that file to a table in database. How can I do that? Thanks

  • SQL Developer 1.5.0.53.38 Fails to save preferences

    Options set under Tools->Preferences are not persisted between sessions. Assuming that the persistence of options is a part of the normal Exit processing, this is probably related to the Failure to Exit problem that I posted.

  • Characteristic as an Attribute of Key Figure BPS-BCS

    Hi, We're endeavoring to integrate BPS and BCS data for planning.  Our issue is that our BPS data is COPA-like in that it's Key Figure-based.  We are not using 0ACCOUNT.  Our BCS data will be using FS Items. My thought would be that this integration

  • TCP Error 61

    Hi Everyone, I am running two executables that are communicating with different bits of hardware over TCP Connections. I am having problems with one of the executables TCP Connection to a printer. I will be able to send commands to the printer to pri

  • How to burn a DVD with two audio track?

    There is a projet with the original video and a second audio track with music. I want to burn a DVD with both audio tracks. When playing the DVD you should be able to select audio track 1 (the original sound) or audio track 2 (the music). With Adobe