Hello,

I need to develop a CORBA-SOAP bridge that will integrate into JBoss
and dynamically translate CORBA calls to SOAP/HTTP calls and vice
versa. I am investigating if I can implement this with Apache CXF and
Yoko. My basic idea is simple:

JACORB/VISIBROKER <-> YOKO BINDING <-> CXF <-> SOAP/HTTP

If my idea is good I must to implement some dynamic Web Service that
will run in the CXF and relay all incoming requests to 3rd party web
service provider:

CORBA app -> [IIOP] -> CXF with Yoko Binding

The WS-relay must be there because all web services I need to call
from CORBA are running on other servers. The CXF will act only as a
bridge. What do you thing about this idea?

Anyway how do I could implement such a dynamic CXF service that will
register endpoints in run-time and will be fully dynamic? That means
it wont know its interface in advance. I need some kind of service
invoker or dispatcher, somethink like:

class MyDynamicService {

...

public Response dynamicInvoke(Request) {
 // read my configuration
 // call the target web service
 // return the result
}
...
}

Thanks

--
Lukas Zapletal
http://lukas.zapletalovi.com

Reply via email to