Tagged Questions

Excerpt from apache site : Apache MINA is a network application framework which helps users develop high performance and high scalability network applications easily. It provides an abstract,event-driven,asynchronous API over various transports such as TCP/IP and UDP/IP via Java NIO.

learn more… | top users | synonyms

38
votes
6answers
19k views

Netty vs Apache MINA

Pros/Cons of using either ? They both provide roughly the same functionality. Which should I choose to develop my high performance TCP server ?
7
votes
1answer
115 views

strange messages in log file @^@^@^@^@^@^@^@^@^@^@^@^@^@^@^

I have a application server for network operations written with Java based on Apache Mina. Recently I encounter a strange behavior in my log files. I noticed that the log file is full of ...
3
votes
1answer
1k views

Maven: Could not find the main class

I am currently building a little Apache-Mina Server app. I am using Maven to build it. When i try to run the jar, I get the following error: Exception in thread "main" ...
3
votes
2answers
302 views

Mina - HTTP Proxy – what is AbstractHttpLogicHandler for?

I am currently working on building a simple HTTP proxy using Apache Mina, in particular org.apache.mina.proxy, and I have a few questions about how to use some of the components. How do I extract ...
2
votes
1answer
169 views

Dead sessions in apache mina

We have a apache mina based GPRS gateway(server). Sometimes, usually when the connection is terminated from client side brutally i.e, power cable unplugged or any other unusual shutdown or some ...
2
votes
1answer
178 views

Apache MINA Vysper documentation?

I plan on making an instant messaging app on Android and iOS, where you can chat to other people with the app, along with some custom features. I’m going to use the XMPP protocol, and make a custom ...
2
votes
0answers
200 views

Force MINA niosocketacceptor to clean up

I started to using mina to do async writes to the socket, but now I can't seem to close the sessions. Is there a way to force mina to close all the managed sessions or clean up? There what i have ...
2
votes
1answer
209 views

Benchmarking Apache Mina Total Bandwidth

I am developing a relatively fast paced game (Flash/Apache Mina Server back end) and I am having some difficulty getting an accurate benchmark of the type of bandwidth my current setup would use. My ...
2
votes
1answer
1k views

Using JAVA NIO framework in SPRING server

I'm implementing an hybrid server application that mixes a Web-Servlet and a plain Java application. The java application manages thousands of sockets for remote devices, while the Web application ...
2
votes
1answer
2k views

Apache MINA reading from IoSession

I am new to Apache MINA kindly guide me how to read from IoSession. I have stored a POJO in it. public static EchoUDPServerDiscoveryObjectResponseProperties echoProperties ...
2
votes
2answers
3k views

An established connection was aborted by the software in your host machine

The application uses quickfixj library, which uses Apache Mina. This application keeps a socket connection to a remote host. Suddenly we get the following error: [SocketConnectorIoProcessor-0.0] - ...
1
vote
0answers
26 views

Simple apache mina http server with basic authorization

I know about asyncweb, but documentation for 2.0 version doesn't exists(or may be Internet ban me today). So, if someone had same experience with Apache Mina and Http server with Basic ...
1
vote
0answers
27 views

OptionalDataException while receiving large files using Apache Mina library on Android

I am using Apache Mina to transfer objects between Java server and Android client. I am receiving the following error when transferring large files. ...
1
vote
0answers
60 views

info about Apache MINA HTTP protocol support

We have Apache MINA used in current project for TCP/IP protocol where server and client communicates over TCP/IP. So we have some code for MINA already in place. Now we want to support http protocol ...
1
vote
1answer
95 views

Session management/monitoring in Apache mina

Is there a (built in) way to monitor sessions in apache mina. I want to keep track of total session active whenever a session is created/closed. I know i can do it by keeping references of all the ...
1
vote
0answers
92 views

IoAcceptor not responding for new connections

In our code we are using Apache Mina on both the sides(server and client). Client is a java applet. Server is hosted on a separate machine and multiple applets connect to it and data is exchanged ...
1
vote
0answers
71 views

