<?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: Publish a WebService from a POJA (plain old Java application) &#8211; that is: out of the container using EndPoint class</title>
	<atom:link href="http://technology.amis.nl/2009/06/05/publish-a-webservice-from-a-poja-plain-old-java-application-that-is-out-of-the-container-using-endpoint-class/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2009/06/05/publish-a-webservice-from-a-poja-plain-old-java-application-that-is-out-of-the-container-using-endpoint-class/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=publish-a-webservice-from-a-poja-plain-old-java-application-that-is-out-of-the-container-using-endpoint-class</link>
	<description></description>
	<lastBuildDate>Fri, 12 Apr 2013 10:04:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: peter</title>
		<link>http://technology.amis.nl/2009/06/05/publish-a-webservice-from-a-poja-plain-old-java-application-that-is-out-of-the-container-using-endpoint-class/#comment-5775</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Mon, 28 Nov 2011 18:29:54 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=5560#comment-5775</guid>
		<description><![CDATA[Hi ALL
I need to implement above featuer, hosting a webservice through POJO in Java 1.5. can anyone provide me steps to implement if possible.
Thanks in advance
PETER]]></description>
		<content:encoded><![CDATA[<p>Hi ALL<br />
I need to implement above featuer, hosting a webservice through POJO in Java 1.5. can anyone provide me steps to implement if possible.<br />
Thanks in advance<br />
PETER</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Graham Williamson</title>
		<link>http://technology.amis.nl/2009/06/05/publish-a-webservice-from-a-poja-plain-old-java-application-that-is-out-of-the-container-using-endpoint-class/#comment-5774</link>
		<dc:creator>Graham Williamson</dc:creator>
		<pubDate>Mon, 29 Jun 2009 15:45:19 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=5560#comment-5774</guid>
		<description><![CDATA[Hi Lucas

Yeah, it is very cool that this functionality is now *built-in* to JSE.

I read somewhere that Sun&#039;s reasoning for including it in the standard edition was similar to the provision of RMI in the standard edition.

Cheers
Graham]]></description>
		<content:encoded><![CDATA[<p>Hi Lucas</p>
<p>Yeah, it is very cool that this functionality is now *built-in* to JSE.</p>
<p>I read somewhere that Sun&#8217;s reasoning for including it in the standard edition was similar to the provision of RMI in the standard edition.</p>
<p>Cheers<br />
Graham</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Jellema</title>
		<link>http://technology.amis.nl/2009/06/05/publish-a-webservice-from-a-poja-plain-old-java-application-that-is-out-of-the-container-using-endpoint-class/#comment-5773</link>
		<dc:creator>Lucas Jellema</dc:creator>
		<pubDate>Mon, 29 Jun 2009 06:09:07 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=5560#comment-5773</guid>
		<description><![CDATA[Hi Graham, &lt;br /&gt;Thanks for your comments and the useful resource link. Of course my article did not so much go into details of exposing Java based functionality as a WebService as such - that topic has been covered at length in many places and is also largely done for us by IDEs such as JDeveloper. The real essence of this brief post was the fact that you can publish a WebService in J2SE - outside of the container - at an EndPoint that is largely user definable. &lt;br /&gt;
Lucas]]></description>
		<content:encoded><![CDATA[<p>Hi Graham, <br />Thanks for your comments and the useful resource link. Of course my article did not so much go into details of exposing Java based functionality as a WebService as such &#8211; that topic has been covered at length in many places and is also largely done for us by IDEs such as JDeveloper. The real essence of this brief post was the fact that you can publish a WebService in J2SE &#8211; outside of the container &#8211; at an EndPoint that is largely user definable. <br />
Lucas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Graham Williamson</title>
		<link>http://technology.amis.nl/2009/06/05/publish-a-webservice-from-a-poja-plain-old-java-application-that-is-out-of-the-container-using-endpoint-class/#comment-5772</link>
		<dc:creator>Graham Williamson</dc:creator>
		<pubDate>Wed, 24 Jun 2009 08:43:02 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=5560#comment-5772</guid>
		<description><![CDATA[Hi

Your post is certainly a nice starting place for exposing a POJO as a web service, but for anything other than trivial Hello World applications developers will need a lot more information regarding the exposure of complex data types, programming to interfaces (JAXB fun), error handling, etc. While none of these topics are really complicated, there are a number of conventions that must be adhered to and ... well... known gotchas, if you like.

I&#039;ve documented my experience of exposing a real-world application and all of the issues it brings here: http://invertedindex.wordpress.com/2009/05/04/java-6-web-services/. The post also provides a selection of the best links on the topic of Java SE 6 / Mustang web services, from the original Sun tutorials (also blog posts).

Cheers
Graham]]></description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Your post is certainly a nice starting place for exposing a POJO as a web service, but for anything other than trivial Hello World applications developers will need a lot more information regarding the exposure of complex data types, programming to interfaces (JAXB fun), error handling, etc. While none of these topics are really complicated, there are a number of conventions that must be adhered to and &#8230; well&#8230; known gotchas, if you like.</p>
<p>I&#8217;ve documented my experience of exposing a real-world application and all of the issues it brings here: <a href="http://invertedindex.wordpress.com/2009/05/04/java-6-web-services/" rel="nofollow">http://invertedindex.wordpress.com/2009/05/04/java-6-web-services/</a>. The post also provides a selection of the best links on the topic of Java SE 6 / Mustang web services, from the original Sun tutorials (also blog posts).</p>
<p>Cheers<br />
Graham</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emiel Paasschens</title>
		<link>http://technology.amis.nl/2009/06/05/publish-a-webservice-from-a-poja-plain-old-java-application-that-is-out-of-the-container-using-endpoint-class/#comment-5771</link>
		<dc:creator>Emiel Paasschens</dc:creator>
		<pubDate>Mon, 08 Jun 2009 10:08:17 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=5560#comment-5771</guid>
		<description><![CDATA[Wow, that&#039;s quite nice and powerful! This will create a lot of other possibilities. How about when running Java on the client, as in a applet, ... I can not think of sensible functionality, but I&#039;m sure someone will (peer2peer application communicating with webservices?).]]></description>
		<content:encoded><![CDATA[<p>Wow, that&#8217;s quite nice and powerful! This will create a lot of other possibilities. How about when running Java on the client, as in a applet, &#8230; I can not think of sensible functionality, but I&#8217;m sure someone will (peer2peer application communicating with webservices?).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
