<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Spring WS and static wsdls</title>
	<atom:link href="http://ketiljensen.wordpress.com/2008/09/16/spring-ws-and-static-wsdls/feed/" rel="self" type="application/rss+xml" />
	<link>http://ketiljensen.wordpress.com/2008/09/16/spring-ws-and-static-wsdls/</link>
	<description>Ketil Jensen's blog</description>
	<lastBuildDate>Wed, 04 Nov 2009 18:09:18 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: ketiljensen</title>
		<link>http://ketiljensen.wordpress.com/2008/09/16/spring-ws-and-static-wsdls/#comment-45</link>
		<dc:creator>ketiljensen</dc:creator>
		<pubDate>Sat, 16 May 2009 19:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://ketiljensen.wordpress.com/?p=47#comment-45</guid>
		<description>I believe you can use the CommonXsdSchemaCollection to achieve this.  From the spring ws documentation (tutorial) - http://static.springsource.org/spring-ws/sites/1.5/reference/html/server.html#server-automatic-wsdl-exposure

&quot;If you want to use multiple schemas, either by includes or imports, you might want to use the CommonsXsdSchemaCollection, and refer to that from the DefaultWsdl11Definition, like so:

[sourcecode language=&#039;xml&#039;]
&lt;bean id=&quot;schemaCollection&quot; class=&quot;org.springframework.xml.xsd.commons.CommonsXsdSchemaCollection&quot;&gt;
    &lt;description&gt;
        This bean wrap the messages.xsd (which imports types.xsd), and inlines them as a one.
    &lt;/description&gt;
    &lt;property name=&quot;xsds&quot;&gt;
        &lt;list&gt;
            &lt;value&gt;/WEB-INF/xsds/Orders.xsd&lt;/value&gt;
            &lt;value&gt;/WEB-INF/xsds/Customers.xsd&lt;/value&gt;
        &lt;/list&gt;
    &lt;/property&gt;
    &lt;property name=&quot;inline&quot; value=&quot;true&quot;/&gt;
&lt;/bean&gt;
[/sourcecode]

Hope this helps</description>
		<content:encoded><![CDATA[<p>I believe you can use the CommonXsdSchemaCollection to achieve this.  From the spring ws documentation (tutorial) &#8211; <a href="http://static.springsource.org/spring-ws/sites/1.5/reference/html/server.html#server-automatic-wsdl-exposure" rel="nofollow">http://static.springsource.org/spring-ws/sites/1.5/reference/html/server.html#server-automatic-wsdl-exposure</a></p>
<p>&#8220;If you want to use multiple schemas, either by includes or imports, you might want to use the CommonsXsdSchemaCollection, and refer to that from the DefaultWsdl11Definition, like so:</p>
<pre class="brush: xml;">
&lt;bean id=&quot;schemaCollection&quot; class=&quot;org.springframework.xml.xsd.commons.CommonsXsdSchemaCollection&quot;&gt;
    &lt;description&gt;
        This bean wrap the messages.xsd (which imports types.xsd), and inlines them as a one.
    &lt;/description&gt;
    &lt;property name=&quot;xsds&quot;&gt;
        &lt;list&gt;
            &lt;value&gt;/WEB-INF/xsds/Orders.xsd&lt;/value&gt;
            &lt;value&gt;/WEB-INF/xsds/Customers.xsd&lt;/value&gt;
        &lt;/list&gt;
    &lt;/property&gt;
    &lt;property name=&quot;inline&quot; value=&quot;true&quot;/&gt;
&lt;/bean&gt;
</pre>
<p>Hope this helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nommi</title>
		<link>http://ketiljensen.wordpress.com/2008/09/16/spring-ws-and-static-wsdls/#comment-44</link>
		<dc:creator>Nommi</dc:creator>
		<pubDate>Wed, 13 May 2009 05:49:44 +0000</pubDate>
		<guid isPermaLink="false">http://ketiljensen.wordpress.com/?p=47#comment-44</guid>
		<description>hello  
i working on spring ws service  it is very intrsting to create ws using spring.. i having some problem  is there any way that u can mapp multiple xsd schema to generate one complete wsdl...

please exaplain it...</description>
		<content:encoded><![CDATA[<p>hello<br />
i working on spring ws service  it is very intrsting to create ws using spring.. i having some problem  is there any way that u can mapp multiple xsd schema to generate one complete wsdl&#8230;</p>
<p>please exaplain it&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ketiljensen</title>
		<link>http://ketiljensen.wordpress.com/2008/09/16/spring-ws-and-static-wsdls/#comment-43</link>
		<dc:creator>ketiljensen</dc:creator>
		<pubDate>Fri, 20 Mar 2009 20:27:25 +0000</pubDate>
		<guid isPermaLink="false">http://ketiljensen.wordpress.com/?p=47#comment-43</guid>
		<description>Hi, glad you found it useful. 
How do you test the web service? If you write a spring ws client then it should be accessible on http://localhost:8080/MyWeb/services

If you need additional input on how to use spring ws on the client you can have a look at http://static.springsource.org/spring-ws/sites/1.5/reference/html/client.html</description>
		<content:encoded><![CDATA[<p>Hi, glad you found it useful.<br />
How do you test the web service? If you write a spring ws client then it should be accessible on <a href="http://localhost:8080/MyWeb/services" rel="nofollow">http://localhost:8080/MyWeb/services</a></p>
<p>If you need additional input on how to use spring ws on the client you can have a look at <a href="http://static.springsource.org/spring-ws/sites/1.5/reference/html/client.html" rel="nofollow">http://static.springsource.org/spring-ws/sites/1.5/reference/html/client.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ah</title>
		<link>http://ketiljensen.wordpress.com/2008/09/16/spring-ws-and-static-wsdls/#comment-42</link>
		<dc:creator>Ah</dc:creator>
		<pubDate>Thu, 19 Mar 2009 14:12:48 +0000</pubDate>
		<guid isPermaLink="false">http://ketiljensen.wordpress.com/?p=47#comment-42</guid>
		<description>Good article.
I need to convert legacy web services to Spring WS.I used this post as reference, i was able to create a web service and deploy it.WSDL is accessible through web server.

   One last issue i had is testing the web service it self.I tried several different URLs ,none of them worked.Any thoughts ?
  Iam able to access wsdl from
 http://locasthost:8080/MyWeb/services/Myservice.wsdl

But i&#039;m not able to test the actually methods using the same URL.</description>
		<content:encoded><![CDATA[<p>Good article.<br />
I need to convert legacy web services to Spring WS.I used this post as reference, i was able to create a web service and deploy it.WSDL is accessible through web server.</p>
<p>   One last issue i had is testing the web service it self.I tried several different URLs ,none of them worked.Any thoughts ?<br />
  Iam able to access wsdl from<br />
 <a href="http://locasthost:8080/MyWeb/services/Myservice.wsdl" rel="nofollow">http://locasthost:8080/MyWeb/services/Myservice.wsdl</a></p>
<p>But i&#8217;m not able to test the actually methods using the same URL.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ketiljensen</title>
		<link>http://ketiljensen.wordpress.com/2008/09/16/spring-ws-and-static-wsdls/#comment-39</link>
		<dc:creator>ketiljensen</dc:creator>
		<pubDate>Sun, 01 Feb 2009 19:25:35 +0000</pubDate>
		<guid isPermaLink="false">http://ketiljensen.wordpress.com/?p=47#comment-39</guid>
		<description>Thanks, glad you found it useful.</description>
		<content:encoded><![CDATA[<p>Thanks, glad you found it useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prasenjit</title>
		<link>http://ketiljensen.wordpress.com/2008/09/16/spring-ws-and-static-wsdls/#comment-38</link>
		<dc:creator>Prasenjit</dc:creator>
		<pubDate>Fri, 30 Jan 2009 20:50:57 +0000</pubDate>
		<guid isPermaLink="false">http://ketiljensen.wordpress.com/?p=47#comment-38</guid>
		<description>It was good quick reference and worked well for me.
Thanks!</description>
		<content:encoded><![CDATA[<p>It was good quick reference and worked well for me.<br />
Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
