Thread: Client doesn't connect to server?

Results 1 to 8 of 8
  1. #1 Client doesn't connect to server? 
    Donator
    holydivinity's Avatar
    Join Date
    Mar 2014
    Posts
    109
    Thanks given
    5
    Thanks received
    4
    Rep Power
    11
    Hi,

    I'm having a problem with a new server that I'm working on.
    The client seems to get rejected by the server.

    Settings.java (server)
    Code:
    	public static final int PORT_ID = 43595;
    	public static final String XMLDIRECTORY = "data/xml/";
    	public static final String CACHE_PATH = "data/cache/";
    	public static final int RECEIVE_DATA_LIMIT = 7500;
    	public static final int PACKET_SIZE_LIMIT = 7500;
    	public static final int CLIENT_BUILD = 718;
    	public static final int CUSTOM_CLIENT_BUILD = 1;
    Loader.java (client)
    Code:
    private static final long serialVersionUID = 7639088664641445302L;
    	public static Properties client_parameters = new Properties();
    	public JFrame client_frame;
    	public JPanel client_panel = new JPanel();
    
    	public static boolean usingRS = false;
    	public static boolean useIsaac = false;
    	
    	public static String IP = "127.0.0.1";
    	public static boolean LOBBY_ENABLED = false;
    	public static boolean DISABLE_XTEA_CRASH = true;
    	public static boolean DISABLE_USELESS_PACKETS = true;
    	public static boolean DISABLE_RSA = false;
    	public static boolean COMBAT_BETA = true;
    	
    	public static final int REVISION = 718;
    	public static final int LOBBY_PORT = 43595;
    	public static String LOBBY_IP = "127.0.0.1";
    	public static int SUB_REVISION = 1;
    	public static Loader instance;
    	public static int[] outSizes = new int[256];
    	public static boolean localHost;
    When i start my client up, the server log writes 4 42's. So the log looks like this:
    Code:
    [Launcher] Server took 2478 milli seconds to launch.
    42
    42
    42
    42
    And i get a instant error_game_js5conect error in my client log. This makes me think that the server is blocking the client. As it writes those 42's when i run the client.

    Could anyone help me out with this?

    Thanks in advance,
    HolyDivinity
    Reply With Quote  
     

  2. #2  
    Donator
    holydivinity's Avatar
    Join Date
    Mar 2014
    Posts
    109
    Thanks given
    5
    Thanks received
    4
    Rep Power
    11
    bump
    Reply With Quote  
     

  3. #3  
    Donator
    holydivinity's Avatar
    Join Date
    Mar 2014
    Posts
    109
    Thanks given
    5
    Thanks received
    4
    Rep Power
    11
    bump
    Reply With Quote  
     

  4. #4  
    Donator
    holydivinity's Avatar
    Join Date
    Mar 2014
    Posts
    109
    Thanks given
    5
    Thanks received
    4
    Rep Power
    11
    bump
    Reply With Quote  
     

  5. #5  
    Registered Member

    Join Date
    Feb 2013
    Posts
    4,409
    Thanks given
    59
    Thanks received
    478
    Rep Power
    138
    Have you tried a different client?
    Some clients don't work with all sources
    Reply With Quote  
     

  6. #6  
    ℱounder of Ansient


    Join Date
    Mar 2014
    Posts
    216
    Thanks given
    5
    Thanks received
    35
    Rep Power
    0
    May i know the Server you are using? So i could help you better with your issue.
    Reply With Quote  
     

  7. #7  
    Registered Member Ffsn99b's Avatar
    Join Date
    Aug 2013
    Posts
    137
    Thanks given
    3
    Thanks received
    9
    Rep Power
    16
    Code:
    public static final int PORT_ID = 43595;
    The port number is wrong. It's 43594, not 43595.
    Quote Originally Posted by Sam Bartlett View Post
    Why would you want to remove the music tab? Idiot..
    I'm an idiot for removing something I don't plan to use? The irony.
    Quote Originally Posted by Sam Bartlett View Post
    I'm pround to be in your signature, you're an apsalute idiot and act clever. Then you make a fool of yourself.
    proud*
    absolute*
    This is going to go in my sig as well lol, gj
    Reply With Quote  
     

  8. #8  
    Donator
    holydivinity's Avatar
    Join Date
    Mar 2014
    Posts
    109
    Thanks given
    5
    Thanks received
    4
    Rep Power
    11
    @Datbeastmayne , yes i've tried different clients and i can't get any of them work.

    @Frizzer , DivinityX

    @Fssn99b, the ports are both set to 43595 so that that doesn't matter.

    Thanks for your replies.
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Replies: 1
    Last Post: 12-18-2012, 12:23 AM
  2. Client.Java - Error connecting to server
    By soapface in forum Help
    Replies: 11
    Last Post: 06-16-2012, 12:15 PM
  3. Replies: 0
    Last Post: 12-13-2011, 05:58 PM
  4. Replies: 15
    Last Post: 02-16-2010, 05:02 AM
  5. Replies: 2
    Last Post: 02-11-2009, 06:32 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •