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

1
vote
0answers
37 views

Trying to implement PublicKey Authentication for SFTP test server using Apache Mina. However Authenticate method is not being called

I am using Apache Mina SSHD to implement a test SFTPServer. I have been able to get things working for simple Password authentication, however I am not able to configure things for PublicKey ...
0
votes
0answers
190 views

Apache MINA vs netty for Android

There is a very informative comparison between MINA and netty in here I would like to know your preference when the platform is Android! I have a host that should accept connections from as well as ...
0
votes
0answers
157 views

Java - File Transfer FTP to Remote Server(Apache MINA)

I am implementing a Java program, which has to connect to remote server connected remote server should download a file from ftp i am using Apache MINA lib's for this code here is code, which ...
0
votes
0answers
52 views

Apache MINA - File transfer from FTP Server

I am in a situation that I have to, use Apache MINA lib, for downloading a file from the FTP server. is that possible, if so plz help with code. I have been googling for this quite a while with no ...
0
votes
1answer
96 views

File Transfer using Apache MINA - Java

I have been working on a project, in which I have to send files from local system to my FTP-server. for this purpose I thought of using Apache MINA. is Apache MINA can be implemented in this ...
0
votes
1answer
53 views

Apache Mina Exception

i have followed this link for my example program using apache mina. these are the lib files which i used with the code. mina-core-2.0.7.jar slf4j-api-1.7.5.jar slf4j-jdk14-1.7.5.jar i am ...
0
votes
1answer
31 views

mina writefuture returns written=true despite failing

This is the code WriteFuture writeFuture = session.write(message); writeFuture.addListener(this); writeFuture.awaitUninterruptibly(); ...
0
votes
0answers
86 views

changes the bytes of transmitting byte Array through apache camel mina UDP

i am stuck on this problem for long time but i cant get solution. Problem : When i transmit the byte array of [56, 34, 0, 4, -79, 1] from one device to another device on using Apache Camel Mina UDP ...
0
votes
1answer
101 views

What filter should I use to send ArrayList by using apache-MINA

I have server and client applications with apache-mina framework. I need to send a large arraylist (contains 10000 custom objects) from server to client. I first thought to use GSON strings to pass ...
0
votes
0answers
127 views

Apache MINA Server messages outflow (Client messages inflow) architecture

Understanding the Server/Client architecture illustrated in the user documentation for Apache MINA - Server Architecture and Client Architecture - is pretty straightforward. It only covers the ...
5
votes
1answer
214 views

several TCP-servers on the same port

It looks very strange for me. I can run several TCP servers on the same port. I use Apache MINA library with following code: IoAcceptor acceptor = new NioSocketAcceptor(); acceptor.bind(new ...
0
votes
1answer
161 views

What is the best approach to build a system with high amount of data communication?

Hello I have a cache server (written with Java+Lucene Framework) which keeps large amount of data and provides them according to request query. It basically works like this: On the startup, it ...
0
votes
1answer
206 views

Apache Mina SSHD server: No Session available

I am writing a SSH server with Apache Mina SSHD. The server starts up fine but when I try to connect to the server I am getting "No session available" exception. Here is the code of the server: ...
0
votes
2answers
107 views

Traditional IO in client side and NIO in Server, how do i get specific msg if client sends multiple message in the same socket?

I am using Apache Mina in the Server side. I've a client which is written in tradition IO. Here's the CLIENT side code that sends data to server. class SomeClass extends Thread { Socket socket; ...
0
votes
1answer
67 views

apache mina filters

Is it allowed to call apache mina filters from custom threads? I have timer which periodically calls NextFilter.messageReceived(...). I currently got out of memory exception and wondering could these ...
1
vote
3answers
91 views

404 Not Found page displayed when accessing a lot of the Apache MINA links [closed]

I have to embed a network layer into my Java application in order to enable file transfer from a server to multiple client connections. Having come to the conclusion that Java NIO would be the best ...
0
votes
2answers
346 views

Apache Mina Server and client in java.net.Socket

My application send data to Apache Mina Server which listens with the following configuration.. IoAcceptor acceptor = new NioSocketAcceptor(); acceptor.getFilterChain().addLast( ...
0
votes
0answers
53 views

camel mina disable nagle algorithm [closed]

How do I disable Nagle's Algorithm on the endpoint of a camel MINA route. Its not available as an option in the class org.apache.camel.component.mina.MinaConfiguration, which can be created in spring ...
0
votes
1answer
333 views

How to get an acknowledgement for the client socket from server?

I have a client socket which sends messages to the server.I want to get an acknowledgement on the client side whenever the server receives the message. Is it possible to get that acknowledgement. I ...
1
vote
2answers
180 views

Using SSH connection for inter application communication

I want to write an application that would be a custom SSH server with two types of connection: A sync channel, where clients type a command and the server would return the output An stream channel ...
0
votes
0answers
203 views

Missing artifact org.apache.mina:mina-integration-ognl:bundle:2.0.2

I have my own JAR configured in local Maven repository which depends on MINA in the following way: <!-- mina-core-2.0.2.jar --> <dependency> ...
0
votes
1answer
134 views

How to conduct Apache Mina Performance Benchmark

I want to have performance benchmark my apache mina application (client) to test how much it is capable to handle load. Finally I want to have TPS (Transaction per second), completed from my apache ...
1
vote
0answers
431 views

Using Apache Mina with SslFilter on Android

I'm using apache mina to make a communication between my server and android client. Everything was fine when I was connecting via unsecured connection, but several days ago I decided to protect ...
0
votes
1answer
218 views

How to get input or output stream of a socket using apache mina?

I am using apache mina for client socket application where I want to use input streams and output streams for sending or reading data instead of using IO sessions. How can I write data to a server ...
2
votes
0answers
68 views

Executing server and binding servers with apache mina libraries

I'm having a little issue with Java. I am just running a server coded in Java in port 1883; The server runs well on Windows, however in my Ubuntu 12.04 machine java sends the error: ...
0
votes
0answers
189 views

Apache MINA SSL Server vs OpenSSL C++ client

I have a C++ client which is sending a message to Apache MINA SSL server. The C++ client is using the openssl library for communication. When I send a message from the c++ client it gives me the ...
1
vote
2answers
86 views

How to skip a port if it is currently in use?

I am presently running jboss on 8090 port and my client socket is running in the jboss. I send request to server socket at scheduled intervals to fetch data. Now my question is As 8090 port is ...
0
votes
1answer
305 views

Idle time out exception in Server Client socket

I am working on a server client project where server is a Gateway which resides in the field and where we are developing the client. The client is scheduled to connect the server and get the data. Now ...
0
votes
0answers
48 views

Can anyone explain how to combine apache ftp server and apache commons as ftp client?

I am trying to develop a Client - Server file transfer model on a LAN. Several java forums and apache guru's referred for a similar file transfer using Client-Server model where in Server will be ...
1
vote
1answer
203 views

Unit testing of an apache mina client

I have a mina client whose connector is a NioSocketConnector. I have written integration tests of this client with real server. However, I could not find a way to do unit tests. For example, I want to ...
0
votes
2answers
146 views

Netty/mina cooperation. Is it possible to wrap netty's ChannelBuffer to MINA's IOBuffer?

Idea is to integrate apache vysper to existing netty application. Is it possible to ChannelBuffer from client being connected to netty as mina'a ChannelBuffer so it could be deligated to the vysper? ...
0
votes
1answer
165 views

Use NIO server with IO client

I have server worked with NIO based on Mina. I try to make TCP/IP client for this server using usual java.net.Socket technique. I can successfully establish connection (i.e. ...
1
vote
1answer
176 views

Respond to MINA request after aggregating several requests in Camel

I'm trying to implement a mina service where the response to the final message should be based on the previous messages. Each message (header (1), data (n), end (1)) should receive a response, but ...
1
vote
1answer
475 views

Use Mina JAR dependencies instead of bundles?

Mina seems to be deploying their artifacts as *.bundle files these days, which, at the very least, is annoying and at best downright evil. If I depend on Mina in Maven like this: <dependency> ...
0
votes
0answers
89 views

Can RTMPClient maintain 2 simultaneous different direction streams?

This is freesearch question. I am using two streams with my modified RTMPClient class withing my complex application. One stream is used to send audio to the server and another one is to receive it ...
0
votes
1answer
361 views

Implementing a request-reply protocol with Apache Camel Mina Component

I need to implement a consumer to an XML-RPC based service over TCP. Upon establishing a connection to the server, it requires that Authentication credentials be sent by the client An event ...
2
votes
1answer
255 views

Very slow TCP handshake in Java application

Our Java application consists of a client and a server. In our production environment, establishing the connection takes a long time (~40 seconds). We captured the network traffic using tcpdump and ...
1
vote
0answers
289 views

Java Mina - Accept both Websockets and TCP sockets

Doing some experiments with the Mina framework. I have the server up and running perfectly, and I can connect to it with e.g Telnet. Doing several connections at once, sending messages to one another ...
0
votes
0answers
141 views

How to handler TCP long connection failover?

I have many servers (cluster) to run same application based TCP long connection(apache mina socket). When one server goes down, how other servers can keep the socket connection, established with the ...
0
votes
0answers
118 views

Querying Servers with UDP using?

I want to query servers (about 100 can increase) i am currently querying them iteratively in a loop one by one but it takes too much time. I have found 2-3 options on net like MultiThreading , ...
0
votes
0answers
219 views

Optimizing Apache Mina Client

I want to discuss about scaling & performance optimization about apache mina client. I have to connect mina client with another External system, and then my mina will received push / pull message ...
2
votes
1answer
127 views

Mock XMPP Server with Mina works only part of the time

I've created a mock XMPP server that processes PLAIN encryption stanzas. I'm able to use Pidgin and go through the entire session creation, to the point where Pidgin thinks the user is on an actually ...
1
vote
1answer
272 views

How to send a POJO from client to server using mina

I am very new to apache mina and I have a problem with sending a POJO from the client to the server. Please provide any sample code if possible.
0
votes
0answers
352 views

Apache MINA, Managing multiple client connections

I'm building a bridge app that have to receive incoming connections by listening on a TCP port, make some changes to the message and then send the message to other server. Then it has to wait for an ...
0
votes
0answers
75 views

Some trouble about Apache Mina

In my project,I have use TextLineCodecFactory as my protocol。 However, In the Server,when I send a string(its type is java String and its length is 131),the server cann't deal with it。 But,if the ...
1
vote
1answer
388 views

NullPointerException in Apache MINA on Android 2.2

I'm developing an application for android using Apache MINA 2.0.4. It is working good on all versions I have tested, but 2.2.2 on HTC Desire. The client manages to connect to the server but once the ...
1
vote
0answers
313 views

Run (synchronize) mina client on Android, how to resolve ClassNotFoundException

I have setup a mina(2.0.4) server on PC, it works fine since I have written a mina client on PC to communincation with it. Then I implemented a synchronize Mina Client on android, but the client can ...
0
votes
2answers
1k views

Apache Mina Idle Monitor

I have been developing my first TCP/Socket based application with Apache Mina, it looks great and easy to do things. I just want to ask a question here about Mina. The server impose an idle time of 5 ...
0
votes
1answer
1k views

How to read binary data from socket with Apache MINA?

I know that a server sends MP3 stream after connecting to it and sending few bytes. How to read it's transmission with Apache MINA? Can you provide any examples please?
0
votes
1answer
781 views

Apache Mina - Multiple small write to client

I built a tcp server based on apache mina 2.0.4, and have some problems writing back to the client. We have some tcp clients that can handle only one message at a time and with a buffer size of 256 ...

1 2 3