<?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: Java Web Service Annotations in Tomcat</title>
	<atom:link href="http://byprogrammerforprogrammer.com/2009/11/java-web-service-annotations-in-tomcat/feed/" rel="self" type="application/rss+xml" />
	<link>http://byprogrammerforprogrammer.com/2009/11/java-web-service-annotations-in-tomcat/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=java-web-service-annotations-in-tomcat</link>
	<description>Here I lay down the useful tips, tricks and utilities for programmers like myself.</description>
	<lastBuildDate>Mon, 09 Apr 2012 00:08:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Micha Roon</title>
		<link>http://byprogrammerforprogrammer.com/2009/11/java-web-service-annotations-in-tomcat/comment-page-1/#comment-375</link>
		<dc:creator>Micha Roon</dc:creator>
		<pubDate>Mon, 09 Apr 2012 00:08:10 +0000</pubDate>
		<guid isPermaLink="false">http://byprogrammerforprogrammer.com/?p=43#comment-375</guid>
		<description>using maven, it becomes as easy as adding this dependency to your POM

      
         org.glassfish.metro
         webservices-rt
         2.2
      

the sun-jaxws.xmll is still needed though.</description>
		<content:encoded><![CDATA[<p>using maven, it becomes as easy as adding this dependency to your POM</p>
<p>         org.glassfish.metro<br />
         webservices-rt<br />
         2.2</p>
<p>the sun-jaxws.xmll is still needed though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sridhar</title>
		<link>http://byprogrammerforprogrammer.com/2009/11/java-web-service-annotations-in-tomcat/comment-page-1/#comment-362</link>
		<dc:creator>sridhar</dc:creator>
		<pubDate>Wed, 14 Mar 2012 19:49:21 +0000</pubDate>
		<guid isPermaLink="false">http://byprogrammerforprogrammer.com/?p=43#comment-362</guid>
		<description>Really cool stuff. this give me a good start.</description>
		<content:encoded><![CDATA[<p>Really cool stuff. this give me a good start.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Inifur</title>
		<link>http://byprogrammerforprogrammer.com/2009/11/java-web-service-annotations-in-tomcat/comment-page-1/#comment-334</link>
		<dc:creator>Inifur</dc:creator>
		<pubDate>Thu, 16 Feb 2012 11:56:54 +0000</pubDate>
		<guid isPermaLink="false">http://byprogrammerforprogrammer.com/?p=43#comment-334</guid>
		<description>Good Work!</description>
		<content:encoded><![CDATA[<p>Good Work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Norman</title>
		<link>http://byprogrammerforprogrammer.com/2009/11/java-web-service-annotations-in-tomcat/comment-page-1/#comment-331</link>
		<dc:creator>Norman</dc:creator>
		<pubDate>Wed, 25 Jan 2012 11:24:32 +0000</pubDate>
		<guid isPermaLink="false">http://byprogrammerforprogrammer.com/?p=43#comment-331</guid>
		<description>Here is a example of Annotations for fields in SOAP Header fields.




package org.web.service;

import javax.jws.WebService;
import javax.jws.WebMethod;
import javax.jws.WebParam;

@WebService(serviceName = &quot;NewWebService&quot;)
public class NewWebService {

    @WebMethod(operationName = &quot;hello&quot;)
    public String hello(
            @WebParam(name = &quot;name&quot;) String txt, 
            @WebParam(name = &quot;Password&quot;, header = true)  String Password,
            @WebParam(name = &quot;UserName&quot;, header = true)  String UserName
            ) {
        
        
        return &quot;Hello &quot; + txt + &quot; UserName : &quot;+UserName+&quot;  Password : &quot;+Password;
    }
}</description>
		<content:encoded><![CDATA[<p>Here is a example of Annotations for fields in SOAP Header fields.</p>
<p>package org.web.service;</p>
<p>import javax.jws.WebService;<br />
import javax.jws.WebMethod;<br />
import javax.jws.WebParam;</p>
<p>@WebService(serviceName = &#8220;NewWebService&#8221;)<br />
public class NewWebService {</p>
<p>    @WebMethod(operationName = &#8220;hello&#8221;)<br />
    public String hello(<br />
            @WebParam(name = &#8220;name&#8221;) String txt,<br />
            @WebParam(name = &#8220;Password&#8221;, header = true)  String Password,<br />
            @WebParam(name = &#8220;UserName&#8221;, header = true)  String UserName<br />
            ) {</p>
<p>        return &#8220;Hello &#8221; + txt + &#8221; UserName : &#8220;+UserName+&#8221;  Password : &#8220;+Password;<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JAX-WS by craigmalm - Pearltrees</title>
		<link>http://byprogrammerforprogrammer.com/2009/11/java-web-service-annotations-in-tomcat/comment-page-1/#comment-313</link>
		<dc:creator>JAX-WS by craigmalm - Pearltrees</dc:creator>
		<pubDate>Sat, 10 Dec 2011 05:11:44 +0000</pubDate>
		<guid isPermaLink="false">http://byprogrammerforprogrammer.com/?p=43#comment-313</guid>
		<description>[...] Download Metro 1.5 binary (or latest point release) at https://metro.dev.java.net/1.5/ Run java -jar metro-1_5.jar to unpack the contents of the jar Follow these instructions to create a web service from our example class above:  Java Web Service Annotations in Tomcat - By Programmer For Programmer [...]</description>
		<content:encoded><![CDATA[<p>[...] Download Metro 1.5 binary (or latest point release) at <a href="https://metro.dev.java.net/1.5/" rel="nofollow">https://metro.dev.java.net/1.5/</a> Run java -jar metro-1_5.jar to unpack the contents of the jar Follow these instructions to create a web service from our example class above:  Java Web Service Annotations in Tomcat &#8211; By Programmer For Programmer [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rastafire</title>
		<link>http://byprogrammerforprogrammer.com/2009/11/java-web-service-annotations-in-tomcat/comment-page-1/#comment-28</link>
		<dc:creator>Rastafire</dc:creator>
		<pubDate>Fri, 29 Apr 2011 15:37:15 +0000</pubDate>
		<guid isPermaLink="false">http://byprogrammerforprogrammer.com/?p=43#comment-28</guid>
		<description>Thank you so much for this little abstract :)</description>
		<content:encoded><![CDATA[<p>Thank you so much for this little abstract <img src='http://byprogrammerforprogrammer.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steph</title>
		<link>http://byprogrammerforprogrammer.com/2009/11/java-web-service-annotations-in-tomcat/comment-page-1/#comment-24</link>
		<dc:creator>Steph</dc:creator>
		<pubDate>Fri, 01 Oct 2010 20:28:53 +0000</pubDate>
		<guid isPermaLink="false">http://byprogrammerforprogrammer.com/?p=43#comment-24</guid>
		<description>Working ... thanks a lot !
Hopefully you&#039;re here otherwise how could we know this tips ???</description>
		<content:encoded><![CDATA[<p>Working &#8230; thanks a lot !<br />
Hopefully you&#8217;re here otherwise how could we know this tips ???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aswini De</title>
		<link>http://byprogrammerforprogrammer.com/2009/11/java-web-service-annotations-in-tomcat/comment-page-1/#comment-22</link>
		<dc:creator>Aswini De</dc:creator>
		<pubDate>Tue, 27 Jul 2010 09:20:42 +0000</pubDate>
		<guid isPermaLink="false">http://byprogrammerforprogrammer.com/?p=43#comment-22</guid>
		<description>This article was fantastic...It helps me a lot...here we have made some changes in sun-jaxws.xml file..</description>
		<content:encoded><![CDATA[<p>This article was fantastic&#8230;It helps me a lot&#8230;here we have made some changes in sun-jaxws.xml file..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mario</title>
		<link>http://byprogrammerforprogrammer.com/2009/11/java-web-service-annotations-in-tomcat/comment-page-1/#comment-20</link>
		<dc:creator>Mario</dc:creator>
		<pubDate>Mon, 08 Mar 2010 15:06:39 +0000</pubDate>
		<guid isPermaLink="false">http://byprogrammerforprogrammer.com/?p=43#comment-20</guid>
		<description>superb! The tutorial helps me a lot THX!</description>
		<content:encoded><![CDATA[<p>superb! The tutorial helps me a lot THX!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shameer</title>
		<link>http://byprogrammerforprogrammer.com/2009/11/java-web-service-annotations-in-tomcat/comment-page-1/#comment-19</link>
		<dc:creator>Shameer</dc:creator>
		<pubDate>Mon, 08 Mar 2010 07:23:54 +0000</pubDate>
		<guid isPermaLink="false">http://byprogrammerforprogrammer.com/?p=43#comment-19</guid>
		<description>great Article.

I was evaluating metro[jax-ws] webservices with tomcat.
After finding this tutorial things became smooth.

hats off!!</description>
		<content:encoded><![CDATA[<p>great Article.</p>
<p>I was evaluating metro[jax-ws] webservices with tomcat.<br />
After finding this tutorial things became smooth.</p>
<p>hats off!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

