Another listener, iiop problem

Hi All,
If anyone can help, any assistance is greatly appreciated!!!!!
Oracle support has been completely useless and unresponsive regarding these issues. I have 2 open TARs that have gone nowhere in the last 1 1/2 weeks.
I am struggling with the listener and making an iiop connection to the database from my client.
config:
client - NT4 w/ 8.1.6 client
db1 - Redhat 6.2 w/ 8.1.6
db2 - NT4 w/ 8.1.6
I have been trying to get an IIOP connection to both databases using the sess_sh command. On both boxes I can connect and create an ORB session locally.
On the NT db, when I run sess_sh from the client, I successfully connect only if I bypass the listener and connect to the dispatcher port. If I try and connect using listener port I get "cannot connect to service sess_iiop". A port scan of the NT box lists the IIOP port as unknown. Listener.ora:
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = hostname)(PORT = 2481))
(PROTOCOL_STACK =
(PRESENTATION = GIOP)
(SESSION = RAW)
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = hostname)(PORT = 1521))
On the Linux box, when I run sess_sh using both the listener and bypassing the listener, using the dispatcher port, it crashes and I get a CORBA error ("NO_IMPLEMENT = MAYBE", whatever that is supposed to mean). The services command in lsnrctl tells me that I made a connection, but I cannot create an ORB session.
How am I supposed to evaluate Oracle software when I cannot get it running and support is non-existant? I am on the verge of dumping Oracle products and implementing a Microsoft solution, simply because I can get Microsoft products to work and then start to work around Microsoft's other (and many) short comings.
Thanks in advance for any responses.
null

Some people have hit problems when their NT client machine is configured to only use TCP shortnames (ie machinename, but no
domain info). This is a problem as the listener always uses the long machine names (ie including full domain info). The losing TCP implementation never figures out that the short and long names are for the same machine, and thinks it cant find the required
machine. In either case, by simply editing the host file on your NT machine to have both shortname and longname associated with
the same IP number, it should work fine. Typically, your hosts file is at c:\winnt\system32\drivers\etc\hosts and should contain:
ip-number machinename machinename.yourdomain.com
Try doing the above & let me know if it helps

