MDSD 3.0 - Password Check trouble

Hi Folks!
We have finally managed to download the tour related data to the hand held device (delivery, transport, clients, materials, etc). The problem we are having is that after we click Ok-Proceed to start the day we are getting a password check.
We have configured the Administration of Mobile Device, we have defined:
Group: CHECKER
Role ID: SUPERVISOR
And SUPERVISOR is assigned to group CHECKER, and it has a password correctly defined.
We have tried to enter as user name: CHECKER, SUPERVISOR, the synchronization user, with the password defined and we haven't being able to go through this.
Can anyone kindly help us through this. I've been really stuck with this.
Thanks in advance for any help.
Regards,
Gilberto Li

I made a fresh install of the device client and now it's working.

Similar Messages

  • I can't get firefox to remember my passwords and open the site automacially, It did it at first when I installed firefox but now it won't and I have remember passwords checked in the tool

    I just reinstalled firefox on my computer and the password feature to remember then worked for all my sites for a couple days and now firefox does not remember my username or password and I have remember password checked in the tool section. What can I do to correct this. Does it have anything to do with me having the setting to not remember any history?

    Did you look at this? Should be helpful :)
    http://support.mozilla.com/en-US/kb/Username%20and%20password%20not%20remembered#os=win&browser=fx4

  • Username and password check problem

    I have learned Java for 3 months and I am going to finish a project for the school. I have had some problems on username & password check and authorization from SQL database using ODBC. Any source code I can learn from?
    Thanks in advance.

    I'm not too clear on what you exactly want, but here's an example from my book using "username", "password", and a "database". I can send you the db file if you need to see it. I hope this helps.
    // Fig. 18.24: TableDisplay.java
    // This program displays the contents of the Authors table
    // in the Books database.
    import java.sql.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class TableDisplay extends JFrame {
    private Connection connection;
    private JTable table;
    public TableDisplay()
    // The URL specifying the Books database to which
    // this program connects using JDBC to connect to a
    // Microsoft ODBC database.
    String url = "jdbc:odbc:Books";
    String username = "anonymous";
    String password = "guest";
    // Load the driver to allow connection to the database
    try {
    Class.forName( "sun.jdbc.odbc.JdbcOdbcDriver" );
    connection = DriverManager.getConnection(
    url, username, password );
    catch ( ClassNotFoundException cnfex ) {
    System.err.println(
    "Failed to load JDBC/ODBC driver." );
    cnfex.printStackTrace();
    System.exit( 1 ); // terminate program
    catch ( SQLException sqlex ) {
    System.err.println( "Unable to connect" );
    sqlex.printStackTrace();
    getTable();
    setSize( 450, 150 );
    show();
    private void getTable()
    Statement statement;
    ResultSet resultSet;
    try {
    String query = "SELECT * FROM Authors";
    statement = connection.createStatement();
    resultSet = statement.executeQuery( query );
    displayResultSet( resultSet );
    statement.close();
    catch ( SQLException sqlex ) {
    sqlex.printStackTrace();
    private void displayResultSet( ResultSet rs )
    throws SQLException
    // position to first record
    boolean moreRecords = rs.next();
    // If there are no records, display a message
    if ( ! moreRecords ) {
    JOptionPane.showMessageDialog( this,
    "ResultSet contained no records" );
    setTitle( "No records to display" );
    return;
    setTitle( "Authors table from Books" );
    Vector columnHeads = new Vector();
    Vector rows = new Vector();
    try {
    // get column heads
    ResultSetMetaData rsmd = rs.getMetaData();
    for ( int i = 1; i <= rsmd.getColumnCount(); ++i )
    columnHeads.addElement( rsmd.getColumnName( i ) );
    // get row data
    do {
    rows.addElement( getNextRow( rs, rsmd ) );
    } while ( rs.next() );
    // display table with ResultSet contents
    table = new JTable( rows, columnHeads );
    JScrollPane scroller = new JScrollPane( table );
    getContentPane().add(
    scroller, BorderLayout.CENTER );
    validate();
    catch ( SQLException sqlex ) {
    sqlex.printStackTrace();
    private Vector getNextRow( ResultSet rs,
    ResultSetMetaData rsmd )
    throws SQLException
    Vector currentRow = new Vector();
    for ( int i = 1; i <= rsmd.getColumnCount(); ++i )
    switch( rsmd.getColumnType( i ) ) {
    case Types.VARCHAR:
    currentRow.addElement( rs.getString( i ) );
    break;
    case Types.INTEGER:
    currentRow.addElement(
    new Long( rs.getLong( i ) ) );
    break;
    default:
    System.out.println( "Type was: " +
    rsmd.getColumnTypeName( i ) );
    return currentRow;
    public void shutDown()
    try {
    connection.close();
    catch ( SQLException sqlex ) {
    System.err.println( "Unable to disconnect" );
    sqlex.printStackTrace();
    public static void main( String args[] )
    final TableDisplay app = new TableDisplay();
    app.addWindowListener(
    new WindowAdapter() {
    public void windowClosing( WindowEvent e )
    app.shutDown();
    System.exit( 0 );

  • I cannot get into iCloud, it sites connection error. I am online otherwise. My username and password check out. Anyone else with a similar problem?

    I Cannot getinto iCloud, it sites connection error. I am online otherwise. My username and password check out. Anyone else with this problem?

    SUCCESS! I was trying to get in with Internet Explorer, and getting the error message.
    I switched over to FireFox, and connected immediately!

  • Disabling password checking?

    Hi all,
    is it possible in Oracle to disable password checking, so that I could be connect with just
    <username>@<service name>
    without being prompted for a password?
    Now please don't condemn me... The idea is the following:
    It's all about a dedicated developer database / server.
    I have a lot of scripts which deploy the schema objects of our app, in several "connected" schemas, which are used by the app. For the sake of simplicity and speed we have been using <username>=<password>. But the consequence is, that these scripts cannot be used unchanged for deploying into production.
    It would be great, if I could only use the above mentioned connection script and by a central db-configuration, in one case it would connect me to the DB, in the other case I would be prompted for the password.
    Now please, don't value the approach. This not my idea. But is there a way disable password checking (entering question...)?
    Many thanks, in advance

    Mark D Powell wrote:
    What kind of scripts?
    What OS?
    What version of Oracle?
    We use an environment variables to hold the username and password. The OS then substitutes the current username and corresponding password into the script at run time. So the same Korn shell script we use in test can run in production unchanged and the developers do not know the production password.
    Oraclle also support global authenication via an Directory Server with the Advanced Security option.
    HTH -- Mark D Powell --I have the feeling, that you understood what I mean, still I don't understand your solution. But first I should provide more information...
    We are using 11gR2 on Linux machines, both for development as well as for production. We have a concept for continuous integration, where every schema object has it's own DDL script and then we have an allobjects.sql scripts which every single one of them (simply speaking).
    These are all SQL scripts, written to be executed in sqlplus. In SQLPLUS variables I am handling things like schema names and passwords. The "master" sql-scripts "connect"s itself to all necessary schemas for the app, and deploys every single database objects, executing its script. The consequence is, the "master" scripts contains many "connect" statements and in production every single one schema of the app, could have different password, so I can't just pass it as a parameter to the sql-script once.
    I hope, I have been more clear than the first time. So we have an app, which uses 8-9 schemas to be completely deployed. So I thought, if I could just use "<username>@<service name>" in my scripts, than the DBAs would be able to use them, unchanged, entering the production passwords, when prompted, without the developers knowing them....

  • When I try to connect to wi-fi, it asks for the password, but I got this question.  If you don't know the password, check with the Wi-Fi network administrator, but I don't know how.

    Hi All, 
    When I try to connect to wi-fi, it asks for a password.  Then I got this question.  If you don't know the password, check with the Wi-Fi network administrator, but how do I find the network administrator.

    Whomever provides the wi-fi.
    To what wi-fi network are trying to connect?

  • Password Check Failed, Fatal Error, System Halted, CNU949701P

    Hello!
    I have a HP netbook model Mini CQ 10, and I have not switched it on in a while.
    I recently went to turn it on to recover some important documents and this error message shows up;
    Password check failed
    Fatal Error... System Halted
    CNU949701P
    Canu anyone PLEASE HELP ME! I would be so grateful!
    Thank you!
    x
    This question was solved.
    View Solution.

    Try >> e9lovox132
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Password check failed fatal error system halted CNU9384PJY

    BOOTING ENTER CURRENT PASSWORD THREE TIMES GOES TO PASSWORD CHECK FAILED FATAL ERROR SYSTEM HALTEDCNU9384PJY AFTER NETBOOK SET UP FOR A WHILE THANKS FOR ANY HELP

     Enter:    e9lofuv2wi     ( 3rd character is a llower case L ) Regards, DP-K

  • Password check failed : CNU9273LZJ - need password pls

    Need password for CNU9273LZJ
    This question was solved.
    View Solution.

    Axelin
    Which password? - BIOS or Windows?
    If BIOS admin password check failed, then try this:
    e9lo7xfk0w
    all are small letters
    third letter is small case L
    fourth letter is small case O
    ninth character is number Zero
    Regards
    Visruth
    ++Please click KUDOS / White thumb to say thanks
    ++Please click ACCEPT AS SOLUTION to help others, find this solution faster
    **I'm a Volunteer, I do not work for HP**

  • Password check failed code 2MC9360C12

    My HP Mini 110 suddenly says "Password check failed, Fatal Error......System Halted. 2MC9360C12"Can somebody help me?

    Hi,           Use the below code to reset the BIOS password 74eofg1e37 You can: 1. Use the unlock code you generated to enter the BIOS
    2. Disable all passwords that are enabled in the BIOS's security menu.
    3. If asked for current password - type the unlock code
    4. For new password, just press ENTER key
    5. Repeat the same for verify password column.

  • Password check failed CNU90243DN

    PLS HELP HP MINI PASSWORD CHECK FAILED ....CNU90243DN

    Do you have Recovery Disc to boot from and reinstall Windows?
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Hi  I'm try to set up a new Epson printer SX 445 to my router/network but each time I run the set up wizard it fails to complete saying Security Key/Password Check fail.  *entered security key/password does not match the one set for for router.  I know th

    Hi
    On my macbook pro
    I'm try to set up a new Epson printer SX 445 to my router/network but each time I run the set up wizard it fails to complete saying Security Key/Password Check fail.
    *entered security key/password does not match the one set for for router.
    I know that the password is correct and have rechecked this by changing it a few times
    and I still get the same result.
    My network internet service provider is not interested and says to call Epson.
    Anybody have any clues how I can resolve this?
    Regards

    I personally suggest the new Drobo FS. Since it has an iTunes server built in and you can use any size sata hard drive in it it is better and a NAS that has to use the same size drives.

  • Hp mini 1101 password check failed. CNU941460D

    hp mini 1101 password check failed. CNU941460Dplease help me . I dono what to do..

    Welcome Sidtheguy. Try.
    e9lov3vg1t
    Third letter lowercase L.
    I must inform you that these services are not endorsed by HP, and that HP is not responsible for any damage that may arise to your system by using these services. Please be aware that you do this at your own risk.
    HP Expert Tester "Now testing HP Pavilion 15t i3-4030U Win8.1, 6GB RAM and 750GB HDD"
    Loaner Program”HP Split 13 x2 13r010dx i3-4012Y Win8.1, 4GB RAM and 500GB Hybrid HDD”
    Microsoft Registered Refurbisher
    Registered Microsoft Partner
    Apple Certified Macintosh Technician Certification in progress.

  • Adobe reader does not enable drm password check

    I am student from university of phoenix and recently I bought a galaxy tab.   For the purpose of reading my pdf files, but as I downloaded my files it did not  let me put my password to access the file.  The file is DRM protected by Vitrim systems,  and my question is: is their anyway to enable password check to acces it?

    I found that pdf reader pro for ipad works for this option, an it lets you enables the option to enter authentication for your password and user name (DRM).  Its been a couple of days and no answer for my question.  Conclusion adobe reader for android not the best option, I may sell my android tablet and buy an ipad.

  • Compaq mini 700 model 735ED windiws 7 password check failed system halted CNU91453V3

    Ciao sono nuovo nella comunita ,e non so ancora bene come funziona.
    ma come o gia detto o un compaq mini 700 model 735ED con windiws 7 e ho acceso stamattina e sulla schermata nera mi diceva di inserire la password al bios ,(non so se ci ha messo le mani mio figlio ma e strano) quindi dopo vari di inserimenti password mi dice " password check failed system halted CNU91453V3" vi prego aiutatemi

    Hi,
    Please see the reply on your earlier thread on the following link.
    http://h30434.www3.hp.com/t5/Notebook-Operating-Systems-and-Software/hp-mini-compaq-700/m-p/4491550#...
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

Maybe you are looking for

  • One premium account and multiple Skype HD devices

    Will one Premium account and multiple non premium HD accounts work for video calling? Basically the idea is 10 HD skype devices, the set top boxes connected to tvs will dial into one Premium Mac or PC account for multiple video conferencing.

  • Quicktime error code : -3

    My Toshiba Tecra S2 laptop running XP Pro SP2 went in to standby and froze there (common problem). Upon rebooting iTunes "has encountered an error and needs to close" every time I try to run it. I have uninstalled, re-downloaded and upon attempting r

  • FI-PCA balances are not matching

    Dear Experts, I have an issue where FI and Profit center account balances are not matching for period 1 for 1company code. I have tried the T.codes first F.5D then 1KEK and i tried with T.Code KE5T where i found the differences for 3 accounts. Hence

  • My 4th generation iPod nano was washed, screen is super dim, how can I fix this?

    So a few months ago, I accidentally left my blue 4th generation iPod nano in my pant pocket. My clothes were set to wash with the iPod in my pants. I'd completely forgot about it being in there. After finding out what had happened, I let the iPod soa

  • Ranlib usage in Solaris 10 - Sparc vs i386

    Hi I have applications which use ranlib (though obseleted, but legacy software) as a part to create static libraries. Now it works fine on the SPARC Solaris 10, but when the same software is compiled in i386 Solaris 10, the static libraries are not f