<?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 for Vineet Manohar's blog</title>
	<atom:link href="http://www.vineetmanohar.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vineetmanohar.com</link>
	<description>Java, Web 2.0 and other Tech topics</description>
	<lastBuildDate>Thu, 02 Feb 2012 20:38:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on 3 ways to run Java main from Maven by vineet</title>
		<link>http://www.vineetmanohar.com/2009/11/3-ways-to-run-java-main-from-maven/comment-page-1/#comment-84037</link>
		<dc:creator>vineet</dc:creator>
		<pubDate>Thu, 02 Feb 2012 20:38:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.vineetmanohar.com/?p=584#comment-84037</guid>
		<description>Looks right to me.

I would try the following:
1) Try mvn -X to generate more debug info.
2) Also try the other approach as described in section 2) above: &quot;Running in a phase in pom.xml&quot;, see if that works.</description>
		<content:encoded><![CDATA[<p>Looks right to me.</p>
<p>I would try the following:<br />
1) Try mvn -X to generate more debug info.<br />
2) Also try the other approach as described in section 2) above: &#8220;Running in a phase in pom.xml&#8221;, see if that works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 3 ways to run Java main from Maven by Tensy</title>
		<link>http://www.vineetmanohar.com/2009/11/3-ways-to-run-java-main-from-maven/comment-page-1/#comment-84028</link>
		<dc:creator>Tensy</dc:creator>
		<pubDate>Thu, 02 Feb 2012 19:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.vineetmanohar.com/?p=584#comment-84028</guid>
		<description>Hi Vineet, This post is really useful.
However, when I try to run the command, I see the following.
Command: mvn org.codehaus.mojo:exec-maven-plugin:1.2:java -e -Dexec.mainClass=com.myclass.Wsdl2XsdConverter

An exception occured while executing the Java class. com.myclass.Wsdl2XsdConverter
INFO] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: An exception occured while executing the Java class. com.myclass.Wsdl2XsdConverter
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:703)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandaloneGoal(DefaultLifecycleExecutor.java:553)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:523)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:371)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:332)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:181)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:356)
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:137)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:356)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:592)
	at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
	at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
	at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
	at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
Caused by: org.apache.maven.plugin.MojoExecutionException: An exception occured while executing the Java class. com.qpass.googlecarrierbilling.Wsdl2XsdConverter
	at org.codehaus.mojo.exec.ExecJavaMojo.execute(ExecJavaMojo.java:346)
	at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:483)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:678)
	... 16 more
Caused by: java.lang.ClassNotFoundException: com.myclass.Wsdl2XsdConverter
	at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
	at java.security.AccessController.doPrivileged(Native Method)
	at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
	at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:284)
	at java.lang.Thread.run(Thread.java:595)

I run the mvn compile command also prior to running the above mentioned mvn command.
Any help is greatly appreciated.</description>
		<content:encoded><![CDATA[<p>Hi Vineet, This post is really useful.<br />
However, when I try to run the command, I see the following.<br />
Command: mvn org.codehaus.mojo:exec-maven-plugin:1.2:java -e -Dexec.mainClass=com.myclass.Wsdl2XsdConverter</p>
<p>An exception occured while executing the Java class. com.myclass.Wsdl2XsdConverter<br />
INFO] Trace<br />
org.apache.maven.lifecycle.LifecycleExecutionException: An exception occured while executing the Java class. com.myclass.Wsdl2XsdConverter<br />
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:703)<br />
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandaloneGoal(DefaultLifecycleExecutor.java:553)<br />
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:523)<br />
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:371)<br />
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:332)<br />
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:181)<br />
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:356)<br />
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:137)<br />
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:356)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)<br />
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)<br />
	at java.lang.reflect.Method.invoke(Method.java:592)<br />
	at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)<br />
	at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)<br />
	at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)<br />
	at org.codehaus.classworlds.Launcher.main(Launcher.java:375)<br />
Caused by: org.apache.maven.plugin.MojoExecutionException: An exception occured while executing the Java class. com.qpass.googlecarrierbilling.Wsdl2XsdConverter<br />
	at org.codehaus.mojo.exec.ExecJavaMojo.execute(ExecJavaMojo.java:346)<br />
	at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:483)<br />
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:678)<br />
	&#8230; 16 more<br />
Caused by: java.lang.ClassNotFoundException: com.myclass.Wsdl2XsdConverter<br />
	at java.net.URLClassLoader$1.run(URLClassLoader.java:200)<br />
	at java.security.AccessController.doPrivileged(Native Method)<br />
	at java.net.URLClassLoader.findClass(URLClassLoader.java:188)<br />
	at java.lang.ClassLoader.loadClass(ClassLoader.java:307)<br />
	at java.lang.ClassLoader.loadClass(ClassLoader.java:252)<br />
	at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:284)<br />
	at java.lang.Thread.run(Thread.java:595)</p>
