Got a problem with my Chatting-Room program, please help me if you can.

There is one bug in the code (should be just one), but I couldn't find it, I even recoded the whole thing, after I recoded the code, the same problem seems still there. I just can't find where the problem is. So I hope someone here can help me, thank you very much.
First, I made a Server and a Client. Server has 5 classes, and Client has 2 classes. My intention is that all the clients(running on other computers) will connect to the server (which is my laptop), and then they can communicate with each other. For example, if person A typed "Hello", person B and person C's computers will receive this message and display it.
The problem is that several clients can connect to the server (My laptop), but if one person type something, other people won't receive the message, it's blank on their screens. Maybe there is a problem when server receiving the message. So this is the problem I want to solve.
I have the code down there, here is a brife description what each class mainly does.
First class of Server is for connecting client, this class is named Server. Everytime a client is connected, the Server class calls the second class to store the client's information (which is its IP address), the second class is named People.
Third class is named Receiver, it is for receiving the massage from any one of the clients, then stores the message to a static field variable in Fourth class, fourth class is named Saying.
Fifth class of Server is named Sender, it is for sending the massage to the client, that message is the one that stored in Saying.
The First class of client is named Client, it prints any message that the server send to it.
The Second class of client is named SendFromClient, it wait for user to type something, and then send the message to the server, so server's Receiver class hopefully will get it and store it to the field variable in the Saying class.
Here is all the codes:
Server Class:
import java.net.*;
import java.io.*;
import java.util.*;
public class Server
     public static void main(String[] args)
          /*port number*/
          final int port = 41333;
          /*welcome messages:*/
          System.out.println("This is FriendlyJ 1.0 running");
          System.out.println("Listening on ports 41333");
          try
               /*Clear the ArrayList*/
               People clear = new People();
               clear.IPs.clear();
               /*Create a server socket that will accept any connection on this port*/
               ServerSocket ss = new ServerSocket(port);
               /*keep getting clients*/
               while(true)
                    /*connect with one client at a time*/
                    Socket s = ss.accept();
                    PrintWriter out = new PrintWriter(s.getOutputStream(),true);
                    Scanner in = new Scanner(s.getInputStream());
                    /*indicate one establish of connection*/
                    System.out.println("One connection estabolished!");
                    /*two classes, one foe receiving, one for sending*/
                    Receiver receive = new Receiver(in);
                    Thread ty = new Thread(receive);
                    Sender send = new Sender(out, s);
                    Thread yt = new Thread(send);
                    ty.start();
                    yt.start();
                    /*add IP to ArrayList*/
                    clear.storing(s.getInetAddress().toString());
                    out.println("There are " + clear.IPs.size() + " people online;");
                    System.out.println("Connected to " + s.getInetAddress().toString());
          catch (Exception e)
               System.out.println("System exception");
}People Class:
import java.util.*;
public class People
     ArrayList<String> IPs = new ArrayList<String>();
     /*A method for storing IPs*/
     public void storing(String IP)
          IPs.add(IP);
}Receiver Class:
import java.util.*;
public class Receiver implements Runnable
     final private Scanner in;
     /*Constructor to get the scanner*/
     public Receiver(Scanner abc)
          in = abc;
     public void run()
          Saying say = new Saying();
          try
               while(true)
                    /*waiting for input from client, then give it to Saying*/
                    say.setSaying(in.nextLine());
          catch (Exception e)
               e.printStackTrace();
}Saying Class:
public class Saying
     static String saying = "";
     public void setSaying(String a)
          saying = a;
     public String getSaying()
          return saying;
     public void resetSaying()
          saying = "";
     public int getlength()
          return saying.length();
}Sender Class:
import java.io.*;
import java.net.*;
public class Sender implements Runnable
     final private PrintWriter out;
     final private Socket s;
     public Sender(PrintWriter abcd, Socket abcde)
          out = abcd;
          s = abcde;
     public void run()
          out.println("Feel free to chat.");
          int count;
          Saying says = new Saying();
          try
          while(!s.isClosed())
               count = says.getlength();
               if(count>0)
                    out.println(says.getSaying());
                    says.resetSaying();
          /*disconnect with the client*/
          s.close();
          System.out.println("Connection with " + s.getInetAddress().toString() + " is closed.");
          catch (IOException e)
               System.out.println("Network error!");
}Client Class:
import java.util.*;
import java.net.*;
import java.io.*;
public class Client
     public static void main(String[] args)
          Socket sc;
          System.out.println("Welcome to FriendlyJ IM program");
          System.out.println("Connecting to the server...");
          int port = 41333;
          /*A variable for storing IP address of Server*/
          InetAddress ip;
          try
               ip = InetAddress.getByName("192.168.1.68");
               sc = new Socket(ip, port);
               System.out.println("Connected with Server");
               Scanner in = new Scanner(sc.getInputStream());
               PrintWriter out = new PrintWriter(sc.getOutputStream());
               /*a thread for sending message to the server*/
               sendFromClient sendin = new sendFromClient(out);
               Thread sending = new Thread(sendin);
               sending.start();
               /*display welcome message*/
               System.out.println(in.nextLine());
               /*displaying how many people are online now*/
               System.out.println(in.nextLine());
               while(true)
                    /*print out the message sent by the server*/
                    System.out.println(in.nextLine());
          catch(UnknownHostException e)
               System.out.println("Couldn't find the host!");
          catch(IOException e)
               System.out.println("Network error!");
          catch (Exception e)
               e.printStackTrace();
}SendFromClient Class:
import java.io.*;
import java.util.*;
public class sendFromClient implements Runnable
     private PrintWriter send;
     public sendFromClient(PrintWriter sendto)
          send = sendto;
     public void run()
          Scanner sc = new Scanner(System.in);
          while(true)
               /*get a message, then send to the server*/
               send.println(sc.nextLine());
