User Authentication Mechanism

Hi All.
I have some piece of code that I need your opinion of:
It is deliberately "elongated" to show a bit of detail. Here we go then
public boolean login(String usernameGiven, String passwordSupplied)
        try
            // Declare some constant values
            final String user = this.database_user;
            final String password = this.database_password;
            int resultCount = 0;
            // check for blank values
            if ((usernameGiven.trim().length() == 0) || (usernameGiven == null) || (passwordSupplied.trim().length() == 0) || (passwordSupplied == null))
                throw new java.lang.NullPointerException("Invalid username or password!");
            // we now connect to MySQL
            Class.forName("com.mysql.jdbc.Driver").newInstance();
            Connection connection = DriverManager.getConnection("jdbc:mysql://localhost/access?", user, password);
            Statement statement = connection.createStatement();
            String query = "SELECT * FROM users WHERE username='" + usernameGiven + "' AND password=MD5('" + passwordSupplied + "')";
            ResultSet rs = statement.executeQuery(query);
            // Get the results
            while (rs.next())
                String name = rs.getString("username");
                int flag = rs.getInt("flag");
                resultCount++;
                if (rs.getString("username").trim().length() != 0)
                    return true;
                if (resultCount != 1)
                    return false;
            connection.close();
        catch (Exception e)
            return false;
        return false;
    }Thats the method. The aim of which is to authenticate users. What I had in mind is this:
1. The username is unique
2. Each username must be accompanied by a password
3. The passwords may not necessarily have to be unique
So if a user supplies a username and a password, there maybe one and only one match for the username and password supplied.
If there is a match, only one result row gets returned. And if one row is returned, we have a "true" boolean value, else we have a "false".
Thus my question is, is this the best way to go about it?

I assume that, if username is unique then you also have a unique constraint on the table to make sure this is always true. If so then you really don't need to fetch the data from the cursor because the rs.next() will fail if the username and password are incorrect. You can simplifiy your code to
ResultSet rs = statement.executeQuery(query);
boolean found = rs.next();
rs.close();
statement.close();
connection.close();
return found;You may even want to change "SELECT * FROM ..." with "SELECT 1 FROM ..." so the database driver doesn't have to read a bunch of unnecessary data. I doubt you will notice any performance difference but it may make the code easier to maintain.
Or, if you now how to create a stored procedure you can move the SQL into the procedure (passing it the username and password as parameters) and have it simply return a 1 if found or 0 if not. This will allow the database to skip the parse operation and result in even less network traffic. This also puts your authenticaton logic into a central location that can be called from different client apps, if necessary.
Also, just FYI, you should check if username and password are null before checking if the length is zero. If it is null the length check will throw a null pointer exception. If you reverse these the null check will be true and the length check won't be performed.

