Thread: Eclipse issue

Results 1 to 3 of 3
  1. #1 Eclipse issue 
    Banned

    Join Date
    Apr 2013
    Posts
    1,456
    Thanks given
    341
    Thanks received
    148
    Rep Power
    0
    So i was importing my project to eclipse and i went to run it and get this message


    Code:
    acceptor = new SocketAcceptor();        connectionHandler = new ConnectionHandler();
            
            SocketAcceptorConfig sac = new SocketAcceptorConfig();
            sac.getSessionConfig().setTcpNoDelay(false);
            sac.setReuseAddress(true);
            sac.setBacklog(100);
            
            throttleFilter = new ConnectionThrottleFilter(Config.CONNECTION_DELAY);
            sac.getFilterChain().addFirst("throttleFilter", throttleFilter);
            acceptor.bind(new InetSocketAddress(serverlistenerPort), connectionHandler, sac);

    Now these imports wont work


    Code:
    import org.apache.mina.common.IoAcceptor;
    import org.apache.mina.transport.socket.nio.SocketAcceptor;
    import org.apache.mina.transport.socket.nio.SocketAcceptorConfig;
    private static IoAcceptor acceptor;
    Reply With Quote  
     

  2. #2  
    Registered Member
    Karma_K's Avatar
    Join Date
    Nov 2012
    Posts
    4,283
    Thanks given
    152
    Thanks received
    610
    Rep Power
    108
    try importing the mina library. right click your project, build path, add external something and go to your mina library/mina.jar
    Reply With Quote  
     

  3. #3  
    Banned

    Join Date
    Apr 2013
    Posts
    1,456
    Thanks given
    341
    Thanks received
    148
    Rep Power
    0
    Quote Originally Posted by Karma_K View Post
    try importing the mina library. right click your project, build path, add external something and go to your mina library/mina.jar
    i hav no build option
    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. Eclipse IDE simple Issue.
    By Grown in forum Application Development
    Replies: 12
    Last Post: 08-15-2013, 11:14 PM
  2. Replies: 3
    Last Post: 06-28-2013, 11:30 AM
  3. Eclipse issue
    By Rspro in forum Help
    Replies: 0
    Last Post: 06-02-2013, 04:32 PM
  4. Possible Firewall Issue Running On Eclipse?
    By Nostalgia123 in forum Help
    Replies: 2
    Last Post: 04-02-2013, 07:53 PM
  5. Eclipse JAVA issue
    By truepk in forum Help
    Replies: 0
    Last Post: 01-12-2011, 09:48 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
  •