That's all, thank you for helping!
Edited by: stdioJ on Oct 31, 2007 3:58 PM

Hi pgeuens ,
I tried it ...but it didn't work for me.
I changed my .jsp like this
<%@ page language="java" %>
<%@ taglib uri="/tags/struts-html" prefix="html"%>
<html:form action="Registration.do">
UserName:<html:text property="username"/><br>
enter password:<htnl:password property="password1"/><br>
re-enter password:<html:password property="password2"/><br>
<html:submit value="Register"/>
</html:form>And i changed that web.xml like..
<taglib>
    <taglib-uri>/tags/struts-html</taglib-uri>
    <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
  </taglib>Now I am getting an error like ......."File "/WEB-INF/struts-html.tld"not found.
Hi Ashish
I didn't find struts-form.tld in WEB-INF folder.But all the remaining file all there.
Again I downloaded that struts1.2.9 ...in that also i couldn't find struts-form.tld file(except this remaining are there).
Please tell me, if there any other ways....
Thanks,
kona.

Similar Messages

  • Got a new iPhone today and tried to restore from my old phone using icloud but kept coming up with a message that said problem with my icloud back up please help

    Got a new iPhone today and tried to restore from my old phone using icloud but kept coming up with a message that said problem with my icloud back up please help

    Hi there Clairemcaula,
    You may find the troubleshooting steps in the article below helpful.
    iCloud: Troubleshooting restoring an iCloud backup
    http://support.apple.com/kb/ts4036
    -Griff W. 

  • Hi I've a big problem with adobe acrobat reader XI pro and I hope you can help me. The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reade

    Hi
    I've a big problem with adobe acrobat reader XI pro and I hope you can help me.
    The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reader (adobe pdf reader, internet browsers, ...etc.).
    This problem started to happen since yesterday when I installed adobe acrobat reader XI pro to try it before I buy it, and before that when I was using the free adobe pdf reader I was totally able to copy any text from any pdf and past it anywhere with nothing wrong.
    What can I do?
    thank you a lot.

    There is no product called Adobe Acrobat Reader Pro. There is
    - Adobe Acrobat Pro ($$)
    - Adobe Reader (free)
    Which do you have? And are you a programmer?

  • I'm getting this problem when trying to update my iphone 3gs it says that the iphone software could not be contacted and I went on youtube got some advise to go into my hard drive to fix the error I have nothing in my host file please help me if you can

    I'm getting this problem when trying to update my iphone 3gs it says that the iphone software could not be contacted and I went on youtube got some advise to go into my hard drive to fix the error I have nothing in my host file please help me if you can this is all new to me.

    Read this: iOS 4: Updating your device to iOS 5 or later
    ... oh I think it is a 3gs or a 3
    This makes a difference. What does it say in Settings > General > About?

  • Problem with Variable!!! Please Help

    Hello People!
    I have a big problem!!
    I have a procedure executed by a program in Pro * C/C++
    In this program there is a variable:
    char CBATCH[8];
    MEMSET (CBATCH, NULL, 8);
    This variable is a parameter for my procedure!
    create or replace procedure COMPOSER (vnum_composer out number,
    vbatch_id in varchar2)
    as
    begin
    select count(batch_id) into vnum_composer
    from trl_batch_composer
    where batch_id = vbatch_id
    and send = 0;
    end;
    The problem is, vnum_composer is always NULL.
    I think thats because in my table, Batch_id is a CHAR(7).
    So it cant compare batch_id = vbatch_id....
    please help...

    You mean the sequence you have in Query Properties - Variable Sequence dont match with the Runtime Selection Window?
    I remember having a similar problem last week but cud resolve it after redoing it .
    I am guessing ur on BI 7.0 SP 13...
    Message was edited by:
            Jr Roberto

  • Got mixed up with someone else's account, please help!

    Alright guys, I'm sorry for the long post, but this is quite a complicated situation now and I haven't been able to get help anywhere else.  I talked to a Reddit user who happens to work for Best Buy Corporate, and he recommended asking one of the Community Connectors.  So here I am.
    Let me start with my original issue:
    Back when "Best Buy RewardZone" was still around, my mother had signed up for an account for my family to use. At the time, I wasn't yet 18 and therefore a parent had to sign up on my behalf. My mom never actually shops at the store, though... the only time she even goes there is if she's buying a gift for me or picking something up that I had put on hold.
    I'm now 23, meaning we've had this account for probably six years. Obviously RewardZone is now just called My Best Buy, but it's the same number, and we're still getting the bonus points.
    Up until about a year ago, the emails were still going to my mother's email, including the rewards certificate. I had created a free account for myself (not associated with any rewards account) in order to buy something back in 2007 or so (before we signed up for RewardZone), so I couldn't change her email address to mine - the system simply would not let me do that since my email already had an account.
    What I did in the meantime was just create a second email for myself and change her account's address to that. That way I was able to check it and get my reward certificates, and she wasn't bothered. But, the account was still in her name. Now that I'm older than 18, I should be able to get it in my name. We have the same last name - it's obvious that I'm not trying to scam the system or anything. I can understand if "Jane Doe" wanted to transfer an account to "John Smith" and the customer service rep wouldn't allow it because that's completely sketchy, but why can't two members of the same family shift around who actually owns the thing?
    Well, I noticed a few months ago that there was an option to link my account to a different My Best Buy number. So I put in my "mom's" ID, then logged into that account to confirm it. The result was basically two different logins that belonged to the same rewards account - however, the purchase history was still separate.
    So anyway, on December 30, my mom and I called the Best Buy customer service number. She explained the whole situation, and was told that they can't change the name on an account - only two letters. This seems a bit suspicious to me, because if they had typed in somebody's name wrong when they signed up, that person would basically be stuck with it forever...
    I explained that even though the account had my mother's name on it, I was the one who was making the purchases for the past couple years. I used my credit card or PayPal account, so they were all technically under my name. What the lady said I can do is create a new Member ID, and that somebody could transfer those purchases to my new ID, under my own name. She said that since I already had an account (which was now tied to my mother's ID), what she'd do is just delete my account and then I would sign up using that same email address, and this time not put in a member ID.
    I did that, and she said somebody would transfer the applicable purchases (basically all of them for the past year at least) to my "new" account.
    It's been almost 3 weeks now and so far, my account still has absolutely nothing in it. I do notice that purchases made with my account have been moved over to my mother's account... the completely opposite direction as I wanted.
    A more serious issue, however. I preordered the Meta Knight Amiibo figure (Best Buy exclusive) from the site back when it was still in stock. Obviously now it's completely sold out, because of the high demand. Because the order hasn't been fulfilled yet, it completely disappeared from both accounts. I still have my order confirmation email, with the order number, but cannot actually pull it up online to view the status.
    So I called back today and explained all of this. I was basically told "We can't transfer points, period. Whoever you talked to last time was wrong." Well that's great, now my account is completely empty, despite the hundreds of dollars of purchases I've made, because of someone's mistake? This needs to be fixed. The person I talked to today said he'd tie the Amiibo preorder back with my account "in 7-10 business days" as the other person said. I have to hope this guy is actually telling the truth this time.
    But what can I do to fix this problem?
    This was my situation a month ago. 
    Luckily the Meta Knight has arrived just fine, and I did get the emails updating the status for me.
    I since then contacted customer support via the website, and got an offer to merge the two accounts in my name.  But here's the thing... they combined the wrong account! I'm not sure why they thought the other account belongs to me, but all of the purchases were made at stores in Ohio, and I'm not from there. The address on file is somewher eI've never been. It's clearly someone else's account.  Oh, and my Gamer's Club Unlocked has completely vanished as well, which I was told wouldn't happen.
    So basically right now, when I log in with my email address, I get somebody else's member ID, somebody who happens to have an Elite Plus membership - but no Gamer's Club Unlocked.  I've made a couple purchases in-store, but I need some help fixing this problem as soon as possible.
    The only purchase I *know* was made with the older account (the member ID that was auto-created when the My Best Buy program was launched, probably?) is that Meta Knight order, and I still have all the emails with the order number if somebody can look it up and find what My Best Buy ID it was tied to.  I also have the second member ID, the one I created while on the phone with customer service - and the current (WRONG) one.
    You see how this is just one massive problem?  I want to solve one thing at a time, though.  If one of the Community Connectors is able to move accounts and memberships around, please let me know and I'll shoot you a private message with details.  My first priority is simply getting that Gamer's Club Unlocked membership back as I did pay for it and want to buy some more video games, but I've been holding off since I haven't been getting that discount.  I can worry about getting the stuff moved over from the account in my mother's name after that.
    Thanks

    Hi drfsupercenter,
    Thank you for taking the time to sign up for the forum and connect with us. 
    After reading over your post, I can definitely see how everything involved may seem complicated; however, I am confident that I can get everything straightened out for you.  There is no reason why you should have to call into us over and over again or wait week after week for a resolution.  The terms of the My Best Buy program are pretty direct, so I believe any level of frustration could have been avoided.
    A My Best Buy account (formerly Reward Zone) is intended to be used by a single member, and a member is not to share their account, benefits, points, or certificates with anyone else.  If the account was in your mother's name, then it should have only been actively used by her.  When it comes to merging multiple accounts the name on each account must be the same.  While there are occasions where we can change/alter the name on an account, we cannot completely change a name.
    I looked over your account history using the email address you registered with the forum and see that two accounts were merged a few weeks ago.  If any purchases you did not make were somehow merged with your primary account, then I should be able to remove them.  I would also suggest that we make sure the information associated with your account is up-to-date.  You do have an active Unlocked membership, so we may just want to have you relink your accounts (My Best Buy and BestBuy.com).
    I want to apologize for any inconvenience you have experienced, and I would like to gather some additional information and go over your My Best Buy account with you, so I will be sending you a private message.  To check your private messages, you will want to login to the forum and click on the little yellow envelope icon located at the top of the page.  I look forward to further speaking with you to see what I can do to help.
    How to Link a My Best Buy™ membership to your BestBuy.com Account
    I hope you enjoy the rest of your day.
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Authorization Problem with 9.2.. Please HELP!

    I recently got a new laptop, only my second so I'm not at the max. I downloaded 9.2, which I didn't have before. I imported all of my "Purchased" CDs, and keep getting prompted to authorize my computer, which I already did. When I try it again, it tells me I already have the computer authorized. So I go to play the song, and it again prompts me to authorize...
    I have gone through every troubleshooting tip, I emailed them (with no answer, even after 48 hours...) I stopped in teh local apple store where the man proceeded to smirk the entire time, and had the nerve to tell me if I had a MAC it would work fine.
    I tried to get an apple "specialist" to call me, but while I was setting it up, I was informed I would need to PAY TO GET SERVICE!! What happened to the 1,000 songs that I PAID FOR??
    Needless to say I'm livid. If anyone could help me here I would really appreciate it

    I have in my room 2x usb keyboards and one ps/2 . I have also conenctor USB->PS/2 and the keyboard is not working at all when im using it to connect it to my PC. My friend told me that i should have no problems with getting into bios on usb keyboard. Probably i turned off an option in bios which is called USB Legacy Device Support and thats why i cannot get into bios with my usb keyb. But im worried, if I reset my bios settings, And that option will be on ? Will i be able to get into bios then ?
    Could an owner of this board told me, what happens with this "USB Legacy Device Support" after bios reset ? Is EN or DIS ?
    Regards

  • Problems with Flash movie loading. Please help!

    Hi all,
    Thanks for the interest in my post...
    I created a website for a client in Flash 8 and although the
    client and myself can view the site, he has said that some people
    have contacted him saying the site won't load.
    I've put this down to them not having Flash Player 9
    installed on their machine (as they can view other sites I've done
    in earlier versions of Flash but not this one) but apparently one
    of the people who couldn't see it got the latest version of Flash
    and the site still wouldn't load.
    The website is at: www.petersnowdon.com and I would be most
    grateful if a few of you good people would be able to check it out
    to see if you have any viewing problems and if you have any
    suggestions as to what might be causing this.
    Thank you very much and I hope to hear from you.
    All the best,
    Mark

    Tell those people to:
    same damn problem I was probably having...When using IE and
    deleting temporary internet files it disables/corrupts/removes
    proper function of the adobe flash player....You can reinstall all
    night long and it will claim a "successful" installation but, it is
    not....YOU MUST FIRST UNINSTALL ADOBE FLASH PLAYER USING THE ONLY
    TOOL THAT WILL DO THIS WHICH IS THE FLASH PLAYER UNINSTALLER FROM
    THE ADOBE WEBSITE....BE SURE AND SAVE IT TO YOUR DESKTOP BECAUSE
    YOU WILL BE USING IT FOREVER.....Once you have used the uninstaller
    program you can then successfully and truthfully download the
    latest adobe flash player.......WILL SOMEBODY FROM ADOBE FIX
    THIS!........
    Adobe
    Uninstaller at bottom of page
    There seems to be an "object" in the temporary files object
    folder that is NECESSARY for proper Adobe Flash
    function…..see for yourself...tools-internet
    options-General-Settings-then click view objects.....here it is:
    {D27CDB6E-AE6D-11CF-96B8-444553540000}
    When you clean out your temporary files this goes with it and
    your flash will NOT operate...you can try and reinstall it all
    night long...your dead...nothing....you must FIRST GO TO THE ADOBE
    UNINSTALLER and run that program to uninstall COMPLETELY the
    flash....Having done that, you can now install the flash and this
    time it will take......
    Let me know the results………..

  • I have a problem with my win 8 system please help

    hi.
    yesterday I got the msi gt70 I ordered in the mail everything is working good accept one thing.
    whenever I try to install an app (no matter what kind, I tried solitaire and Skype) the app is going up and immediately shuts down nothing happens.
    I tried to look it up on the web and did everything it says but nothing helped.
    please help me I want thing to work properly.
    ty for your attention.

    I have the exact same problem in my GT70-0ND-447 with Windows 8 SL x64.
    Skype, Ebay and some other Metro style applications does not work.
    When I start the application startup screen appears, and then almost immediately closes.
    Applications can be seen in the drop down list on the left, but they do not work. In the system log I see a message "The server not register with App DCOM within the required timeout" (error 10010).
    Event for Ebay under Microsoft-Windows-TWinUI/Operational: "Activation of the app eBayInc.eBay_1618n3s9xq8tw!App for the Windows.Launch contract failed with error: The app didn't start." (error 5961).
    I wrote to support. Waiting...
    Please help!

  • Remote Sharing Problems with my MacBook Pro. Please help...:)

    Hi all. Could really use some advice from any network pros out there.
    I'll be as detailed as possible.
    I am about to travel overseas for a month and wanted to setup remote access to my old G5 Dual 2.5 tower in my studio.
    I found that the new OS, phones etc. have the remote management and screen sharing options so I thought I would set it up.
    The first day I did it, it all worked properly and I, and my friends could all log in no problem from our phones via VNC, or computers using the 'Connect To Server' option as well as Chicken of the VNC.
    I also set up my friends computer across town to do the same.
    So, the next day I was fiddling with my wireless that happens to drop out every once in a while, thinking its a phone or printer interfering, but anyways, when I restarted the network, the local IP of the server computer had changed, so no problem, I went back through all of my settings and changed the IP, but then it wouldn't connect anymore. AFter 4 hours of fiddling, restarting, changing the port-forwarding etc. in the routers, I finally got it working...
    Then this morning, I couldn't get it to work, and none of the IP's have changed....
    Now I'm confused as it seemed to be setup fine.
    My setup is as follows.
    DSL modem, I have the external IP 76.166......etc.
    This DSL modem connects via ethernet to a Linksys BEFSR41 Router, which then connects via ethernet to an older Airport Extreme Base Station and also a newer Airport Express.
    The G5 I am running as a server is connected via Ethernet to another Airport Express in my studio which is setup to be a wireless 'remote' on a WDS network where the older Extreme Base Station is the 'main'.
    Current local IPs are standard.
    Base Station is 10.0.1.1
    'Remote' Airport Express is 10.0.1.5
    G5 'server' computer is 10.0.1.2
    Linksys router is 192.168.1.1
    I have logged into the Linksys router, gone to the Applications & Gaming/Port Range Forwarding section and enabled a port on 5900, both TCP and UDP, to go to the IP 192.168.1.102.
    I have gone into the Airport Utility of the base station, clicked Advanced, and added the port forwarding of 5900 to local IP 10.0.1.2.
    The remote management section on the Server G5 is on, with vnc password etc. all users.
    When I try and access this computer using the 10.0.1.2 IP on the local network, it works fine, but when I try the external IP, I get the 'connection failed' error.
    Am I missing something....?
    And sorry for the long email but if you are going to help, I know you'd want all the info.
    Oh, and I have repaired permissions although not sure if that helps any.
    Thanks in advance for any help.
    Wiz

    What sort of videos? What are you trying to do?
    We can't advise anything that violates breaking copy protection schemes or violating copyrighted material on this forum.
    If your sure your not violating, then there is SnapZProX that will record anything playing on the screen into Quicktime file with sound, and there is Firefox browser with various add-ons for downloading Flash/YouTube videos and there is Transmission to download p2p files. However with that last one you really have to be extra careful the content is not a stolen copy or malware as you can be sued and/or have your machine compromised.
    For safe downloading of videos, you should take a look at Netflix, for $8 a month and installing Silverlight (they will provide it) you can stream tons of videos to your browser for viewing (not copying) and see the videos again if you wish so it isn't necessary to copy them and clog up your drives with large files.
    Movie videos are usually watch once and never watch again, so it's really unnecessary to store them (especially illegal copies) and clog up your machine or be paranoid having the content and possibly being sued over it.
    There is also iTunes that allows rentals, but it's not as inexpensive as Netflix $8 all you can eat monthly, but it has newer titles.

  • Problems with Oracle XE on XP - Please help!

    Hi,
    I have oracle XE installed on my machine and it was working absolutely fine for the last year or so. Today there was an trojan intrusion which caused some issues with my windows xp OS like hiding some files, desktop etc. After everything was cleaned up and things back to normal. I am having issues with XE.
    I can start and stop XE with out any issues and When I use the run sql command line, I can connect using - connect sys/sys as sydba and I can also run a query to see all the users and see the HR user also.
    However, 1. When I connect to my hr user using connect hr/password@xe, it just hangs
    2. I tried the- go to Oracle XE admin page but it just hangs for a long time and returns page cannot be found.
    3. I can tnsping the xe instance.
    Not sure what the issue is? I am not a DBA and don't have much knowledge on this. Is a fresh install the only option? or is there any way to correct this using the sys/sys user?
    I have pasted the listenor.log and listenor.ora details below. I tried a fresh install after removing XE. but the same issue!
    Please help!
    Thanks,
    Nikita
    Here is the output of listner.log
    30-APR-2012 13:18:19 * service_update * xe * 0
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=nikita-lap)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    30-APR-2012 13:18:19 * service_update * xe * 0
    30-APR-2012 13:18:22 * service_update * xe * 0
    30-APR-2012 13:18:25 * service_update * xe * 0
    No longer listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=nikita-lap)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    30-APR-2012 13:18:27 * service_died * xe * 12537
    30-APR-2012 13:18:30 * service_register * xe * 0
    30-APR-2012 13:18:30 * service_update * xe * 0
    30-APR-2012 13:18:36 * service_update * xe * 0
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    30-APR-2012 13:18:39 * service_update * xe * 0
    30-APR-2012 13:18:42 * service_update * xe * 0
    30-APR-2012 13:18:48 * service_update * xe * 0
    30-APR-2012 13:18:55 * http * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1708)) * handoff * http * 12518
    TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    30-APR-2012 13:19:39 * service_update * xe * 0
    30-APR-2012 13:19:42 * service_update * xe * 0
    30-APR-2012 13:25:03 * service_update * xe * 0
    30-APR-2012 13:25:05 * service_update * xe * 0
    No longer listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    30-APR-2012 13:25:07 * service_died * xe * 12537
    30-APR-2012 13:26:14 * service_register * xe * 0
    30-APR-2012 13:26:15 * service_update * xe * 0
    30-APR-2012 13:26:20 * service_update * xe * 0
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    30-APR-2012 13:26:23 * service_update * xe * 0
    30-APR-2012 13:26:26 * service_update * xe * 0
    30-APR-2012 13:26:29 * service_update * xe * 0
    30-APR-2012 13:26:32 * http * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1992)) * handoff * http * 12518
    TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    30-APR-2012 13:26:38 * service_update * xe * 0
    Trace information written to C:\oraclexe\app\oracle\product\10.2.0\server\network\trace\listener.trc
    30-APR-2012 13:28:43 * trace * 0
    No longer listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC_FOR_XEipc)))
    No longer listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=nikita-lap)(PORT=1521)))
    No longer listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    Listener completed notification to CRS on stop
    30-APR-2012 13:31:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=nikita))(COMMAND=stop)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869568)) * stop * 0
    TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Production on 30-APR-2012 13:31:06
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    System parameter file is C:\oraclexe\app\oracle\product\10.2.0\server\network\admin\listener.ora
    Log messages written to C:\oraclexe\app\oracle\product\10.2.0\server\network\log\listener.log
    Trace information written to C:\oraclexe\app\oracle\product\10.2.0\server\network\trace\listener.trc
    Trace level is currently 0
    Started with pid=5236
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=nikita-lap)(PORT=1521)))
    Listener completed notification to CRS on start
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    30-APR-2012 13:31:07 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=nikita))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869568)) * status * 0
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    30-APR-2012 13:32:03 * service_register * xe * 0
    30-APR-2012 13:32:32 * http * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=2040)) * handoff * http * 12518
    TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    30-APR-2012 13:35:00 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=nikita))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869568)) * status * 0
    30-APR-2012 13:42:03 * service_update * xe * 0
    and here is the contects of listenor.ora
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (ADDRESS = (PROTOCOL = TCP)(HOST = nikita-lap)(PORT = 1521))
    DEFAULT_SERVICE_LISTENER = (XE)
    -------------------------------------------------------------------------------------------------------------------------------------------------------

    Hi Clcarter,
    Apologies, Did not get notifications for this. Just logged in to check on the status and saw your updates. Looks like an issue with the host.Here is the output of the commands
    Ethernet adapter Wireless Network Connection:
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Intel(R) Centrino(R) Advanced-N 6200
    AGN
    Physical Address. . . . . . . . . : 00-27-10-D2-D3-4C
    Dhcp Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    IP Address. . . . . . . . . . . . : 191.167.1.7
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Default Gateway . . . . . . . . . : 191.167.1.1
    DHCP Server . . . . . . . . . . . : 191.167.1.1
    DNS Servers . . . . . . . . . . . : 191.167.1.1
    Lease Obtained. . . . . . . . . . : Sunday, May 06, 2012 1:14:20 PM
    Lease Expires . . . . . . . . . . : Sunday, May 06, 2012 2:14:20 PM
    Ethernet adapter Local Area Connection:
    Media State . . . . . . . . . . . : Media disconnected
    Description . . . . . . . . . . . : Intel(R) 82577LM Gigabit Network Con
    nection
    Physical Address. . . . . . . . . : 5C-26-0A-16-0E-BE
    C:\Documents and Settings\nikita>netstat -an |findstr LISTEN
    TCP 0.0.0.0:135 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:445 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1521 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1860 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1861 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1863 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:2030 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:2301 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:3389 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:8180 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1798 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:5152 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:5354 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:8080 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:27015 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:62514 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:62522 0.0.0.0:0 LISTENING
    TCP 191.167.1.2:80 0.0.0.0:0 LISTENING
    TCP 191.167.1.7:139 0.0.0.0:0 LISTENING
    C:\Documents and Settings\nikita>nslookup 191.167.1.7
    DNS request timed out.
    timeout was 2 seconds.
    *** Can't find server name for address 191.167.1.1: Timed out
    *** Default servers are not available
    Server: UnKnown
    Address: 191.167.1.1
    DNS request timed out.
    timeout was 2 seconds.
    *** Request to UnKnown timed-out
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Produ
    ction
    Start Date 30-APR-2012 15:52:42
    Uptime 5 days 21 hr. 47 min. 39 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File C:\oraclexe\app\oracle\product\10.2.0\server\network\a
    dmin\listener.ora
    Listener Log File C:\oraclexe\app\oracle\product\10.2.0\server\network\l
    og\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC_FOR_XEipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=nikita-lap)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=
    HTTP)(Session=RAW))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 3 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "XE_XPT" has 1 instance(s).
    Instance "xe", status READY, has 4 handler(s) for this service...
    Service "xe" has 1 instance(s).
    Instance "xe", status READY, has 4 handler(s) for this service...
    The command completed successfully
    The nslookup throws a DNS error. could that be the problem?
    Thanks,
    Nikita

  • Serious Problem with New Mac Pro! Please help!!

    Ok, long story short.
    My Mac pro keeps crashing after I installed the latest 05-2007 security update. It seems to crash everytime I come back to the computer after the screensaver has been on for a while (its not the screensaver though) I reinstalled the newer v1.1 version of the update and I thought the problem had gone, but it hasnt as the computer just crashed again.
    I cannot see any correlation to any other programs, and im 99% sure its not a hardware issue. It does not seem to relate to parallels, or the screensaver, or itunes, or anything!
    And there is another crazy thing, when the computer restarts, it says that it recovered from a serious error and asks you to sumit a report, so i click the send report button and do you see a normal report window with all the code ? NO!!! Press report and the initial window just DISAPPEARS, nothing else happens!!! i.e it wont send the but to apple!! no wonder they haven't fixed it!!!
    The history of the panic log is always the same error:
    Tue Jun 5 19:29:24 2007
    panic(cpu 3 caller 0x003BDEB0): OSObject::refcount: Attempting to retain a freed object
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x4c543bb8 : 0x128d08 (0x3cb134 0x4c543bdc 0x131de5 0x0)
    0x4c543bf8 : 0x3bdeb0 (0x3f0f94 0x3f0f70 0x160f5ba4 0xad319c0)
    0x4c543c18 : 0x3c0d3b (0x160f5ba0 0x4ae958 0x28 0x3c09c4)
    0x4c543c48 : 0x3c0e94 (0x13c58c40 0xad319c0 0x0 0x3c10ef)
    0x4c543c68 : 0x3c188a (0xad319c0 0x0 0x0 0x0)
    0x4c543ca8 : 0x3c18f7 (0xad319c0 0x13c3a100 0x13c36b00 0x1628d8)
    0x4c543ce8 : 0x38663c (0xad14840 0x0 0x4c543d28 0x3c1002)
    0x4c543d08 : 0x389e5b (0xad02080 0xff7da80 0x0 0xad02080)
    0x4c543d28 : 0x3b1448 (0xad02080 0xff7da80 0x4c543d58 0x3bdfd9)
    0x4c543d78 : 0x188511 (0xad02080 0x14da63b4 0x14da63c8 0x11cc32)
    0x4c543db8 : 0x12b4c3 (0x14df20b4 0x14da6398 0x0 0x0)
    0x4c543df8 : 0x124b17 (0x14df2000 0x0 0x18 0x4c543edc)
    0x4c543f08 : 0x195a42 (0x4c543f44 0x0 0x0 0x0)
    0x4c543fc8 : 0x19b21e (0xb101f20 0x0 0x19e0b5 0xb101f20) No mapping exists for frame pointer
    Backtrace terminated-invalid frame pointer 0xb011e508
    Kernel version:
    Darwin Kernel Version 8.9.2: Thu Feb 22 18:08:23 PST 2007; root:xnu-792.19.2~1/RELEASE_I386
    Please help someone!

    Did you read the thread on Security Update 2007-005?
    Frozen Mac Pro

  • Problem with I-trigue 5600 . Please help!

    hi,
    My I-trigue 5600 worked perfectly for over 4 years. Buy recently, my rear right channel stoped working I 've tried everything : all satellites work poperly,drivers are ok, I tested it on 2 computers. There is still the same problem. Unfortunately Creative dosn't have after-guarantee service.. So, I tried to open subwoofer, but the inerity is too complicated with many areas flooded with glue or isolation. I tried also to buy another subwoofer / i believe it must have small damage , but the rest of speakers work great and the voice of subwoofer is good as well/ but there is problem with buying a subwoofer separately. Becouse there are only auctions on net.
    So , what I supposed to do? Does Creative have separated spare parts to my subwoofer? Can I buy another subwoofer anywhere?
    Can I replace my sub to similar from another speakers system and which one would be suitable.
    I don't want to change my speakers. They are the best for me, but defect of one chanell is annoying. Really.
    I wanted to buy x-fi elite pro ,but now it's pointless.
    Please help me
    Despere Makary

    Hey! I've got the same problem with the same kind of speakers! When im listening to something volume is coming down and after a some time its coming back to its previous level! Coming back to its normal level can be forced by turning the speakers on and off! thats all i've discovered...
    i also heard that some of creative speakers have kind of (f**k i dont know the word in english :P ) which works like that: when subwoofer is hot it automatially turns the volume lower to save your speakers from burning form hot :P or something like this :P
    hmm... what i discovered that is no matter what i connect as source of music! effect of volume is the same
    or maby you discovered the reason of this?
    ps.
    sory for my very unperfect english...

  • Have a big problem with report. Very urgent please help

    I have a report rep1. When I run the report via batch thru command rwclient to create a file it failed. I got the follwoing error message:
    REP-0177: Error while running in remote server
    Job 1413 is terminated due to connection timeout.
    It does not even try for few seconds before gives this message. I ran some other batch reports whihc took 15 minutes and they were fine.
    So, I stopped running the bad report for the day thinking the report is still not dead. I ran the same rep1 next day I still get the same error message. But this time when I ran I looked at the appserver showjobs (which lists the reports that were running and that already ran). The job number is different But still it fails in 3 seconds with the job number 1413 and connection time out. Can any one tell what might be the problem.
    Any number of times I run this job I get the same job number with same error (all this is only if I run it as batch using rwclient). If I run this as online by calling it from a form it returns the results without any problems.
    Please help. Very urgent.
    Thanks in advance.
    Asha

    You might want to delete the report server .dat file and restart the server and try
    his also could be one of the issues we had seen and fixed in 9.0.2.3. Please ensure you have the latest patch applied
    Thanks
    The Oracle Reports team

  • Problem with 1.1.1 download - Please help!

    I am downloading the updated software for my iPhone. It has been OVER AN HOUR and it now says that it has downloaded 218mb/152.8mb and it is still going. What is going on? What can I do to install the update correctly.

    I've had the same thing happen at least 6 times. Figured it was my computer as all I have is dial-up. Took hours to download and then kept giving me the (-48) error message. Called apple support, was told to try thru a faster connection because there are "no problems" with the new version. Went to local library where it only took 2 hours to download, looked find in the download bar, but low and behold, would not sync, lost the download AGAIN and got the same && message. After reading all the discussion postings, guess I will give up on it till Apple gets their crap together!

Maybe you are looking for

  • HOw to make an Object oriented alv respond to double click

    Hi all, HOw to make an Object oriented alv respond to double click.SAmple code will be helpful. Thanks in advance, Alex.

  • When deploying BPEL Process through JDeveloper java.security.AccessControlE

    1.) Navigated to the Connections tab of JDeveloper 10.1.3.2. 2.) Under the Application Server node, created a new Application Server connection, provided the relevant information on Type, Authentication & Connection's tab. 3.) On Authentication Tab,

  • 1 router === 2 ASA (how to connect without switch)

    Internet ----  ASR ------ Switch ------- ASA 1 (active)                                         |              |                                        |              |                                        |---------- ASA 2 (standby) ASR supports B

  • Oracle Analytic Function Issue

    Hi, I have created a simple table contaning 3 columns and 3 records. Insert into MYTABLE (ID, AMOUNT, RESULT) Values (1, 1, 1); Insert into MYTABLE (ID, AMOUNT, RESULT) Values (2, 4, 1); Insert into MYTABLE (ID, AMOUNT, RESULT) Values (3, 7, 0); COMM

  • Add commands to toolbar?

    I'd like to add some of the less common commands (those that don't even rate a keystroke shortcut) to the toolbar. Needless to say these aren't an option in the customize toolbar screen. I'd like to add Insert Equation (From MathType) and Shape>Make