Invalid login with CytoScape plugin

Hello everybody,
I'm trying to connect to my Oracle 11.2 server instance through CytoScape 2.6.3, but I keep getting error ORA-01017: invalid username/password. I know for sure that my credentials are correct, and I also tried setting SEC_CASE_SENSITIVE_LOGON to FALSE, but that's not the problem.
By checking the dba_audit_session table I see that to each failed attempt corresponds a record that says:
OS_USERNAME: ssundara
USERNAME: (null)
+USERHOST: [My machine name]+
which seems quite odd to me.. Of course, when I connect through SqlDeveloper using the same credentials, the fileds os_username and username are correctly filled.
Also, in Cytoscape Error console I get the following warnings (though, as the warnings themselves say, the problem shouldn't affect the plugin operations):
+1+
+cytoscape.plugin.PluginManager[WARN]: ERROR registering plugin: Unable to load plugin.props. File is not in the expected location: oracle/graph/RDF/cytoscape Unable to load plugin.props. File is not in the expected location: oracle/graph/RDF/cytoscape java.io.IOException: Unable to load plugin.props. File is not in the expected location: oracle/graph/RDF/cytoscape at cytoscape.plugin.PluginProperties.readPluginProperties(PluginProperties.java:89) at cytoscape.plugin.PluginProperties. (PluginProperties.java:76) at cytoscape.plugin.PluginManager.registerPlugin(PluginManager.java:356) at cytoscape.plugin.PluginManager.register(PluginManager.java:345) at cytoscape.plugin.PluginManager.loadPlugin(PluginManager.java:951) at cytoscape.plugin.PluginManager.loadURLPlugins(PluginManager.java:901) at cytoscape.plugin.PluginManager.loadPlugins(PluginManager.java:796) at cytoscape.CytoscapeInit.init(CytoscapeInit.java:259) at cytoscape.CyMain. (CyMain.java:155) at cytoscape.CyMain.main(CyMain.java:119)+
+2+
+cytoscape.plugin.PluginManager[WARN]: oracle.graph.RDF.cytoscape.RDFVisualizer loaded but not registered, this will not affect the operation of the plugin+
I've tried to look around for solutions, but I couldn't find any answer. The problem seems to be located in the Oracle's CytoScape Plugin, but I wouldn't know how to resolve it. Does anyone have any idea?

A revised version of the Cytoscape plugin (dated 23-April-2013) is now available for download on OTN.
The only file that has been modified to fix the invalid login problem is oraclerdf.jar.
To fix the invalid login problem, simply download the zip file, extract files from it and find the new oraclerdf.jar file under JAR subfolder, and then replace the old oraclerdf.jar with the new one.

Similar Messages

  • Invalid login with rest functionality user

    Hi all.
    Following the "Web Services and Integration Framework Guide" for ATG 10.0.1 part III, I create an internal user "intRestUser" with BCC giving him the same roles of "admin".
    After, io defined under my localconfig atg publishing server /atg/rest/security/restSecurityConfiguration.xml
    <rest-security>
    <default-acl value="Profile$login$intRestUser:read,write,execute"/>
    </rest-security>After, I started JBoss server, switched the /atg/rest/processor/RestSecurityProcessor allowAccessForUnsecuredRepository to true and tried the following things
    1) a snippet of JavaCode
    public class TestRestCalls {
         public static void main(String[] args) {
              RestSession session = RestSession.createSession(myIpaddress, myPort, "intRestUser", "pwdRestUser");
              if (login(session)){
                   try {
                        RestResult result = RestRepositoryHelper.getItem("/atg/commerce/catalog/ProductCatalog", "product","6137329", null, session);
                   } catch (RestClientException e) {
                        e.printStackTrace();
         private static boolean login(RestSession session){
              boolean result = false;
              session.setUseHttpsForLogin(false);
              session.setUseInternalProfileForLogin(true);
              try {
                   String loginStatus = session.login();
                   if(loginStatus == null || "null".equals(loginStatus)) {
                        session = null;
                        System.err.println("Login Failed");
                   }else {
                        result = true;
                        System.out.println("Login Successful");
              catch (Throwable t) {
                   System.err.println("Exception: "+t.getMessage());
              return result;
    }It goes into exception at session.login() with this message:
    java.io.IOException: Forbidden Server returned HTTP response code: 403 for URL: http://myIpaddress:myPort/rest/bean/atg/userprofiling/InternalProfileFormHandler/login
    2) Invoking url by browser
    http://myIpaddress:myport/rest/bean/atg/userprofiling/InternalProfileFormHandler/login?value.login=intRestUser&value.password=pwdRestUser&atg-rest-return-form-handler-exceptions=true
    In this case I've in Jboss console
    ERROR [nucleusNamespace.atg.userprofiling.PreviewProfileRequestProcessor] (http-0.0.0.0-8280-5) An attempt was made to preview a project without logging in as
    a user with access to publishing assets. The Preview feature does not support remote preview on servers running the BCC. If you received this error and did not try
    to perform a remote preview, then you may need to disable preview in the current webapp by setting the atg.preview context parameter to false in the webapp's
    web.xml file.3) I login with my intRestUser into BCC Home and after re-try step 2)
    In this case in console I've an exception
    ERROR [nucleusNamespace.atg.dynamo.servlet.dafpipeline.RestSecurityServlet] (http-0.0.0.0-8280-5) Error code: 401
    Access to the requested resource is not allowed: /atg/userprofiling/InternalProfileFormHandler
    atg.rest.RestException: Access to the requested resource is not allowed: /atg/userprofiling/InternalProfileFormHandler
            at atg.rest.processor.RestSecurityProcessor.checkAccess(RestSecurityProcessor.java:524)
            at atg.rest.processor.RestSecurityProcessor.handleGetRequest(RestSecurityProcessor.java:287)
            at atg.rest.processor.RestSecurityProcessor.doRESTGet(RestSecurityProcessor.java:175)
            at atg.rest.servlet.RestPipelineServlet.serviceRESTRequest(RestPipelineServlet.java:395)
            at atg.rest.servlet.RestPipelineServlet.service(RestPipelineServlet.java:238)
            at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:135)
            at atg.servlet.pipeline.PipelineableServletImpl.service(PipelineableServletImpl.java:298)
            at atg.rest.servlet.RestPipelineServlet.service(RestPipelineServlet.java:242)
            at atg.rest.servlet.HeadRestServlet.service(HeadRestServlet.java:107)
            at atg.servlet.pipeline.PipelineableServletImpl.service(PipelineableServletImpl.java:245)
            at atg.rest.servlet.RestProxyServlet.service(RestProxyServlet.java:118)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:29
    ...4) Finally I login with my intRestUser into BCC Home and after I call a rest service url directly as for example
    http://myIpAddress:myport/rest/repository/atg/commerce/catalog/ProductCatalog/product/6137329
    In this case it works.
    So, the BCC login bypass the direct authentication by InternalProfileFormHandler but only using the same browser session.
    So, the question is: why the java code or url code authentication don't work?
    Thanks in advance
    Marco
    Edited by: user10853406 on 27-ott-2011 12.42
    Edited by: user10853406 on 28-ott-2011 5.49
    simplified restSecurityConfiguration.xml

    I'm also experiencing the same issue. Seems like the problem is related with the Preview functionality. If I remove preview, the error goes away.
    Anyone knows a way to have this working with preview enabled?

  • "Invalid Login" trouble again

    From 2pm to 4pm today (central time US) I was unable to logon.
    The SSO screen just kept returning "Invalid login" with the same userid/password I've had for 15 years. 
    This happened on 3 separate platforms, my home desktop (Firefox/Comcast), my iPhone (Safari/AT&T), and my work laptop (IE/company VPN), so I don't think it was a local problem.
    Rebooting/clearing the browser cache didn't help and I was able to logon earlier today without any problem.
    I reported the same problem a month or so ago.  There was never a resolution but the problem seemed to vanish.  Well, it's back.

    I am having the same problem on my Itouch. I have reset to the manufacture settign and still have the error. I have no free phone counsultation at this time and I am having troouble getting rid of the error. This error shows up when I go to Apple Store or Itunes, and I just can not go online now. Where can I find additional posts to for this situation.

  • Mail server reports invalid login. Retype login and server accepts it. Password Manager selected.

    TBird v 24.5 running on W7 and Avast Free AV (up to date) running.
    For years TB has been successfully accessing the pop mail account on this PC with Avast, etc...
    Recently the provider (Centurylink/Embarqmail) made some changes. I double-checked the settings against their online list of settings. Also went over them with the Tech Support folks on the phone.
    Upon opening TB, it goes to check mail and reports back:
    Sending of username did not succeed. Mail server pop.centurylink.net responded Auth-status invalid login or password.
    Press OK, then select Re-type PW. Enter the same password as I always have, and select Password Manager to remember.
    TB will successfully check mail.
    Close TB, start it up again, and get the same response. Go though the same motions, and am able to get mail.
    Centurylink/Embarq has said repeatedly that I need to contact the manufacturer of TB... They say they have given me all the support and settings they can.
    I've tried changing all sorts of settings to no avail.
    Hoping that someone out there recognizes this problem and can offer a solution, or give me some items to check to get to the bottom of it.
    Thank you in advance for your time.
    System details as shown are for the PC I'm using to submit the request, not the PC I'm trying to solve the problem upon.

    You can try this:
    Open TB, go to Tools/Options/Security/Passwords, and click saved passwords. Select (click) the email with the password issue, and then click remove. Restart TB.
    The password prompt comes up. Enter password, check the remember option, and see if that fixes the issue by restarting and seeing if it logs in without issue.

  • Problem in CMC login with SAP authentication type

    Hi,
    We have installed the SAP Integration kit successfully for BO XI R2 & when I logon to CMC i am able to enable the SAP authentication and import the roles from the SAP BW system as well. But when I try to login into CMC using the 'Authentication type' as SAP it doesn't display the textboxes for entering  System ID and Client details. Can you please tell me how to fix this?
    Also I see that the CMC & Infoview authentication type drop down list are not the same. The CMC has the authentication types available as 'SAP,LDAP & Enterprise' where as Infoview has 'Enterprise, LDAP & AD'.
    Is this an issue with the Plugins? do i need to do some settings on the Tomcat ?
    Please help me out in this..
    Thanks in advance!
    Phani.

    Thanks for your update Jac...yes thats correct. Also I had to include authPlugExt.properties file in the tomcat/shared/classes, which i did not include previously. The SAP infoview is working fine now.
    Just one more question, in CMC login doesn't the SAP authentication require sap system & client id as its inputs? (in XI R2). I noticed that I was able to login with SAP user id's (without mentioning system details) , that have been added when I have imported the SAP roles to BO.

  • Error: 1051293: Login fails due to invalid login credentials

    Need help!
    I searched all the threads for this but i still have not found one that works for my issue.
    I was trying to add a new essbase server using EAS and i been getting the following error.
    I am able to login into the EAS with the same user name and password, but i am getting the following error when i try to ADD essbase server.
    admin July 7, 2010 12:40:32 AM CDT com.essbase.eas.admin.defs.AdminCommands.AddServerToUserList Succeeded
    winserver com.essbase.eas.essbase.defs.ServerCommands.Connect July 7, 2010 12:40:33 AM CDT Failed : 1051293 Login fails due to invalid login credentials
    Error: 1051293 Login fails due to invalid login credentials
    Essbase Server: winserver com.essbase.eas.essbase.defs.ServerCommands.Connect July 7, 2010 12:40:33 AM CDT
    Error: 1051293: Login fails due to invalid login credentials
    HELP!!
    Alex

    You have already posted the question here :- Error: 1051293: Login fails due to invalid login credentials
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Problem in login with sys

    hi,
    i have a problem in login with sys, the situation as follows:
    1- when i try to connect using : sqlplus "/as sysdba" or "sys/password as sysdba" it connect me to the DB.
    2- when i try to connect : sqlplus "sys/password@MYDB as sysdba" it gives me "ORA-01017: invalid username/password; logon denied".
    3- when i try to connect with another user i.e : sqlplus "system/password@MYDB" it connect me to the DB.
    DB version : 9.2.0.8
    OS version : Solaris 10
    please advice...

    1- when i try to connect using : sqlplus "/as sysdba"
    or "sys/password as sysdba" it connect me to
    the DB.This works anyway, because you're authenticated by OS. Example :
    SQL> conn sys/aaaa as sysdba
    Connected.
    SQL> conn sys/bbbb as sysdba
    Connected.
    SQL>
    2- when i try to connect : sqlplus "sys/password@MYDB
    as sysdba" it gives me "ORA-01017: invalid
    username/password; logon denied".Here you need the real password, so make sure you're using the correct one.

  • How to change the error message Invalid login credentials

    Hi all,
    How to change the default error messages .
    1) In the Login page while giving wrong username or password .It showing
    Error message "Invalid login credentials".
    But requirement is change the above error message.
    2) I need to change the error message instead of "1 error has occureed"
    Thanks in Advance
    Sudhakar

    On the Login Page of the application create a 'Before Header' process with this code if  apex_application.g_notification ='Invalid Login Credentials' then
             apex_application.g_notification :='Your Altered Failed Login Message Here';
      end if;varad

  • Translation of "Invalid Login Credentials" message

    Hi
    I've application (just) in non-english language. Shared Component / Globalization / Text Messages works well for the translation of "Next/Prev", "Error" texts, but where to translate invalid login error message?
    Roman

    I do not assume you translate APEX into Czech language
    Not yet.
    Your function can redirect to a page that shows the message you like. For example, if you wanted to redisplay the login page with the message, just do something like this:
    owa_util.redirect_url('f?p=' || v('APP_ID') || ':101:' || v('APP_SESSION') || ':MSG' );
    apex_application.g_unrecoverable_error := true;
    return false;
    Then adjust your login page so that a message appears if the "request" value is 'MSG'. The redirect_url shown above sets the request value to 'MSG'. Normally the login page would not show the message because that request value would not be present.
    Scott

  • Safari 7.0 (v9537.71) has not been tested with the plugin LastPass 1.75.0 (v1.75.0). As a precaution, it has not been loaded. Please contact the plugin developer for further information.

    I get the following message whenstarting Safari
    Safari 7.0 (v9537.71) has not been tested with the plugin LastPass 1.75.0 (v1.75.0). As a precaution, it has not been loaded. Please contact the plugin developer for further information.
    i have removed the plugin, but the message is still around
    and the last version i had installed was the most recent version of last pass VERSION 3.0.17
    anything i can do to fix that?
    thanx
    js

    Uninstall SIMBL as follows. Back up all data before making any changes.
    Triple-click anywhere in the line below on this page to select it, then copy the text to the Clipboard by pressing the key combination command-C:
    /Library
    In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V), and press return. A folder will open. From that folder, delete the items listed below (some may be absent.) You may be prompted for your administrator login password.
    Application Support/SIMBL
    InputManagers/SIMBL
    LaunchAgents/net.culater.SIMBL.Agent.plist
    ScriptingAdditions/SIMBL.osax
    Log out and log back in.
    Make sure you never reinstall SIMBL. It’s likely to come bundled with another third-party system modfication that depends on it. If you want trouble-free computing, avoid software that makes miraculous changes to other software, especially built-in applications. The only real exception to that rule is Safari extensions, which are mostly safe, and are easy to get rid of when they don’t work. SIMBL and its dependents are not Safari extensions.

  • BEA-090078 User ovowl in security realm myrealm has had 5 invalid login

    Hi,
    I created new domain for 10.3.4.0. there are two default users weblogic and OracleSystemUser. But in admin stdoutlog file, there are continuous below errors
    <XXXXXXXXX> <Notice> <Security> <BEA-090078> <User ovowl in security realm myrealm has had 5 invalid login attempts, locking account for 30
    minutes.>
    can you pls let me know where can i find ovowl user in weblogic domain.
    Thanks.

    my guess is this user "ovowl" doesn't exist at all.
    I have tried logging into the console for 5 times with a non existing username, and I got the same error:
    <17-May-2011 16:10:32 o'clock CEST> <Notice> <Security> <BEA-090078> <User weblogic1 in security realm myrealm has had 5 invalid login attempts, locking account for 30 minutes.>
    but there is no user "weblogic1"....

  • EssBase: Login fails due to invalid login credentials

    I am currently running Hyperion System Planning 9, authenticating users through my LDAP server and am having a problem creating new users. I have gone through what I believe are the steps I need to take and have created my users but now when they try to login to EssBase, through the excel add-in, I get this message: "Login fails due to invalid login credentials"
    I have searched the forums and the Essbase knowledge base and have come up empty. The only thing I have found is this:
    "You just need to provision your shared services user with access to Essbase. Right-click on your user, select provision and then give them the required Essbase rights."
    I have provisioned my users several times and made sure that they are added to the correct groups but they still can't log in.
    Has anyone had this issue before?
    Thanks,
    J

    Another point that you need verify, the service sequence:
    1. Start the analytic Services
    2. Star analytic Administration services.
    regards,
    Wallace

  • Authentication - "Invalid Login Credentials" ? ? ?

    Hey guys,
    Need some help regarding Log in.
    I have a table in the database (table name USER_SECURITY) which has the list of users who are authorized to log in to the application.
    I have to incorporate this in the application page
    Could you please help me with the logic how to go about it in APEX
    Thank You for your help and suggestions
    Jesh

    Hi,
    I did try the link and it helped me understand alot, [ http://djmein.blogspot.com/2007/07/custom-authentication-authorisation.html]
    and I tried an example as mentioned in Duncan Mein's Blog and it did work, but then when I try to use it in my application and entered the username and password it says *"Invalid Login Credentials".*
    Here's the code I used:
    The table was already created in the database: ASQ_USER_SECURITY
    has four columns: USER_ID, USER_ROLE, USER_NAME, PASSWORD
    Created an Application Security Package
    CREATE OR REPLACE PACKAGE app_security_pkg
    AS
    PROCEDURE add_user
    p_user_id IN VARCHAR2,
    p_user_role IN VARCHAR2,
    p_username IN VARCHAR2,
    p_password IN VARCHAR2
    PROCEDURE login
    p_uname IN VARCHAR2
    ,p_password IN VARCHAR2
    ,p_session_id IN VARCHAR2
    ,p_flow_page IN VARCHAR2
    FUNCTION get_hash
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    RETURN VARCHAR2;
    PROCEDURE valid_user2
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    FUNCTION valid_user
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    RETURN BOOLEAN;
    END app_security_pkg;
    CREATE PACKAGE BODY
    CREATE OR REPLACE PACKAGE BODY app_security_pkg
    AS
    PROCEDURE login
    p_uname IN VARCHAR2
    ,p_password IN VARCHAR2
    ,p_session_id IN VARCHAR2
    ,p_flow_page IN VARCHAR2
    IS
    lv_goto_page NUMBER DEFAULT 1;
    BEGIN
    IF UPPER(p_uname) = 'ADMIN'
    THEN
    lv_goto_page := 1;
    ELSE
    lv_goto_page := 1;
    END IF;
    wwv_flow_custom_auth_std.login
    p_uname => p_uname,
    p_password => p_password,
    p_session_id => p_session_id,
    p_flow_page => p_flow_page || ':' || lv_goto_page
    EXCEPTION
    WHEN OTHERS
    THEN
    RAISE;
    END login;
    PROCEDURE add_user
    p_user_id IN VARCHAR2,
    p_user_role IN VARCHAR2,
    p_username IN VARCHAR2,
    p_password IN VARCHAR2
    AS
    BEGIN
    INSERT INTO app_users (USER_ID,USER_ROLE,USER_NAME, PASSWORD)
    VALUES (p_user_id,p_user_role,UPPER (p_username),
    get_hash (TRIM (p_username), p_password));
    COMMIT;
    EXCEPTION
    WHEN OTHERS
    THEN
    ROLLBACK;
    RAISE;
    END add_user;
    FUNCTION get_hash (p_username IN VARCHAR2, p_password IN VARCHAR2)
    RETURN VARCHAR2
    AS
    BEGIN
    RETURN DBMS_OBFUSCATION_TOOLKIT.md5 (
    input_string => UPPER (p_username)
    || '/'
    || UPPER (p_password));
    END get_hash;
    PROCEDURE valid_user2 (p_username IN VARCHAR2, p_password IN VARCHAR2)
    AS
    v_dummy VARCHAR2 (1);
    BEGIN
    SELECT '1'
    INTO v_dummy
    FROM ASQ_USER_SECURITY
    WHERE UPPER (USER_NAME) = UPPER (p_username)
    AND PASSWORD = get_hash (p_username, p_password);
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN raise_application_error (-20000, 'Invalid username / password.');
    END valid_user2;
    FUNCTION valid_user (p_username IN VARCHAR2, p_password IN VARCHAR2)
    RETURN BOOLEAN
    AS
    BEGIN
    valid_user2 (UPPER (p_username), p_password);
    RETURN TRUE;
    EXCEPTION
    WHEN OTHERS
    THEN RETURN FALSE;
    END valid_user;
    END app_security_pkg;
    When I tried to Create a Test User it worked and added a record in the database
    exec app_security_pkg.add_user ('RS','E','jesh','goodone')
    Create your own Authentication Scheme
    Authentication Function Section: RETURN APP_SECURITY_PKG.valid_user
    Switch on your Custom Scheme: made it “My Auth Scheme”
    Also Altered the Login Process on Page 101
    app_security_pkg.login (P_UNAME => :P101_USERNAME, P_PASSWORD => :P101_PASSWORD, P_SESSION_ID => v('APP_SESSION'), P_FLOW_PAGE => :APP_ID );
    This is pretty much what was there in the Duncan Mein's Blog
    Thank you for having a look at the code
    Appreciate your help
    Jesh

  • Invalid login credentials when install oracle xe

    Hi friends,
    I installed oracle xe version 10.2.0.1.0 correctly, but when i tried to login to adminstration via
    http://localhost:8080/apex
    with sys or system and the password (which i have given during the /etc/init.d/oracle-xe configure)
    It says invalid login credentials
    Please Help me out
    Thanks

    Had same login credentials problem today (and pwd was spelt as it always is). No way was I getting in via frontend or SqlPlus or using any online tip.
    Deinstalled and reinstalled several times according to instructions. Note that ¨/etc/init.d/oracle-xe configure¨ doesn´t re-run unless you update ¨/etc/default/oracle-xe¨ file with ¨CONFIGURE_RUN=false¨
    Now I am into a whole host of connection problems and the database service does not start. Any ideas?
    Listener status:
    root@II-laptop1:/usr/lib/oracle/xe/app/oracle/product/10.2.0/server# lsnrctl status
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 22-AUG-2007 17:06:11
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    Start Date 22-AUG-2007 16:53:34
    Uptime 0 days 0 hr. 12 min. 36 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/admin/listener.ora
    Listener Log File /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=II-laptop1)(PORT=1521)))
    The listener supports no services
    The command completed successfully
    Listener logfile:
    Started with pid=8156
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=II-laptop1)(PORT=1521)))
    Listener completed notification to CRS on start
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    22-AUG-2007 16:23:12 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=II-laptop1)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869568)) * status * 0
    22-AUG-2007 16:28:51 * (CONNECT_DATA=(SID=XE)(CID=(PROGRAM=sqlplus)(HOST=II-laptop1)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=59109)) * establish * XE * 12505
    TNS-12505: TNS:listener does not currently know of SID given in connect descriptor
    22-AUG-2007 16:37:51 * ping * 0
    22-AUG-2007 16:38:16 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=II-laptop1)(USER=oracle))(COMMAND=services)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869568)) * services * 0
    listener.ora:
    LISTENER =
    (ADDRESS_LIST=
    (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
    # SID_LIST_<lsnr>
    # List of services the listener knows about and can connect
    # clients to. There is no default. See the Net8 Administrator's
    # Guide for more information.
    SID_LIST_LISTENER=
    (SID_LIST=
    (SID_DESC=
    (SID_NAME=PLSExtProc)
    (ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server)
    (PROGRAM = extproc)
    DEFAULT_SERVICE_LISTENER = (XE)
    tnsnames.ora:
    XE= (DESCRIPTION =
    (ADDRESS_LIST=
    (ADDRESS=
    (PROTOCOL=tcp)
    (HOST=127.0.0.1)
    (PORT=1521)))
    (CONNECT_DATA=
    (SID=XE)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    Any help would be greatly appreciated, thanks.

  • Invalid Login Page

    I have created a HTML portlet that accepts the portal user id/pswd and does a login. This works fine when the user correctly enters the information. If the user does not put in the correct user id/pswd, it bring them to the oracle default single sign on page. Is there a way to bring invalid logins to a different page (I want to display some help text/images) with a back button that return them to my login page?
    <TABLE BORDER="0" WIDTH="100%" CELLPADDING="0" CELLSPACING="0" class="RegionNoBorder">
    <TR><TD class="RegionHeaderColor" WIDTH="100%">
    <FORM ACTION="PORTAL30.wwptl_login.login_url" METHOD="POST" name="LoginForm">
    <INPUT TYPE="hidden" NAME="p_requested_url" VALUE="portal30.star_portal.set_user_info?p_target_url=portal30.home">
    <INPUT TYPE="hidden" NAME="p_cancel_url" VALUE="http://floyd.yeovil.ac.uk/servlet/page?_pageid=81,125&_dad=portal30&_schema=PORTAL30">
    <TABLE WIDTH="90%" BORDER="0" CELLPADDING="0" CELLSPACING="0">
    <TR>

    Hi Luke,
    the error message you got with the old Support Package was not correct (at least the behaviour you described in
    Re: Correct Password is Rejected
    We found the error and revised note 779502. Please apply the latest version of the note and check the behaviour.
    Regards,
    Rainer

Maybe you are looking for

  • Adobe Illustrator CS4 [TAdd] Error HELP NEEDED!

    I recently restored my HP Workstation and began the process of installing Adobe CS4. Everything seemed to be going smoothly until I clicked both Adobe Illustrator and Adobe Acrobat. Adobe Illustraitor presents the [TAdd] Error while it is loading up

  • Build Issue(package weblogic.jdbc.vendor.oracle does not exist) weblogic10

    Hi All, I am getting below build error. I am migrating weblogic 10. Which jar file contains this interface: weblogic.jdbc.vendor.oracle.OracleThinClob? Error: package weblogic.jdbc.vendor.oracle does not exist [javac] if (theClob instanceof weblogic.

  • Any Way to Set Default Settings for HDR Toning?

    I have developed a nice set of parameters for the HDR Toning feature and have saved them as Noels Defaults, but I don't see a way to make them the default settings for HDR Toning.  Frankly I find the default color settings for the tool very garish. 

  • Fpga FFT input data type

    I am using the FFT on a 9076 FPGA, in a single cycle loop, and I will be processing data from both a 9205 and a 9235. The 9205 FXP is 26,5, while the 9235 is 24,-4.  What is the best way to deal with this? I am not sure what will fit (I am finally co

  • What's your Discover Credit Line?

    Just curious. I've heard that Discover is stingy with handing out high limits.I got my Discover More this September, and they gave me $3500. A bit stingy as my other cards are all between $7k and $12k. When the nice lady on the phone verified some in