Similar Messages

  • Yes another user with problem with Apple Mobile Device Support, I am getting the error message: Service 'Apple Mobile Device'(Apple Mobile Device) failed to start. Vertify that you have sufficient privileges to start system service....

    Yes another user with problem with Apple Mobile Device Support, I am getting the error message: Service 'Apple Mobile Device'(Apple Mobile Device) failed to start. Vertify that you have sufficient privileges to start system service....I hit retry and it came up again. I hit ignore and it prompted me to hit finish so Itunes can open.   I looked thru alot of these posts on here to try and resolve this problem myself but it's not working too well...I downloaded Itunes to my desktop so I can right click it with the program i downloaded called WinRAR. I extracted it and then went into the folder called Itunes64setup. I saw the file called AppleMobileDeviceSupport64 in there so I began to try and download it on it's own. Well that didn't work as I planned and got this error message:
    Apple Mobile Device Support wasn't installed on your computer. The installer encountered errors before Apple Mobile Device Support could be configured. Your system has not been modified. To retry these operations at a later time,please run the installer again.
    Well I tried to run it again and came up with the same message...I see that some people got great support to help them so I am hoping someone can help me as well. I know "b nor" is very qualfied and hopefully can help me! Please advise what I can do. Thank you

    Hi Iss9243,
    Welcome to the Support Communities!
    You've already tried some great troubleshooting steps, but the article below gives you quite a few more for this issue.  Hope it helps ....
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    - Judy

  • Add another listener to database

    Hi expert
    I have EBS v 11.5.10.2 with Database 9.2.0.6 and on this database I have one listener and all employees connect throw this listener with 1521 port , I am thinking to add another listener with 1531 port in database .
    How can the application see the both listener in the same time.
    Regards
    Mohammed

    Mohammed,
    If you are asking about load balancing, the following documents should be helpful.
    Note: 217368.1 - Advanced Configurations and Topologies for Enterprise Deployments of E-Business Suite 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=217368.1
    Note: 306653.1 - Installing and Configuring Web Cache 10.1.2 and Oracle E-Business Suite 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=306653.1
    For PCP, refer to:
    Note: 388495.1 - How to Set Up Parallel Concurrent Processing (PCP) in Apps 11i?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=388495.1
    Regards,
    Hussein

  • Listener Start problem

    Hi All,
    I have installed 2 different SAP instances on  a single machine. After installing these, when I tried to start both of them, they were not coming up. I noticed that the listeners were not started. I started one of the listeners (lets say for SAP system ABC)  and then system came up. However, when I tried to start another listener(lets say for SAP system XZY), it started and then stopped. I am using windows operating system.
    Then I stopped SAP system ABC and shutdown the listener for its database. Then I started listener for database of SAP system XYZ and then this SAP system came up successfully. After that I tried to start the listener for the dabatase of SAP system ABC, this time, this listener started and stopped and consequently, ABC system did not come up.
    Conclusion is that, at any given time, only one listener is allowed to run. As a result of this, the other SAP system in unable to talk to its datbase.
    I have also learnt that we can use one listener for multiple database. Can any one help me in configuring it rightly and start both SAP systems simultaneously?
    Would be waiting for your kind replies.
    Regards,
    Faisal

    SIngle listener can listen for multiple databses as well
    your listener.ora can look like
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = ABC)
          (ORACLE_HOME = /oracle/ABC/112_64) - This is your oracle_home
        (SID_DESC =
          (SID_NAME = XYZ)
          (ORACLE_HOME = /oracle/XYZ/112_64) - This can be same as above as well
    and your tnsnames.ora can look like
    ABC=
      (DESCRIPTION =
        (ADDRESS_LIST =
            (ADDRESS =
              (COMMUNITY = SAP.WORLD)
              (PROTOCOL = TCP)
              (HOST = <DBHOSTNAME>)
              (PORT = 1527)
        (CONNECT_DATA =
           (SID = ABC)
           (GLOBAL_NAME = ABC.WORLD)
    XYZ=
      (DESCRIPTION =
        (ADDRESS_LIST =
            (ADDRESS =
              (COMMUNITY = SAP.WORLD)
              (PROTOCOL = TCP)
              (HOST = <DBHOSTNAME>)
              (PORT = 1527)
        (CONNECT_DATA =
           (SID = XYZ)
           (GLOBAL_NAME = XYZ.WORLD)
    regards,
    MJ

  • Add another listener entry

    In oracle 11g, we have the database running with listener port 1521. We would like to cretae another database using the same oracle home and add the new listener entry with different port. Please advise how to add another listener entry in existing listener. thanks

    CKPT wrote:
    Please do not provide such stupid advice.Thinking can cause stupid, so kill the stupidity.
    The number of listeners required per server is ONE! Not 2,not 100, but ONE.
    Also different ports are not required. No gain is made by setting up different listeners on different ports.
    The listener is a BROKER only, there is NO PERMANENT contact.oracle@ckpt-oracle:> ps -ef|grep tns
    root 197 2 0 May21 ? 00:00:00 [netns]
    oracle   14266     1  0 Jun16 ?        00:09:35 /oracle/app/oracle/product/10.2.0/db_1/bin/tnslsnr <listener1> -inherit
    oracle   24777     1  0 Jun16 ?        00:00:09 /oracle/app/oracle/product/10.2.0/db_1/bin/tnslsnr <listener2> -inherit
    oracle 40665 10111 0 03:51 pts/2 00:00:00 grep tns
    oracle 46615 1 0 May21 ? 00:01:05 /oracle/app/11.2.0/grid/bin/tnslsnr LISTENER_SCAN1 -inherit
    oracle@ckpt-oracle:>
    Then how the two listeners are running of the same home?
    They obviously can run from the same home. What they can't do is run on the same port.
    OP question.
    We would like to cretae another database using the same oracle home and add the new listener entry with different portTell that it is not suggestable, ok, Here question of OP is Can it be done or not?And if he had asked how to put diesel fuel in his gasoline powered auto?
    Sometimes (far too often in this forum) the responsible thing to do is not to give the OP what they asked for, but to try to explain to them why they are asking for the wrong thing.

  • HTTP Listener connection problem

    Hi
    I am using Oracle 9i, and I'm trying to run a form using the Forms Builder application in the developer suite. I start the OC4J Instance before I start the Forms Builder application but when I try to run a form I get an error message displaying the following message:
    FRM-10142: The HTTP Listener is not running on [computer name] at port 8888. Please start your listener or check your runtime preferences.
    I have checked my runtime preferences thru the Edit> Preferences menu and I don't have anything entered on the "Runtime" tab in the Preferences dialog box, should I? If I should what should I have entered for this preference?
    I have administrator rights for my account. I am running Windows XP Pro with SP2.
    I would appreciate any help with this problem. Thank you in advance.
    Jo

    From Metalink:
    Note:234537.1
    Subject: Getting FRM-10142 Running a Form in Forms 9i Builder
    fact: Oracle Forms Developer 9.0.2
    fact: Oracle Forms 9i Builder
    symptom: Running forms fails
    symptom: FRM-10142: The HTTP Listener is not running on <host> at
    port 8888
    symptom: Please start the listener or check your runtime preferences
    cause: Unlike Forms 6i, Forms 9i does not support client-server. A fmb run
    from the Forms Builder is a 'web deployed form.'
    To do this Forms 9i Builder needs to integrate with some form of HTTP Listener.
    This is provided by another component of the Oracle 9iDS Rel 2 install - the
    OC4J (Oracle Container For J2EE). If there is no HTTP Listener started FRM-
    10142 occurs
    Once an OC4J instance has been started it acts as lightweight HTTP Listener
    enabling the developer to test the forms / reports application modules in a
    true web (even if only intranet) architecture.
    fix:
    1. Start the OC4J instance:
    -> In the Start menu click,
    Start\Programs\Oracle 9i Developer Suite\Reports Developer\Start OC4J Instance.
    OR
    -> Find and run the startinst.bat file in your Dev 9i home.
    It is usually in
    Dev9i home\j2ee\Oracle9iDS\
    On MS Windows an MS DOS dialogue should appear indicating that an OC4J instance
    has been started, simply minimize this DOS window to the taskbar
    2. Then try running the form again from Forms Builder
    3. Having finished with Forms Builder, to stop the OC4J instance:
    - use the Stop OC4J Instance shortcut, located in same place as the Start
    shortcut
    or shut the DOS window)
    Useful References
    Note 198297.1 How To Run Forms from Forms 9i Builder (9iDS Rel 2)?
    Note 234538.1 FRM-10063: Cannot find the help file, For Help on FRM-10142
    in Forms 9i
    Note 197481.1 Use Forms 9i Via Another OC4J Port Than The Default 8888

  • Yet another active directory problem

    Hi,
    I'm trying to bind a few Macs in my Windows 2003 Active Directory Domain, they're the first that comme with Lion 10.7.2 out of the box. I'va had my share of problems with AD binding of Macs, but I already have a lot of 10.6.8 Macs, and a few other that got upgraded from 10.6 to 10.7 without much problems and those work fine with my AD.
    That, of course, couldn't last and I now have a new problemes with my 10.7.2 Macs. The binding process in itself seems to work fine, I've got the green light in front of my AD domain and I can log with my AD accounts on my Macs. The problem start when I try to access the directory utility to change the default settings for "active directory" (any settings will do, create mobile acount for example) : this creates another AD binding in "network account server", I can still login with my ad accounts but none of the settings I set in the directory utility are effective.
    Both of those AD binding are shown with a green light, but the second one has a comment stating that it is not present in the auth scope rules. My AD DNS domain name is something like "domainname.com" (no .local), but the short netbios name is something like "dom" : the original AD binding on my 10.7.2 Macs is "dom", and the one created after I change some settings is "domainname". On my other Lion or SL Macs correctly joined to my domain, the domain only appears with the name "domainname" : it seems that for some reason Lion is now troubled by the fact that my netbios name is not the dns name minus the extension...
    If I unbind one of my correctly working upgraded 10.7.2 Macs, it exhibits the same issue when I try to rebind it.
    Does anyone else has a similar AD configuration, and does it work with 10.7.2 ? Does anyone has any idea of how to work around it ?
    Thanks

    Hi there,
    I have experienced the same problem with Macs in my Windows environment. I have found a work-around for it, but it is a little bit tedious. What I have found is that if you reinstall Lion (10.7 or 10.7.1) and bind it to the domain before patching to 10.7.2 it will bind correctly with only one entry in the network account server dialog. From there you can updagte to 10.7.2 and it will work correctly. There is a catch, though. If for any reason you need to unbind the machine from the domain, you will run into the same problem when you try to bind it again. I know it is not much of a fix, but it is what I have been doing to get around the problem. I hope this helps you out.
    Regards

  • Yet another temporary freezing problem, energy saving related, maybe

    I've followed uncountable suggestions about this issue, but none seem to be quite the same situation, and none of the suggestions I tried made any difference so far.
    History: MBP 17" June/2009, 8GB RAM, 500GB Seagate with sudden movement protection, started life as 10.5.7, done at least three fresh reinstalls of SL. The problem was present on the second SL install (the one I really used in production for about a year), but I solved it somehow by following uncountable Google suggestions at the time. Didn't take not of the magic one, because the problem wasn't so predictable at the time, or I didn't know enough about it, and also because I only noticed the problem was gone after a couple of weeks of normal use. Unfortunately, some time ago my filesystem went nuts on a kernel panic and, though I was able to move things back in place from lost+found, a few things wouldn't work as they should, so I went for another fresh reinstall. After I started to use the new system the problem showed up again, but I haven't being able to find a fix for it again. Current system (10.6.4) and patches regularly updated, though I tend to delay a reboot to avoid putting together all my usual windows/applications in the correct desktop/spaces. Maybe the only continuously running extension I have is Growl, since I tend to more heavily use the Unix part of the Mac through MacPorts (latex, tcpdump, nmap, bash scripts, emacs and so on). Recently I installed M$ Office, but normally I prefer OpenOffice (does M$ Office install some sort of extension?)
    Frequency: I'm almost sure it is triggered by something related to energy saving regarding turning off the screen, but it doesn't happen every time. When I'm giving a class, the machine runs on battery, the settings for screen off are shorter and if I take too long to generate some input (key press or touchpad action), the problem tends to happen. Interestingly, it's particularly more frequent when I'm giving classes:-):-), but it is happening even on my desk with power on. I'm inclined to think there's a "window of opportunity" for the bug to happen, maybe between screen dim and screen off (a few minutes?). My settings are currently at 15 minutes for the screen to go off, for both power adaptor and battery operation, but that's an attempt to lower the chances of this happening during class, which is terrible. They used to be at only a few minutes of inactivity.
    Symptoms: if I try to do anything with the machine past some period of inactivity, maybe during that window I mentioned above, there's a high chance of the bug being triggered. The system responds quickly to clicking a window, but applications don't seem to receive the focus of attention; I notice that the window frame of an application doesn't get darker when I try to select it. On a Terminal, the prompt remains as a rectangular frame instead of a filled block (I use white characters on dark background), and no matter how much I try, I cannot give the focus of attention to the visible shell on Terminal, so I can't issue any shell command to try and find out things. Changing workspaces may happen, but at a very slow speed, maybe many seconds after issueing the command. Eventually the system recovers itself, usually after several minutes, and then all user interface events that I tried during the freeze were remembered and are played sequently as fast as the machine can handle, sometimes doing unwanted things in the process due to objects receiving the wrong action (some sort of desynchronization). The outstanding event that preceeds recovering is the screen being progressively blackened and then lit again, but not instantly as in moving the pointer to a hot corner. The screen transition happens during half to a full second, after which all queued events are played at the fastest possible speed. After that the system is completely normal. In the beginning I have hard-rebooted the machine, because I didn't know it would eventually recover itself. During class I also don't have the patience to wait for long (and neither do students:-)).
    Solutions already tried:
    - disabling sms through pmset. I know it has to be disabled with this particular drive, otherwise conflicts with the drive's own mechanism. It is currently off, and had been on for a while till I refound the suggestion through google.
    - re-indexing Spotlight's DB. No change.
    - fixing file permissions (I don't see any possible relation, but anyway...)
    Don't recall what else is missing on this list, because I couldn't find a concrete suggestion for this scenario, so I believe that's about it.
    It looks to be more frequent now, to the point that I decided to stop work just to write this long msg, in the hope that someone else may have seen such behaviour and have something new for me to try.
    Thanks in advance.

    The problem is that the initial backup is incredibly slow and hasn't worked yet. I right click on the dock icon and start the backup process which after working out what needs to be copied progress's in very slow erratic bursts.
    It's hard to offer a definite solution. But there are some simple things you could try to improve the backup speed such as excluding TM backup disk from spotlight indexing (privacy tab in spotlight prefs), and excluding unecessary files and folder from the backup (e.g. applications) in TM prefs.

  • Another "duplicate email" problem.

    I asked the following question over on the Office 2013 forum and the only response I got basically told me to "go ask this on the Outlook forum", so here goes:
    "I too am experiencing rabid email duplication with Outlook 2013.  I've found a way to avoid the problem, and also a way to fairly reliably CAUSE it.  I'm posting in the hope that this will help Microsoft with information that will allow them
    to correct their buggy code.
    My configuration:
    LAN/Domain network running Server 2008 R2 and a 3rd party (not Microsoft) email server. (Code-Crafters Ability Mail Server). 
    Physical network is a mix of hard-wired Gigabit Cat6 and wireless (Ubiquiti Pico M2 HP).
    A mix of Windows workstations, desktops and laptops running a mix of XP-Pro, Vista Ultimate, Win 7 Pro, and 8.1 Pro.
    A mix of Outlook versions, the XP and Vista machines are mostly running Outlook 2003 (yeah, I know, it's ancient but it generally still works fine for these users and they hate change).  The 7 and 8.1 users are all on Outlooks 2013 (installed as Office
    2013 Professional Plus 2013).
    All of the users access their email on the OEM Ability server via IMAP. All users have at least "a couple" of sub-folders defined in their account and all use at least "some" Outlook rules to route some email at both receive and send
    time into various folders.  Some users have a lot of rules and folders, some have only a small handful.  These users also have external IMAP access to their email on the server via their Android phones, generally using the "Type" (formerly
    Bluemail) Android email client.
    Everything from the server down (including the email server and the domain controller)  is mine and under my direct control.
    What happens fairly consistently for a few users is this:
    If they have Outlook 2013 running on more than one workstation at the same time, eventually it will go insane duplicating a handful of emails, both in the inbox and in one or more of their folders, at the rate of once every few seconds.  They are also
    connected via their android phone when this happens.  All clients (all the Outlook instances and their phones) go nuts trying to send 'new mail' notifications out at a very rapid rate.  It's not possible to delete them fast enough to keep up, no
    matter how quick they are on the trigger.  The emails in question ARE in fact duplicates - everything about them including the header information matches - and they are "real" (the duplicate copies are also visible through the web interface
    directly into the email server), so I'm sure the duplication is not just inside the Outlook view of the user's email folder(s).
    Stopping all of the user's instances of Outlook stops the duplication.  Stopping just the android client does not.  If the user shuts down all his/her instances of Outlook and uses the webmail interface to delete all the duplicates (even the 'original'
    email) and then starts exactly ONE instance of Outlook 2013, things are fine.  Starting a second instance of Outlook 2013 on another machine (for the same user) will eventually cause the duplication to start again.  Sometimes immediately, sometimes
    not, but in my experience it has always started again within an hour of starting the second Outlook 2013 instance.  When it starts, the duplicated mail is the same as before - even though the user previously deleted all copies of it, they 'magically'
    start re-appearing.
    I'd really like for this to get fixed.  Now, before anyone replies, if you're going to just write "you shouldn't run multiple instances of Outlook for the same account from different machines",  don't.  I don't want to hear
    it and the reasons that some of my users want to do this are none of your concern.  If it's DOCUMENTED in official Microsoft documentation that this is not a supported action, then I want to see the reference myself.  Otherwise, keep it to yourself
    - thanks.
    Also, don't suggest that I delete and rebuild the user's email profiles and/or email accounts on the server.  Been there, done that (multiple times), it doesn't solve the problem.
    Dont' suggest that I ditch my existing email server and convert to something else (like Exchange). I happen to like my existing email server (and so do my users).  I've already worked this problem with their support structure fairly extensively and
    we're both satisfied that the problem is not being caused by their server code.
    Finally, don't tell me to run scanpst.  Also been there, done that (multiple times) and that too does not fix the problem, so either the problem is somewhere other than in a corrupted pst/ost file, or scanpst is too dumb to find and correct whatever
    corruption might exist.
    Having said all that, any insights into what's going on?"
    Another symptom, which may or may not be related that I'm seeing on one of the problem machines is that Outlook "sometimes" does not show recent email on the user's account.  The user can access his email account via direct web access into
    the email server and is able to see, sometimes, several days worth of email traffic that does not appear in Outlook (again, using an IMAP connection).  Trying various combinations of "send/receive" operations, "folder unsubscribe/subscribe"
    operations, even exiting and restarting Outlook all seem to complete with no errors, but also without retrieving the missing email from the server.  Sometimes "time goes by" and the user can restart Outlook and the email will appear, but
    I've not yet found a way to make it happen.

    Update:
    I've reading around the different posts and saw somewhere that it might help if i put my username and password in the outgoing mail section (where is says optional). I did that! I then shut off my wifi and tried to send mail using the edge network and it was sent successfully. I will try this when im away from home again. Hopefully this will work.

  • Listener Start Problem with TDE (Transparent Data Encryption)

    i am testing Transparent Data Encryption in Oracle 10g by using the following link
    http://oracle-base.com/articles/10g/TransparentDataEncryption_10gR2.php
    Before Implementing the TDE listener was running fine but after implementation of TDE the listener was unable to start
    Please check the steps which i follow
    Step1-
    specify the ENCRYPTION_WALLET_LOCATION parameter in the sqlnet.ora file, now SQLNET.ora file looks like the following
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
    ENCRYPTION_WALLET_LOCATION=
    (SOURCE=(METHOD=FILE)(METHOD_DATA=
    (DIRECTORY=D:\oracle\product\10.2.0\wallet\)))
    please check the contents of listener.ora file,i didn't make any configuration changes for listener before or after implementation of TDE
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = D:\oracle\product\10.2.0\db_1)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = shakeel-pc.lhr.inov8.com.pk)(PORT = 1521))
    Step2-
    CONN sys/password AS SYSDBA
    ALTER SYSTEM SET ENCRYPTION KEY AUTHENTICATED BY "myPassword";
    TDE implemented successfuly implemented.
    But when i try to stop/start listener
    C:\>lsnrctl status
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 06-JUN-2008 05:44
    :30
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Produ
    ction
    Start Date 05-JUN-2008 22:40:14
    Uptime 0 days 7 hr. 4 min. 16 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File D:\oracle\product\10.2.0\db_1\network\admin\listener.o
    ra
    Listener Log File D:\oracle\product\10.2.0\db_1\network\log\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=shakeel-pc.lhr.inov8.com.pk)(PORT=15
    21)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "orcl" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "orclXDB" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "orcl_XPT" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    The command completed successfully
    C:\>lsnrctl stop
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 06-JUN-2008 05:44
    :35
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    The command completed successfully
    C:\>lsnrctl start
    [i]LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 06-JUN-2008 05:44
    :40
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Starting tnslsnr: please wait...
    TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Production
    System parameter file is D:\oracle\product\10.2.0\db_1\network\admin\listener.or
    a
    Log messages written to D:\oracle\product\10.2.0\db_1\network\log\listener.log
    Error listening on: (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PARTIAL=yes)(QUEUESI
    ZE=1))
    No longer listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\E
    XTPROC1ipc)))
    TNS-12560: TNS:protocol adapter error
    TNS-00583: Valid node checking: unable to parse configuration parameters
    Listener failed to start. See the error message(s) above...
    To start the listener i have to close wallet as
    1- SQL>conn sys as sysdba
    ALTER SYSTEM SET WALLET CLOSE;
    2- Replace the SQLNET.ora file as previous ,now SQLNET.ora contains
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
    Now if i start the listener then the listener was started succesfuly
    Please suggest why listener is not being start with TDE?

    I have the same problem. I'm testing TDE using Oracle 11gR1. After setting the parameter encryption_wallet_location and restart the listener, the listener failed to start. The error is exactly the same
    TNS-12560: TNS:protocol adapter error
    TNS-00583: Valid node checking: unable to parse configuration parameters
    By removing the parameter encryption_wallet_location, the listner can be started successfully.
    Anyone can help?

  • Another NVidia graphics problem (8800 GS) - late spring 08 imac

    I have a spring 08 aluminum imac (24", 3.06GHz, 4GB RAM, 10.5.7)
    The graphics card is an NVIDIA GeForce 8800 GS w/ 512 MB VRAM
    I get sporadic strange graphics failures seemingly at random intervals. They started around the time I upgraded to 10.5.5 (or maybe 10.4.4... can't recall) back in December, but that could be coincidence. They do not seem to be tied to use of any application or user action. Since they started in December, I have gone months without them, and had them occur 5 minutes apart. They've hit me a half dozen times in the last 3 days.
    Here's what happens:
    The screen appears to flash once
    The computer becomes unresponsive (usually w/ spinning beachball)
    If activity monitor is running, the CPU stays at a low use %
    Sometimes the dock icons pixelate and/or turn yellow
    Occasionally the desktop icons seem corrupt/pixelated
    The desktop background is unaffected. If iTunes is playing it is unaffected. The mouse moves the pointer with no sluggishness or lag, though clicking is usually ineffective (can have either standard pointer or spinning ball)
    Using iStat, the GPU immediately after a reboot is ~52 deg and the GPU Diode is 59 Deg. The top of the machine is very warm. I can hold my hand there indefinitely, but any hotter and I would not be able to. The CPU fan is running at 1300rpm, hard drive at 1500, optical drive at 700.
    Tech tool Pro 5 video memory test shows no problems.
    Sometimes the machine appears to recover somewhat, but then I get another "flash" and the symptoms repeat.
    If I pull up console, I get a host of error messages along the lines of:
    7/14/09 8:41:18 PM kernel NVDA(OpenGL): Channel exception! status = 0xffff info32 = 0xd = GR: SW Notify Error
    7/14/09 8:41:18 PM kernel 0000000c
    7/14/09 8:41:18 PM kernel 00200000 00008297 00000472 00000000
    7/14/09 8:41:18 PM kernel 0000047e 00001b0c 1000f010 00000003
    7/14/09 8:41:18 PM kernel 00000000 00000000 00000000
    7/14/09 8:41:30 PM kernel NVChannel(Display): Graphics channel timeout!
    7/14/09 8:41:42 PM kernel NVChannel(OpenGL): Graphics channel timeout!
    7/14/09 8:41:54 PM kernel NVChannel(Display): Graphics channel timeout!
    Typically, the only recourse is a hard reboot holding the power button.
    I fear I screwed myself, as even though the problem started in December, it had gone "dormant" in early spring, and I let my 1 year warranty go past without getting extended applecare. A call to apple care yielded only a "bring it to a genius bar and they'll have a look" but given the sporadic nature of the problem, I doubt I'd be "lucky" enough to get the error.
    Can anyone offer advice as to:
    What the heck is going on
    Whether this is a common enough problem that I can badger Apple into fixing it out of warranty
    If there is anything I can do to remedy the problem myself
    What I can expect to pay for a repair

    Typo - should read : "They started around the time I upgraded to 10.5.5 (or maybe 10.5.4... can't recall)"

  • Another pdf export problem with graphics missing

    well, it seems that there have been quite a few export probs w/pdf.
    i created some somewhat complex graphic files (wine labels) using keynote. then transfered them over to pages so that i would be able to print them
    more easily. when transfering them to pdf files i lose some graphics.
    the graphics that i lose are chinese characters...but only SOME of them.
    i've tried pdf/x, still the same problem, but then i have that funny shaded
    box around my letters.
    i've tried exporting directly from keynote, but the pdf image is markedly
    smaller than the oringinal document (with the comments hidden).
    any ideas...even the genius bar is stumped.
    macbook   Mac OS X (10.4.8)  

    In general, if some Chinese characters behave in one way and some other ones in another, it is often because one uses the wrong kind of font. If you for example have the (simplified) character 话 and use a font for traditional Chinese it may sometimes fail - especially in MS Word.
    That said, I cannot reproduce your particular problem here. Both Keynote and Pages seem to handle this as well as they possibly can for me.
    Two things you can try:
    1. Change font, to make sure that it matches the character.
    2. Create another account on your Mac and see if you still have the same problem.
    What did the characters look like? Any fancy formatting with shadows or colours?

  • Another halting Thread problem

    Hello,
    I want to make a benchmark software using Java, and I want to add capability to stop the test if such setting was selected that the test would take forever. I know that I can do this with using such code like:
    public class MyBenchThread extends Thread {
    boolean toldToStop = false;
    public void run() {
      while (!benchmarkEndConditionHasMet && !toldToStop) {
       // Run heavy benchmark here
    public void haltTest() {
      toldToStop = true;
    }and calling haltTest() from another Thread.
    However, this has two problems:
    1) To have the benchmark at its purest level, I would like
    to avoid extra computation as much as possible. Is there a way to give the same effect of killing the thread without constantly checking a condition variable?
    2) If the benchmark involved some I/O operation (not necessarily over a socket to which you can set a timeout) that takes a while to complete, I would not be able to halt it using the above code or interrupt() function in Thread class. I know that stop() is likely to cause problem... So is there any way to force interrupt execution of the Thread including I/O, do whatever cleanup is needed, and gracefully exit?
    Thanks in advance

    Sorry for late response... Had been away for weekend.
    Well, interrupt() does not seem to work on I/O operation. It only works on a Thread that is actually sleeping or waiting on a monitor. If it was doing some heavy number crunching or I/O, I think it will only set its interrupted status to true, and does not actually suspend its operation. (This is my assumption; correct me if I am wrong)
    Hmm... so I guess there is not really a way to get around this. I was having problem with using a proprietary library that established a CORBA session inside it, and it did not provide any way of halting the operation externally. Unless I Ctrl-C whole VM, the library call just kept on going for about 30 secs till it finally gave up.
    I don't know... Is force trying to stop a problematic thread that dangerous thing in general to do in multiprocess programming, even if you knew what you were doing?

  • [SOLVED kinda]Yet another Broadcom wireless problem - scanning

    Use an old Gateway laptop with a wireless card to provide internet through NAT to my desktop computer that isn't nearby my switch.  I was doing this for the longest time using WinXP on the Gateway, but since all my other computers are now running linux, I figured, hey, why not put a really sleek and sexy copy of Arch onto the Gateway, and free up some of that HD space for easier file sharing between the desktop and the rest of the network.  So I installed Arch, and have run head first into how much Arch and Broadcom wireless devices do not play well together.  Have spent all my time since then searching the forums, the wiki, etc, but to no avail.  So going to just go ahead and finally make my own call for help via the forums here. 
    I've only ever ONCE seen a scan find a wireless network, and that was after my first reboot after installing arch.  That was the only time. There are at all times 2-4 wireless networks in range of this computer.  I'm currently on my netbook running Ubuntu to post this (typing everything in by hand, ugh), and can see 4 networks right now.  The Arch laptop can't find any.
    To start off with:  I have read the wikis.  I have searched the forums.  I HAVE INSTALLED THE FIRMWARE.  I've checked to make sure my card is supported, and the driver it uses is the b43, and is not supposed to be compatible with the wl driver.  This is the cardbus Linksys WPC54G v1 card.  I know the card itself works.
    Here's the various data I'm sure will be requested of me at one point or another.  This is all taken immediately after booting.
    What can I try.  I've probably already tried it, but I'm willing to walk through step by step with someone if they think they can help.
    lspci -vnn
    03:00.0 Network controller [0280]: Broadcom Corporation BCM4306 802.11b/g Wireless LAN Controller [14e4:4320] (rev 03)
    Subsystem: Linksys WPC54G v1 / WPC54GS v1 802.11g Wireless-G Notebook Adapter [1737:4320]
    Flags: bus master, fast devsel, latency 64, IRQ 10
    Memory at 48000000 (32-bit, non-prefetchable) [size=8K]
    Capabilities: [40] Power Management version 2
    Kernel driver in use: b43-pci-bridge
    Immediately after boot if I run
    dmesg (related info)
    [ 7.760803] b43-pci-bridge 0000:03:00.0: enabling device (0000 -> 0002)
    [ 7.769836] b43-pci-bridge 0000:03:00.0: PCI INT A -> Link[LNKA] -> GSI 10 (level, low) -> IRQ 10
    [ 7.760856] b43-pci-bridge 0000:03:00.0: settling latency timer to 64
    [ 8.217173] b43-phy0: Broadcom 4306 WLAN found (core revision 5)
    [ 8.276959] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 8.278657] Registered led device: b43-phy0::tx
    [ 8.278721] Registered led device: b43-phy0::rx
    [ 8.278788] Registered led device: b43-phy0::radio
    [ 8.278831] Broadcom 43xx driver loaded [ Features: PMNLS ]
    [ 43.860080] b43-phy0: Loading firmware version 666.2 (2011-02-23 01:15:07)
    [ 43.921388] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    uname -a
    Linux oms-gateway 3.2.9-1-ARCH #1 SMP PREEMPT Thu Mar 1 09:10:44 UTC 2012 i686 Intel(R) Pentium(R) III Mobile CPU 1066MHz GenuineIntel GNU/Linux
    Kernel version greater than 3.2 should be able to use the version 5.100.138 Broadcom drivers.
    ifconfig wlan0
    wlan0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 metric 1
    ether 00:0f:66:2e:b0:83 txqueuelen 1000 (Ethernet)
    RX packets 0 bytes 0 (0.0 B)
    RX errors 0 dropped 0 overruns 0 frame 0
    TX packets 0 btes 0 (0.0 B)
    TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
    iwconfig wlan0
    wlan0 IEEE 802.11bg ESSID:off/any
    Mode:Managed Access Point: Not-Associated Tx-Power=20 dBm
    Retry long limit:7 RTS thr:off Fragment thr:off
    Encryption key:off
    Power Management:off
    lsmod | grep b43
    b43 317649 0
    mac80211 203227 1 b43
    cfg80211 147716 2 mac80211,b43
    ssb 42035 1 b43
    mmc_core 71470 2 ssb,b43
    pcmcia 31502 2 ssb,b43
    iwlist wlan0 scan
    wlan0 No scan results
    Last edited by oldmansutton (2012-03-11 01:53:50)

    oldmansutton wrote:
    Strike0 wrote:Whether rev 3 needs legacy or not is controversial. I assume you blacklisted b43 when trying legacy?
    How about any need to blacklist when you need b43. Anything suspicious around in lsmod?
    with b43, you can see me previous lsmod on the original post.
    with b43legacy, the only related things I see from lsmod are b43legacy, mac80211, cfg80211, and ssb.
    Wait.  Hmmm....
    rmmod b43
    modprobe b43legacy
    rmmod b43legacy
    modprobe b43
    lsmod |grep b43
    Now bcma is showing up.  But it didn't before.  It just started showing up with b43 since I did the compat-wireless package.  But seeing as I'm getting scans SOMETIMES now, I hesitate to call it a problem.  Maybe?
    Any other ideas?
    It can scan ONCE.  The b43 driver is obviously functional at least for a bit.
    Standard network service, wicd, netcfg, etc, I've tried them all.  Reinstalled from scratch twice.  Looking for NEW ideas basically.  I've read just about every single post about every broadcom chipset out there.  I just happen to have one of these rare ones apparently.
    Last edited by oldmansutton (2012-03-10 17:46:59)

  • Another Caller Display Problem

    My caller display stopped working today at 14.00hrs and dispite reporting it several times and getting a text saying its now fixed, its not working.
    I have no filters and a filtered face plate, on infinity broadband and tried 2 new bt phones and they both display the same as the old ones NO Caller ID is Displayed.
    I took  my old phones to a mmate and they both show caller display, so sispect its another one of those weak signal faults ?
    Can a mod here take a look at it for me ringing India is winding me up
    Solved!
    Go to Solution.

    No filters as I put in my first post a filtered face plate.
    The phone is plugged into it direct, but it started working again on its own dispite a call from India saying problem is with my equiptment! which its not.
    BT are a shambles and its ok when everything works and I'm lucky mine never turned into a 6/8 multi call to 151 like others here.
    What caused it to stop working ? thery dont know, how it got fixed they dont know, other than to say after it started working again the faults in my property.

Maybe you are looking for