I have and it works great.
This command will create the dll that you need.
ikvmc.exe -target:library -out:activemq-client.dll "C:\Program
Files\Apache\apache-activemq-5.1.0\activemq-all-5.1.0.jar"
Your project will also need to reference IKVM.OpenJDK.ClassLibrary.dll,
IKVM.Runtime.dll, and JVM.d
I had similar results as yours when performance testing NMS. You may want
evaluate IKVM for C# integration. Using IKVM, I had 4 times the message
throughput than NMS. Also, the converted jar -> dll gives you access to the
full JMS API for your C# producers and consumers.
Stefan Gmeiner wrote:
>
.
//Synchronous call
//SyncRequest(command);
//Asynchronous call
transport.Oneway(command);
}
user939393 wrote:
>
> I'm having some problems on the client with IConnection.ExceptionListener.
> When the ActiveMQ server is shutdown, this Listener
I'm having some problems on the client with IConnection.ExceptionListener.
When the ActiveMQ server is shutdown, this Listener is fired in my client
app as expected. However, when I then go and close/dispose of the client
connection, subscription, and messageconsumer during this event the debugger