Java - Apache Mina Application

I have been using the below code for months now: IoAcceptor socketAcceptor = new NioSocketAcceptor(); DefaultIoFilterChainBuilder chain = socketAcceptor.getFilterChain(); ...
1
vote
3answers
234 views

Lightweight Java socket library

I've used Mina and Netty, but now I'm in the market for a lightweight library that may also be used in Android. I prefer Nio or AsyncIo over standard io implementations. Update 1 The lack of ...
1
vote
1answer
110 views

Apache Mina , create my own IoSession: How to?

I'm playing for a few days with apache mina and I want to ask you how can I create by extending (or implementing) IoSession to create something like MyIoSession. The reason why I want to do this is ...
1
vote
2answers
148 views

Apache Mina ExecutorFilter

I have an application based on Apache Mina 2.0.4 in which I am using ExecutorFilter to create a thread on message_received event. I found that in production environment, at some point of time ...
1
vote
0answers
293 views

encoding and decoding protocol buffers

I am begginner to apache MINA and protocol buffers and writing a client and server using apache mina and protocol buffers. But getting class cast exception at server side. Anyone please help. Client ...
1
vote
3answers
418 views

How many connections can selector in java.nio select one at a time?

I did a little research about new java socket NIO. I am using MINA for building a simulated server which accept connection from many clients(about 1000) and process the data received from them. I also ...
1
vote
1answer
235 views

How to disable SslFilter logging in apache MINA?

I'am developing application based on apache MINA. For secure data transmission I use SSL. And there appears some annoying thing: when I receive incomming message, SslFilter class appends about ...
1
vote
1answer
656 views

Is it worthy to migrate quickfixj from Mina to Netty?

I am writing a FIX buyside GUI based on quickfixj. Although the performance is not an issue to a GUI, I am thinking of migrating the quickfixj from Mina to Netty as I would like to develop it to a ...
1
vote
1answer
376 views

Annoyance - Warning when using Mina 2.x with Spring 3.x

Anyone know of a good way to get rid of this warning, besides increasing the log level? Mind you everything in the server still works as expected, but this occurs every time the server is restarted. ...
1
vote
0answers
230 views

Proxy examples using org.apache.mina.proxy?

Does anyone know of any examples, ideally HTTP proxy, using the org.apache.mina.proxy package?
1
vote
2answers
990 views

Apache MINA NIO connector help

I'm new to using MINA. I've a program which uses MINA NIOconnector to connect to host. I'm able to send data and also receive. This is clear from log4j log which i'm attaching below. E:\>java ...
1
vote
2answers
796 views

MINA: Performing synchronous write requests / read responses

I'm attempting to perform a synchronous write/read in a demux-based client application with MINA 2.0 RC1, but it seems to get stuck. Here is my code: public boolean login(final String username, ...
1
vote
4answers
860 views

Apache Mina Server Restart java.net.BindException: Address already in use

I have a rather annoying problem in my server application. I bind Apache Mina with the following code: acceptor.bind(new InetSocketAddress(PORT)); Where acceptor is an NioSocketAcceptor. Over a ...
1
vote
1answer
287 views

Trouble synchronizing threads with Apache Mina

I'm using Apache Mina 1.1.7 and Java 1.6. The server sends a sequence of three messages to the client in loop. Sometimes two sets of messages overlap. For example, I am expecting: ++ recv: MSGHEAD ...
1
vote
5answers
347 views

Java Server Side App, How to?

I am building a scalable Server Side App in Java but I need to know the "Do's and the Dont's". The app needs clients to connect to the server via TCP Sockets, I heard lot of good things about ...
1
vote
1answer
133 views

Is there a modbus implementation which uses Mina 2.x?

Is there a open source modbus implementation which uses Apache Mina 2.x?
1
vote
2answers
960 views

Java: How can I get the connected port from an InetAddress?

I'm trying to build a Java NIO-based socket server using Apache Mina. I really need to know the port of the remote host, not just the IP address, and it seems that Mina only exposes a SocketAddress ...
1
vote
1answer
971 views

