Search:

Type: Posts; User: rockking8350

Search: Search took 0.10 seconds.

  1. Have you tried reprinting the whole frame?

    Have you tried reprinting the whole frame?
  2. Replies
    16
    Views
    1,784

    Re: Timed thread to poll servers

    omg! I just found the issue. on the master server, when I sent the poll request I didn't use println. so when I tried to read the string there wasnt any way to know that I had reached the end of the...
  3. Replies
    16
    Views
    1,784

    Re: Timed thread to poll servers

    its on the game server which is a "client" of the master server.
  4. Re: Why is a Frame Not Showing Up When I Run This Class?

    we all started somewhere.
  5. Re: Why is a Frame Not Showing Up When I Run This Class?

    you have another issue. you have the same name variable. cust is two different types of variables. you really need to watch how you instantiate the variables, and make sure not to double do it.

    ...
  6. Replies
    16
    Views
    1,784

    Re: Timed thread to poll servers

    I got it narrowed down to the issue I think. I ran the debug with some breakpoints and I think the issue is being generated from the InputStream. it seems like it never gets the InputStream from the...
  7. Replies
    16
    Views
    1,784

    Re: Timed thread to poll servers

    the thread doesn't start on the server side that handles the polling requests!

    ///---UPDATE---///
    okay, so I got the game server thread to start. but the master server still stops outputting...
  8. Replies
    16
    Views
    1,784

    Re: Timed thread to poll servers

    okay, well here is some more info then. I ran it. and the server manager will output polling servers until a game server actually needs to be polled. then it quits. so would that put the error on the...
  9. Replies
    16
    Views
    1,784

    Re: Timed thread to poll servers

    no. because there are a lot of class dependencies. download the zip and open it. all the code is in there. but you will need to change the properties.prop file. inside there is a line that has...
  10. Replies
    16
    Views
    1,784

    Re: Timed thread to poll servers

    I would, but there are more than one class file involved. can I share a link to a dropbox folder on here?

    I hope so. here is the zip, inside are the source(completed as far as now) for the master...
  11. Replies
    16
    Views
    1,784

    Re: Timed thread to poll servers

    this is the run method for the server manager


    public void run()
    {
    while(sManagerThread.isAlive())
    {
    //System.out.println("Polling Servers");
    int index = 0;
    while(index !=...
  12. I see your issue. Your calling the wrong...

    I see your issue. Your calling the wrong constructor. You have two of them. One that accepts a parameter of type customer and another that has no para maters. The one that take son parameters is...
  13. Replies
    16
    Views
    1,784

    Timed thread to poll servers

    Hey everyone,

    New to the forums here. So a little background on what I am trying to do. I am in a group of two in my software design class and the assignment is Wink murder. My partner and I...
Results 1 to 13 of 13