Hello,

I need to create SOAP - CORBA dynamic bridge. That means incoming SOAP
requests should be transparently converted to CORBA calls.

I think the best solution could be to write a handler that will
process all requests. This handler should be added to default
transport. I tried this:

              for (Object trans: xfire.getTransportManager().getTransports()) {
                      System.out.println("Adding handler for " + trans);
                      ((AbstractTransport)trans).addInHandler(new
TestHandler());
                      ((AbstractTransport)trans).addOutHandler(new
TestHandler());
              }

The handlers seem to be added but its not invoked. When I add them to
service it works. What is wrong here?

Btw how would you design such a SOAP - CORBA bridge in X-Fire? Am I
going right path?

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

---------------------------------------------------------------------
To unsubscribe from this list please visit:

   http://xircles.codehaus.org/manage_email

Reply via email to