<p>I run the mvn compile command also prior to running the above mentioned mvn command.<br />
Any help is greatly appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to trim() No-Break space (&#160;) when parsing HTML by Christian R. Conrad</title>
		<link>http://www.vineetmanohar.com/2009/06/how-to-trim-no-break-space-when-parsing-html/comment-page-1/#comment-83961</link>
		<dc:creator>Christian R. Conrad</dc:creator>
		<pubDate>Thu, 02 Feb 2012 12:24:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.vineetmanohar.com/?p=267#comment-83961</guid>
		<description>OK, so add &quot;ampersand-nbsp-semicolon&quot; into my previous comment in quite a few places, where now it has those mysterious empty quotes &quot; &quot; ... :-)</description>
		<content:encoded><![CDATA[<p>OK, so add &#8220;ampersand-nbsp-semicolon&#8221; into my previous comment in quite a few places, where now it has those mysterious empty quotes &#8221; &#8221; &#8230; <img src='http://www.vineetmanohar.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to trim() No-Break space (&#160;) when parsing HTML by Christian R. Conrad</title>
		<link>http://www.vineetmanohar.com/2009/06/how-to-trim-no-break-space-when-parsing-html/comment-page-1/#comment-83960</link>
		<dc:creator>Christian R. Conrad</dc:creator>
		<pubDate>Thu, 02 Feb 2012 12:22:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.vineetmanohar.com/?p=267#comment-83960</guid>
		<description>Hello!

Vineet, you make it sound as if there&#039;s some mistake or something wrong with translating &quot;&#160;&quot; into a non-breaking space instead of just an ordinary blank space. But that is exactly what &quot;&#160;&quot; means -- &quot;Non-Breaking SPace&quot;. (What did you think the characters N, B, S, and P in the entity stand for?)

If there is a problem, it is absolutely not with converting &quot;&#160;&quot; to ASCII 160, but with trim() and Java functions like it -- if anything should change, then those functions should be changed to handle valid characters correctly, not the perfectly correct conversion.

Or, hey, come to think of it, maybe it&#039;s just your expectations that are wrong: Since &quot;&#160;&quot; is explicitely intended to be _Non-Breaking_, why on Earth would you think it should be handled like an ordinary space by &quot;trim()&quot;? The whole point of a Non-Breaking Space is that it is NOT to be considered a word boundary, but left intact with the letters to either side of it, just like an ordinary letter.

Or, in other words: NOT to be handled like an ordinary space is exactly what &quot;&#160;&quot; IS FOR. So for the conversion to convert it to ASCII 160, and for trim() NOT to trim that character, seems to me (from your terse description) to be precisely the correct behaviour.

HTH!</description>
		<content:encoded><![CDATA[<p>Hello!</p>
<p>Vineet, you make it sound as if there&#8217;s some mistake or something wrong with translating &#8220;&nbsp;&#8221; into a non-breaking space instead of just an ordinary blank space. But that is exactly what &#8220;&nbsp;&#8221; means &#8212; &#8220;Non-Breaking SPace&#8221;. (What did you think the characters N, B, S, and P in the entity stand for?)</p>
<p>If there is a problem, it is absolutely not with converting &#8220;&nbsp;&#8221; to ASCII 160, but with trim() and Java functions like it &#8212; if anything should change, then those functions should be changed to handle valid characters correctly, not the perfectly correct conversion.</p>
<p>Or, hey, come to think of it, maybe it&#8217;s just your expectations that are wrong: Since &#8220;&nbsp;&#8221; is explicitely intended to be _Non-Breaking_, why on Earth would you think it should be handled like an ordinary space by &#8220;trim()&#8221;? The whole point of a Non-Breaking Space is that it is NOT to be considered a word boundary, but left intact with the letters to either side of it, just like an ordinary letter.</p>
<p>Or, in other words: NOT to be handled like an ordinary space is exactly what &#8220;&nbsp;&#8221; IS FOR. So for the conversion to convert it to ASCII 160, and for trim() NOT to trim that character, seems to me (from your terse description) to be precisely the correct behaviour.</p>
<p>HTH!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 3 ways to run Java main from Maven by Anil Kesariya</title>
		<link>http://www.vineetmanohar.com/2009/11/3-ways-to-run-java-main-from-maven/comment-page-1/#comment-83906</link>
		<dc:creator>Anil Kesariya</dc:creator>
		<pubDate>Thu, 02 Feb 2012 05:42:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.vineetmanohar.com/?p=584#comment-83906</guid>
		<description>hello  i m anil

i m first time working with maven.. so i dont that how should we work with it , i got lession that how we can generate jar file from our java file using maven 
so please tell me that how should i work with it..i have only one day dead line..</description>
		<content:encoded><![CDATA[<p>hello  i m anil</p>
<p>i m first time working with maven.. so i dont that how should we work with it , i got lession that how we can generate jar file from our java file using maven<br />
so please tell me that how should i work with it..i have only one day dead line..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to SSH without password by Arpit Pandey</title>
		<link>http://www.vineetmanohar.com/2009/07/howto-ssh-without-password/comment-page-1/#comment-83726</link>
		<dc:creator>Arpit Pandey</dc:creator>
		<pubDate>Wed, 01 Feb 2012 07:00:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.vineetmanohar.com/?p=360#comment-83726</guid>
		<description>thanks Vineet. it s really a nice article. 
earlier it was not working for me. but when i had given 
chmod 700 ~

it is working as intended.

thanks a lot.</description>
		<content:encoded><![CDATA[<p>thanks Vineet. it s really a nice article.<br />
earlier it was not working for me. but when i had given<br />
chmod 700 ~</p>
<p>it is working as intended.</p>
<p>thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Barcode API by Mr.Tim</title>
		<link>http://www.vineetmanohar.com/2010/09/java-barcode-api/comment-page-1/#comment-82834</link>
		<dc:creator>Mr.Tim</dc:creator>
		<pubDate>Fri, 27 Jan 2012 10:04:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.vineetmanohar.com/?p=1321#comment-82834</guid>
		<description>Vineet,

We are looking to buy Barcode API for our software - but it is very costly - is there any way that you can help and give us full API code - we are ready to pay for that - we are looking for open source Barcide API which is suppport all linear Barcode

email id :- info@singhtransport.biz


Tim</description>
		<content:encoded><![CDATA[<p>Vineet,</p>
<p>We are looking to buy Barcode API for our software &#8211; but it is very costly &#8211; is there any way that you can help and give us full API code &#8211; we are ready to pay for that &#8211; we are looking for open source Barcide API which is suppport all linear Barcode</p>
<p>email id :- <a href="mailto:info@singhtransport.biz">info@singhtransport.biz</a></p>
<p>Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JAXB code snippets for beginners by darshan</title>
		<link>http://www.vineetmanohar.com/2009/09/jaxb-code-snippets-for-beginners/comment-page-1/#comment-82725</link>
		<dc:creator>darshan</dc:creator>
		<pubDate>Thu, 26 Jan 2012 20:06:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.vineetmanohar.com/?p=482#comment-82725</guid>
		<description>with namespace declaration</description>
		<content:encoded><![CDATA[<p>with namespace declaration</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JAXB code snippets for beginners by darshan</title>
		<link>http://www.vineetmanohar.com/2009/09/jaxb-code-snippets-for-beginners/comment-page-1/#comment-82724</link>
		<dc:creator>darshan</dc:creator>
		<pubDate>Thu, 26 Jan 2012 20:05:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.vineetmanohar.com/?p=482#comment-82724</guid>
		<description>Hi Vineet

This blog is very much helpful for me for maven implementation project from converting ant to maven script.
This plugin works great but only problem i am facing right now is 
java source file generating from xsd is like this

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = &quot;AccountBaseType&quot;, propOrder = {
    &quot;accountId&quot;,
    &quot;accountSummary&quot;

but I want to generate like this

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = &quot;AccountBaseType&quot;, namespace = &quot;http://services.com/11/basetypes/account&quot;, propOrder = {
    &quot;accountId&quot;,
    &quot;accountSummary&quot;
})

Thanks,
Darshan</description>
		<content:encoded><![CDATA[<p>Hi Vineet</p>
<p>This blog is very much helpful for me for maven implementation project from converting ant to maven script.<br />
This plugin works great but only problem i am facing right now is<br />
java source file generating from xsd is like this</p>
<p>@XmlAccessorType(XmlAccessType.FIELD)<br />
@XmlType(name = &#8220;AccountBaseType&#8221;, propOrder = {<br />
    &#8220;accountId&#8221;,<br />
    &#8220;accountSummary&#8221;</p>
<p>but I want to generate like this</p>
<p>@XmlAccessorType(XmlAccessType.FIELD)<br />
@XmlType(name = &#8220;AccountBaseType&#8221;, namespace = &#8220;http://services.com/11/basetypes/account&#8221;, propOrder = {<br />
    &#8220;accountId&#8221;,<br />
    &#8220;accountSummary&#8221;<br />
})</p>
<p>Thanks,<br />
Darshan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to rotate Tomcat catalina.out by Anon</title>
		<link>http://www.vineetmanohar.com/2010/03/howto-rotate-tomcat-catalina-out/comment-page-1/#comment-82501</link>
		<dc:creator>Anon</dc:creator>
		<pubDate>Wed, 25 Jan 2012 18:05:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.vineetmanohar.com/?p=935#comment-82501</guid>
		<description>Tried it running it manually and nothing happened, no error message. Maybe tonight it will rotate</description>
		<content:encoded><![CDATA[<p>Tried it running it manually and nothing happened, no error message. Maybe tonight it will rotate</p>
]]></content:encoded>
	</item>
</channel>
</rss>

