<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>indiWiz.com &#187; jax-ws</title>
	<atom:link href="http://indiwiz.com/tag/jax-ws/feed/" rel="self" type="application/rss+xml" />
	<link>http://indiwiz.com</link>
	<description>Subhash&#039;s Tech Log</description>
	<lastBuildDate>Sun, 29 Apr 2012 15:11:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WebService Client in JAX-WS (Java 6 and above)</title>
		<link>http://indiwiz.com/2008/12/30/webservice-client-in-jax-ws-java-6-and-above/</link>
		<comments>http://indiwiz.com/2008/12/30/webservice-client-in-jax-ws-java-6-and-above/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 12:40:50 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[jax-ws]]></category>
		<category><![CDATA[webservice]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=114</guid>
		<description><![CDATA[Given a WSDL URL, you may generate the Java client classes using the JDK provided tool wsimport. The basic usage: $ wsimport &#60;wsdl_url&#62; The common command-line parameters supported by this tool: -p specifies the target package -d folder where generated class files are placed]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>Given a WSDL URL, you may generate the Java client classes using the JDK provided tool <tt>wsimport</tt>. The basic usage:</p>
<pre>
$ wsimport &lt;wsdl_url&gt;
</pre>
<p>The common command-line parameters supported by this tool:</p>
<table border="0" cellpadding="10" cellspacing="5">
<tr>
<td><tt>-p</tt></td>
<td>specifies the target package</td>
</tr>
<tr>
<td><tt>-d</tt></td>
<td>folder where generated class files are placed</td>
</tr>
</table>
<div class="shr-publisher-114"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2008/12/30/webservice-client-in-jax-ws-java-6-and-above/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick WebService in Java 6</title>
		<link>http://indiwiz.com/2008/11/18/quick-webservice-in-java-6/</link>
		<comments>http://indiwiz.com/2008/11/18/quick-webservice-in-java-6/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 09:16:13 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[jax-ws]]></category>
		<category><![CDATA[webservice]]></category>

		<guid isPermaLink="false">http://indiwiz.wordpress.com/?p=15</guid>
		<description><![CDATA[To write a quick JAX-WS webservice in Java 6: To compile and run: $ apt -d bin/ MyWebService.java $ java -cp bin test.MyWebService]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>To write a quick JAX-WS webservice in Java 6:</p>
<pre class="brush: java; title: ; notranslate">
package test;

import javax.xml.ws.Endpoint;

@javax.jws.WebService
public class MyWebService{

  @javax.jws.WebMethod
  public String getQuote(String name){
    return &quot;1234.56&quot;;
  }

  public static void main(String[] arg){
    Endpoint end = Endpoint.create(new MyWebService());
    end.publish(&quot;http://localhost:1000/MyWebService&quot;);
  }
}
</pre>
<p>To compile and run:</p>
<pre>
$ apt -d bin/ MyWebService.java
$ java -cp bin test.MyWebService
</pre>
<div class="shr-publisher-15"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2008/11/18/quick-webservice-in-java-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

