Problem using Implementing Remote Panel Security with a Login Example Guide

I'm having issues implementing a Remote Panel protected by username and password using this NI guide:
Implementing Remote Panel Security with a Login Example
Remotepanellogin.zip
After login process using Login.vi, if the user has the right password, his IP will be included in the Webserver allowed access list and the user can open the web site which hosts the Main.vi. Ok.
But if the user doesn't have the password, his IP will be denied!
Here is the problem: Will his IP be denied at all including Login.vi? 
I can't block access to Login.vi because even if the user entered a wrong password, he can still try login again....
How can I configure a type of Allowed and Denied table using Webserver properties? For example:
IP: 10.0.0.2 - Login.vi (allowed) - Main.vi (allowed) -> User entered a right password
IP: 10.0.0.3 - Login.vi (allowed) - Main.vi (denied) -> User entered a wrong password
Note: Login.vi must be visible and accessible always.
These are the Implementing Remote Panel Security with a Login Example instructions:
After you configure the VIs with the Web Publishing Tool, browse to the Remote Panel Login VI and run it. When this VI runs, LabVIEW gives remote panel access to all users, but they can view and control only this VI.
If a user successfully logs in by supplying the Username of NI and password of labview (both are case sensitive) then LabVIEW gives remote panel access to the IP address specified in the Remote Panel Login VI only. That user can then browse to and run the Main VI.
Thanks in advance!
APrado
Message Edited by APrado on 04-01-2009 08:21 AM

I'm thinking about using the option Reentrant Execution (VI property > Category > Execution).
Could anyone help me?
Thanks.

