<?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/"
		>
<channel>
	<title>Comments on: SpringSource Application Platform Deployment Options</title>
	<atom:link href="http://blog.springsource.org/2008/05/06/springsource-application-platform-deployment-options/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.springsource.org/2008/05/06/springsource-application-platform-deployment-options/</link>
	<description>The voice of SpringSource</description>
	<lastBuildDate>Wed, 08 Feb 2012 17:31:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: RG</title>
		<link>http://blog.springsource.org/2008/05/06/springsource-application-platform-deployment-options/comment-page-1/#comment-155507</link>
		<dc:creator>RG</dc:creator>
		<pubDate>Thu, 26 Mar 2009 10:20:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/main/2008/05/06/springsource-application-platform-deployment-options/#comment-155507</guid>
		<description>Hi, I have a question regarding the migration of a war file to shared-lib war.  I have a web application using axis2 framework. Where will I start? Do I have to delete all the jars files in webdemo/WEB-INF/lib then update my webdemo/META-INF/Manifest.mf and import the lib/bundle from my spring dm server&#039;s repository? Thanks.</description>
		<content:encoded><![CDATA[<p>Hi, I have a question regarding the migration of a war file to shared-lib war.  I have a web application using axis2 framework. Where will I start? Do I have to delete all the jars files in webdemo/WEB-INF/lib then update my webdemo/META-INF/Manifest.mf and import the lib/bundle from my spring dm server&#039;s repository? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rahul</title>
		<link>http://blog.springsource.org/2008/05/06/springsource-application-platform-deployment-options/comment-page-1/#comment-125374</link>
		<dc:creator>Rahul</dc:creator>
		<pubDate>Fri, 17 Oct 2008 14:12:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/main/2008/05/06/springsource-application-platform-deployment-options/#comment-125374</guid>
		<description>Hello Sam,

I just added the project reference and it worked fine :). Thanks for your guidance.
Next time onwords I will post my queries on forum. 

Thanks and Regards,
Rahul</description>
		<content:encoded><![CDATA[<p>Hello Sam,</p>
<p>I just added the project reference and it worked fine <img src='http://blog.springsource.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Thanks for your guidance.<br />
Next time onwords I will post my queries on forum. </p>
<p>Thanks and Regards,<br />
Rahul</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Brannen</title>
		<link>http://blog.springsource.org/2008/05/06/springsource-application-platform-deployment-options/comment-page-1/#comment-125371</link>
		<dc:creator>Sam Brannen</dc:creator>
		<pubDate>Fri, 17 Oct 2008 13:30:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/main/2008/05/06/springsource-application-platform-deployment-options/#comment-125371</guid>
		<description>Hi Rahul,

&lt;blockquote&gt;1. Shared Service is actually a bundle which exposes its operation through interface. We need to export this interfaces and domain objects through its MANIFEST.MF file so outside world can see it.&lt;/blockquote&gt;

With regard to types (i.e., classes and interfaces), yes you will need to explicitly export the corresponding packages using Export-Package in the bundle&#039;s META-INF/MANIFEST.MF file. This concept, however, is identical to the concept of exporting packages introduced in the Shared Libraries WAR. The difference between the Shared Libraries WAR and the Shared Services WAR is that the latter also makes use of the OSGi Service Registry. Please note that the word &quot;service&quot; in this context has no direct correlation to the notion of a &quot;service&quot; in the &quot;service layer&quot; of your application. In OSGi you can publish any object in the Service Registry.

&lt;blockquote&gt;2. To access this service, we need to create a consumer (e.g Web Application) which imports interface and domain objects.&lt;/blockquote&gt;

Yes, for the types, that is correct: you would import them via Import-Package statements in your web application&#039;s manifest.

&lt;blockquote&gt;The problem is that, Even after exporting from bundle MANIFEST and importing into WAR MANIFEST, classes in web application (Controller) can&#039;t see imported classes.&lt;/blockquote&gt;

This is expected due to how the STS dm Server Tools work with regard to related projects. Bundle Projects can only see the exported types of other Bundle Projects if:

a) the two projects are configured in the same PAR, or
b) the importing project has configured a &quot;Project Reference&quot; for the exporting project.

For details on this, please see the following forum thread:

http://forum.springframework.org/showthread.php?t=61559

&lt;blockquote&gt;The files module-context.xml and osgi-context.xml in bundle are referenced where and how? or they get automatically detected by dm server and gets registered as OSGI service?&lt;/blockquote&gt;

Spring-DM will by convention automatically load any *.xml files found in META-INF/spring as Spring ApplicationContext configuration files. To publish a service in the OSGi Service Registry or to consume such a service, you will need to make use of Spring-DM&#039;s &lt;osgi:service&gt; and &lt;osgi:reference&gt; XML namespace elements. You can find more information on these in the &lt;a href=&quot;http://static.springframework.org/osgi/docs/1.1.x/reference/html/&quot; rel=&quot;nofollow&quot;&gt;Spring-DM reference manual&lt;/a&gt;.

For further questions, I recommend you post to the official &lt;a href=&quot;http://forum.springframework.org/forumdisplay.php?f=53&quot; rel=&quot;nofollow&quot;&gt;SpringSource dm Server forum&lt;/a&gt;. Doing so will allow more people to provide help, and in addition others will be able to profit from your questions.

Regards,

  Sam</description>
		<content:encoded><![CDATA[<p>Hi Rahul,</p>
<blockquote><p>1. Shared Service is actually a bundle which exposes its operation through interface. We need to export this interfaces and domain objects through its MANIFEST.MF file so outside world can see it.</p></blockquote>
<p>With regard to types (i.e., classes and interfaces), yes you will need to explicitly export the corresponding packages using Export-Package in the bundle&#039;s META-INF/MANIFEST.MF file. This concept, however, is identical to the concept of exporting packages introduced in the Shared Libraries WAR. The difference between the Shared Libraries WAR and the Shared Services WAR is that the latter also makes use of the OSGi Service Registry. Please note that the word &#034;service&#034; in this context has no direct correlation to the notion of a &#034;service&#034; in the &#034;service layer&#034; of your application. In OSGi you can publish any object in the Service Registry.</p>
<blockquote><p>2. To access this service, we need to create a consumer (e.g Web Application) which imports interface and domain objects.</p></blockquote>
<p>Yes, for the types, that is correct: you would import them via Import-Package statements in your web application&#039;s manifest.</p>
<blockquote><p>The problem is that, Even after exporting from bundle MANIFEST and importing into WAR MANIFEST, classes in web application (Controller) can&#039;t see imported classes.</p></blockquote>
<p>This is expected due to how the STS dm Server Tools work with regard to related projects. Bundle Projects can only see the exported types of other Bundle Projects if:</p>
<p>a) the two projects are configured in the same PAR, or<br />
b) the importing project has configured a &#034;Project Reference&#034; for the exporting project.</p>
<p>For details on this, please see the following forum thread:</p>
<p><a href="http://forum.springframework.org/showthread.php?t=61559" rel="nofollow">http://forum.springframework.org/showthread.php?t=61559</a></p>
<blockquote><p>The files module-context.xml and osgi-context.xml in bundle are referenced where and how? or they get automatically detected by dm server and gets registered as OSGI service?</p></blockquote>
<p>Spring-DM will by convention automatically load any *.xml files found in META-INF/spring as Spring ApplicationContext configuration files. To publish a service in the OSGi Service Registry or to consume such a service, you will need to make use of Spring-DM&#039;s &lt;osgi:service&gt; and &lt;osgi:reference&gt; XML namespace elements. You can find more information on these in the <a href="http://static.springframework.org/osgi/docs/1.1.x/reference/html/" rel="nofollow">Spring-DM reference manual</a>.</p>
<p>For further questions, I recommend you post to the official <a href="http://forum.springframework.org/forumdisplay.php?f=53" rel="nofollow">SpringSource dm Server forum</a>. Doing so will allow more people to provide help, and in addition others will be able to profit from your questions.</p>
<p>Regards,</p>
<p>  Sam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rahul</title>
		<link>http://blog.springsource.org/2008/05/06/springsource-application-platform-deployment-options/comment-page-1/#comment-125367</link>
		<dc:creator>Rahul</dc:creator>
		<pubDate>Fri, 17 Oct 2008 12:47:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/main/2008/05/06/springsource-application-platform-deployment-options/#comment-125367</guid>
		<description>Hello Sam,

Here is small update on my proceedings. I could managed to develope and deploy the follwoing types of web-applications with Spring IDE and dm server.
1. Conventional WAR
2. Spring Enabled WAR.
3. Spring Enabled Shared Library War.
4. Only the bundle for Shared service.

Now I am looking forwad for Shared Service WAR. Please verify my understanding about this concept.
1. Shared Service is actually a bundle which exposes its operation throgh interface. We need to export this interfaces and domain objects through its MANIFEST.MF file so outside world can see it.
2. To access this service, we need to create a consumer (e.g Web Application) which imports interface and domain objects.

The problem is that, Even after exporting from bundle MANIFEST and importing into WAR MANIFEST, classes in web application (Controller) can&#039;t see imported classes.
The files module-context.xml and osgi-context.xml in bundle are referenced where and how? or they get automatically detected by dm server and gets registered as OSGI service?

Once the bundle is deployed, Shall I see it somewhere under &lt;&gt;\repository.

Thanks and Regards,
Rahul</description>
		<content:encoded><![CDATA[<p>Hello Sam,</p>
<p>Here is small update on my proceedings. I could managed to develope and deploy the follwoing types of web-applications with Spring IDE and dm server.<br />
1. Conventional WAR<br />
2. Spring Enabled WAR.<br />
3. Spring Enabled Shared Library War.<br />
4. Only the bundle for Shared service.</p>
<p>Now I am looking forwad for Shared Service WAR. Please verify my understanding about this concept.<br />
1. Shared Service is actually a bundle which exposes its operation throgh interface. We need to export this interfaces and domain objects through its MANIFEST.MF file so outside world can see it.<br />
2. To access this service, we need to create a consumer (e.g Web Application) which imports interface and domain objects.</p>
<p>The problem is that, Even after exporting from bundle MANIFEST and importing into WAR MANIFEST, classes in web application (Controller) can&#039;t see imported classes.<br />
The files module-context.xml and osgi-context.xml in bundle are referenced where and how? or they get automatically detected by dm server and gets registered as OSGI service?</p>
<p>Once the bundle is deployed, Shall I see it somewhere under &lt;&gt;\repository.</p>
<p>Thanks and Regards,<br />
Rahul</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rahul</title>
		<link>http://blog.springsource.org/2008/05/06/springsource-application-platform-deployment-options/comment-page-1/#comment-125155</link>
		<dc:creator>Rahul</dc:creator>
		<pubDate>Wed, 15 Oct 2008 13:11:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/main/2008/05/06/springsource-application-platform-deployment-options/#comment-125155</guid>
		<description>Hello Sam,

Thanks for your time helping me with this problem. The clarification is very neat. I will follow the steps you suggested. Looking forward to give you a good news for successful development and deployemnt of sample application with Spring IDE.

Your response was really quick !Thanks Sam !

Cheers,
Rahul</description>
		<content:encoded><![CDATA[<p>Hello Sam,</p>
<p>Thanks for your time helping me with this problem. The clarification is very neat. I will follow the steps you suggested. Looking forward to give you a good news for successful development and deployemnt of sample application with Spring IDE.</p>
<p>Your response was really quick !Thanks Sam !</p>
<p>Cheers,<br />
Rahul</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Brannen</title>
		<link>http://blog.springsource.org/2008/05/06/springsource-application-platform-deployment-options/comment-page-1/#comment-125152</link>
		<dc:creator>Sam Brannen</dc:creator>
		<pubDate>Wed, 15 Oct 2008 12:04:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/main/2008/05/06/springsource-application-platform-deployment-options/#comment-125152</guid>
		<description>Hi Rahul,

&gt; As suggested by you, I studied the sample formstag source code. It was
&gt; exactly I was looking for.

Great! I&#039;m glad that&#039;s working out for you.

&gt; Then I installed eclipse and updated it with Spring IDE through update
&gt; manager. I also successfully installed and configured Spring dm server, 
&gt; but Spring IDE doesn&#039;t seems tobe very conventional IDE&#039;s like 
&gt; Netbeans/IntelliJ Idea. I jsut wanted to create &#039;HelloWorld&#039; spring 
&gt; enabled web application, but under new project I couldn&#039;t find any j2ee 
&gt; web application option. There is option called &#039;Spring Project&#039; but it
&gt; didn&#039;t do much. I tried many other types of project but I didn&#039;t create 
&gt; a basic web application skeletion as I expect IDE to do it. Am I missing
&gt; something?

Yes, let me try to provide you an overview of the big picture for tooling support: Spring IDE is a set of plug-ins which build upon the Eclipse IDE and add support for Spring applications. The support for working with web applications is provided by the Eclipse WTP project (i.e., the Web Tools Platform). The SpringSource Tool Suite dm Server Tools are Eclipse plug-ins which support working with OSGi bundles, PAR applications, the local bundle repository for the dm Server as well as WTP Server integration for starting and stopping the dm Server and deploying applications to the server.

To create a &#039;HelloWorld&#039; spring enabled web application, you&#039;ll need to use the Web / Dynamic Web Project wizard provided with WTP. I personally recommend naming the &quot;Content Directory&quot; src/main/webapp and the &quot;Java Source Directory&quot; /src/main/java, since these paths will work well with build tools like Maven. After you&#039;ve created the web project, you can add the Spring project nature to it by right-clicking on the project folder and selecting Spring Tools / Add Spring Project Nature.

The above process will result in a Spring-enabled standard Java EE WAR. If you&#039;d like to convert it to a Shared Libraries WAR or a Shared Services WAR, you should right-click on the project and then select Spring Tools / Add OSGi Bundle Project Nature. This will enable you to use the Bundle Manifest Editor when editing src/main/webapp/META-INF/MANIFEST.MF. Your web project will also now be able to use the manifest classpath container.

To create a Web Module, you should create a new project using the SpringSource dm Server / Bundle Project wizard. You will then need to create the MODULE-INF and META-INF directories in a path which is configured to be on the Eclipse project&#039;s classpath. I recommend placing MODULE-INF and META-INF in src/main/resources.

&gt; I searched the fourums and realised that many people are facing the same 
&gt; problem. Could you please suggest a right way to go about it.

If you are unfamiliar with any of the terms or concepts I mentioned above, I recommend you consult the following resources:

1) Tooling chapter of the dm Server Programmer Guide:
http://static.springsource.com/projects/dm-server/1.0.x/programmer-guide/htmlsingle/programmer-guide.html#tooling

2) Eclipse WTP: http://www.eclipse.org/webtools/

&gt; If there are any step-by-step tutorial then that would also help.

At the moment, there isn&#039;t a step-by-step tutorial per se which demonstrates exactly how to create web applications for the dm Server using the STS dm Server Tools, but this is certainly something we are considering adding to the Programmer Guide.

Regards,

Sam</description>
		<content:encoded><![CDATA[<p>Hi Rahul,</p>
<p>> As suggested by you, I studied the sample formstag source code. It was<br />
> exactly I was looking for.</p>
<p>Great! I&#039;m glad that&#039;s working out for you.</p>
<p>> Then I installed eclipse and updated it with Spring IDE through update<br />
> manager. I also successfully installed and configured Spring dm server,<br />
> but Spring IDE doesn&#039;t seems tobe very conventional IDE&#039;s like<br />
> Netbeans/IntelliJ Idea. I jsut wanted to create &#039;HelloWorld&#039; spring<br />
> enabled web application, but under new project I couldn&#039;t find any j2ee<br />
> web application option. There is option called &#039;Spring Project&#039; but it<br />
> didn&#039;t do much. I tried many other types of project but I didn&#039;t create<br />
> a basic web application skeletion as I expect IDE to do it. Am I missing<br />
> something?</p>
<p>Yes, let me try to provide you an overview of the big picture for tooling support: Spring IDE is a set of plug-ins which build upon the Eclipse IDE and add support for Spring applications. The support for working with web applications is provided by the Eclipse WTP project (i.e., the Web Tools Platform). The SpringSource Tool Suite dm Server Tools are Eclipse plug-ins which support working with OSGi bundles, PAR applications, the local bundle repository for the dm Server as well as WTP Server integration for starting and stopping the dm Server and deploying applications to the server.</p>
<p>To create a &#039;HelloWorld&#039; spring enabled web application, you&#039;ll need to use the Web / Dynamic Web Project wizard provided with WTP. I personally recommend naming the &#034;Content Directory&#034; src/main/webapp and the &#034;Java Source Directory&#034; /src/main/java, since these paths will work well with build tools like Maven. After you&#039;ve created the web project, you can add the Spring project nature to it by right-clicking on the project folder and selecting Spring Tools / Add Spring Project Nature.</p>
<p>The above process will result in a Spring-enabled standard Java EE WAR. If you&#039;d like to convert it to a Shared Libraries WAR or a Shared Services WAR, you should right-click on the project and then select Spring Tools / Add OSGi Bundle Project Nature. This will enable you to use the Bundle Manifest Editor when editing src/main/webapp/META-INF/MANIFEST.MF. Your web project will also now be able to use the manifest classpath container.</p>
<p>To create a Web Module, you should create a new project using the SpringSource dm Server / Bundle Project wizard. You will then need to create the MODULE-INF and META-INF directories in a path which is configured to be on the Eclipse project&#039;s classpath. I recommend placing MODULE-INF and META-INF in src/main/resources.</p>
<p>> I searched the fourums and realised that many people are facing the same<br />
> problem. Could you please suggest a right way to go about it.</p>
<p>If you are unfamiliar with any of the terms or concepts I mentioned above, I recommend you consult the following resources:</p>
<p>1) Tooling chapter of the dm Server Programmer Guide:<br />
<a href="http://static.springsource.com/projects/dm-server/1.0.x/programmer-guide/htmlsingle/programmer-guide.html#tooling" rel="nofollow">http://static.springsource.com/projects/dm-server/1.0.x/programmer-guide/htmlsingle/programmer-guide.html#tooling</a></p>
<p>2) Eclipse WTP: <a href="http://www.eclipse.org/webtools/" rel="nofollow">http://www.eclipse.org/webtools/</a></p>
<p>> If there are any step-by-step tutorial then that would also help.</p>
<p>At the moment, there isn&#039;t a step-by-step tutorial per se which demonstrates exactly how to create web applications for the dm Server using the STS dm Server Tools, but this is certainly something we are considering adding to the Programmer Guide.</p>
<p>Regards,</p>
<p>Sam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rahul</title>
		<link>http://blog.springsource.org/2008/05/06/springsource-application-platform-deployment-options/comment-page-1/#comment-125142</link>
		<dc:creator>Rahul</dc:creator>
		<pubDate>Wed, 15 Oct 2008 09:26:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/main/2008/05/06/springsource-application-platform-deployment-options/#comment-125142</guid>
		<description>Hello Sam,

As suggested by you, I studied the sample formstag source code. It was exactly I was looking for.
Then I installed eclipse and updated it with Spring IDE through update manager. I also successfully installed and configured Spring dm server, but Spring IDE doesn&#039;t seems tobe very conventional IDE&#039;s like Netbeans/IntelliJ Idea. I jsut wanted to create &#039;HelloWorld&#039; spring enabled web application, but under new project I couldn&#039;t find any j2ee web application option. There is option called &#039;Spring Project&#039; but it didn&#039;t do much. I tried many other types of project but I didn&#039;t create a basic web application skeletion as I expect IDE to do it. Am I missing something?

I searched the fourums and realised that many people are facing the same problem. Could you please suggest a right way to go about it. If there are any step-by-step tutorial then that would also help.

Thanks and Regards,
Rahul</description>
		<content:encoded><![CDATA[<p>Hello Sam,</p>
<p>As suggested by you, I studied the sample formstag source code. It was exactly I was looking for.<br />
Then I installed eclipse and updated it with Spring IDE through update manager. I also successfully installed and configured Spring dm server, but Spring IDE doesn&#039;t seems tobe very conventional IDE&#039;s like Netbeans/IntelliJ Idea. I jsut wanted to create &#039;HelloWorld&#039; spring enabled web application, but under new project I couldn&#039;t find any j2ee web application option. There is option called &#039;Spring Project&#039; but it didn&#039;t do much. I tried many other types of project but I didn&#039;t create a basic web application skeletion as I expect IDE to do it. Am I missing something?</p>
<p>I searched the fourums and realised that many people are facing the same problem. Could you please suggest a right way to go about it. If there are any step-by-step tutorial then that would also help.</p>
<p>Thanks and Regards,<br />
Rahul</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rahul</title>
		<link>http://blog.springsource.org/2008/05/06/springsource-application-platform-deployment-options/comment-page-1/#comment-124978</link>
		<dc:creator>Rahul</dc:creator>
		<pubDate>Tue, 14 Oct 2008 09:31:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/main/2008/05/06/springsource-application-platform-deployment-options/#comment-124978</guid>
		<description>Hello sam,

Thanks for the information and the links. I will surely jump into those sample applications.

Thanks and Regards,
Rahul</description>
		<content:encoded><![CDATA[<p>Hello sam,</p>
<p>Thanks for the information and the links. I will surely jump into those sample applications.</p>
<p>Thanks and Regards,<br />
Rahul</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Brannen</title>
		<link>http://blog.springsource.org/2008/05/06/springsource-application-platform-deployment-options/comment-page-1/#comment-124860</link>
		<dc:creator>Sam Brannen</dc:creator>
		<pubDate>Mon, 13 Oct 2008 11:08:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/main/2008/05/06/springsource-application-platform-deployment-options/#comment-124860</guid>
		<description>Hi Rahul,

I haven&#039;t yet made the &quot;hello&quot; demos I used at Spring in Finance eXchange available for download; however, if you visit the SpringSource dm Server community page (see link below), you can download the Form Tags sample application which also walks you through the migration process from a standard Java EE WAR all the way to a Web Module within a PAR. 

Links to sample applications: http://www.springframework.org/dmserver

In addition, the migration process is described in detail in chapter 7 of the Programmer Guide. You can read more about that here:

http://static.springsource.com/projects/dm-server/1.0.x/programmer-guide/htmlsingle/programmer-guide.html#formtags-case-study

Hope this helps!

Sam</description>
		<content:encoded><![CDATA[<p>Hi Rahul,</p>
<p>I haven&#039;t yet made the &#034;hello&#034; demos I used at Spring in Finance eXchange available for download; however, if you visit the SpringSource dm Server community page (see link below), you can download the Form Tags sample application which also walks you through the migration process from a standard Java EE WAR all the way to a Web Module within a PAR. </p>
<p>Links to sample applications: <a href="http://www.springframework.org/dmserver" rel="nofollow">http://www.springframework.org/dmserver</a></p>
<p>In addition, the migration process is described in detail in chapter 7 of the Programmer Guide. You can read more about that here:</p>
<p><a href="http://static.springsource.com/projects/dm-server/1.0.x/programmer-guide/htmlsingle/programmer-guide.html#formtags-case-study" rel="nofollow">http://static.springsource.com/projects/dm-server/1.0.x/programmer-guide/htmlsingle/programmer-guide.html#formtags-case-study</a></p>
<p>Hope this helps!</p>
<p>Sam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rahul Hinge</title>
		<link>http://blog.springsource.org/2008/05/06/springsource-application-platform-deployment-options/comment-page-1/#comment-124790</link>
		<dc:creator>Rahul Hinge</dc:creator>
		<pubDate>Sun, 12 Oct 2008 20:32:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/main/2008/05/06/springsource-application-platform-deployment-options/#comment-124790</guid>
		<description>Hello Sam,
I have participated in Seminar on e-finance in London on 10 Oct 2008. Could you please share the source code for the demo you presented for &#039;Standard WAR&#039;, &#039;Shared Library WAR&#039; and &#039;Shared Service WAR&#039;. This will help me getting hand&#039;s on with this.

Thanks and Regards,
Rahul</description>
		<content:encoded><![CDATA[<p>Hello Sam,<br />
I have participated in Seminar on e-finance in London on 10 Oct 2008. Could you please share the source code for the demo you presented for &#039;Standard WAR&#039;, &#039;Shared Library WAR&#039; and &#039;Shared Service WAR&#039;. This will help me getting hand&#039;s on with this.</p>
<p>Thanks and Regards,<br />
Rahul</p>
]]></content:encoded>
	</item>
</channel>
</rss>