ActiveMQ setup of tcp socket using mina

I am trying to setup a simple demo of activemq and mina. I edited the camelContext in the activemq.xml file to include two mina tcp sockets, two queues and routes as such: listenerA -> qA -> ...
1
vote
1answer
264 views

How do I specify a TCP transport is server mode (listening) or client mode in activemq?

The example given for a spring injected endpoint is as follows: <endpoint id="hl7listener" uri="mina:tcp://localhost:8888?sync=true&amp;codec=hl7codec"/> How do I setup a client mode ...
0
votes
0answers
40 views

Regarding apache mina service for iphone from java

I have created the service for Iphone using apache mina. I got request from iphone and response is also sent Its working fine but i am getting exception when i get request from iphone ...
0
votes
1answer
122 views

Is there open source TCP server for android clients?

I searching for an open source TCP server that can be configured on the computer to work as server for client applications for Android. As I want to create messaging services between Android devices, ...
0
votes
1answer
51 views

Does Android and Apache MINA work Together?

I want to create a Mina clients for Android devices, and the Mina server on PC. Is that possible ?
0
votes
1answer
25 views

Select network interfaces from Camel Mina

Is there any way to configure the camel Mina component to select network interfaces? Currently my machine has 4 Ethernet cards installed.
0
votes
0answers
32 views

Questions regarding apache mina quick start guide

I was going through apache mina quick start quide.Following snippet has been used to start the server: IoAcceptor acceptor = new NioSocketAcceptor(); acceptor.getFilterChain().addLast( "logger", new ...
0
votes
0answers
73 views

Building an HTTP Proxy with Mina

I want to made a simple HTTP proxy with Mina, I saw that there are many classes to handle that, but I'm new in Mina and I don't see how to start the Main class to made a proxy. I search sample code ...
0
votes
0answers
26 views

How to use cascading protocol filters in apache mina 2.0.4?

I want to cascade 3 protocol codec filters in mina. I want to decode messages from a rs232 device. My first filter A is uses to find message, it writes an new IoBuffer to the ...
0
votes
1answer
138 views

Mina and Websocket

I am looking for a good websocket implementation that support draft10. I am already implementing Mina server in my app but I didn't see any reference to websocket support and draft10 in specific. Its ...
0
votes
0answers
62 views

How many worker threads does MINA 2 use, and how can I control that?

I'm a newbie for Java and it means I'm a also newbie for MINA 2. I've just run Quick Start Guide from the MINA site. It works okay and I'd like to know about how to control threads. When I use IOCP ...
0
votes
1answer
86 views

Apache Mina ExecutorFilter

I am facing a strange issue with apache MINA. I have server application which is based on apache Mina framework. I am using ExecutorFilter at the server side. the application works perfectly on my ...
0
votes
0answers
81 views

Query regarding DemuxingProtocolCodecFactory in apache Mina

Is it possible to only add a decoder to DemuxingProtocolCodecFactory without an encoder? I have done this in my code i.e. addMessageDecoder(myDecoder) only but when I try to write data to the ...
0
votes
0answers
52 views

Apache Mina NioAcceptor

I am experimenting with Apache Mina and currently have unclear point: In NioSocketAcceptor acceptor = new NioSocketAcceptor(2); I specify the number of acceptors. As fa as I understand they do ...
0
votes
1answer
105 views

Apache mina vs Simple NIO for transferring large files

I am trying to figure out options for transferring large files over network. So, I created a simple TCP server/ client to transfer around 10G of file. Then I replaced FileStreams and sockets with ...
0
votes
1answer
75 views

Apache Mina: Get local port to which remote client connected

If I have a server listening on ports 80 and 8080 as configured below, how would I be able to identify which local port a client connected to when i get a message? acceptor = new ...
0
votes
1answer
113 views

Apache Mina: how to get the IP from a connected client

Can anyone tell me how the get the IP address from a connected client? So far I've found session.getRemoteAddress().toString() and returns something like /192.168.1.100:49879 is this ok? ...

1 2