Results 1 to 10 of 18

Thread: Spring Web Services 2.0.0 RC2 released

Hybrid View

  1. #1
    Join Date
    Jul 2005
    Location
    Rotterdam, the Netherlands
    Posts
    1,562

    Default Spring Web Services 2.0.0 RC2 released

    Dear Spring community,

    I'm pleased to announce that Spring Web Services 2.0 Release Candidate 2 has been released!

    This is the second release candidate in the 2.0 release cycle. The most important new feature in this release is the update of the Spring-WS XML namespace, which now contains <sws:annotation-driven/> and <sws:interceptors/>elements (similar to the Spring-MVC namespace), and <sws:static-wsdl/> and <sws:dynamic-wsdl/> for exporting your WSDLs. All of these features are described in the updated reference documentation, which you can find here:

    http://static.springsource.org/sprin...eference/html/

    We consider this release (RC2) complete. If no major new issues are found, we will release 2.0.0-RELEASE in the first half of January 2011.

    While we did make some changes, Spring-WS 2.0 should be a drop-in replacement for 1.5. The one exception is the 2.0 version of the XSD namespace, where we removed <sws:marshalling-endpoints/> and <sws:xpath-endpoints/> in favor of <sws:anotation-driven/>. To keep using the two former elements, please make sure to use the 1.5 version of the XSD, like so:

    Code:
    <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xmlns:sws="http://www.springframework.org/schema/web-services" xsi:schemaLocation="
           http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
           http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services-1.5.xsd">
    To upgrade to <sws:annotation-driven/>, use the 2.0 version of the XSD:

    Code:
    <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xmlns:sws="http://www.springframework.org/schema/web-services" xsi:schemaLocation="
           http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
           http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services-2.0.xsd">
    Please file a JIRA issue if you find any other regressions in the 2.0 RC2 release.

    Please see the changelog for more details. If you have any further requests/issues, please use JIRA or reply to this post.

    For more information, see http://static.springframework.org/spring-ws/sites/2.0

    Note that this milestone will not be uploaded to Maven Central, but only to our own milestone repo:

    Code:
    <repository>
      <id>spring-maven-milestone</id>
      <name>Springframework Maven Repository</name>
      <url>http://maven.springframework.org/milestone</url>
    </repository>
    Code:
    <dependency>
        <groupId>org.springframework.ws</groupId>
        <artifactId>spring-ws-core</artifactId>
        <version>2.0.0-RC2</version>
    </dependency>
    When 2.0 reaches GA, we will upload the jars to maven central as usual.
    Arjen Poutsma

    Spring Web Services Dev Lead
    Please read the FAQ

  2. #2
    Join Date
    Dec 2010
    Posts
    315

    Default

    Good one. I can't wait to try it. Thanks a lot

    Edit:
    I've uploaded a tutorial utilizing Spring WS 2.0.0 RC2 build.

    Here's the link: http://krams915.blogspot.com/2010/12...t-200-rc2.html

    Enjoy
    Last edited by skram; Dec 26th, 2010 at 02:54 AM.

  3. #3
    Join Date
    Mar 2009
    Posts
    8

    Default

    I can not wait for a 2.0 release. I've integrated spring ws 1.5.9 with spring 3.0.5.Release, but not with good feeling

  4. #4
    Join Date
    Nov 2007
    Posts
    122

    Default

    This is so exciting.

  5. #5
    Join Date
    Nov 2007
    Posts
    122

    Default

    Hi Arjen,

    I have read lot of forums on this topic but no one has clear solution on this?

    Does anybody knows a way to integrate header information during the WSDL generation?
    --------------------------------------------------------------------------
    Do you have any plans to add this near future?


    I need to add custom soap Header to include tenant info to make webservices multi- tenant model?

    Regards
    Harshi

  6. #6
    Join Date
    Oct 2009
    Location
    Minneapolis, MN
    Posts
    137

    Default 2.0 namespace still points to 1.5

    Hi,

    Was working on upgrading the project to 2.0. I keep getting annotation-driven is not declared?
    Looked at STS namespaces, it only shows 1.5.xsd.

    How do i overcome this, my maven project just has 2.0.0.RC2 jars and nothing in the path
    Code:
    <beans:beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    	xmlns:p="http://www.springframework.org/schema/p"
    	xmlns:beans="http://www.springframework.org/schema/beans"
    	xmlns:ws="http://www.springframework.org/schema/web-services"
    	xsi:schemaLocation="http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services-2.0.xsd
    		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
    Thanks
    Srinivas

Posting Permissions

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