Similar Messages

  • Is following message due to 'Java' setting left unchecked? Mac OSX supportsUser Authentication Mechanism (UAM) plug - ins from other manufacturers to control access to servers.To use a UAM, copy the plug - in to: Library/ Filesystems/ AppleShare/ Authenti

    Is following message due to 'Java' setting left unchecked?
    Mac OSX supportsUser Authentication Mechanism (UAM) plug - ins from other manufacturers to control access to servers.To use a UAM, copy the plug - in to: Library/ Filesystems/ AppleShare/ Authenti

    Man that is an ancient message.
    The last time I saw that was using Mac clients connected to a Microsoft (Windows) Server running 'Services for Macintosh' which included the ability to act as an AppleShare compatible file server. Because Microsoft have a different security system for defining accounts which includes the 'domain' as well as username, the standard Mac AFP client did not know how to send that information.
    Therefore Apple made it possible to installed a plugin in the form of a UAM or User Authentication Mechanism which added the ability to send this information to login to the fileserver.
    See http://support.microsoft.com/kb/101747
    However Microsoft have long discontinued 'Services for Macintosh' and now the only way for a Mac to connect to a standard Windows Server is via SMB not AFP. I don't believe this plugin is available to download anymore.

  • 550 Local user only or Authentication mechanism

    follow is the source code of a jsp page used to send mail, while when ran ,i got an exception :
    Invalid Addresses; nested exception is: class com.sun.mail.smtp.SMTPAddressFailedException: 550 Local user only or Authentication mechanism
    why?
    and following is the source code of the jsp page:
    <%@ page import="javax.mail.Session,
    javax.mail.Message,
    javax.mail.internet.MimeMessage,
    javax.mail.internet.InternetAddress,
    javax.activation.DataHandler,
    javax.mail.Transport"%>
    <%
         String host = "mail.server.com.cn";
         String username = "mayf";
         String password = "1111111";
         String from = "[email protected]";
         String to = "[email protected]";
         String content = ""; // it could be just a line of text or some HTML.
         content += "<html><head><title></title>";
         content += "</head>";
         content += "<body>";
         content += "HTML works fine but you could just cut these lines...";
         content += "</body>";
         content += "</html>";
         String subject = "test SMTP";
         java.util.Properties props = System.getProperties();
         props.put("mail.smtp.host", host);
         props.put("mail.smtp.auth","true");
         Session mailSession = Session.getDefaultInstance(props, null);
         Message message = new MimeMessage(mailSession);
         message.setSubject(subject);
         message.setFrom(new InternetAddress(from));
         try {
              message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
         } catch (Exception e) {
              out.print(e.getMessage());
         message.setDataHandler(new DataHandler(content, "text/html"));
         try {
              Transport transport = mailSession.getTransport("smtp");
              transport.connect(host, username, password);
              transport.sendMessage(message, message.getAllRecipients());
              transport.close();
         } catch (Exception e) {
              out.print(e.getMessage());
    %>

    Hi, i'd try getReturnCode since it involves some server error response..
    Class SMTPAddressFailedException
    public int getReturnCode()
    Return the return code from the SMTP server that indicates the reason for the failure. See RFC 821 for interpretation of the return code.
    --------------------------------------------------

  • 802.1x for user authentication setup questions

    Hi,
    I am fairly new to the 802.1x realm, I have read several documents on how the setup is accomplished and I was hoping someone could validate the setup I have in mind to make sure I am on the right page.  Any comments or assistance would be greatly appreciated, I do not have the infrastructure to test everything before hand.
    I have a remote site with a switch and router.  I want to authenticate users using their AD credentials. At the datacenter I will have ACS 5.2, a Windows 2008 enterprise server for AD service and CS service. I do not have the option to install an additional client on the PC like anyconnect, I need to use Windows OS supplicant without installing physcial certificates on the machine.
    - Within the CS service I will generate a certificate that will be imported by ACS.
    - I will activate ACS to integrate with AD
    - I do not want to insall certificates on the client machines so I will use PEAP w/ MSCHAPv2
    - The authenticating clients will be XP w/ SP3, I am hoping that a group policy can be created to enabed the wired service to start automatically and I will also need to add my CS/CA server as a trusted authority unless I purhcase a verisign certificate to be used. Correct? or will this need to be done when the desktop image is installed on the pc?
    Additional Questions:
    - With the setup I described above using MSCHAPv2 when the user boots the computer in the morning, hits ctrl+alt+delete and provides their AD credentials will this act as a single sign on? first authenticating them through 802.1x so the port is authorized and then authenticating them to the AD server? or will there be some type of pop up window that will appear before the ctrl+alt+delete window? making the user provide credentials twice (annoying)
    - Once the user is autheticated can I push an ACL down to the switch to enforce a set policy? or does this happen on the router?
    - Most of the documents I have read are related to L2 802.1x is there a  L3 option that includes the router that I should be looking at to  provide more features?
    - can anyone speak to their experience with the Windows OS supplicants? is the functionality flaky/clunky or if the backend is setup properly it works seamlessly?
    Sorry for the long winded post but I am kind of shooting in the dark without having the equipment to test with. Any help is appreciated!
    Thanks

    Thanks too you both for the responses.
    I have a few followup questions which I have added inline.
    Q:
    - With the setup I described above using MSCHAPv2 when the  user boots  the computer in the morning, hits ctrl+alt+delete and  provides their AD  credentials will this act as a single sign on? first  authenticating them  through 802.1x so the port is authorized and then  authenticating them  to the AD server? or will there be some type of pop  up window that will  appear before the ctrl+alt+delete window? making  the user provide  credentials twice (annoying)
    A:  If you select "Use windows credentials" it won't prompt you for credentials. so All automatic.
    However  note that it will only login AFTER you entered the credentials on the  logon page. So you won't have network connectivity for the initial  logon, so no login scripts this way.
    With your comments I am rethinking my approach, I am considering that if the company security policy will allow it I will do machine authentication only instead of user auth.   Obviously this is not as secure since a rogue user could change the local admin password and have access to the network.  But interms of simplicity and ease of use machine authentication provides a transparent authentication mechanism that should suffice.  I would just have to sell the solution to security. 
    There a few things I need to understand before persuing this.
    - will the machine be 802.1x authenticated and on the network before the  ctrl+alt+delete? so when user logs in the machine has passed 802.1x  already and has received ip from dhcp? this is my hope.
    - is peap/mschap still the supported protocol so no physical cert is required per machine? no EAP-TLS
    - is the machine profile on the AD server used for 802.1x verification/authentication? meaning ACS will pass off to AD to verify the machine is part of the domain? or do you have to create machine profiles in ACS?
    - I have read a few articles out there about issues with machine auth with clients using XP, perhaps this was related to previous serivce packs before SP3? there was mention of registery changes required etc.
    - is there a different supplicant offered by cisco that is more robust that would provide more stability or is the cisco supplicant cost money per user license or other etc.
    Again your feedback is invaluable as I do not have the physical equipment to test with.  Unfortunatly I have to propose a solution before actually testing something which I am not particularly fond of.
    Regards,
    Eric

  • Sun Ray Smart Card User Authentication

    Hello All,
    I recently installed SRSS 4.1 I created 6 users for testing, 3 of which use SRWC to connect to Windows VM's. My problem is with the smart cards. They are required for the user access the SunRay and that part works, however it doesnt seem the cards are binded to any particular user. For instance any of the 6 cards can be inserted and logged into any of the accounts (correct username and pw of course). I thought that each card was linked to one user account which provided increased security. The way it is working now is kind of useless.
    Any Suggestions?

    Hi,
    It depends very much on which type of card you are using and what authentication mechanism you set up.
    The SIMPLE card that SUN ships as the Sun Ray card does AFAIK not have any options for personalisation on the Card.
    What you can do with it is to use AMGH ( Advanced Multi Group Homeing is a SunRay server feature ) and tie
    the CARD ID to a user name. So that when the card is inserted in the Sun Ray , you user ID will be pre-entered in the
    UNIX login dialoge. But this does not prohibit the card from being used to log in as a differernt user ID .
    If you use the Sun VDI 2.0 ( virtual desktop infrastructure ) software. You need to Populate the Sun Ray Server DataStore
    with the Names that will be used as machine names of the virtual PC's in VMware. It is almost nessesary that the
    User name is equal to the Vmware Virtual Machin name.
    So in VDI the the Username in SRS-DS assoiated with a CARD becomes the virtual Machine name.
    ( this is not the same as the user name in AMGH but keeping the two the same probably limits the confusion )
    If you get hold of a more advanced Public KEY Interchange card, it is possible to set up PKI login to a windows session
    this involves some software in the windows XP client to read the smart card in the Sun Ray and to authenticate the card
    whit PKI to a known certificate that you have stored for the Card in a Directory ( Active Directory or some other one )
    The Sun Ray server can be loaded with the PC/SC - bypass software that allows a Windows server/client using the
    Sun Windows Connector RDP software, to read and write directly to the SmartCard inserted in the SUnRay.
    The Virtual PC or terminal server will work with the Smartcard reader as if it was local on the WIndows machine.
    The "Active CARD" company has such a solution amongst others.
    Regards
    //Lars

  • Go URL - User Authentication Failure

    Hi,
    I am trying to use a 'Go URL' in web application and I see some issue with authentication mechanism.
    I was able to login and view the dashboard whenever the username used in the 'Go URL' is from the console. But if the user who is from Active directory is used in the 'Go URL' link, then I get the login page saying 'Invalid username or password'. When I check the log file, it says ' [53012] User Authentication Failure'.
    Also the AD user can login from the login page, but not thru 'Go-URL' link.
    Can anyone let me know whether I am missing any step?
    Thanks

    969211 wrote:
    I was able to login and view the dashboard whenever the username used in the 'Go URL' is from the console. But if the user who is from Active directory is used in the 'Go URL' link, then I get the login page saying 'Invalid username or password'. When I check the log file, it says ' [53012] User Authentication Failure'.
    Also the AD user can login from the login page, but not thru 'Go-URL' link.
    Can anyone let me know whether I am missing any step?Check the usage of Go URL first : http://docs.oracle.com/cd/E21043_01/bi.1111/e16364/apiwebintegrate.htm
    If you dont user NQUser and NQPassword then they will be prompted for a password. you need to http://<hostname.domain>:9704/analytics/saw.dll?Dashboard&PortalPath=<your GO URLpath>*&NQuser=USERNAME&NQPassword=PASSWORD*
    You should not access if URL without logging in.
    Also on different note:
    Rupesh Shelar wrote:
    Make sure your BISYSTEM password
    Go to weblogic console, http://IP address:7001/console
    Home >Summary of Security Realms > myrealm > Users and Groups > BISystemUser
    And then go to your EM (http://IP address:7001/em)
    expand weblogic domain > bifoundation_domain > Security > Credentials > oracle.bi.system ? system.user
    Just retype a new password then Restart BI All Services then test it.How is BISystemUser even related to Go URL .or this issue .?
    Hope this helps.
    Let me know the updates. Mark if it answers!
    Thanks,
    SVS

  • Programmatic User Authentication in JHS 10.1.3

    Dear JHeadstart Team,
    I want to implement such functionality that was in the JHeadstart 9.05 called "Programmatic User Authentication".
    I have implemented the authentication and role based security using JHeadstart 10.1.3 (using custom security) but I just used some predefined roles like the ones used in chapter 5 of JHeadstart Developer's Guide.
    Is it possible to have a completely dynamic user management which show/hide tabs based on information in the tables (like the ones used in the old JHeadstart with use of groups and RoleGroups and Roles tables)? If so, How can I implement that?
    Any help would be highly appreciated.
    Thanks in advance,
    Navid

    Navid,
    Yes, this is possible. JHeadstart simply calls the hasAccess method on the JhsUser interface. So, rather than passing in a role name, you can also pass in a group name, your implementation of the JhsUser interface should then pick up the group name and perform a qeury that looks up the roles that provide access to this group, and then check whether the current user is in one iof these roles. This is the same mechanism as we had in 10.1.2 JHeadstart Demo.
    Steven Davelaar,
    JHeadstart Team.

  • Trusted User Authentication

    Hi,
    Our solution currently offers three SSID's.  One corporate SSID for trusted users (employees) with trusted (company managed) devices, one guest SSID for external guests who are not trusted and use non-trusted devices and then a third "guest" SSID that allows trusted users (employees) to connect using untrusted (personal) devices to access the Internet via a separate proxy system.  The guest SSID for trusted users is the focus of this question.
    We currently use a local RADIUS database on ACS 5.2 for the users, which works but requires another user account and obvious password management overhead.  Given that a global employee directory exists which has its own account & password management system in place has made me consider this as an alternative to local authentication on ACS.
    The external identity store is an LDAP database and I have configured network access for the ACS to query the schema.
    I understand that web authentication can use LDAP as an authentication mechanism, however I would like to keep the SSID as secured using 802.1x if possible and not use an open or PSK secured solution as this would contravene current security standards.
    So, can I configure the WLC to send an authentication request to the ACS via RADIUS over 802.1x and then for the ACS to forward that request on to an external identity store using LDAPS?
    I am currently reveiwing the configuration document and believe I have each individual component in ACS configured but cannot see the LDAPS traffic ever leaving it to query the external identity store.
    Any thoughts or comments would be appreciated....
    Thanks,
    Dave

    Hi Dave,
    That is surely possible and that is what LDAP identity store is fore.
    You create the LDAP identity store and point the WLCs to use the ACS (not the LDAP server).
    Now, when a wifi client tries to connect the WLC sends the request to the ACS.
    At this point the request reached ACS. So, in order to proceed with quering the LDAP server for that user, you need to tell the ACS for this user that is connecting to this SSID please send the query to the LDAP server and trust what it tells you about the user authentication status.
    Have you configured this piece of configuraiotn on ACS? to send the traffic to the LDAP DB?
    In the Access policy you need to choose the configured LDAP identity store. Have you done that?
    If you still have problems please try to provide screenshots of you config.
    Regards,
    Amjad
    Rating useful replies is more useful than saying "Thank you"

  • User Authentication for subfolder not working in Web Browser

    We are using Oracle Application Server 10.1.2.3 and Database Server 10.2.0.5 for our application.
    One of the functionalities of the Application is to send emails with attachments.
    The logic is that the Application would generate the attachment file on the Application Server.
    Then a database package uses Oracle's utl_http package/procedures(more specifically utl_http.request_pieces where the single argument is a URL) to pick up the file from the Application Server via URL, attach the file and send the email.
    Exchange and Relay Server is also set in the Application.
    The problem is that the folder containing the folder which stores the attachments is having user authentication set.
    Example : The main folder is /apps/interface, this folder requires a valid user when it is accessed via URL on a web browser.
    Alias created in httpd.conf
    Alias /int-dir/ "/apps/interface/"
    The folder /apps/interface/email/ is the folder where the attachment files are generated and stored.
    Application Server : 10.12.213.21
    Database Server : 10.12.213.22
    Email Server : 10.12.213.44
    Configuration as per httpd.conf
    Alias /int-dir/ "/apps/interface/"
    <Location /int-dir/>
    AuthName "Interface folder"
    AuthType Basic
    AuthUserFile "/u01/app/oracle/as10g/oasmid/Apache/Apache/conf/.htpasswd"
    require user scott
    </Location>
    <Location /int-dir/email>
    Options Indexes Multiviews IncludesNoExec
         Order deny,allow
         Deny from all
         Allow from 10.12.213.21
         Allow from 10.12.213.22
         Allow from 10.12.213.44
    </Location>
    Using the above configuration the Application is able to attach the files and send the email, however, when we access the following URL :
    http://10.12.213.21:7778/int-dir/ - it prompts for user authentication
    However if we use the following URL :
    http://10.12.213.21:7778/int-dir/email/ - it does not prompt for user authentication, and all the files in the folder are displayed in the browser.
    I have tried so many things including AllowOverride, .htaccess, but i am not able to get user authentication for the email folder.
    Please help me if you can.
    Thanking you in advance,
    GLad to give any more information that i can.
    dxbrocky

    Thanks for your response.  I fixed the problem by selecting "full site" or "full website" at bottom of the web page.  After making this selection the zoom function returned.  Thanks again for your interest.

  • User Authentication failed

    Hi all,
    I like to share one of my peculiar issue with you and like to get a solution as well.
    I am trying to install a portal server with r3load based method. I did a java export of mssql Portal server and suceefully imported in the newly installed server.The server is up and running.I also completed the post installation activites like SLD ,SSO and Jco creation. I am not able to log in to the java page using administrator user and also other users..It keep on saying that user authentication is failed.
    But the beauty is that using the same adminsitrator user i am logging in the visaul administrator .
    I dont know where the problem and also i verified the log files under cluset/server nodes. There i found the log as  follows  --- > Connection is already closed and no longer associated with a managed connection,,
    I dont know where i am missing. Due to this I reinstalled the server and imported again..But the same problem is existing to me. Anyone have suggestion on this please do reply.
    Thanks and Regards
    Vijay

    Hi,
    Thnaks for reply. Its only a java system ,, So no activity needs to be done in SU01. I checked the table in database..the users are exisitng as well in the table.
    FYI: I am able to log in visaul admin but not in the java pages like
    http://<hostname>:port/
    http://<hostname>:port/irj
    Hope i explained  my problem it in right way
    Regards
    Vijay

  • Email Receiver Dynamic User Authentication, is it possible?

    Hello Experts,
    I have a scenario SAP ECC->SAP PI->Gmail Mail Server, now the interface is working fine, the thing is that I want to configure the user Authentication in a dynamic way, I tried to doit in a UDF in the Message Mapping, using the dynamic values for:
    TServerLocation
    TAuthKey
    fields, but is not working, am I using the correct header fields?, or is there another way to change this parameters?, thanks in advance for your answers.
    Regards,
    Julio Cesar

    Hello Gopal,
    Im using Plain, it works fine if I fill up the fields for User and Password in the comm channel, but if I try using the fields in a Dynamic way is not working, thanks for your answer.
    Regards,
    Julio

  • Use Microsoft Online Directory Services as a user authentication provider for our own SharePoint farm?

    Hi,
    I've managed to configure my farm so that  Microsoft Online Directory Services (Office 365 etc.) can be used for STS authentication, but what I'm actually trying to do is allow user authentication - that is, I'm hoping to be able to use the user's
    O365 credentials to authenticate them in my own farm so they can view certain parts of it. If I need to write my own login form or authentication provider or whatever that's fine, as long as the user doesn't need to enter anything when they access my farm
    (provided they already have cached O365 credentials in their browser session).
    FWIW I actually need to be able to support the possibility that users are coming from multiple O365 tenancies, whereby each site collection will be configured to allow users from a different O365 tenancy (more or less).
    If it's not possible to do with my own development farm on a PC, it is possible if the farm is hosted in Azure?
    Thanks
    Dylan

    Hi  Dylan,
    According to your description, my understanding is that you want to use Microsoft Online Directory Services as a user authentication provider for your SharePoint farm.
    For your demand, you can configure a hybrid topology for your SharePoint farm:
    http://technet.microsoft.com/en-us/library/jj838715(v=office.15).aspx
    http://technet.microsoft.com/en-us/library/dn197168(v=office.15).aspx
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Eric Tao
    TechNet Community Support

  • User Authentication in Web Dynpro Java

    Hi guys,
    I was just wondering how user authentication can be achieved in WDJ? In Web Dynpro ABAP this comes for free when you launch an application. However, in WDJ we can deploy and call the URL without any authentication at all. Is there a way to configure this or do we really have to code this? Thanks! Generous points will be awarded!

    Hi Alex,
    check this links,
    Re: User Authentication in Web Dynpro Application
    Authentication of Web Dynpro
    Using Web Dynpro authentication for a Web Service call
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/dd48d990-0201-0010-92a3-c3ed7e9fd244
    http://help.sap.com/saphelp_nw04s/helpdata/en/04/ee8b8b0d23b746854897adc5611c1d/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/8304e990-0201-0010-ed8b-d978f1e67b1e
    Regards,
    vino

  • End-to-End user authentication with XI

    Dear community,
    we sit in a situation where the customer wants to have an end-to-end-authentication throughout an integration process.
    The setup is as follows: a dialog-user in a legacy system uses an application that triggers an integration process through XI into SAP ERP. The dialog-user in the legacy system must be used for authentication in XI as well as SAP ERP.
    To avoid having to re-create all users in XI and SAP ERP, ideally an LDAP instance would be used for authentication.
    Based on my knowledge, the above scenario is not possible with XI and there is a 2 year old thread discussing the same without any positive outcome:
    XI and user authentication VS R/3 systems
    Nevertheless I consider this requirement as a pretty standard one. Has there been any development in this area - or how have similar customer requirements been met ?
    Thanks a lot in advance !
    Jochen

    Hi Jochen,
    i've heard rumours saying that credential forwarding will be incorporated in the next XI release as it is a rather frequent requirement by customers and will make live much easier.
    Maybe you can get a statement through your clients SAP account representative on the release date and the planned feature.
    Regards
    Christine

  • GRC AC 10.0 - CUP User Authentication

    Hi All
    We have installed GRC AC 10.0 as a part of ramp up implementation. We will soon start with the configuration steps. For user interfacing we have 2 options (1) NWBC (2) Portal. Architecture of GRC AC 10.0 is based on webdynpro ABAP.
    Now we had a question wherein if we choose NWBC as a front end, then how do we integrate the LDAP for CUP user authentication.
    If we need to integrate LDAP as a authentication source for users in CUP, do we have the only option of going with Portal as a user interface.
    Please advise.
    Thank you.
    Anjan pandey

    > That feature in AC 10.0 is called End User Login and will have it's own URL to access via browser.
    Thanks Frank for your response. I did go through the RKT documents and seems that there is a link through which the end users will create request. we have also planned to setup a LDAP connectivity for user authentication.
    Thanks.
    Anjan Pandey

Maybe you are looking for

  • Data acquisition time not continuous, but starting over and over again

    Hi, My data acquisition time is not continuous but loops over and over again.  Could someone please take a look at my vi to see if you have any thoughts on how to fix this.  Also, I tried to set up my vi so that I could take the mean of the signal at

  • Client Copy Export/Import on large system. 1.5 TB

    Hi, We have a 3 tier landscape. DEV, TST, PRD. Database size in PRD is 1.5 TB (1500 GB) Our developers need fresh master and trans data in TST and DEV. We are thinking about making a PRD --> TST  (1.5 TB) we do a system copy. TST --> DEV (1.5 TB) we

  • Street 4 and street 5 not appearing in XK01

    street 4 and street 5 not appearing in XK01 Screen is 301. We are not able to view street 4 and street 5 in XK01. Thanks Tirth

  • Tiger System De-activated

    I bought a used Pismo laptop about 3 years ago. It had Tiger installed, but not OS 9.x. I recently noticed that the firmware had not been updated (you're supposed to update prior to installing OS X). I thought that I would update the firmware by inst

  • Help, Not able to publish since moving from Florida to Vietnam.

    I receive a message at the end of a very long wait during the publishing phase that there was a publishing error and I should try later. This has only happened since moving from USA to Vietnam. Any ideas? Thank you.