Similar Messages

  • Problems using Sony ECM DS70P Microphone with Vado HD 3rd gen

    Problems using Sony ECM DS70P Microphone with Vado HD 3rd genXHello.
    I have just purchased a Vado HD 3rd gen & was looking forward to using my Sony ECM DS70p Microphone,but after a couple of tests, the recording is extremely low & barley laudable.
    The Microphone works fine on My Kodak Zi8.
    Is there an internal setting I have to adjust, or is there a fault with the Vado
    The Sony ECM DS70pMicrophone can be clearly seen in use here on a official Creative video.
    http://www.youtube.com/watchv=oixLDAmc5qw
    If anybody can offer some help or advice please, I would be very grateful.
    Does anyone have a suggestion for a low profile stereo mic, to use with the Vado 3rd Gen
    Thank you.
    Thank you.

    This is happening to me too, I don't know if this is an Adobe Flash Player 11.5's bug or it's just my computer. All my browsers, chrome, IE9, Fox, doesn't even load anime videos. I tried reinstalling 11.5 many times, it have no effect but I use IE9 64-bit to run the videos that couldn't run. I waited 25 min for a JW player to load an episode of anime and I'm sick of it.

  • Nvidia 295.40 Problems Using XBMC Assaultcube or anything with(SOLVED)

    The title pretty much sums it up , Ever since I updated to 295.40 . The previous driver 295.33 was working fine .  Problems Using XBMC , Wine , Assaultcube or anything with uses Open GL .  The two machines that are affected have the same hardware ( Nvidia 6200 pci) . Let me know if any of you are having similar issues . I will continue to work on this for a couple of hours .  Thanks .
    Last edited by sliposk (2012-05-03 18:47:26)

    Tried upgrading the nvidia package after upgrading linux to 3.3.2 but with no success, it still freezes…
    Gusar wrote:As I wrote in the other thread, the main point of 295.40 is to fix security vulnerabilities. So if you want to use older versions, at least patch them: http://www.nvnews.net/vbulletin/showthread.php?t=178006
    Tried to patch 295.33, successfully (making a 295.33-3 package to stay clean), but had the same failures and freezes. Looks like the problem we are experiencing is caused by the security fix…

  • Problem using webservice method consumer proxy with rawdata from abap

    Hello Gurus,
    I am struggling with an error using a proxy consumer service from ABAP. The proxy was generated using the WSDL from the web service provider. For a specific method we need to send a rawstring as seen bellow:
    The file to be sent on this call is a ZIP file XAdES-BES signed and on BASE64. I’ve implemented the proper code to get the original file from local PC, and convert it to BASE64 before moving the content to the webservice structure and call the service proxy. At SOAMANAGER I also configured the webservice and the proper port with the WSDL:
    The communication is working properly but my problem is with the binary content. When calling the webservice the response is that the structure of the file is wrong. I found it very strange since I used a tiny SOAPUI project with the same WSDL and it worked with no problem.
    After debugging I could see that the content moved to the rawdata string before calling the proxy does not match the content that I can see from the call payload on web services util (srt_util)!
    So the sample code for my method:
    * get the file from the specified folder
    call function 'GUI_UPLOAD'
    exporting
    filename                = ld_zipfilename
    filetype                = 'BIN'
    importing
    filelength              = zip_size
    tables
    data_tab                = t_zip_data[]
    exceptions
    file_open_error         = 1
    file_read_error         = 2
    no_batch                = 3
    gui_refuse_filetransfer = 4
    invalid_type            = 5
    no_authority            = 6
    unknown_error           = 7
    bad_data_format         = 8
    header_not_allowed      = 9
    separator_not_allowed   = 10
    header_too_long         = 11
    unknown_dp_error        = 12
    access_denied           = 13
    dp_out_of_memory        = 14
    disk_full               = 15
    dp_timeout              = 16
    others                  = 17.
    * convert to string
    clear buffer_zip.
    call function 'SCMS_BINARY_TO_STRING'
    exporting
    input_length = zip_size
    importing
    text_buffer  = buffer_string
    tables
    binary_tab   = t_zip_data[]
    exceptions
    failed       = 1
    others       = 2.
    * encode base 64
    perform encode_base64 using buffer_string
    buffer_zip. 
    form encode_base64 using in_string type string
    out_string type xstring.
    data: l_sbuff     type string.
    * convert the file to BASE64
    call method cl_http_utility=>encode_base64
    exporting
    unencoded = in_string
    receiving
    encoded   = l_sbuff.
    call function 'SCMS_STRING_TO_XSTRING'
    exporting
    text   = l_sbuff
    importing
    buffer = out_string
    exceptions
    failed = 1
    others = 2.
    endform.                    "encode_base64
    calling the webservice:
    l_input-xxxx-dokument = buffer_zip.
    try.
    call method l_proxy_test->webservice
    exporting
    input  = l_input
    importing
    output = l_output.
    catch cx_ai_soap_fault into lr_exc_soap_fault.
        endtry.
    From my understanding rawstring should be the same as ABAP xstring. If I debug the program and check the content of the  l_input-dokument before calling the proxy I get binary content: “Izw/eG1sIHZlcnNpb249IjEuMCIgZW5jb2Rpbmc9InV0Zi04Ij8…” that is in fact correct
    If I check the payload after call I can see that the binary content sent on the XML is not the same, in fact it is totally different: ”SXp3L2VHMXNJSFpsY25OcGIyNDlJakV1TUNJZ1pXNWpiMlJw…” !!
    I’ve tried a lot of different conversions, changed configuration on the communication, port, etc and nothing seems to work. I really can’t figure out why the binary content on the call is not the same as I move to the webservice structure.
    If I use the project from SOAP UI and send the proper binary content, that is “Izw/eG1sIHZlcnNpb249IjEuMCIgZW5jb2Rpbmc9InV0Zi04Ij8…” it works perfectly and the response is successfully.
    Anyone has a clue what could be causing this?
    Appreciate any kind of input.
    Regards,
    João Silva Pinto.

    Anyone? Any clue would be appreciated.

  • Using a remote desktop connection with the Macbook pro.

    I use the remote desktop connection on the Macbook pro and am unable to exchange info between the mac and the remote connetion windows. For example, if I am writing an email from the remote connection and want to attach a document, photo etc. that I created on the Mac, it just doesn't work. It seems like the Mac and the desktop connection are completely seperated eventhough they are both on the screen in front of me. the systems I use for work are not Apple compatible and will not work on anything other than windows explorer and in my case the remote desk top connection. Any ideas!

    Welcome to Apple Discussions
    Try running in 'ClamShell' mode (MacBook Pro lid closed and using an external keyboard and mouse) with the Gateway connected and then run System Preferences/Displays, it should show then ...
    My 1920x1080 monitor shows the following:

  • Problems using M Audio Fast Track with Garageband

    According to the blurb, the M Audio Fast Track (USB) 'is class compliant in Mac OSX offering true plug-and-play operation. Just plug in, and you're ready to start recording'. This is why I bought it, but I am experiencing no end of problems actually getting it to register with Garageband '08.
    The problems are (a) I cannot hear any sound coming 'through' the Fast Track and Garageband (b) I can hear the guitar if I plug the headphones into the Fast Track, but nothing is recorded in Garageband (c) my mic, which is plugged into the line socket intended for guitars because I don't have the larger connection, reports no sound at all.
    Any ideas, or tips to how others have managed to set up this 'plug-and-play' device would be greatly welcomed.

    Did you ever get this to work? I just today bought a Fast Track Pro. I have it hooked to my MBP via USB. I can see in control Panel two inputs:
    M-Audio Fast Track Pro UDB: Line Input
    M-Audio Fast Track Pro UDB: S/PDIF
    Problem is, there is no sound registering on the Input Level on either choose.
    I have the Power On and have tried both Input 1 & 2, bith in stereo and mono mode.
    (Just to be clear, I connect the electric guitar directly to the Fast track pro, correct?)
    I have read the owners manual but it is worthless. I thought this would be easy to set up.
    Also note that GarageBand preferences the Audio Output and Input are selected to Fast Track Pro.
    What am I doing wrong?

  • Problems using Acrobat Pro to scan with 10.5.2 and HP7280

    Hello,
    I'm hoping someone can help me. I'm trying to use Acrobat Pro to create PDF via scan. The scanner I have is an HP Photosmart C7280 all in one. When I try to use it, it starts up HP Scan Pro and gives option is scan to Acrobat. Unfortunately, when I ask it to do so, it crashes Acrobat.
    Any ideas on what to do to make this work?
    Thanks

    BTW: whats with this Îικε stuff.
    As for Adobe/HP.
    They have had a long running feud of Sorts for years running.
    there was a very long period that spanned several versions of Acrobat, and HP Print Driver Updates. where every time adobe issued an update for Acrobat. Hp had to turn around and issue an update to their print Drivers.
    The controversy swilled around If a Pdf was printed through acrobat or Reader to an Hp Printer all you would se was a series of very fine line screwed sideways much like looking at a TV screen the Horizontal hold adjustment was out of whack.
    I'm sure Aandi , and Mike as well as myself posting thousands of times over the years to use the work around of going to print menu advanced and choosing print as image. And if it cleared the problem, to get on the horn with HP and let them know their driver was broken.
    HP would fix it it work for a month and Adobe would do another update, and the same thing would happen.
    It would be like the joke about Peat and repeat sat on a fence. If Peat fell off who's left? Pete. Then you would say repeat. And the person telling everything would repeat until you caught on.
    You would think that a Software That depending highly on how printers would print would actually have sample of printers from the printer vendors to test on.
    I also find it strange you never hear of any other printers having as much problems with adobe products.

  • Anyone having problems using non-apple mains charger with Classic?

    I have 2g nano which works fine with my generic ipod charger. I'm about to upgrade to an 80gb Classic. Anyone have any problems using these?

    xavierlopez wrote:
    I found this "recipe" in a another forum and it worked!
    a) Disconnect all your devices from icloud (ipod, iphone, mac, etc.)
    b) Reset and CHANGE your Apple ID password
    c) Reconnect all devices
    and Voila!
    Voila what?
    Unless you put the new password in all devices they won't reconnect.

  • How can I use the remote that comes with MacBook?

    I have a MacBook remote (old macbook, not the pro). I no longer have the macbook computer, but I hope I can still use the remote. I do not know how. Please help me.

    Only if it has IR support. Otherwise, it cannot. You would need to connect an IR receiver to the USB port.

  • Impossible to use CallbackHandler for WS-Security with Jdeveloper 11.1.2.1

    I have created WS client and proxy with JDeveloper 11.1.2.1 wizard. Security: oracle/wss10_username_token_with_message_protection_client_policy.
    For the callback handler I use the following class (API: http://download.oracle.com/javase/6/docs/api/javax/security/auth/callback/CallbackHandler.html):
    package package_test;
    import java.io.IOException;
    import java.text.DateFormat;
    import java.util.Date;
    import javax.security.auth.callback.Callback;
    import javax.security.auth.callback.CallbackHandler;
    import javax.security.auth.callback.NameCallback;
    import javax.security.auth.callback.PasswordCallback;
    import javax.security.auth.callback.TextOutputCallback;
    import javax.security.auth.callback.UnsupportedCallbackException;
    public class ClientSecurityHandlerCallback implements CallbackHandler{
    public ClientSecurityHandlerCallback() {
    super();
    public void handle(Callback[] callbacks)
    throws IOException, UnsupportedCallbackException {
    System.out.printf("%s In Callback ClientSecurityHandlerCallback.handle\n", DateFormat.getDateTimeInstance().format(new Date()));
    for (int i = 0; i < callbacks.length; i++) {
    if (callbacks[i] instanceof TextOutputCallback) {
    // display the message according to the specified type
    TextOutputCallback toc = (TextOutputCallback)callbacks;
    switch (toc.getMessageType()) {
    case TextOutputCallback.INFORMATION:
    System.out.println(toc.getMessage());
    break;
    case TextOutputCallback.ERROR:
    System.out.println("ERROR: " + toc.getMessage());
    break;
    case TextOutputCallback.WARNING:
    System.out.println("WARNING: " + toc.getMessage());
    break;
    default:
    throw new IOException("Unsupported message type: " +
    toc.getMessageType());
    } else if (callbacks[i] instanceof NameCallback) {
    // prompt the user for a username
    NameCallback nc = (NameCallback)callbacks[i];
    // ignore the provided defaultName
    System.err.print(nc.getPrompt());
    System.err.flush();
    nc.setName("uid");
    //nc.setName((new BufferedReader(new InputStreamReader(System.in))).readLine());
    } else if (callbacks[i] instanceof PasswordCallback) {
    // prompt the user for sensitive information
    PasswordCallback pc = (PasswordCallback)callbacks[i];
    pc.setPassword("pwd".toCharArray());
    } else {
    throw new UnsupportedCallbackException
    (callbacks[i], "Unrecognized Callback");
    When I try to launch client, I get the following message:
    Exception in thread "main" java.lang.ClassCastException: package_test.ClientSecurityHandlerCallback cannot be cast to javax.xml.ws.handler.Handler
    I have tried another approach, with
    public final class ClientSecurityHandler implements SOAPHandler<SOAPMessageContext> , but I don't manage to put username in the existing uesrname/timestamp token.
    How can I set uid/pwd to work with this security scheme?
    Thank you
    Igor

    I have created WS client and proxy with JDeveloper 11.1.2.1 wizard. Security: oracle/wss10_username_token_with_message_protection_client_policy.
    For the callback handler I use the following class (API: http://download.oracle.com/javase/6/docs/api/javax/security/auth/callback/CallbackHandler.html):
    package package_test;
    import java.io.IOException;
    import java.text.DateFormat;
    import java.util.Date;
    import javax.security.auth.callback.Callback;
    import javax.security.auth.callback.CallbackHandler;
    import javax.security.auth.callback.NameCallback;
    import javax.security.auth.callback.PasswordCallback;
    import javax.security.auth.callback.TextOutputCallback;
    import javax.security.auth.callback.UnsupportedCallbackException;
    public class ClientSecurityHandlerCallback implements CallbackHandler{
    public ClientSecurityHandlerCallback() {
    super();
    public void handle(Callback[] callbacks)
    throws IOException, UnsupportedCallbackException {
    System.out.printf("%s In Callback ClientSecurityHandlerCallback.handle\n", DateFormat.getDateTimeInstance().format(new Date()));
    for (int i = 0; i < callbacks.length; i++) {
    if (callbacks[i] instanceof TextOutputCallback) {
    // display the message according to the specified type
    TextOutputCallback toc = (TextOutputCallback)callbacks;
    switch (toc.getMessageType()) {
    case TextOutputCallback.INFORMATION:
    System.out.println(toc.getMessage());
    break;
    case TextOutputCallback.ERROR:
    System.out.println("ERROR: " + toc.getMessage());
    break;
    case TextOutputCallback.WARNING:
    System.out.println("WARNING: " + toc.getMessage());
    break;
    default:
    throw new IOException("Unsupported message type: " +
    toc.getMessageType());
    } else if (callbacks[i] instanceof NameCallback) {
    // prompt the user for a username
    NameCallback nc = (NameCallback)callbacks[i];
    // ignore the provided defaultName
    System.err.print(nc.getPrompt());
    System.err.flush();
    nc.setName("uid");
    //nc.setName((new BufferedReader(new InputStreamReader(System.in))).readLine());
    } else if (callbacks[i] instanceof PasswordCallback) {
    // prompt the user for sensitive information
    PasswordCallback pc = (PasswordCallback)callbacks[i];
    pc.setPassword("pwd".toCharArray());
    } else {
    throw new UnsupportedCallbackException
    (callbacks[i], "Unrecognized Callback");
    When I try to launch client, I get the following message:
    Exception in thread "main" java.lang.ClassCastException: package_test.ClientSecurityHandlerCallback cannot be cast to javax.xml.ws.handler.Handler
    I have tried another approach, with
    public final class ClientSecurityHandler implements SOAPHandler<SOAPMessageContext> , but I don't manage to put username in the existing uesrname/timestamp token.
    How can I set uid/pwd to work with this security scheme?
    Thank you
    Igor

  • Problems using 4096 bit SSL certificate with WebLogic Apache 2.2 plug-in

    Hi,
    'm using WebLogic 9.2 MP3 and Apache HTTP Server (version 2.2) Plug-In. For security reasons, I have SSL installed on both Apache and WebLogic. So Apache must communicate with WebLogic via https.
    I get the following error when attempting to access WebLogic via Apache:
    Internet Explorer cannot display the webpage
    These are the last lines in wlproxy log:
    Fri Feb 26 14:08:59 2010 <71212672221392> INFO: SSL is configured
    Fri Feb 26 14:08:59 2010 <71212672221392> SSL Main Context not set. Calling InitSSL
    Fri Feb 26 14:08:59 2010 <71212672221331> INFO: Initializing SSL library
    I've found that the problem is caused by using a 4096 bit intermediate cert. When I include this 4096 bit cert in the file referenced by plugin parameter "TrustedCAFile", it is unable to load it. I've tested 4096 bit certs from a few different certificate authorities, and consistently see this problem, so I know the problem is not related to the specific certificate. If I use a 2048 bit intermediate certificate, everything works perfectly fine.
    Do you know if there are limitations to the certificate length that the plug-in can use?

    Yes 4096 bit Certificates are not supported by the plugin.
    You can use up to 2048 bit.
    There is a Bug which clearly mentions it.
    I dont remember the Bug Number, but an Oracle Support person will be able to tell you.
    Hope this helps.
    Faisal Khan
    Edited by: Faisal Khan on Feb 27, 2010 2:08 PM

  • How can I use the accordion panel widget with a footer?

    Hi,
    My question is may be not clear. So I'm gonna be more specific. I'm using a menu for my website with the accordion panel widget. The menu is working fine and when I'm opening it, it pushs the items below on the pages.
    My problem is with the footer of the page. Because, when the items below the widgets are pushed, they go below the footer and the footer is not pushed.
    Is there any way to pushe the footer when I use the accordion widget? I don t want to overlap it.

    I assume this is what you want to achieve in the footer....
    Make sure in Muse before you export that the panel is closed, and also as Brad suggested, make sure Overlap Items Below is unchecked. I would also check the "Can Close All" button.

  • Problem using portlet's fork render with simplify url servlet

    Hi,
    I'm creating a portal with bea weblogic portal and for simplify the urls I'm using the example of edocs to do this.
    http://edocs.bea.com/wlp/docs81/url/simplify.html
    Everything works fine until i need to use the portlet fork render functionality to increase performance, since now I'm getting the following error:
    Error 500--Internal Server Error
    java.lang.ClassCastException
         at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:257)
         at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:204)
         at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:146)
         at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:333)
         at com.bea.netuix.servlets.manager.UIServlet.processControlTree(UIServlet.java:220)
         at com.bea.netuix.servlets.manager.PortalServlet.doPost(PortalServlet.java:820)
         at com.bea.netuix.servlets.manager.PortalServlet.doGet(PortalServlet.java:671)
         at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:147)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:348)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:328)
         at pt.pj.portal.servlets.PageServlet.doGet(PageServlet.java:239)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at pt.pj.portal.filters.CompressionFilter.doFilter(CompressionFilter.java:58)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at pt.pj.portal.filters.LogFilter.doFilter(LogFilter.java:41)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6987)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3892)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2766)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    The problem only occurs if I use the simplify url servlet since if i use the portal file directly everything works fine.
    Anyone knows what I'm doing wrong?
    Thanks in advanced,
    rjc

    Anyone has an answer for my question?
    Thanks in advanced
    rjc

  • Implementing local user security with ZCM11

    Hi all
    we have been a very traditional NetWare-Company neglecting all local user security (on windows) as we always tried to force the users not to save any data on local drives (but only on our NetWare- or OES-drives). So all of our users work on the local windows Administrator-account without any password.
    With a new IT-Management in place, this has to change. The new management wants to make sure laptops can't be used when stolen.
    So we have the following requirements to implement:
    1) local user account with central policies in place
    2) the local user account has to be single sign on with NDS (only one password to enter for local user account and nds login)
    3) user roaming (user should be able to change physical machine and get the same environment)
    So far, we have used ZCM 11 primarily for software deployment. We are on ZCM 11.2.4.
    I do have an idea how to implement Point 1) and 3), but i am unsure which way to go for the SSO part (Point 2)
    hopefully, someone can point me in the right direction.
    Thanks
    Andrej
    Andrej Dimic
    Karl Bubenhofer AG
    Hirschenstrasse 26
    9200 Gossau
    e-mail: [email protected]
    Tel. +41 71 387 43 87

    Hello Thomas
    yes, DLU is what we needed.
    Thanks for pointing me in the right direction.
    Andrej
    Andrej Dimic
    Karl Bubenhofer AG
    Hirschenstrasse 26
    9200 Gossau
    e-mail: [email protected]
    Tel. +41 71 387 43 87
    >>> thsundel<[email protected]> 18.06.2014 17:06 >>>
    Andrej Dimic;2323232 Wrote:
    > Hi all
    >
    > we have been a very traditional NetWare-Company neglecting all local
    > user security (on windows) as we always tried to force the users not to
    > save any data on local drives (but only on our NetWare- or OES-drives).
    > So all of our users work on the local windows Administrator-account
    > without any password.
    >
    > With a new IT-Management in place, this has to change. The new
    > management wants to make sure laptops can't be used when stolen.
    >
    > So we have the following requirements to implement:
    > 1) local user account with central policies in place
    > 2) the local user account has to be single sign on with NDS (only one
    > password to enter for local user account and nds login)
    > 3) user roaming (user should be able to change physical machine and get
    > the same environment)
    >
    > So far, we have used ZCM 11 primarily for software deployment. We are on
    > ZCM 11.2.4.
    >
    > I do have an idea how to implement Point 1) and 3), but i am unsure
    > which way to go for the SSO part (Point 2)
    >
    > hopefully, someone can point me in the right direction.
    >
    > Thanks
    > Andrej
    >
    > Andrej Dimic
    > Karl Bubenhofer AG
    > Hirschenstrasse 26
    > 9200 Gossau
    > e-mail: [email protected]
    > Tel. +41 71 387 43 87
    I believe the DLU policy is what you are looking for in Point 2). Then
    the user can login to the workstation with the same credentials as they
    have in NDS.
    Thomas
    thsundel
    thsundel's Profile: https://forums.novell.com/member.php?userid=128
    View this thread: https://forums.novell.com/showthread.php?t=477797

  • Problems using Spotify's onscreen keyboard with Samsung smart TV

     Please help! I've been trying to login to my Spotify premium account (adding it to an existing account on the TV) on my Samsung smart TV, but every time I enter my username and then choose "done" to enter my password, the onscreen keyboard no longer works! It opens again like it should, but using the TV remote, I can't actually "touch" or "click" any of the letters/keys to enter my password, so I'm literally just stuck at that screen until I exit the app. Has anyone else dealt with this??? Extremely frustrating, as I feel I'm missing something really basic. Thanks in advance!

    You need some software running on your mac such as elgato's eyeconnect.
    This allows your tv to stream content from the mac.
    There is currently a free 30 day trial of the software.  I have it and it works fairly well although some protected content such as itunes purchased movies do not play although it has no problem streaming movies i have copied onto the mac from dvd's i own.
    Drew :-)

Maybe you are looking for

  • Problems creating aggregation levels over a Multiprovider

    Hi experts, When I create a aggregation level over a multiprovider the system returns an error " Infoprovider XX cannot be used for definition". I have read other threads with the same question and its solutions. I have checked my system and all is c

  • Job error nmo setuid is not set

    I am not able to submit any job on agent database machine it error out with mesg nmo setuid is not set

  • HHhheeellpp...bout battery

    I own a white Macbook Core 2 Duo, i used it less then 5 time since i bought it, but the battery even not last longer till 6hrs, i din turn on any programs,did not insert any cd or dvd, i just leave it in standby mode, but as i have fully charged, the

  • Bug with Adobe CC in multi display

    Hello everyone, Since few days I'm having some troubles with Illustrator and Indesign CC. When I click on the + button to use Illustrator or Indesign in full screen it work well for my main screen but it doesn't work on my second screen. This is Illu

  • Physical Inventory-difference posting

    Hi all, Need to share your experience. Can we enter reason code while posting differencees for physical counting?? Regards, Santosh