Page 2 of 2 FirstFirst 12
Results 11 to 15 of 15

Thread: Spring Web Services 2.0.0 M2 released

  1. #11
    Join Date
    Nov 2007
    Posts
    122

    Default

    Never mind, I have looked at the source code and figured it out

    For xs:import its removing schemaLocation and leaving import as is..

  2. #12
    Join Date
    Jul 2005
    Posts
    16

    Default Migrating 1.5.9 to 2.0.0-M2

    I'm migrating existing code using Spring WS 1.5.9 to 2.0.0-M2 and have noticed some changes in classes and packages. Can someone confirm the following for me:

    1. did
    Code:
    org.springframework.ws.wsdl.wsdl11.DynamicWsdl11Definition
    get replaced with:
    Code:
    org.springframework.ws.wsdl.wsdl11.DefaultWsdl11Definition
    2. DynamicWsdl11Definition used to use a property called builder, using class XsdBasedSoap11Wsdl4jDefinitionBuilder. Has this now gone as well? Is the equivalent replacement to use org.springframework.xml.xsd.SimpleXsdSchema?

    Thanks!
    Kevin

  3. #13
    Join Date
    Jun 2009
    Posts
    10

    Default Working Maven repository and missing spring-ws-parent

    Hi,

    The repository given earlier in this thread is not active:

    Code:
    repository>
      <id>spring-maven-milestone</id>
      <name>Springframework Maven Repository</name>
      <url>http://maven.springframework.org/milestone</url>
    </repository>
    Is there some other Maven repository where SWS 2.0.0M2 can be accessed? I tried manually adding it to our local repository, but there are some references to the spring-ws-parent which is not part of the download package. Each sub pom contains the following:
    Code:
    <parent>
      <artifactId>spring-ws-parent</artifactId>
      <groupId>org.springframework.ws</groupId>
      <version>2.0.0-M2</version>
      <relativePath>../parent/pom.xml</relativePath>
    </parent>
    Can someone tell me if the parent listed above is required, and if so where can it be found?

    Thanks, Ben

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

    Default

    Quote Originally Posted by khooke View Post
    I'm migrating existing code using Spring WS 1.5.9 to 2.0.0-M2 and have noticed some changes in classes and packages. Can someone confirm the following for me:

    1. did
    Code:
    org.springframework.ws.wsdl.wsdl11.DynamicWsdl11Definition
    get replaced with:
    Code:
    org.springframework.ws.wsdl.wsdl11.DefaultWsdl11Definition
    Yes, the DynamicWsdl11Definition has been deprecated since 1.5, and we got rid of it in 2.0. The DefaultWsdl11Definition was introduced in 1.5 and should be a drop in replacement.

    Quote Originally Posted by khooke View Post
    2. DynamicWsdl11Definition used to use a property called builder, using class XsdBasedSoap11Wsdl4jDefinitionBuilder. Has this now gone as well? Is the equivalent replacement to use org.springframework.xml.xsd.SimpleXsdSchema?
    The replacement for that is to use the provider API, which is much more powerful and allows for more customization of the resulting WSDL. See the reference docs, javadocs and samples for more information.
    Arjen Poutsma

    Spring Web Services Dev Lead
    Please read the FAQ

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

    Default

    Quote Originally Posted by bengateau View Post
    Hi,

    The repository given earlier in this thread is not active:

    Code:
    repository>
      <id>spring-maven-milestone</id>
      <name>Springframework Maven Repository</name>
      <url>http://maven.springframework.org/milestone</url>
    </repository>
    It works for me.
    Arjen Poutsma

    Spring Web Services Dev Lead
    Please read the FAQ

Posting Permissions

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