Quoted username/password in exp

While giveing "user_1"/"user_1" as username/password in exp utility, I am getting the following error,
exp "user_1"/"user_1"
Export: Release 11.2.0.0.0 - Development on Thu Jun 19 05:14:41 2008
Copyright (c) 1982, 2007, Oracle. All rights reserved.
EXP-00056: ORACLE error 1017 encountered
ORA-01017: invalid username/password; logon denied
But I am able to connect "user_1"/"user_1" in sqlplus prompt.
And If we try as > exp \"user_1\"/\"user_1\"
LRM-00108: invalid positional parameter value '/"user_1"'
EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
EXP-00000: Export terminated unsuccessfully
How Can I give "user_1"/"user_1" in exp?
Thanks,
Chock

First of all, you shouldn't need double quotes, why are you using them ?
Secondly, it works to me
$ exp "test"/"test"
Export: Release 11.1.0.6.0 - Production on Thu Jun 19 14:28:18 2008
Copyright (c) 1982, 2007, Oracle.  All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Enter array fetch buffer size: 4096 > which version are you using (Release 11.2.0.0.0 - Development) ? on which OS ?

Similar Messages

  • Exp-01017 invalid username/password

    Hello, all;
    I'm trying to do daily exports of a database on 8.1.5. A few months ago we had to reinstall the Oracle software and get the database running again from an export. Ever since then we've had problems doing the daily exports like we used to.
    DB runs fine, and in trying to solve the backup/export problem we have tried re-running the scripts (such as catalog.sql), making sure of OS user permissions (win2kpro, user is an Administrator, couldn't find the "batch job" one in win2k), making sure of Oracle permissions (import and export full database along with admin permissions), have even gone in to change the password to make sure it's what it should be. Nothing works but restarting the database, but we didn't have to do that before and I don't believe that should be the solution now.
    Does anyone have any idea of how to handle this? When I've tried to go into the Oracle Management Server and run a backup job, that never works, it always fails. I follow the wizard but I never get a backup.
    Please, if I need to RTFM, just point me to the right place; I can't find these answers online.
    Thanks!

    Well, the problem is that the username/password that I'm using is valid, sorry if that didn't come across. I open the DOS prompt, type "set oracle_sid = " and the sid, then "exp", then username, then password, and get the error. Also a "system error message 2, system error message: no such file or directory". Both of these error messages occur together in the DOS window. Most of the time when I'm doing this, I'm connected via VNC, and yesterday (just for giggles) I went to the machine and tried it right there. It worked after I closed and re-opened the DOS window. I've had that happen before, too, but never before we reinstalled the database.
    I'm using sysman for this, having set it up for OMS, in trying to get the backup function to work from within the Enterprise Manager (the other thing that won't work).
    Thanks!

  • Getting invalid username/password error while trying to create_queue_table

    Here is how I get it.
    connect / as sysdba
    create user aq identified by aq
    default tablespace users
    temporary tablespace temp
    quota unlimited on users;
    grant connect,
    create type,
    create procedure,
    aq_administrator_role
    to aq;
    grant execute on dbms_aq to aq;
    grant execute on dbms_aqadm to aq;
    begin
    dbms_aqadm.grant_system_privilege('ENQUEUE_ANY','AQ',FALSE);
    dbms_aqadm.grant_system_privilege('DEQUEUE_ANY','AQ',FALSE);
    end;
    connect aq/aq
    create Type aq.message_typ as object (
    subject Varchar2(30), text Varchar2(80)
    begin
    dbms_aqadm.create_queue_table(
    queue_table => 'aq.objmsgs80_qtab',
    queue_payload_type => 'aq.Message_typ',
    multiple_consumers => true);
    end;
    Error at line 1:
    ORA-01017: invalid username/password; logon denied
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 2934
    ORA-06512: at "SYS.DBMS_AQADM", line 58
    ORA-06512: at line 2

    In what version of Oracle?
    I see a couple of problems assuming you are working with a currently supported version:
    1. Never grant CONNECT to anyone: Ever. Grant CREATE SESSION.
    2. GRANT CREATE TABLE to AQ;
    Go to Morgan's Library at www.psoug.org and look at AQ Demo 1. You should have no problem cutting and pasting your way to where you are trying to go.

  • Passing Username/Password from .xsql to Oracle

    Is there any other way to connect to the Oracle than hardcoding username, password, dburl and driver in the XSQLConfig.xml file?
    Can I use parameters in .xsql files?
    The idea is that every web user connects to DB like himself, so I am looking for a way to pass Username/Password from web application to the Oracle using xsql files on every connection.
    Thanks in advance.
    Oleg.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Steven Muench ([email protected]):
    Most web applications connect as a single backend database user to maximize the benefit of connection pooling.<HR></BLOCKQUOTE>
    While that may be true for publically accessible sites, I've found many, many internal web-apps need user authentication (login, whatever). In fact, the inability to do this easily has tipped some of our projects away from web-apps.
    null

  • "ORA-1017: invalid username/password; logon denied"

    I am running Oracle Database 11g R1.
    Oracle.DataAcess.dll 10.2
    My code as below:
    string oradb = "Data Source=orcldemo;User ID=HR;Password=hr;";
    OracleConnection conn = new OracleConnection(oradb);
    conn.Open();
    I keep on getting error:
    "ORA-1017: invalid username/password; logon denied"
    But if I tried to access from the same host using Oracle SQL Developer ver 1.2 and using the same username and password then I have no problem at all.
    Any help? Thanks
    Ming Man

    This is what I found on Metalink
    Applies to:
    Oracle Data Provider for .NET - Version: 9.2.0.8.0 to 10.2.0.3.0
    Microsoft Windows (32-bit)
    Symptoms
    You are trying to connect to 11g database using 10g ODP.NET (or lower version) and you receive
    ORA-1017 - invalid username /password
    While using 11g ODP.NET or 10g sqlplus ,this problem does not occur.
    Cause
    Whenever we send the passwords using 10g ODP.NET ,it converts them into all upper cases.
    Prior to 11g database , the passwords were case-insensitive.
    So sending all-capital password would not cause problem there.
    However, from 11g onwards , passwords are case sensitive.
    Hence when ODP.NET sends all-capital password to a 11g database , password validation fails and results in the ORA-1017 error.
    This issue is reported in an internal bug .The bug number is not revealed for confidentiality policy reasons. The backport request has been created for 10.2 and 10.1 but the patch was not available at the time of writing this note.
    Solution
    There are several solutions for this issue:
    Configure the database to not support case-sensitivity in passwords.
    Create all-capital passwords
    Pass a lowercase password by wrapping the password field in quotes.
    e.g.
    ("Data Source=ORCL;User ID=scott;Password = \"tiger\"");
    The bug is also fixed in the 10.2.0.4.0 Oracle Database Patch 6810189.

  • OraclePersonalizationProvider invalid username/password

    Hiya
    I have been following the instructions in Oracle Providers for ASP.NET Developer's Guide 11g Release 1 (11.1.0.6.20) and have become stuck.
    I just want to use Oracle for WebPart personalization so I logged onto Oracle (not localhost as no Oracle installed locally) as sysdba, I then ran InstallOracleASPNETCommon.sql which ran fine. Then I ran InstallOraclePersonalization.sql which keep prompting me for CURRENTUSER. I then altered my config file and ran the web app and got an invalid username/password error. I thought that maybe using the sys username had been a bad idea so I uninstalled and used the username I had already set up for this web app but got the same error. Then I tried using aspnet as this is given in the config example in the documentation but still no joy. obviouslly I changed the username and password in the config file each time I tried running the scripts with a different username.
    Am I doing something wrong? Is it not a username that the prompt is for? Should I be putting username/password or something? Do I need to create aspnet as a user first? There's no mention in the documentation that the sql scripts will prompt you so I'm just not sure I'm doing it right. Can anyone help?
    Thanks :)

    <p>
    Hiya
    Yes it was using the Oracle SQL Developer tool taht was causing my prompting problem. I got one of our Oracle DBA's to give me a hand and we did the following:
    Logged onto SQLPlus as sysdba
    Created a new user with the following sql -
    create role aspnet_role
    grant
    alter session,
    create cluster,
    create indextype,
    create library,
    create materialized view,
    create procedure,
    create public synonym,
    create sequence,
    create session,
    create synonym,
    create table,
    create trigger,
    create type,
    create view,
    create job,
    drop public synonym,
    query rewrite
    to aspnet_role
    create user aspnet
    identified by aspnet
    default tablespace users
    temporary tablespace temp
    quota unlimited on users
    grant aspnet_role to aspnet
    grant execute on dbms_scheduler to aspnet
    grant execute on dbms_job to aspnet
    Exited sqlplus then logged back in again as aspnet user
    ran the InstallAllOracleASPNETProviders.sql file in sqlplus
    everything runs without error
    In my web.config file I add the following connection string
    </p>
    <p>
    &lt;add name="OraAspNetConStringJcs" connectionString="Data Source = jcs.jcslweb06; User ID = aspnet ; Password = 'aspnet' "/&gt;
    now I add the personalisation to the config
    </p>
    <p>
    &lt;personalization defaultProvider="CustomOraclePersonalizationProvider"&gt;
    &lt;providers&gt;
    &lt;add name="CustomOraclePersonalizationProvider" type="Oracle.Web.Personalization.OraclePersonalizationProvider,<br /><br />Oracle.Web, Version=2.111.6.20, Culture=neutral, PublicKeyToken=89b483f429c47342" connectionStringName="OraAspNetConStringJcs"
    applicationName="JCS"/&gt;
    &lt;/providers&gt;
    &lt;/personalization&gt;
    If I run the web site I get a ora-1017 invalid username/password error
    If I use the <strong>same</strong> credentials to log in using Oracle SQL Developer tool it works fine
    If I log in via sqlplus it works fine.
    Having googled the problem I've tried putting the username/password in uppercase and turning off the case sensitivity but it always throws this error even though the credentials are correct.
    Now I'm gettting ora-28000 - the account is locked and will have to go and find someone to tell me how to unlock it!
    Any ideas why it won't authorise my valid credentials?
    </p>

  • Is there a way to have Firefox remember a username & password if I previously didn't have Firefox remember them using FF4?

    I recently upgraded to FF4, but also had this happen with earlier versions. If i accidentally or intentionally don't have FF remember a username & password, but later try to, it is no longer possible. Is there a way to change this?

    -Try this if you haven't already.
    ---Hit Alt+T, then O (Tools, Options) and select the Security tab. Everything should look like this (all boxes [for best, basic security] check-marked):
    <img src="https://support.mozilla.com/media/uploads/images/2011-03-25-10-21-34-61bfee.JPG">
    ---Click on the Exceptions button and delete the site in question or all.
    ---Then Add/Change Master Password to seal your decision.
    ---If it doesn't work, try doing so from Safe Mode. Maybe you have a password handler (which, unless an importer/exporter, isn't needed with firefox to begin with) that is intercepting Firefox's handling of the passwords. To do so, click on Help, Restart with Add-ons disabled... or go to '''Start''' | '''Run''' | and enter "'''''firefox -safe-mode'''''" (without quotes) and try there.

  • Invaild username/password error

    Hi All,
    Today when i log into my testing database with sys password, it says invalid username/password
    I create new password file after seeing this but getting the same error
    Then i check environment variables settings
    But still getting the same problem
    Regards,
    Vikas

    The invalid password is totally different from this error.
    ORA-12154:
    TNS:could not resolve the connect identifier specified
    Cause:      A connection to a database or other service was requested using a connect identifier, and the connect identifier specified could not be resolved into a connect descriptor using one of the naming methods configured. For example, if the type of connect identifier used was a net service name then the net service name could not be found in a naming method repository, or the repository could not be located or reached.
    Action:     
    - If you are using local naming (TNSNAMES.ORA file):
    - Make sure that "TNSNAMES" is listed as one of the values of the NAMES.DIRECTORY_PATH parameter in the Oracle Net profile (SQLNET.ORA)
    - Verify that a TNSNAMES.ORA file exists and is in the proper directory and is accessible.
    - Check that the net service name used as the connect identifier exists in the TNSNAMES.ORA file.
    - Make sure there are no syntax errors anywhere in the TNSNAMES.ORA file. Look for unmatched parentheses or stray characters. Errors in a TNSNAMES.ORA file may make it unusable.
    - If you are using directory naming:
    - Verify that "LDAP" is listed as one of the values of the NAMES.DIRETORY_PATH parameter in the Oracle Net profile (SQLNET.ORA).
    - Verify that the LDAP directory server is up and that it is accessible.
    - Verify that the net service name or database name used as the connect identifier is configured in the directory.
    - Verify that the default context being used is correct by specifying a fully qualified net service name or a full LDAP DN as the connect identifier
    - If you are using easy connect naming:
    - Verify that "EZCONNECT" is listed as one of the values of the NAMES.DIRETORY_PATH parameter in the Oracle Net profile (SQLNET.ORA).
    - Make sure the host, port and service name specified are correct.
    - Try enclosing the connect identifier in quote marks. See the Oracle Net Services Administrators Guide or the Oracle operating system specific guide for more information on naming.So the first check, do you have the right TNSNames entry (that you are trying to use) in your tnsnames.ora ?
    Aman....

  • PS로 확인 시 USER의 USERNAME과 PASSWORD가 보이는 것을 막아주는 기능

    제품 : SQL*PLUS
    작성날짜 : 2004-05-20
    내용은 sqlplus , sqlloader, exp...등에서 username/password를 parameter로
    같이 줬을때 ps -ef로 확인시 user의 username과 password가 보이는 것을 막아주
    는 기능을 합니다.
    사용방법 1.
    1. Compile hide.c
    cc -o hide hide.c
    2. Move "hide" to $ORACLE_HOME/bin
    mv hide $ORACLE_HOME/bin/hide
    3. Copy "sqlplus" binary to "sqlplus.hide"
    cd $ORACLE_HOME/bin
    mv sqlplus sqlplus.hide
    4. Link hide to execute sqlplus.hide
    ln -s hide sqlplus
    사용예 ) sqlplus system/manager
    sqlplus> !
    $ ps -ef|grep sql
    ora733 19576 149420 2 12:46:08 pts/4 0:00 grep sql
    ora733 24338 102596 0 12:37:09 pts/5 0:00 sqlplus
    사용방법 2.
    1. Compile hide.c
    cc -o hide hide.c
    2. Move "hide" to $ORACLE_HOME/bin
    mv hide $ORACLE_HOME/bin/hide
    사용예 ) hide sqlplus system/manager
    sqlplus> !
    $ ps -ef|grep sql
    ora733 19576 149420 2 12:46:08 pts/4 0:00 grep sql
    ora733 24338 102596 0 12:37:09 pts/5 0:00 sqlplus
    첨부 : hide.c
    os.h
    Hide the Command Line Arguments.htm
    주의사항 :
    You will need to be carefull when you upgrade ORACLE that you remove
    all the links and rename all the applications back to their original name.
    ================
    os.h
    ================
    #ifndef OSH
    #define OSH
    #ifdef SYS5
    #undef SYS5
    #endif
    #ifdef SVR4
    #undef SVR4
    #endif
    #ifdef __pyrsoft
    #define DCOSX
    #define OS "DCOSX"
    #define SYS5
    #define SVR4
    #else
    #ifdef pyr
    #define OSX
    #define OS "OSX"
    #else
    #ifdef SEQUENT
    #define PTX
    #define OS "PTX"
    #define SYS5
    #else
    #ifdef sequent
    #define DYNIX
    #define OS "DYNIX"
    #else
    #ifdef sun
    #if defined(_STDC_) || defined(__svr4__) || defined(__SVR4)
    #define SOLARIS
    #define SYS5
    #define SVR4
    #define OS "SOLARIS"
    #else
    #define SUNOS
    #define OS "SUNOS"
    #endif
    #else
    #ifdef hpux
    #define HPUX
    #define OS "HPUX"
    #define SYS5
    #else
    #ifdef ultrix
    #define ULTRIX
    #define OS "ULTRIX"
    #else
    #ifdef CXUX
    #define CXUX_
    #define OS "CXUX"
    #define SYS5
    #else
    #if defined(unix) && defined(i860) /* stratus svr4 */
    #define FTX
    #define OS "FTX"
    #define SVR4
    #define SYS5
    #else
    #if defined(unix) && defined(i386) /* ncr svr4 */
    #define NCR
    #define OS "NCR"
    #define SVR4
    #define SYS5
    #else
    #if defined(__ncube__) /* nCUBE - for ncc */
    #define VERTEX
    #define OS "VERTEX"
    #define SYS5
    #else
    #if defined(unix) && defined(SVR3) /* ncube sgi */
    #define IRIX
    #define OS "IRIX"
    #else
    #define OS "UNKNOWN"
    #endif
    #endif
    #endif
    #endif
    #endif
    #endif
    #endif
    #endif
    #endif
    #endif
    #endif
    #endif
    #endif /* OSH */
    ================
    hide.c
    ================
    /*---------------------------------------------------------------------------+
    | Copyright (c) 1992 Oracle Corporation Belmont, California, USA |
    | All rights reserved |
    +---------------------------------------------------------------------------*/
    /*---------------------------------------------------------------------------+
    | FILENAME |
    | hide.c |
    | DESCRIPTION |
    | Hides arguments for programs on UNIX systems. |
    | Can be used as a program prefix: hide program arguments |
    | or as a symbolic link. If this program is not invoked as hide, it |
    | will hide its arguments and invoke the program name.hide |
    | The best way to use this is to rename your critical programs to |
    | program.hide, and create a symbolic link program to hide. |
    | mv sqlplus sqlplus.hide; ln -s hide sqlplus |
    | Thus when sqlplus is invoked, its arguments will be hidden |
    | NOTES |
    | This program works by padding 3000 '/' chars in argv[0]. This fools |
    | all known ps's. This will reduce the argument capacity of your |
    | program by 3000 chars. A good enhancement would be to reduce the |
    | padding if needed so that no arguments are lost - would require a |
    | method of determining the max argument size on the system. Some |
    | system's provide the E2BIG error on exec. |
    | There is some performace penalty for using this program, but it is |
    | minimal because this program is so small - the biggest cost is the |
    | extra exec required to get this program started. |
    | HISTORY |
    | 09/15/92 R Brodersen Created, based on D Beusee's hideargs() |
    | 09/17/92 D Beusee Fixed to compile on any system |
    +---------------------------------------------------------------------------*/
    * $Header: /local/bin/RCS/hide.c,v 1.6 1992/09/22 22:37:17 dbeusee Exp $
    * $Log: hide.c,v $
    * Revision 1.6 1992/09/22 22:37:17 dbeusee
    * Added exit(1) when cannot execvp the program.
    * Revision 1.5 1992/09/22 11:28:44 dbeusee
    * SOme BSD systems have memset(), so add a #define memset MEMSET to fix
    * compilation errors (like on ultrix).
    * Revision 1.4 1992/09/22 06:34:57 dbeusee
    * BSD systems need memset routine.
    * Revision 1.3 1992/09/22 06:05:13 dbeusee
    * Set JUNK_CHAR to ' ' but force last junk char to '/'. This looks prettier
    * when doing 'ps'. Also do not show full path of the program. Also do not
    * show .hide if prog is a symlink to hide.
    * Revision 1.2 1992/09/22 05:52:26 dbeusee
    * If hide could not execvp the program, give an error message.
    * if hide was invoked with a full path (e.g. /usr/local/bin/hide),
    * do not try to invoke PATH/hide.hide.
    #include "os.h"
    #include <stdio.h>
    #ifdef SYS5
    #include <string.h>
    #else
    #include <strings.h>
    #define strrchr rindex
    #define memset MEMSET /* some BSD systems have a memset() */
    char *memset();
    #endif
    #define JUNK_SIZE 3000
    #define JUNK_CHAR ' '
    char arg0buf[4096];
    char progbuf[4096];
    char errbuf[4096];
    int main(argc, argv)
    int argc;
    char *argv[];
    char name, base;
    int firstarg;
    if (!(name = strrchr(argv[0], '/')))
    name = argv[0];
    else
    name ++; /* get past '/' */
    firstarg = (!strcmp(name, "hide")) ? 1 : 0;
    if (firstarg && (argc == 1))
    fprintf(stderr, "Usage: hide program arguments\n");
    fprintf(stderr, " ie: hide sqlplus username/password\n");
    fprintf(stderr, "if hide is not named hide, \
    it will execute name.hide (useful as a symbolic link)\n");
    exit(1);
    /* Build program name. If symbolic link mode, use argv[0] || .hide */
    strcpy(progbuf, argv[firstarg]);
    if (!(base = strrchr(argv[firstarg], '/')))
    base = argv[firstarg];
    else
    base ++; /* get past '/' */
    if (!firstarg) strcat(progbuf, ".hide");
    /* Build arg0 buffer. First, fill it with junk */
    memset((void *)arg0buf, JUNK_CHAR, JUNK_SIZE);
    arg0buf[JUNK_SIZE-1] = '/'; /* set last char to '/' */
    /* Prepend real program name - so ps can see what prog is running */
    strncpy(arg0buf, base, strlen(base));
    /* Append real program name - so prog can see what prog is running */
    strcpy(arg0buf + JUNK_SIZE, argv[firstarg]);
    /* Assign new arg0 buffer to the argv array */
    argv[firstarg] = arg0buf;
    /* Start the new program with the shifted arguments */
    execvp(progbuf, argv + firstarg);
    sprintf(errbuf, "Could not execvp '%s'", progbuf);
    perror(errbuf);
    exit(1);
    #ifndef SYS5
    char *
    memset(s, c, n)
    register char *s;
    register c, n;
    register char *p = s;
    while (n-- > 0)
    *s++ = c;
    return (p);
    #endif /* ifndef SYS5 */
    ======================================================================

  • Error when starting Firefox 3.6. "Javascript Application error. Invalid username/password combination. If you continue to get this error, try entering your email address as your username." Any suggestions on what to look for to resolve this?

    When starting Mozilla Firefox 3.6, I get an error window which opens up additionally overtop my browser windows stating:
    "Javascript Application"
    followed with :
    "Invalid username/password combination. If you continue to get this error, try entering your email address as your username."
    Obviously it is happening with one of my email addresses/usernames & password combinations of which I know the username for (which I choose not to post here) and I'm not sure where to begin looking for a resolution to this problem.

    I was able to resolve this by disabling (under Tools - Add-ons) Yahoo! Mail Notifier
    Hope this helps some of you also!

  • Using SSO username/password in java portlet for Database Connection

    Hi all,
    We implemented java portlet with environment Oracle Application server 10.1.2 and Portal 10.1.4
    At present we are picking the database username and password and connect string in properties and our
    java class is reading the properties file and connecting to database to fetch the records.
    Our idea is to not to pick the username/password and connect string from the properties file or
    not to configure the datasource in data_source.xml.
    Our Requirement is who ever login to the Portal(SSO) our java class should pick the sso username/password and
    connect to database to fetch the record(s).
    Because our database users are one to one mapped to sso user(s) of portal.
    We request anyone to guide us how can we do it or suggest any suitable solution for our requirement.
    Thanks
    Dan Tey

    I think this is a no-go, since you cannot retrieve a cleartext password from the OID if I'm correct.

  • How do I setup Forms not to ask RAD username/password when opening a form

    Good day
    I have setup oid and sso and they work I can sign on to database with an oid user using sqlplus.
    If I set SsoDynamicResourceCreate=true and enter the user id and password in at the popup it works correct and won’t even ask it again
    What I want to know how can set portal to use a RAD/DAS without prompting for a username password.
    We need to do this for all +/- 30000 users and if so how do we do it pragmatically.
    I think because I don’t have much APPS experience I basically don’t know where this must be set globally
    APPS is version 10.1.2
    Regards
    Cliff
    Message was edited by:
    cliffnel

    Got solution in metalink note 262686.1
    Goto <infrastructure :port>/oiddas
    Click Configuration Tab
    Click Preference Tab
    Create Default RAD for database

  • How do I use my WET54g with a wireless system that asks for username & password

    Hotels and other systems let you use theiur wireless for a fee.  You go onto your wireless laptop, and it automatically goes to a page where you pay and sign up (or it asks for a username and password), once that is done, you can use the network.
    How do I allow my WET54g to know this password information, and work on the network?
    thanks
    Michael

    The WET54g allows you to accept a wireless signal and connect it to a wired hub.  I want to intercept the wireless signal and use it on my hub.
    I know I can use one computer if I connect to the signal using my laptop's wireless card, but I want the WET54g to accept the signal.
    For example, currently at my office, I use the WET54g to intercept a wireless signal from the front of my building, to the back of my building about 300ft away (this way I didnt have to run wires).  The WET54g then is hooked up to a hub/switch where I have a bunch of other computers/servers.  Everything from the front of my building and back of the building are joined using this WET54g.  The WET54g is set up to find the signal from the front of my building, and therefore it works fine.
    I want to use the hotel signal, the same way, except there is no way to enter in the username/password into the WET54g, or maybe there is..  Does this make sense to you? 

  • A1 returning "username/password incorrect" messages on websites

    I can't find other posts with this problem so I hope I don't show my ignorance here, but I can't believe I am the only one...
    I recently purchased an IdeaPad A1-07 running Android 2.3.4. I attempted to update the system right out of the box, but the updater reported that I was up to date, so that should be set (I would think...). I downloaded the Netflix app from the Andriod app store (the A1 did not include it preloaded), and attempted to launch it. It launched fine into the login screen, but when entering the login info, the app returned a incorrect username/password error. I confirmed the info by logging in on through my PC to the Netflix site. I un-installed then re-installed the app with the same result. I then attempted to go to the website through the A1 browser and login there. Same result. Panicking, I attempted to use the A1 browser to login to FaceBook. Same result.
    Here is the strangest part: I attempted to login to the same websites using the browser on my HTC Android Incredible 2 running Android 2.3.4, and was able to login in successfully to both sites.
    Does anyone know what is going on here and how to fix it? This is a real deal breaker for me since I purchased this tablet specifically to use  with sites like Netflix and FaceBook, and I really don't know what else to do other than to try to return it and get a refund. Please help!
    Solved!
    Go to Solution.

    Success! The GO keyboard app pre loaded by Lenovo wasn't the problem, but the input settings (Auto Capitalization, display suggestions, auto complete, auto space and key correction) were. Display suggestions probably wasn't part of the issue, but its just plain annoying, so I turned that off as well. I suspect that one of the other "auto" features was slipping in a character or space or two behind my back. I turned them all off, and no longer have an issue. I suspect that it was only one of them, but I would have had to run multiple experiments to narrow down the culprit, and I really don't want to bother. None of those things help me more than they hinder me anyway.
    Find the settings under: settings/language & ketboard settings/Go keyboard for Lenovo/input setting. Good luck!

  • I changed my sim on my iPhone n reconfigured iMessage, it configured with my number but when i sign in with my apple id it says username/password is wrong while in all other things like FaceTime, App Store it worked with the same id and password

    i changed my sim on my iPhone n reconfigured iMessage, it configured with my number but when i sign in with my apple id it says username/password is wrong while in all other things like FaceTime, App Store it worked with the same id and password..
    can anyone help me to solve this issue

    i just opened my ipad, started my apple account/I.D. and realized I put the wrong e mail. I was having trouble correcting my I.D on the Ipad so I went to my laptop and make the proper changes/slash e mail address I wanted for my apple ID. I got back to my ipad and try to download an app I can't because I have to sign in my apple account and I can't because it still has the irrelivant I.D/email address..
    So, i did what you said.. went to setting>app store> tapped on my e mail.. it asked me to sign in (with my invalid emails address showing). I signed in with the password I had created. It said "incorrect".. I went to reset password. I reset password, tried to sign in and it says again "unvalid password".. this is getting irritating.  I have been asking and no one knows what to do.

Maybe you are looking for

  • BAPI for Capture excise invoice

    Dear Friends   I wish to is there any BAPI available for capture excise invoice (tcode:- J1iex). please tell. I will apreciate your help. Regadrs Naeem

  • PL/SQL problem in portal

    hello all, PROBLEM : I followed this thread Copying data from one field to another on a form but unfortunately..encountered with d following error... Any PL/SQL coding is throwing such errors on my portal.. I have to install any additional tools or c

  • What does the display look like with 'My Movies'?

    I'm thinking about buying an Apple TV, not to rent movies but to stream all of my own videos to a seperate tv. I'm already doing this with my Xbox 360 with H.264 video but before people watch it they have no idea what the video is about because apart

  • How to add Sub Tabs to Admin Interface under Account Tab.

    Guys, Is there way to add sub tabs to Accounts Tab in admin interface. Regards, Vinod

  • Capture problem -- strange error messages -- computer freezes

    Upon 25 minutes or so into capturing, I get a strange error message to this effect: "analyzing DV audio -- validating audio data" -- the video slows to a crawl until it completely freezes -- rainbow wheel whirls nonstop -- sometimes command-option-es