How can we disable " XDB Requires a username and password"?

Hello,
I've just performed an Apex 4 installation on top of a DB 11.2.0.2.
All is fine.
No problem fine with FF, IE and Safari, but with Chrome I always have a pop up saying " The server XXXX: port at XDB requires a username and password".
How can I disable that, or fix it definitively?
Thanks
Fred

Sure.
On my system Anonymous and XDB account were already unlocked and both used the same password.
I simply executed the PL/SQL block that you can find here: http://www.apexexplorer.com/wp-content/uploads/2010/11/XDB-Password-Issue.pdf
I bounced the listener.
Hope that help
Regards,
Fred

Similar Messages

  • XDB requires a username and password apex

    Hello,
    11.2.0.1.0 g database
    I am trying for testing on test server where I am getting error while trying to connect http://localhost:8080/pls/apex.I am able to connect http://<server>:<port>/apex/apex_login and http://<server>:<port>/apex/apex_admin.
    The database version is 11g.
    Actually my requirement is As I know we cannot use isqlplus in 11g we can use apex instead of isqlplus so please provide the way or navigation how to use apex for isqlplus.
    Thanks

    Hi,
    I once had a similar problem. It turned out that APEX_PUBLIC_USER or ANONYMOUS had been locked. I don´t know if this helps any.
    Jens

  • How can i find/edit/delete login username and passwords saved to my iMac?

    i thought it might be under keychain but when i help search keychain, nothing is found. i have a 2011 iMac with the latest iOS.

    Ah, apologies. It wasn't clear to me what you are trying to do.
    Well, it's true, you can review and edit the store information in Keychain. The app is properly called Keychain Access (in English) If you use Spotlight to look for the word key - that's the magnifying glass in the top right corner of your computer display - you should find the app whether your computer is in English or not.

  • This server 192.2.2.1 at XDB requires a username and password

    Hi all,
    I am installing Apex 4.2 in Oracle 10.2.0.4 on SLES 11
    But I got the above error. :(
    I tried to google the error but to no avail. I see lots of similar error since 5 years ago and it seems there is no solution yet. sad sad sad.
    Is Apex 4.2 not supported in 10gR2?
    Please help.....
    Thanks a lot,
    zxy
    Edited by: yxes2013 on 28.2.2013 1:20

    We also had issues with Apex 4.2 and XDB
    This from our WIKI:-
    When XDB is used for Apex, the ANONYMOUS user must be configured for file access.
    as sysdba run the following:
    If this block has not been run, then when accessing Apex, one is channged for XDB credentials ("server said: XDB")
    SET SERVEROUTPUT ON
    DECLARE
    l_configxml XMLTYPE;
    l_value VARCHAR2 (5) := 'true'; -- (true/false)
    BEGIN
    l_configxml := DBMS_XDB.cfg_get ();
    IF l_configxml.
    EXISTSNODE (
    '/xdbconfig/sysconfig/protocolconfig/httpconfig/allow-repository-anonymous-access') =
    0
    THEN
    -- Add missing element.
    SELECT INSERTCHILDXML (
    l_configxml,
    '/xdbconfig/sysconfig/protocolconfig/httpconfig',
    'allow-repository-anonymous-access',
    XMLType (
    '<allow-repository-anonymous-access xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">'
    || l_value
    || '</allow-repository-anonymous-access>'),
    'xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd"')
    INTO l_configxml
    FROM DUAL;
    DBMS_OUTPUT.put_line ('Element inserted.');
    ELSE
    -- Update existing element.
    SELECT UPDATEXML (
    DBMS_XDB.cfg_get (),
    '/xdbconfig/sysconfig/protocolconfig/httpconfig/allow-repository-anonymous-access/text()',
    l_value,
    'xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd"')
    INTO l_configxml
    FROM DUAL;
    DBMS_OUTPUT.put_line ('Element updated.');
    END IF;
    DBMS_XDB.cfg_update (l_configxml);
    DBMS_XDB.cfg_refresh;
    END;
    /

  • How do I connect to an SMTP server that requires a username and password?

    Hi,
    I am currently working on a project for university which requires me to send and receive email. I was until this week able to send mail no problem, but now the SMTP server has been upgraded so that each time a mail is sent it requires the username and password.
    Ideally the connection should be made using TLS/SSL, and not use the Authenticator method. I want to pass the username and password directly if possible.
    I've been trying to use the following but have been getting handshake, and other exceptions:
    SMTPSSLTransport smtpSSLtransport = new SMTPSSLTransport(session,
                        new URLName("smtp", smtpHost, port, null-File,
                        "USERNAME", "PASSWORD"));
            smtpSSLtransport.setStartTLS(true);
            smtpSSLtransport.connect(new Socket(smtpHost, port));
            smtpSSLtransport.sendMessage(smtpMessage,                                                     message.getAllRecipients());
            smtpSSLtransport.close();Can anyone correct this piece of code for me or point me in the right direction of what classes and methods I should be using?
    Many thanks in advance,
    Gordon

    I always wonder what misleads people to do things this way.
    Was there some example you saw that suggested that instantiating
    an SMTPSSLTransport was the correct approach? I hope not.
    See the smtpsend.java demo program for how to use SMTP
    authentication. If you need to use SSL, see the SSLNOTES.txt
    file for hints on using the "smtps" protocol. smtpsend.java also
    illustrates use of SSL, but you'll need to fix a bug in it to use the
    correct property names ("mail.smtps.auth", etc.).

  • How can I disable iCloud on my iMac and my iPod touch 5th gen?

    My ipod touch 5th gen now syncs through icloud. How can I disable icloud from my ipod and my imac and go back to syncing through iTunes.  Is it possible to do this without losing the data in contacts and ical?  Any ideas would be much appreciated!

    With the iPod connected to your computer go to the Summary pane for the iPod in iTunes and uncheck the box that says: Sync with this iPod over Wi-Fi.
    Also in the Summary pane check the box that says backup to the computer.

  • Admin Console - Admin user requires valid username and password

    I am running FMIS4.5 on CentOS5.5
    FMIS is running and I can connect via Flash Media Encoder.
    Web displays and admin console :1111 gives xml output, however
    When using the user & password in my xml files to login (testing with ping), I get the "Admin user requires valid username and password" error.
    conf/fms.ini:
    # fms.ini contains substitution variables for Flash Media Server          #
    # configuration files. Lines beginning with '#' are considered comments.  #
    # A substitution variable is in the form <name>=<value>. Everything up to #
    # the first '=' is considered the name of the substitution variable, and  #
    # everything after the first '=' is considered the substitution value. If #
    # you want a substitution variable to have leading or trailing spaces,    #
    # enclose the value around double quotes. For example, foo=" bar "        #
    # This section contains configurable parameters in Server.xml #
    # Username for server admin
    # For example:
    #    SERVER.ADMIN_USERNAME = foo
    SERVER.ADMIN_USERNAME = Admin
    SERVER.ADMIN_PASSWORD = str34m1ng
    # IP address and port Flash Media Admin Server should listen on
    # For example:
    #    SERVER.ADMINSERVER_HOSTPORT = :1111
    SERVER.ADMINSERVER_HOSTPORT = :1111
    # User id in which to run the process (Linux Only)
    # For example:
    #    SERVER.PROCESS_UID = 500
    SERVER.PROCESS_UID = 500
    # Group id in which to run the process (Linux Only)
    # For example:
    #    SERVER.PROCESS_GID = 500
    SERVER.PROCESS_GID = 500
    # License key for Flash Media Server
    # For example:
    #    SERVER.LICENSEINFO = XXXX-XXXX-XXXX-XXXX-XXXX-XXXX
    SERVER.LICENSEINFO = #SORRY YOU DON'T GET TO SEE THIS#
    # LIVE_DIR denotes the full path of sample "Live" application's
    # folder for storing any live stream recorded by server.
    # For example:
    #    LIVE_DIR = <FMS_Installation_Dir>\applications\live
    LIVE_DIR = /opt/adobe/fms/applications/live
    # VOD_COMMON_DIR denotes the full path of sample "VOD" application's
    # folder for storing onDemand and Progressive Download .flv/.mp3 files.
    # File stored in this folder can be streamed and are also PD-able.
    # Note : If you are using the default installation of Apache as a webserver,
    # and if you modify VOD_COMMON_DIR, please change the document root
    # accordingly in httpd.conf.
    # For example:
    #    VOD_COMMON_DIR = <FMS_Installation_Dir>\webroot\vod
    VOD_COMMON_DIR = /opt/adobe/fms/webroot/vod
    # VOD_DIR denotes the full path of sample "VOD" application's
    # folder for storing onDemand only .flv/.mp3 files. Files stored in
    # this folder are not PD-able
    # For example:
    #    VOD_DIR = <FMS_Installation_Dir>\applications\vod\media
    VOD_DIR = /opt/adobe/fms/applications/vod/media
    # The maximum size of the FLV cache, in megabytes.
    # The default is 500MB.
    SERVER.FLVCACHE_MAXSIZE=500
    # Whether to start and stop the included HTTP server along
    # with FMS.
    SERVER.HTTPD_ENABLED = true
    # This section contains configurable parameters in Adaptor.xml #
    # Application directory for the virtual host
    # For example:
    #    VHOST.APPSDIR = C:\myapps
    VHOST.APPSDIR = /opt/adobe/fms/applications
    VHOST.ALLOW = all
    # This section contains configurable parameters in Application.xml #
    # List of semi-colon delimited paths in which to search for script to load
    # For example:
    #    APP.JS_SCRIPTLIBPATH = C:\scripts;C:\Program Files\Foo\scripts
    APP.JS_SCRIPTLIBPATH = /opt/adobe/fms/scriptlib
    # This section contains configurable parameters in Logger.xml #
    LOGGER.LOGDIR =
    # This section contains configurable parameters in Users.xml #
    # Enable or disable using HTTP requests to execute admin commands.
    # Set to "true" to enable, otherwise it will be disabled.  The
    # actual commands permitted for server admin and virtual host admin
    # users can be set in Users.xml.
    USERS.HTTPCOMMAND_ALLOW = true
    Users.xml:
    <Root>
        <UserList>
            <!-- This tag defines an administrator for the server. -->
            <User name="${SERVER.ADMIN_USERNAME}">
                <!-- Salted Password Hash for this vhost administrator. -->
                <Password encrypt="false">${SERVER.ADMIN_PASSWORD}</Password>
                <!-- This admin can only connect to the server from the specified -->
                <!-- hosts. This is specified as a comma delimited list of        -->
                <!-- hostnames or domain names, and/or (full or partial) IP       -->
                <!-- addresses. For example,                                      -->
                <!-- "foo.yourcompany.com, macromedia.com, 10.60.1.133, 10.60"    -->
                <Allow>All</Allow>
                <!-- This admin cannot connect to the server from any of the      -->
                <!-- specified hosts. This is specified as a comma delimited list -->
                <!-- of hostnames or domain names, and/or (full or partial) IP    -->
                <!-- addresses. For example,                                      -->
                <!-- "foo.yourcompany.com, macromedia.com, 10.60.1.133, 10.60"    -->
                <Deny></Deny>
                <!-- Specifies the order in which to evaluate the <Allow> and     -->
                <!-- <Deny> tags. This can be "Allow,Deny" or "Deny,Allow". The   -->
                <!-- default is "Deny,Allow" which means that access is allowed   -->
                <!-- unless specified in <Deny> and not specified in <Allow>.     -->
                <Order>Allow,Deny</Order>
            </User>
            <User name="janedoe">
                    <Password encrypt="false">S4mpl3P4ss</Password>
                    <Allow></Allow>
                    <Deny></Deny>
                    <Order>Allow,Deny</Order>
            </User>
        </UserList>
        <AdminServer>
            <HTTPCommands>
                <!-- Enable or disable using HTTP requests to execute admin commands.     -->
                <!-- Set to "true" to enable, otherwise it will be disabled.  The           -->
                <!-- actual commands permitted for server admin and virtual host admin    -->
                <!-- users can be set in the Allow and Deny elements.                                   $
                <Enable>${USERS.HTTPCOMMAND_ALLOW}</Enable>
                <!-- List of server admin commands that can be accessed via HTTP.         -->
                <!-- Add multiple commands separated by commas.  "All" indicates          -->
                <!-- every command (it's not recommended to allow all commands).          -->
                <!-- Seperate multiple commands with commas.                              -->
                <Allow>ping</Allow>
                <!-- List of server admin commands denied access via HTTP.                -->
                <!-- Add multiple commands seperated by commas.  "All" indicates          -->
                <!-- every command.                                                       -->
                <Deny>All</Deny>
                <!-- Processing order for deny and allow command lists.  "Deny,Allow"     -->
                <!-- means the command will be allowed if the command is in the allow     -->
                <!-- list or not in the deny list.   "Allow,Deny" means the command       -->
                <!-- will be allowed if it is in the allow list and not in the            -->
                <!-- deny list.                                                           -->
                <Order>Deny,Allow</Order>
            </HTTPCommands>
        </AdminServer>
    </Root>
    Output on :1111/admin/ping?auser=Admin&apswd=str34m1ng :
    <result>
      <level>error</level>
         <code>NetConnection.Connect.Rejected</code>
         <description>Admin user requires valid username and password.</description>
         <timestamp>Thu 17 May 2012 11:33:43 AM EDT</timestamp>
    </result>
    Connections do not work from both localhost and external connections and the fms_adminConsole.htm (.swf) fails as well.
    Any assistance is appreciated!

    Hi,
    FMIS 4.5 does not accept plain text password. Encrypt=false is no longer supported. See here for more information : http://help.adobe.com/en_US/flashmediaserver/configadmin/WS5b3ccc516d4fbf351e63e3d119f2926 bcf-7fed.html#WS5b3ccc516d4fbf351e63e3d119f2926bcf-7e91
    The value for SERVER.ADMIN_PASSWORD needs to be the encrypted string for your password. That should solve your problem.
    Hope this helps.
    Thanks,
    Apurva

  • Can I use the same icloud username and password for multiple phones?

    I have 6 iphones and wanted to use Apple Configurator to install the same apps on all 6 phones.  Some of the apps though, also require further installation by email.  Can I use the same iCloud username and password for all 6 phones to download the apps and also to configure email or do I need to create 6 different Apple IDs?

    If different people will be using these phones, you might be better off using the same Apple ID for the iTunes content...apps, music, etc. on each of these devices, but create different ID's for iCloud on each device. You can use one ID for the iTunes/App store, & a different ID for iCloud. That way, messages, notes, contacts, calendars, etc will be kept separate on each device.

  • The server at Mac OS X Server Web Services requires a username and password

    I am running SL Server 10.6.2, wiki works but when a person clicks an attached file in a wiki and then selects "open" they get a login popup with the notification The server at Mac OS X Server Web Services requires a username and password. It doesn't matter what they put into the login/pass it comes back. If they hit cancel then the document opens. If they click save then it saves with no issue. I can type in the admin login/pass of the server and it works. Does this mean the security settings to the location of the files is wrong? Any help is greatly appreciated!

    By the way they are using Internet Explorer 7 when opening these documents.

  • Hp printer requires a username and password

    My HP Deskjet F4583 wireless printer worked wonders with my Windows XP.
    Now we've all upgraded to Windows 7 (very grumpy - everything worked just fine on XP)
    Tried printing through wireless office network (that "I" set up), and suddenly get this:
       "The server 10.0.0.3:80 requires a username and password.
        THe server says: HP Printer Networking@."
             followed by the appropriate fields.
    So now what?
    Since when was a username/ password option available - believe me I would have tried to omit it when creating the network - we don't have time to "play" with our gadgets; we just expect them to work with minimum fuss.
    Please help...
    This question was solved.
    View Solution.

    dave-k2 wrote:
    The exact network was shown in my question - it is an 802.11 WiFi network configured for WPA2 authentication.
    It is not an open network with no encryption or authentication.
    It is not a walled garden network with no 802.11 encryption but using a web browser for authentication.
    It is not a WPA2-PSK network with a shared key for 802.11 encryption.
    It is a WPA2 network with 802.11 encryption and EAP authentication to a RADIUS server.  It needs the printer supplicant to supply a username and a password.  I own neither the AP nor the RADIUS server for this network, they are owned by the college my child attends.
    There you go.  Need to ask your IT department how to connect because the printer will never connect with a browser authentication.    Also not supported on a Radius server. 
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • How can I change my icloud email details and password on icloud

    how can I change my icloud email details and password on my iphone 5s tried all day without success, I have changed my apple ID and password thats okay.
    Joan

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iDevice, then sign back in with the ID you wish to use.  When you do this you may find that the password for your old ID isn't accepted.  If this should happen, and if your old ID is an earlier version of your current ID, you need to temporarily recreate your old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iDevice on your device, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • Help with "Admin user requires valid username and password" on fms2_console.swf page

    Just installed FMS2 on Debian (etch, 2.16.5-1 kernel). When I
    connect to localhost:1111/fms2_console.swf and get the infamous XML
    output which includes the text, "Admin user requires valid username
    and password." The *.xml and *.ini files haven't been touched after
    installation. All four daemons (fmsedge, fmsmaster, fmscore,
    fmsadmin) are running and listening on the correct ports.
    Any tips? (I'm sure this is easy to solve...)
    Thanks.

    Hi,
    FMIS 4.5 does not accept plain text password. Encrypt=false is no longer supported. See here for more information : http://help.adobe.com/en_US/flashmediaserver/configadmin/WS5b3ccc516d4fbf351e63e3d119f2926 bcf-7fed.html#WS5b3ccc516d4fbf351e63e3d119f2926bcf-7e91
    The value for SERVER.ADMIN_PASSWORD needs to be the encrypted string for your password. That should solve your problem.
    Hope this helps.
    Thanks,
    Apurva

  • How can I specify SMTP Email Server userID and password when using Email VIs?

    How can I specify SMTP Email Server userID and password when using Email VIs included in Internet Toolkit?

    Hi,
    A similar question was posted on Discussion Forums soem time back. Please see the link below.
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=506500000008000000C7B00000&UCATEGORY_0=_49_%24_6_&UCATEGORY_S=0
    You would find the last post in the above thread quite useful where it has a link to OpenG code. I am also copying that link for your reference.
    http://www.openg.org/tiki/tiki-index.php?page=OpenG+Internet+Connectivity+Tools
    Please feel free to respond to this post with any questions/comments you may have.
    Regards,
    Ankita A.
    National Instruments

  • IPhone won't let me log onto any site which requires a username and password

    Hi there,
    My iphone 4 (ios5) has stopped letting me log onto any website which requires a username and password. They have all worked in the past but have stopped working. My iPad is fine.
    It happens if i am connected to wifi or 3g.
    Has anyone else suffered this?
    I have restarted the phone and done a backup and restore.
    Any advice would help.
    Thanks

    Sorted it.  In settings - safari - privacy was set not to accept any cookies.  I have changed that to accept from visited.  Now working ok again.

  • How do I save more than one username and password for a site?

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/918629]]</blockquote>
    I manage two online calendar accounts under one website (both account admin centers actually have their own URL but the main root of the webpage is the same). My "user ID" (which is my e-mail address) is the same for both accounts.
    Firefox used to associate the user ID and password with the ENTIRE URL so, in effect, it would remember them for BOTH admin centers. Now it seems to only remember the main root webpage (www.samplepage.com instead of www.samplepage.com/adminloginA).
    How do I get it to remember the ENTIRE URL instead of just the root? I need it to remember both usernames and passwords.
    Thanks!

    That is not possible with the Firefox password manager. You can only save a user name and its password once for a specific domain, so if the name is the same then it doesn't work.

Maybe you are looking for

  • What is the recommendation for metadata, where to install the schema?

    Should we install metadata in a separate database or in application database? I am looking for experts advise, also throw any links on requirments of having a schema in application database when we install metadata in its own database..Trying to unde

  • Formula Help - Running Total vs ???

    Post Author: schilders CA Forum: Formula Good Morning All, I'm creating a report that contains a field called CDM Item.  This field indicates whether a particular order set was used for a given record.  Valid entries for this field are numeric 6 thro

  • Why can't safari read web based PDF files?? in macbook air.

    I have been trying to solve this problem for a long time using methods used in LION, but i still can't get it solved. please any help is appreciated.. best

  • CDS-11010 Error: (Template expansion error) Undeclared token SQ_STARTVALUE_LABEL in C

    CDS-11010 Error: (Template expansion error) Undeclared token SQ_STARTVALUE_LABEL in C:\orant\CGENS72\TPL_RR\rep_seq.tpl According to the realease notes this bug should of been fixed. It appears to be lingering. Has anyone else been having this issue

  • Import MPEG 4

    I tried to import screen caputured video in the form of MPEG 4 into an Imovie project. It worked sortof. I was able to edit the movie but when I went to import it to I DVD none of the MPEG 4 clips came to IDVD. It was like they were never there. Has