<?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 Technobabble</title>
	<atom:link href="http://www.openscope.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.openscope.net</link>
	<description>Practical java, unix, and xml</description>
	<lastBuildDate>Tue, 10 Jan 2012 10:15:58 +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 Integrating Spring MVC 3.0 with JSR 303 (aka javax.validation.*) by Updates to Scala/Spring/Hibernate/Maven Webapp</title>
		<link>http://www.openscope.net/2010/02/08/spring-mvc-3-0-and-jsr-303-aka-javax-validation/comment-page-1/#comment-828</link>
		<dc:creator>Updates to Scala/Spring/Hibernate/Maven Webapp</dc:creator>
		<pubDate>Tue, 10 Jan 2012 10:15:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.openscope.net/?p=602#comment-828</guid>
		<description>[...] server-side form validation using JSR-303 annotations with Spring Web [...]</description>
		<content:encoded><![CDATA[<p>[...] server-side form validation using JSR-303 annotations with Spring Web [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java, XML and XStream by Ant</title>
		<link>http://www.openscope.net/2010/01/22/java-xml-and-xstream/comment-page-1/#comment-827</link>
		<dc:creator>Ant</dc:creator>
		<pubDate>Wed, 04 Jan 2012 05:15:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.openscope.net/?p=316#comment-827</guid>
		<description>I can&#039;t see your example, but If you&#039;re talking about adding multiple objects as an array, then you would want to use a collections construct like an array to add multiple objects. In fact XStream has some useful annotations for &lt;a href=&quot;http://xstream.codehaus.org/annotations-tutorial.html#ImplicitCollections&quot; rel=&quot;nofollow&quot;&gt;handling implicit collections&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>I can&#8217;t see your example, but If you&#8217;re talking about adding multiple objects as an array, then you would want to use a collections construct like an array to add multiple objects. In fact XStream has some useful annotations for <a href="http://xstream.codehaus.org/annotations-tutorial.html#ImplicitCollections" rel="nofollow">handling implicit collections</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Virtual hosting with Jboss 5.1 by Ant</title>
		<link>http://www.openscope.net/2010/01/17/virtual-hosting-with-jboss/comment-page-1/#comment-826</link>
		<dc:creator>Ant</dc:creator>
		<pubDate>Wed, 04 Jan 2012 05:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.openscope.net/?p=289#comment-826</guid>
		<description>Assuming you&#039;re using jboss 5.1, if you&#039;re accessing jboss through 8443 then you&#039;re accessing the alternate https port. Check your &lt;nobr&gt;/jboss-5.1.0/server/standard/deploy/jbossweb.sar/server.xml&lt;/nobr&gt; file and make sure this section of the xml file is not commented out:

&lt;code&gt;
      &lt;!-- A HTTP/1.1 Connector on port 8080 --&gt;
      &lt;Connector protocol=&quot;HTTP/1.1&quot; port=&quot;8080&quot; address=&quot;${jboss.bind.address}&quot; 
               connectionTimeout=&quot;20000&quot; redirectPort=&quot;8443&quot; /&gt;
&lt;/code&gt;

If it&#039;s not commented out, and you can access your site off port http://localhost:8080/index.html, then you can just change this port number from 8080 to 80. Ideally you won&#039;t have jboss serving up any static content if you are running a large site. In those setups you&#039;ll want to run something like apache to serve up your static content and then have it redirect dynamic content to jboss for processing. For smaller sites, this isn&#039;t much of a big deal but it never hurts to be efficient. 

Good luck</description>
		<content:encoded><![CDATA[<p>Assuming you&#8217;re using jboss 5.1, if you&#8217;re accessing jboss through 8443 then you&#8217;re accessing the alternate https port. Check your <nobr>/jboss-5.1.0/server/standard/deploy/jbossweb.sar/server.xml</nobr> file and make sure this section of the xml file is not commented out:</p>
<p><code><br />
      <!-- A HTTP/1.1 Connector on port 8080 --><br />
      <connector protocol="HTTP/1.1" port="8080" address="${jboss.bind.address}"<br />
               connectionTimeout="20000" redirectPort="8443" /><br />
</code></p>
<p>If it&#8217;s not commented out, and you can access your site off port <a href="http://localhost:8080/index.html" rel="nofollow">http://localhost:8080/index.html</a>, then you can just change this port number from 8080 to 80. Ideally you won&#8217;t have jboss serving up any static content if you are running a large site. In those setups you&#8217;ll want to run something like apache to serve up your static content and then have it redirect dynamic content to jboss for processing. For smaller sites, this isn&#8217;t much of a big deal but it never hurts to be efficient. </p>
<p>Good luck</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Virtual hosting with Jboss 5.1 by genci</title>
		<link>http://www.openscope.net/2010/01/17/virtual-hosting-with-jboss/comment-page-1/#comment-825</link>
		<dc:creator>genci</dc:creator>
		<pubDate>Fri, 09 Dec 2011 15:19:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.openscope.net/?p=289#comment-825</guid>
		<description>Hi,
I am new to this, so I would really appreciate your help. I have deployed a third party tool using jboss. I can access the site using https://localhost:8443/index.html. Instead of localhost:8443 I would like users to enter www.test.com/index.html (for example). I did try your suggestion, but can&#039;t get it to work. Any suggestions?  

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I am new to this, so I would really appreciate your help. I have deployed a third party tool using jboss. I can access the site using <a href="https://localhost:8443/index.html" rel="nofollow">https://localhost:8443/index.html</a>. Instead of localhost:8443 I would like users to enter <a href="http://www.test.com/index.html" rel="nofollow">http://www.test.com/index.html</a> (for example). I did try your suggestion, but can&#8217;t get it to work. Any suggestions?  </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jars and Class Loading, Jboss v5.x by shan</title>
		<link>http://www.openscope.net/2010/07/15/setting-up-a-jboss-instance-v5-x-class-loading/comment-page-1/#comment-824</link>
		<dc:creator>shan</dc:creator>
		<pubDate>Wed, 30 Nov 2011 15:44:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.openscope.net/?p=1047#comment-824</guid>
		<description>Thanks!  Very Useful.</description>
		<content:encoded><![CDATA[<p>Thanks!  Very Useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java, XML and XStream by jalpa bhaliya</title>
		<link>http://www.openscope.net/2010/01/22/java-xml-and-xstream/comment-page-1/#comment-823</link>
		<dc:creator>jalpa bhaliya</dc:creator>
		<pubDate>Thu, 10 Nov 2011 08:52:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.openscope.net/?p=316#comment-823</guid>
		<description>This is the nice article. I have one problem that if once we created an xml file and if i want to add some more objects within it then how can we achieve it??
for example, if i have xml file like...






and if i want to add 1 new then how can i do this (without replacing whole list)?? so that my file can look like...





</description>
		<content:encoded><![CDATA[<p>This is the nice article. I have one problem that if once we created an xml file and if i want to add some more objects within it then how can we achieve it??<br />
for example, if i have xml file like&#8230;</p>
<p>and if i want to add 1 new then how can i do this (without replacing whole list)?? so that my file can look like&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

