Results 1 to 2 of 2

Thread: XFire Spring SOAP support

  1. #1
    Join Date
    Feb 2005
    Posts
    9

    Default XFire Spring SOAP support

    I've just finished putting together spring support for XFire, a java soap framework. Some of the benefits:
    * Stax based so its fast and uses less memory than axis
    * Easy to integrate into spring
    * Very small/embeddable

    Warnings:
    This support is new, blah blah so there may be bugs.
    You will also need to compile from CVS to be able to use this.

    If the above warnings scare you then hold off until our next M4 release. But we would of course love testers, feedback, patches, etc. Please ping the mailing list if you run into any troubles or need help.

    Instructions can be found here: http://xfire.codehaus.org/Spring

    Sample to set up a soap service:
    <bean name="/Echo" class="org.codehaus.xfire.spring.XFireExporter">
    <property name="service"><ref bean="echo"/></property>
    <property name="serviceInterface"><value>org.codehaus.xfire. spring.Echo</value></property>
    <property name="serviceBuilder"><ref bean="xfire.serviceBuilder"/></property>
    <property name="xfire"><ref bean="xfire"/></property>
    </bean>

    <bean id="echo" class="org.codehaus.xfire.spring.EchoImpl"/>

  2. #2
    Join Date
    Aug 2004
    Location
    Amsterdam, Netherlands
    Posts
    450

    Default

    Dan,

    good stuff! The next time I update the doco I'll include a reference to XFire. We'll probably start using it pretty soon!

    regards,
    Alef
    Alef Arendsen
    SpringSource
    http://www.springsource.com

Similar Threads

  1. New Spring Support Forums are Live
    By Colin Sampaleanu in forum Announcements
    Replies: 17
    Last Post: May 22nd, 2005, 12:57 AM
  2. Announcement: Spring IDE WebFlow Support Preview Release 1
    By Christian Dupuis in forum Announcements
    Replies: 0
    Last Post: May 20th, 2005, 08:15 PM
  3. Replies: 14
    Last Post: Feb 21st, 2005, 05:41 PM
  4. Replies: 2
    Last Post: Feb 11th, 2005, 04:27 AM
  5. Does Spring have any support for Soap?
    By tcollins in forum Remoting
    Replies: 1
    Last Post: Aug 27th, 2004, 01:15 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •