On Thursday 21 August 2008 10:31:09 am Ulhas Bhole wrote: > Hi Dan, > > I am currently looking at Apache Mina to see if I can come up with > initial version of TCP transport for CXF. I was thinking of using their > spring integration and get the beans directly but don't how I can get > Spring context from Bus to call ctx.getBean();
I believe the context is registered as an extension: bus.getExtension(BusApplicationContext.class); but that may only be available after init time. (probably should move setting that into the BusExtensionPostProcessor) That said, if you need the context, the best thing to do is make your bean implement: org.springframework.context.ApplicationContextAware Spring will automatically pass it in for you. Dan > Regards, > > Ulhas Bhole > > Daniel Kulp wrote: > > On Thursday 21 August 2008 9:26:49 am nicolas de loof wrote: > >> Hello, > >> > >> I'm read some blogs and benchmarks about use of FastInfoset in > >> replacement for textual XML in SOAP messages over HTTP > >> (http://java.sun.com/developer/technicalArticles/WebServices/fastWS/), > >> and about SOAP over TCP ( > >> http://blogs.sun.com/oleksiys/entry/soap_tcp_makes_web_services) that > >> seems to be a Microsoft .Net initiative for faster services. > >> > >> Is there any support for those transport/marshalling alternatives in CXF > >> ? > > > > Fastinfoset is supported in 2.1.2. There is a fastinfoset feature that > > will enable it: > > org.apache.cxf.feature.FastInfosetFeature > > > > The soap/tcp stuff isn't supported yet. If someone would like to pick > > that up, great. :-) > > ---------------------------- > IONA Technologies PLC (registered in Ireland) > Registered Number: 171387 > Registered Address: The IONA Building, Shelbourne Road, Dublin 4, Ireland -- Daniel Kulp [EMAIL PROTECTED] http://www.dankulp.com/blog
