Thread: Little problem that i cant solve

Page 1 of 2 12 LastLast
Results 1 to 10 of 18
  1. #1 Little problem that i cant solve 
    Donator

    Sambu's Avatar
    Join Date
    Apr 2013
    Posts
    405
    Thanks given
    705
    Thanks received
    38
    Rep Power
    135
    java.net.BindException: Cannot assign requested address: bind
    at sun.nio.ch.Net.bind0(Native Method)
    at sun.nio.ch.Net.bind(Net.java:344)
    at sun.nio.ch.Net.bind(Net.java:336)
    at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSock etChannelImpl.java:199)
    at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAd aptor.java:74)
    at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAd aptor.java:67)
    at com.rs2.Server.startup(Server.java:245)
    at com.rs2.Server.run(Server.java:197)
    at java.lang.Thread.run(Thread.java:722)
    [13.5.2013 13:29]: Starting 2006Legends Beta v.1.0 on /-----:43594...
    [13.5.2013 13:29]: Loading packets...
    [13.5.2013 13:29]: Loaded 64 packets.
    [13.5.2013 13:29]: Loaded 7951 item definitions
    [13.5.2013 13:29]: Loaded 804 npc drops.
    [13.5.2013 13:29]: Loading shops...
    [13.5.2013 13:29]: Loaded 167 shop definitions.
    [13.5.2013 13:29]: Loading potion definitions...
    [13.5.2013 13:29]: Loaded 23 potion definitions.
    [13.5.2013 13:29]: Loading global objects...
    [13.5.2013 13:29]: Loaded 16 objects.
    [13.5.2013 13:29]: Loaded 7952 item weights
    [13.5.2013 13:29]: Loading plugins..
    [13.5.2013 13:29]: [ObjectDef] DONE LOADING OBJECT CONFIGURATION
    [13.5.2013 13:29]: [ObjectDef] DONE LOADING OBJECT CONFIGURATION
    [13.5.2013 13:29]: [Region] DONE LOADING REGION CONFIGURATIONS
    [13.5.2013 13:30]: [Rangable] DONE LOADING REGION CONFIGURATIONS
    touko 13, 2013 1:30:01 IP. com.rs2.cache.object.ObjectLoader load
    INFO: Loading definitions...
    touko 13, 2013 1:30:01 IP. com.rs2.cache.object.ObjectLoader load
    INFO: Loaded 0 object definitions.
    touko 13, 2013 1:30:01 IP. com.rs2.cache.object.ObjectLoader load
    INFO: Loading map...
    touko 13, 2013 1:30:03 IP. com.rs2.cache.object.ObjectLoader load
    INFO: Loaded 1376518 objects.
    [13.5.2013 13:30]: Loaded 287 global drops.
    java.net.BindException: Cannot assign requested address: bind
    at sun.nio.ch.Net.bind0(Native Method)
    at sun.nio.ch.Net.bind(Unknown Source)
    at sun.nio.ch.Net.bind(Unknown Source)
    at sun.nio.ch.ServerSocketChannelImpl.bind(Unknown Source)
    at sun.nio.ch.ServerSocketAdaptor.bind(Unknown Source)
    at sun.nio.ch.ServerSocketAdaptor.bind(Unknown Source)
    at com.rs2.Server.startup(Server.java:245)
    at com.rs2.Server.run(Server.java:197)
    at java.lang.Thread.run(Unknown Source)
    Halp. Yes i know it has something do with binding. Ive already done everything, checked everything related to binding. I have portforwarded, enything else?
    Reply With Quote  
     

  2. #2  
    Registered Member

    Join Date
    Feb 2010
    Posts
    3,253
    Thanks given
    1,145
    Thanks received
    909
    Rep Power
    2081
    probably just need to import xstream libraries.
    Reply With Quote  
     

  3. #3  
    Donator

    Sambu's Avatar
    Join Date
    Apr 2013
    Posts
    405
    Thanks given
    705
    Thanks received
    38
    Rep Power
    135
    Quote Originally Posted by Fire Cape View Post
    probably just need to import xstream libraries.
    Done that, still says that error.
    Reply With Quote  
     

  4. #4  
    Donator

    Sambu's Avatar
    Join Date
    Apr 2013
    Posts
    405
    Thanks given
    705
    Thanks received
    38
    Rep Power
    135
    Enyone? pls halp
    Reply With Quote  
     

  5. #5  
    Banned

    Join Date
    May 2011
    Posts
    1,773
    Thanks given
    854
    Thanks received
    853
    Rep Power
    0
    You are compiling with java 7. Compile with java 6.

    Or add a constructor.
    Reply With Quote  
     

  6. #6  
    Registered Member

    Join Date
    Jun 2007
    Posts
    2,237
    Thanks given
    267
    Thanks received
    411
    Rep Power
    1283
    In com.rs2.model.players.item.ItemDefinition
    add
    Code:
    public ItemDefinition() {
    }
    >.>
    Don't worry, Be happy.
    Reply With Quote  
     

  7. Thankful users:


  8. #7  
    Donator

    Sambu's Avatar
    Join Date
    Apr 2013
    Posts
    405
    Thanks given
    705
    Thanks received
    38
    Rep Power
    135
    Quote Originally Posted by Daniel View Post
    In com.rs2.model.players.item.ItemDefinition
    add
    Code:
    public ItemDefinition() {
    }
    >.>
    It solved that but now this..


    java.net.BindException: Cannot assign requested address: bind
    at sun.nio.ch.Net.bind0(Native Method)
    at sun.nio.ch.Net.bind(Net.java:344)
    at sun.nio.ch.Net.bind(Net.java:336)
    at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSock etChannelImpl.java:199)
    at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAd aptor.java:74)
    at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAd aptor.java:67)
    at com.rs2.Server.startup(Server.java:245)
    at com.rs2.Server.run(Server.java:197)
    at java.lang.Thread.run(Thread.java:722)
    Reply With Quote  
     

  9. #8  
    Donator

    Sambu's Avatar
    Join Date
    Apr 2013
    Posts
    405
    Thanks given
    705
    Thanks received
    38
    Rep Power
    135
    Still needing help with this problem, this gonna take a whole year to get working lol.
    Reply With Quote  
     

  10. #9  
    Registered Member

    Join Date
    Feb 2010
    Posts
    3,253
    Thanks given
    1,145
    Thanks received
    909
    Rep Power
    2081
    Quote Originally Posted by Daniel View Post
    In com.rs2.model.players.item.ItemDefinition
    add
    Code:
    public ItemDefinition() {
    }
    >.>
    i thought a constructor was generated by default that seems rather absurd
    p.s see: http://stackoverflow.com/questions/8...dress-jvm-bind
    Reply With Quote  
     

  11. #10  
    Donator

    Sambu's Avatar
    Join Date
    Apr 2013
    Posts
    405
    Thanks given
    705
    Thanks received
    38
    Rep Power
    135
    Quote Originally Posted by Fire Cape View Post
    i thought a constructor was generated by default that seems rather absurd
    p.s see: java - Cannot assign requested address: JVM_Bind - Stack Overflow
    Atleast it works on localhost, but doesnt run online. Could you know whats the problem?

    EDIT: Tryed them, nothing really seems to work, i have been trying to fix that problem using guide, no, tryed also that what people told on that site, no. Nothing cant take the ip or the port, srsly. Ive tryed restarting my pc, no..
    Reply With Quote  
     

Page 1 of 2 12 LastLast

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. [[[[Easy ERROR Problem i cant solve]]]
    By Wallace in forum Help
    Replies: 2
    Last Post: 02-18-2009, 11:32 PM
  2. Replies: 11
    Last Post: 02-09-2009, 11:04 PM
  3. A little problem
    By Bloodyfire in forum Help
    Replies: 12
    Last Post: 01-30-2009, 09:27 AM
  4. having a little problem on my forum.
    By Gsus in forum Help
    Replies: 3
    Last Post: 11-12-2008, 03:56 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
  •