I have a COM+ component developed with VB6.
After registering it with the component services manager COM+ application, I can use it from ASP like this
Set Comando = Server.CreateObject("JuiciosComando.clsComando")
ComandoExecute = Comando.execute(Xml)
Set Comando = Nothing
That's all I need, the component just receives a (maybe huge) string and returns another (also possible huge) string...
Is there some way to access this very same component from Java?
What I've found so far is J-Integra but it's a commercial product.
I've also found this thread on codeguru.com but my C++.NET knowledge is rather poor, besides I rather just find some free, pure Java solution...