<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-17546</id>
	<title>Nabble - SmartWeb</title>
	<updated>2008-07-15T06:25:56Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/SmartWeb-f17546.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/SmartWeb-f17546.html" />
	<subtitle type="html">The &lt;a href=&quot;http://smartweb.sourceforge.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;SmartWeb&lt;/a&gt; framework is targeted to support rapid development of simple to complex web applications, leading to clean and stable code development. It's builded over consolidated open source frameworks and features the most useful design patterns and architectural solutions.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-18465271</id>
	<title>Logging statements</title>
	<published>2008-07-15T06:25:56Z</published>
	<updated>2008-07-15T06:25:56Z</updated>
	<author>
		<name>Roberto Lo Giacco-4</name>
	</author>
	<content type="html">I wish to highlight again the logging policy on the framework as I
&lt;br&gt;noticed not all modules are following the policy and we must remedy to
&lt;br&gt;this mistake.
&lt;br&gt;&lt;br&gt;I used verbs CAN, SHOULD, MUST and SHOULD NOT as they are used in the
&lt;br&gt;RFCs.... just to get it as much clear as I can....
&lt;br&gt;&lt;br&gt;Please add your opinions and contributions if I left any condition
&lt;br&gt;uncovered, this can help writing a style guide
&lt;br&gt;&lt;br&gt;- methods entrance SHOULD be logged with info level for business
&lt;br&gt;methods (thus on the domain), web requests (thus on the Action
&lt;br&gt;methods) and persistance calls (thus on factories) and this logs
&lt;br&gt;should bring parameters name and value
&lt;br&gt;- methods CAN log additional informations using debug level or trace
&lt;br&gt;level depending on how much datas should be logged
&lt;br&gt;- logs of level beyond info (thus debug and trace) must be wrapped
&lt;br&gt;with an if statement to check if the log level is enabled (otherwise
&lt;br&gt;performance issues can be raised)
&lt;br&gt;- logs MUST be composed with the method signature, an hyphen and an
&lt;br&gt;additional lower case informative and brief string
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for ex.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;logger.info(&amp;quot;myMethod(param1=&amp;quot; + param1 + &amp;quot;, param2=&amp;quot; +
&lt;br&gt;param2 + &amp;quot;) - start&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;logger.info(&amp;quot;myMethod(param1=&amp;quot; + param1 + &amp;quot;, param2=&amp;quot; +
&lt;br&gt;param2 + &amp;quot;) - something happened&amp;quot;);
&lt;br&gt;- logs of level beyond info (debug and trace) SHOULD NOT bring the
&lt;br&gt;method signature unless they span a long time and should be indented
&lt;br&gt;(\t) against other logs
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for ex.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (logger.isDebugEnabled()) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;logger.debug(&amp;quot;\tparam1 has value &amp;quot; + param1);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (logger.isTraceEnabled()) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;logger.trace(&amp;quot;\tparam1 has value &amp;quot; + param1);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;logger.trace(&amp;quot;\tparam2 has value &amp;quot; + param2);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;logger.trace(&amp;quot;\tparam3 has value &amp;quot; + param3);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&lt;br&gt;- exceptions SHOULD be logged ONLY IF NOT RETHROWN, in case you rewrap
&lt;br&gt;the exception you CAN log the exception at a debug level
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;Roberto Lo Giacco
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18465271&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Logging-statements-tp18465271s17546p18465271.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17731786</id>
	<title>SmartWeb Test 1.1.0 (stable) released!</title>
	<published>2008-06-09T05:24:44Z</published>
	<updated>2008-06-09T05:24:44Z</updated>
	<author>
		<name>Roberto Lo Giacco-4</name>
	</author>
	<content type="html">The SmartWeb Team is pleased to announce the smartweb-test-1.1.0.jar
&lt;br&gt;&amp;quot;JUnit Extension for the SmartWeb application development framework&amp;quot;
&lt;br&gt;release!
&lt;br&gt;&lt;br&gt;Changes in this version include:
&lt;br&gt;&lt;br&gt;&lt;br&gt;New Features:
&lt;br&gt;&lt;br&gt;o Added distribution packages generation
&lt;br&gt;&lt;br&gt;&lt;br&gt;Fixed Bugs:
&lt;br&gt;&lt;br&gt;o Added LGPL license to JAR file
&lt;br&gt;o Fixed getConnection. Using Dialect to set properties on connection
&lt;br&gt;o Fixed mailing list links
&lt;br&gt;&lt;br&gt;&lt;br&gt;Changes:
&lt;br&gt;&lt;br&gt;o Major refactoring and redesign to support non inheriting test cases
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;For a manual installation, you can download the smartweb-test-1.1.0.jar here:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/project/showfiles.php?group_id=163839&amp;package_id=238151&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/project/showfiles.php?group_id=163839&amp;package_id=238151&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Have fun!
&lt;br&gt;-SmartWeb Team
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;Roberto Lo Giacco
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Check out the new SourceForge.net Marketplace.
&lt;br&gt;It's the best place to buy or sell services for
&lt;br&gt;just about anything Open Source.
&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/services/buy/index.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/services/buy/index.php&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17731786&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/SmartWeb-Test-1.1.0-%28stable%29-released%21-tp17731786s17546p17731786.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17731776</id>
	<title>SmartWeb 1.2.5 (stable) released!</title>
	<published>2008-06-09T05:23:56Z</published>
	<updated>2008-06-09T05:23:56Z</updated>
	<author>
		<name>Roberto Lo Giacco-4</name>
	</author>
	<content type="html">The SmartWeb Team is pleased to announce the smartweb-1.2.5.jar &amp;quot;Web
&lt;br&gt;application development framework&amp;quot; release!
&lt;br&gt;&lt;br&gt;Changes in this version include:
&lt;br&gt;&lt;br&gt;&lt;br&gt;o TomcatConfigurationStrategy is unusable &amp;nbsp;Issue: 1973860. Thanks to
&lt;br&gt;Sébastien Le Callonnec.
&lt;br&gt;o Added LGPL license to JAR file
&lt;br&gt;o Fixed mailing list links
&lt;br&gt;o Multiple Hibernate Session per request not Supported &amp;nbsp;Issue: 1970648.
&lt;br&gt;o Renamed ConfigurationStrategy to FactoryConfigurationStrategy
&lt;br&gt;o Updated distribution packages generation
&lt;br&gt;o Updated templates
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;For a manual installation, you can download the smartweb-1.2.5.jar here:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/project/showfiles.php?group_id=163839&amp;package_id=185386&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/project/showfiles.php?group_id=163839&amp;package_id=185386&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Have fun!
&lt;br&gt;-SmartWeb Team
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;Roberto Lo Giacco
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Check out the new SourceForge.net Marketplace.
&lt;br&gt;It's the best place to buy or sell services for
&lt;br&gt;just about anything Open Source.
&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/services/buy/index.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/services/buy/index.php&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17731776&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/SmartWeb-1.2.5-%28stable%29-released%21-tp17731776s17546p17731776.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17722565</id>
	<title>smartweb archetype</title>
	<published>2008-06-08T13:06:11Z</published>
	<updated>2008-06-08T13:06:11Z</updated>
	<author>
		<name>Sébastien LE CALLONNEC</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&quot;font-family:arial,helvetica,sans-serif;font-size:10pt&quot;&gt;Hi All, &lt;br&gt;&lt;br&gt;&lt;br&gt;As a follow up to the email I sent earlier on to the user list, here is my modest contribution for an archetype.&amp;nbsp; I tested it locally by copying into an httpd server, and it seems to do the trick.&lt;br&gt;&lt;br&gt;To install the archetype jar:&lt;br&gt;&amp;nbsp;mvn install &amp;amp;&amp;amp; sudo cp /home/sebastien/.m2/repository/net/smartlab/web/smartweb-archetype-auth/1.0-SNAPSHOT/*.jar /var/www/repos/net/smartlab/web/smartweb-archetype-auth/1.0-SNAPSHOT/&lt;br&gt;&lt;br&gt;Then, to use it:&lt;br&gt;mvn archetype:create -DarchetypeGroupId=net.smartlab.web -DarchetypeArtifactId=smartweb-archetype-auth -DremoteRepositories=http://localhost/repos -DarchetypeVersion=1.0-SNAPSHOT -DgroupId=com.mycompany.app -DartifactId=mystuff&lt;br&gt;mvn install&lt;br&gt;mvn jetty:run&lt;br&gt;&lt;br&gt;Log on http://localhost:8080/mystuff/index.do&lt;br&gt;&lt;br&gt;It assumes
 the db is already set up (mysql), but I'm sure the maven guru amongst you will be able to sort this out easily.&lt;br&gt;&lt;br&gt;&lt;br&gt;Hope this helps, &lt;br&gt;Sébastien.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;



      &lt;hr size=&quot;1&quot;&gt; 
Envoyé avec &lt;a href=&quot;http://us.rd.yahoo.com/mailuk/taglines/isp/control/*http://us.rd.yahoo.com/evt=52423/*http://fr.docs.yahoo.com/mail/overview/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Yahoo! Mail&lt;/a&gt;.&lt;br&gt;Une boite mail plus intelligente. &lt;/a&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt; &lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;Check out the new SourceForge.net Marketplace.
&lt;br&gt;It's the best place to buy or sell services for
&lt;br&gt;just about anything Open Source.
&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/services/buy/index.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/services/buy/index.php&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17722565&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://www.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smartweb-archetype-auth.tar.bz2&lt;/strong&gt; (142K) &lt;a href=&quot;http://www.nabble.com/attachment/17722565/0/smartweb-archetype-auth.tar.bz2&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/smartweb-archetype-tp17722565s17546p17722565.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17718188</id>
	<title>Re: Dev Environment Setup Reloaded</title>
	<published>2008-06-08T05:09:54Z</published>
	<updated>2008-06-08T05:09:54Z</updated>
	<author>
		<name>Roberto Lo Giacco-4</name>
	</author>
	<content type="html">astonishing!
&lt;br&gt;&lt;br&gt;2008/6/8 Sébastien LE CALLONNEC &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17718188&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;slc_ie@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi All,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I finally got around finishing this page, so you can see the result there:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://smartweb.wikidot.com/devenvironmentsetup&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://smartweb.wikidot.com/devenvironmentsetup&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It's been a painstaking process, and I really hope this will help people in
&lt;br&gt;&amp;gt; the future, but also that the comments I made in there will be taken into
&lt;br&gt;&amp;gt; account.
&lt;br&gt;&amp;gt; I'm still not out of the woods though, because there are still lots of flaky
&lt;br&gt;&amp;gt; things, but I doubt I'll spend much more time on this.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I think one of the major concern for user adoption is how fast you can set
&lt;br&gt;&amp;gt; up a project, so writing maven archetypes to set up smartweb projects should
&lt;br&gt;&amp;gt; really be considered. &amp;nbsp;I understand that for experimented users, it all
&lt;br&gt;&amp;gt; looks very easy (you bring in the bricks you want into your own app), but
&lt;br&gt;&amp;gt; for a user who's starting from scratch, it's pretty hard to see what needs
&lt;br&gt;&amp;gt; to be brought in, and where it should be taken from, etc.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Well, that was my 2 cents' worth... ;-)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; Sébastien.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ________________________________
&lt;br&gt;&amp;gt; Envoyé avec Yahoo! Mail.
&lt;br&gt;&amp;gt; Une boite mail plus intelligente.
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Check out the new SourceForge.net Marketplace.
&lt;br&gt;&amp;gt; It's the best place to buy or sell services for
&lt;br&gt;&amp;gt; just about anything Open Source.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://sourceforge.net/services/buy/index.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/services/buy/index.php&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; smartweb-user mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17718188&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-user@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-user&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;Roberto Lo Giacco
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Check out the new SourceForge.net Marketplace.
&lt;br&gt;It's the best place to buy or sell services for
&lt;br&gt;just about anything Open Source.
&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/services/buy/index.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/services/buy/index.php&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;smartweb-user mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17718188&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-user&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Users-f17547.html&quot; embed=&quot;fixTarget[17547]&quot; target=&quot;_top&quot; &gt;SmartWeb Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Dev-Environment-Setup-Reloaded-tp17717434s17546p17718188.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17717434</id>
	<title>Dev Environment Setup Reloaded</title>
	<published>2008-06-08T03:25:28Z</published>
	<updated>2008-06-08T03:25:28Z</updated>
	<author>
		<name>Sébastien LE CALLONNEC</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&quot;font-family:arial,helvetica,sans-serif;font-size:10pt&quot;&gt;Hi All, &lt;br&gt;&lt;br&gt;I finally got around finishing this page, so you can see the result there: http://smartweb.wikidot.com/devenvironmentsetup&lt;br&gt;&lt;br&gt;It's been a painstaking process, and I really hope this will help people in the future, but also that the comments I made in there will be taken into account.&lt;br&gt;I'm still not out of the woods though, because there are still lots of flaky things, but I doubt I'll spend much more time on this.&lt;br&gt;&lt;br&gt;I think one of the major concern for user adoption is how fast you can set up a project, so writing maven archetypes to set up smartweb projects should really be considered.&amp;nbsp; I understand that for experimented users, it all looks very easy (you bring in the bricks you want into your own app), but for a user who's starting from scratch, it's pretty hard to see what
 needs to be brought in, and where it should be taken from, etc.&lt;br&gt;&lt;br&gt;Well, that was my 2 cents' worth... ;-)&lt;br&gt;&lt;div&gt;&lt;br&gt;Regards,&lt;br&gt;&lt;/div&gt;Sébastien.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;



      &lt;hr size=&quot;1&quot;&gt; 
Envoyé avec &lt;a href=&quot;http://us.rd.yahoo.com/mailuk/taglines/isp/control/*http://us.rd.yahoo.com/evt=52423/*http://fr.docs.yahoo.com/mail/overview/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Yahoo! Mail&lt;/a&gt;.&lt;br&gt;Une boite mail plus intelligente. &lt;/a&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;Check out the new SourceForge.net Marketplace.
&lt;br&gt;It's the best place to buy or sell services for
&lt;br&gt;just about anything Open Source.
&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/services/buy/index.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/services/buy/index.php&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;smartweb-user mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17717434&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-user&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Users-f17547.html&quot; embed=&quot;fixTarget[17547]&quot; target=&quot;_top&quot; &gt;SmartWeb Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Dev-Environment-Setup-Reloaded-tp17717434s17546p17717434.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17644604</id>
	<title>Re: Missing multiple order on SearchInfo class</title>
	<published>2008-06-04T04:34:23Z</published>
	<updated>2008-06-04T04:34:23Z</updated>
	<author>
		<name>Roberto Lo Giacco-4</name>
	</author>
	<content type="html">I would consider your request, in the meanwhile I suggest to use a
&lt;br&gt;combined field (something like fullname) for your purposes.
&lt;br&gt;&lt;br&gt;If you already have a patch to propose please provide it to us so we
&lt;br&gt;can speed up the process.
&lt;br&gt;&lt;br&gt;2008/6/4 Pino Contartese &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17644604&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gcontartese@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hy all,
&lt;br&gt;&amp;gt; using SearchInfo i noted there is not the possibility to order a criteria
&lt;br&gt;&amp;gt; search by multiple Order on the bean properties.
&lt;br&gt;&amp;gt; For Example how can I order a Collection of Persons by lastname and then
&lt;br&gt;&amp;gt; firstname ?
&lt;br&gt;&amp;gt; Could us introduce this new feature on SearchInfo class ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Waiting for reply..
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/Missing-multiple-order-on-SearchInfo-class-tp17637393s17546p17637393.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Missing-multiple-order-on-SearchInfo-class-tp17637393s17546p17637393.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the SmartWeb Developers mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Check out the new SourceForge.net Marketplace.
&lt;br&gt;&amp;gt; It's the best place to buy or sell services for
&lt;br&gt;&amp;gt; just about anything Open Source.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://sourceforge.net/services/buy/index.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/services/buy/index.php&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; smartweb-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17644604&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;Roberto Lo Giacco
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Check out the new SourceForge.net Marketplace.
&lt;br&gt;It's the best place to buy or sell services for
&lt;br&gt;just about anything Open Source.
&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/services/buy/index.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/services/buy/index.php&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17644604&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Missing-multiple-order-on-SearchInfo-class-tp17637393s17546p17644604.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17637393</id>
	<title>Missing multiple order on SearchInfo class</title>
	<published>2008-06-03T18:36:56Z</published>
	<updated>2008-06-03T18:36:56Z</updated>
	<author>
		<name>Pino Contartese</name>
	</author>
	<content type="html">Hy all,
&lt;br&gt;using SearchInfo i noted there is not the possibility to order a criteria search by multiple Order on the bean properties.
&lt;br&gt;For Example how can I order a Collection of Persons by lastname and then firstname ?
&lt;br&gt;Could us introduce this new feature on SearchInfo class ?
&lt;br&gt;&lt;br&gt;Waiting for reply..&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Missing-multiple-order-on-SearchInfo-class-tp17637393s17546p17637393.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17555902</id>
	<title>Re: Interventi sistemistici e note</title>
	<published>2008-05-30T03:29:13Z</published>
	<updated>2008-05-30T03:29:13Z</updated>
	<author>
		<name>Roberto Lo Giacco-4</name>
	</author>
	<content type="html">Sorry, wrong address :)
&lt;br&gt;&lt;br&gt;2008/5/22 Roberto Lo Giacco &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17555902&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rlogiacco@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Nei prossimi giorni verranno messi in atto alcuni interventi
&lt;br&gt;&amp;gt; sistemistici che hanno l'obiettivo di migrare i server aziendali verso
&lt;br&gt;&amp;gt; una situazione più stabile e pulita dove non siano presenti le
&lt;br&gt;&amp;gt; condizioni di mancanza di ordine che sperimentiamo da un pò di tempo a
&lt;br&gt;&amp;gt; questa parte.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Gli interventi prevedono la formattazione delle macchine web, master,
&lt;br&gt;&amp;gt; test, leonardo e zara in maniera progressiva.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Vi invito a segnalare installazioni di software particolari da dover
&lt;br&gt;&amp;gt; backuppare che potrebbero essere a noi sconosciute ed ovviamente ad
&lt;br&gt;&amp;gt; effettuare il backup (o indicare i percorsi da backuppare) di quanto
&lt;br&gt;&amp;gt; ritenete possa esservi utile e non deve andare perduto.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; A strettissimo giro verranno anche formattate le postazioni desktop
&lt;br&gt;&amp;gt; dove il sistema operativo diverrà Ubuntu 8.04: in questo caso è ancor
&lt;br&gt;&amp;gt; maggiormente necessario che indichiate eventuali file che dobbiamo
&lt;br&gt;&amp;gt; backuppare in quanto non provvederemo a verificare i files installati.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Vorrei segnalare infine come non sia stata affatto dedicata attenzione
&lt;br&gt;&amp;gt; al rispetto delle procedure di lavorazione del software indicate nei
&lt;br&gt;&amp;gt; documenti Naming Convention e Produzione:
&lt;br&gt;&amp;gt; &amp;nbsp;- commenti su subversion inesistenti
&lt;br&gt;&amp;gt; &amp;nbsp;- progetti lavorati al di fuori del repository e committati a blocchi
&lt;br&gt;&amp;gt; &amp;nbsp;- strutture dei repository inconsistenti
&lt;br&gt;&amp;gt; &amp;nbsp;- naming convention violate abissalmente
&lt;br&gt;&amp;gt; &amp;nbsp;- carenza di documentazione e di test unitari
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;nbsp;Roberto Lo Giacco
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;Roberto Lo Giacco
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17555902&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Interventi-sistemistici-e-note-tp17406684s17546p17555902.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17555894</id>
	<title>Re: Errors JCR with RMI</title>
	<published>2008-05-30T03:28:16Z</published>
	<updated>2008-05-30T03:28:16Z</updated>
	<author>
		<name>Roberto Lo Giacco-4</name>
	</author>
	<content type="html">I think you have posted to the wrong list :-)
&lt;br&gt;&lt;br&gt;2008/5/30 Rocco Fusella &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17555894&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rfusella@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello everyone,
&lt;br&gt;&amp;gt; I am trying to install Alfresco CMS with JBoss and enable RMI but when I
&lt;br&gt;&amp;gt; make the deploy me the following error.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2008-05-30 11:33:12,281 INFO &amp;nbsp;[STDOUT] 11:33:12,281 ERROR
&lt;br&gt;&amp;gt; [jcr.repository.JcrRmiBindingUtil] &amp;quot;error occured while binding JCR to RMI
&lt;br&gt;&amp;gt; [java.rmi.ConnectIOException: non-JRMP server at remote endpoint]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What could be the problem?
&lt;br&gt;&amp;gt; Thank.
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;Roberto Lo Giacco
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17555894&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Errors-JCR-with-RMI-tp17555138s17546p17555894.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17555138</id>
	<title>Errors JCR with RMI</title>
	<published>2008-05-30T02:39:45Z</published>
	<updated>2008-05-30T02:39:45Z</updated>
	<author>
		<name>Rocco Fusella-2</name>
	</author>
	<content type="html">&lt;div id=&quot;result_box&quot; dir=&quot;ltr&quot;&gt;Hello everyone, &lt;br&gt; I am trying to install Alfresco CMS with JBoss and enable RMI but when I make the deploy me the following error. &lt;br&gt; &lt;br&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;2008-05-30 11:33:12,281 INFO&amp;nbsp; [STDOUT] 11:33:12,281 ERROR [jcr.repository.JcrRmiBindingUtil] &amp;quot;error occured while binding JCR to RMI [java.rmi.ConnectIOException: non-JRMP server at remote endpoint]&lt;/span&gt;&lt;br&gt;
&lt;br&gt; What could be the problem?&lt;br&gt;Thank.&lt;br&gt;&lt;/div&gt;
&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17555138&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Errors-JCR-with-RMI-tp17555138s17546p17555138.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17486304</id>
	<title>Re: smartweb-auth . Subject.display...</title>
	<published>2008-05-27T02:17:08Z</published>
	<updated>2008-05-27T02:17:08Z</updated>
	<author>
		<name>Roberto Lo Giacco-4</name>
	</author>
	<content type="html">The problem in mapping the display as unique is we can't have multiple
&lt;br&gt;accounts for the same person:
&lt;br&gt;&lt;br&gt;rlogiacco (Roberto Lo Giacco)
&lt;br&gt;r.logiacco (Roberto Lo Giacco)
&lt;br&gt;&lt;br&gt;will became impossible.... which is something I wish to avoid as this
&lt;br&gt;puts a limitation to our module...
&lt;br&gt;&lt;br&gt;2008/5/27 Stefano V &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17486304&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stvnove@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; No, you don't misunderstood me. :-)
&lt;br&gt;&amp;gt; If display is mapped with &amp;nbsp;unique ( costraint in hibernate mappings, of
&lt;br&gt;&amp;gt; course )
&lt;br&gt;&amp;gt; I think &amp;nbsp;we can implement in a more consistent way methods like equals and
&lt;br&gt;&amp;gt; hashcode...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2008/5/27 Roberto Lo Giacco &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17486304&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rlogiacco@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi Stefano,
&lt;br&gt;&amp;gt;&amp;gt; if I don't misunderstand you, you are suggesting to add a unique
&lt;br&gt;&amp;gt;&amp;gt; constraint on the hibernate mapping of the display property on
&lt;br&gt;&amp;gt;&amp;gt; Subject.
&lt;br&gt;&amp;gt;&amp;gt; My question is: why do you think it should be unique? What benefits we
&lt;br&gt;&amp;gt;&amp;gt; can obtain from such approach?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 2008/5/26 Stefano Vetrini &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17486304&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stvnove@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; What do you think about make it unique ?
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Bye
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; s.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; This SF.net email is sponsored by: Microsoft
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; smartweb-devel mailing list
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17486304&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;Roberto Lo Giacco
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; This SF.net email is sponsored by: Microsoft
&lt;br&gt;&amp;gt;&amp;gt; Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; smartweb-devel mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17486304&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.net email is sponsored by: Microsoft
&lt;br&gt;&amp;gt; Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; smartweb-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17486304&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;Roberto Lo Giacco
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17486304&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/smartweb-auth-.-Subject.display...-tp17477231s17546p17486304.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17486139</id>
	<title>Re: smartweb-auth . Subject.display...</title>
	<published>2008-05-27T02:06:50Z</published>
	<updated>2008-05-27T02:06:50Z</updated>
	<author>
		<name>svetrini</name>
	</author>
	<content type="html">No, you don&amp;#39;t misunderstood me. :-)&lt;br&gt;If display is mapped with&amp;nbsp; unique ( costraint in hibernate mappings, of course ) &lt;br&gt;I think&amp;nbsp; we can implement in a more consistent way methods like equals and hashcode...&lt;br&gt;&lt;br&gt;
&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2008/5/27 Roberto Lo Giacco &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17486139&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rlogiacco@...&lt;/a&gt;&amp;gt;:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
Hi Stefano,&lt;br&gt;
if I don&amp;#39;t misunderstand you, you are suggesting to add a unique&lt;br&gt;
constraint on the hibernate mapping of the display property on&lt;br&gt;
Subject.&lt;br&gt;
My question is: why do you think it should be unique? What benefits we&lt;br&gt;
can obtain from such approach?&lt;br&gt;
&lt;br&gt;
2008/5/26 Stefano Vetrini &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17486139&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stvnove@...&lt;/a&gt;&amp;gt;:&lt;br&gt;
&lt;div class=&quot;Ih2E3d&quot;&gt;&amp;gt; What do you think about make it unique ?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Bye&lt;br&gt;
&amp;gt; s.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;/div&gt;&amp;gt; -------------------------------------------------------------------------&lt;br&gt;
&amp;gt; This SF.net email is sponsored by: Microsoft&lt;br&gt;
&amp;gt; Defy all challenges. Microsoft(R) Visual Studio 2008.&lt;br&gt;
&amp;gt; &lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;
&amp;gt; _______________________________________________&lt;br&gt;
&amp;gt; smartweb-devel mailing list&lt;br&gt;
&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17486139&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;&lt;br&gt;
&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
--&lt;br&gt;
&amp;nbsp;Roberto Lo Giacco&lt;br&gt;
&lt;br&gt;
-------------------------------------------------------------------------&lt;br&gt;
This SF.net email is sponsored by: Microsoft&lt;br&gt;
Defy all challenges. Microsoft(R) Visual Studio 2008.&lt;br&gt;
&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;
smartweb-devel mailing list&lt;br&gt;
&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17486139&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17486139&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/smartweb-auth-.-Subject.display...-tp17477231s17546p17486139.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17481212</id>
	<title>Re: smartweb-auth . Subject.display...</title>
	<published>2008-05-26T17:53:05Z</published>
	<updated>2008-05-26T17:53:05Z</updated>
	<author>
		<name>Roberto Lo Giacco-4</name>
	</author>
	<content type="html">Hi Stefano,
&lt;br&gt;if I don't misunderstand you, you are suggesting to add a unique
&lt;br&gt;constraint on the hibernate mapping of the display property on
&lt;br&gt;Subject.
&lt;br&gt;My question is: why do you think it should be unique? What benefits we
&lt;br&gt;can obtain from such approach?
&lt;br&gt;&lt;br&gt;2008/5/26 Stefano Vetrini &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17481212&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stvnove@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; What do you think about make it unique ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Bye
&lt;br&gt;&amp;gt; s.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.net email is sponsored by: Microsoft
&lt;br&gt;&amp;gt; Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; smartweb-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17481212&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;Roberto Lo Giacco
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17481212&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/smartweb-auth-.-Subject.display...-tp17477231s17546p17481212.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17479017</id>
	<title>Re: [registry] Issues Installing jar in Maven Repo</title>
	<published>2008-05-26T13:54:54Z</published>
	<updated>2008-05-26T13:54:54Z</updated>
	<author>
		<name>Pino Contartese</name>
	</author>
	<content type="html">Hi Sebastian,
&lt;br&gt;thanks for your interesting to registry-module and its iusses .
&lt;br&gt;I know for first there were problems on hibernate-mapping for Entry.hbm ..and I was looking for a solution.
&lt;br&gt;I tried your patch/modifies on module but before commit the change I would like to
&lt;br&gt;know why a PK class on Relationship ??
&lt;br&gt;What is the real mean?
&lt;br&gt;Consider that before introducing maven, there weren't this kind of problesms on Relationship/Entry.hbm 
&lt;br&gt;&lt;br&gt;So..I would like to know why RelationshipPK ?And what could be another solution without it ?
&lt;br&gt;&lt;br&gt;Waiting for reply..
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Sébastien LE CALLONNEC wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi All, 
&lt;br&gt;&lt;br&gt;&lt;br&gt;I have had some issues trying to install registry into my (local) maven repository, and I thought I might share them with you to find out whether I've been doing something wrong.
&lt;br&gt;&lt;br&gt;- First, I had to change the pom file to point onto hibernate-registry.hcf.xml, as the hibernate.hcf.xml was not existing;
&lt;br&gt;- I also had to change the DTD in that &amp;nbsp;hibernate-registry.hcf.xml file, as I was getting the following error when running &amp;quot;mvn install&amp;quot;:
&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;quot;Don't use old DTDs, read the Hibernate 3.x Migration Guide!&amp;quot;
&lt;br&gt;&lt;br&gt;- Then, I was getting the following error when trying to install the registry jar:
&lt;br&gt;&lt;br&gt;13:10:41,949 &amp;nbsp;INFO org.hibernate.cfg.Configuration - Reading mappings from resource: net/smartlab/web/registry/Entry.hbm.xml
&lt;br&gt;13:10:42,076 ERROR org.hibernate.util.XMLHelper - Error parsing XML: XML InputStream(185) The content of element type &amp;quot;set&amp;quot; is incomplete, it must match &amp;quot;(meta*,subselect?,cache?,synchronize*,comment?,key,(element|one-to-many|many-to-many|composite-element|many-to-any),loader?,sql-insert?,sql-update?,sql-delete?,sql-delete-all?,filter*)&amp;quot;.
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[ERROR] FATAL ERROR
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] Could not parse mapping document from resource net/smartlab/web/registry/Entry.hbm.xml
&lt;br&gt;&lt;br&gt;After a bit of investigation, it turned out that one of the &amp;quot;set&amp;quot; definitions in that file was empty. &amp;nbsp;I had to tweak the Hibernate configuration (and in the process I got the opportunity to curse maven once again).
&lt;br&gt;&lt;br&gt;I'm attaching the changes I've carried out on the project to finally get it to install correctly (though not being familiar with it, I am not sure whether the Hibernate changes I've made suit the db schema). &amp;nbsp;I'm also attaching smartweb-registry.jar.hcf &amp;quot;as is&amp;quot;, because despite having set its Subversion mime type to text/xml (as shown in patch), it wouldn't give me a diff. &amp;nbsp;I'd be interested to know whether you've ever had that problem (the fact that I can't diff that file).
&lt;br&gt;&lt;br&gt;Anyway, did I miss something in that module?
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;Regards,
&lt;br&gt;Sébastien.
&lt;br&gt;&lt;br&gt;&lt;br&gt;__________________________________________________
&lt;br&gt;Do You Yahoo!?
&lt;br&gt;En finir avec le spam? Yahoo! Mail vous offre la meilleure protection possible contre les messages non sollicités 
&lt;br&gt;&lt;a href=&quot;http://mail.yahoo.fr&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.yahoo.fr&lt;/a&gt;&amp;nbsp;Yahoo! Mail
&lt;br&gt;Index: src/net/smartlab/web/registry/Entity.java
&lt;br&gt;===================================================================
&lt;br&gt;--- src/net/smartlab/web/registry/Entity.java	(rÃ©vision 1234)
&lt;br&gt;+++ src/net/smartlab/web/registry/Entity.java	(copie de travail)
&lt;br&gt;@@ -208,8 +208,8 @@
&lt;br&gt;&amp;nbsp;	 * @return returns the relationships.
&lt;br&gt;&amp;nbsp;	 * @hibernate.set lazy=&amp;quot;true&amp;quot; schema=&amp;quot;registry&amp;quot; table=&amp;quot;`relationship`&amp;quot;
&lt;br&gt;&amp;nbsp;	 * &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;cascade=&amp;quot;all&amp;quot;
&lt;br&gt;-	 * @hibernate.key column=&amp;quot;`source`&amp;quot;
&lt;br&gt;-	 * @hibernate.composite-element class=&amp;quot;net.smartlab.web.registry.Relationship&amp;quot;
&lt;br&gt;+	 * @hibernate.collection-key column=&amp;quot;`source`&amp;quot;
&lt;br&gt;+	 * @hibernate.collection-one-to-many class=&amp;quot;net.smartlab.web.registry.Relationship&amp;quot;
&lt;br&gt;&amp;nbsp;	 * @uml.property &amp;nbsp;name=&amp;quot;relationships&amp;quot;
&lt;br&gt;&amp;nbsp;	 */
&lt;br&gt;&amp;nbsp;	public Set getRelationships() {
&lt;br&gt;@@ -276,7 +276,7 @@
&lt;br&gt;&amp;nbsp;			Iterator relationships = this.relationships.iterator();
&lt;br&gt;&amp;nbsp;			while (relationships.hasNext()) {
&lt;br&gt;&amp;nbsp;				Relationship relationship = (Relationship)relationships.next();
&lt;br&gt;-				if (entity.equals(relationship.getTarget())) {
&lt;br&gt;+				if (entity.equals(relationship.getRelationshipPk().getTarget())) {
&lt;br&gt;&amp;nbsp;					relationships.remove();
&lt;br&gt;&amp;nbsp;				}
&lt;br&gt;&amp;nbsp;			}
&lt;br&gt;Index: src/net/smartlab/web/registry/RelationshipPK.java
&lt;br&gt;===================================================================
&lt;br&gt;--- src/net/smartlab/web/registry/RelationshipPK.java	(rÃ©vision 0)
&lt;br&gt;+++ src/net/smartlab/web/registry/RelationshipPK.java	(rÃ©vision 0)
&lt;br&gt;@@ -0,0 +1,94 @@
&lt;br&gt;+package net.smartlab.web.registry;
&lt;br&gt;+
&lt;br&gt;+import java.io.Serializable;
&lt;br&gt;+
&lt;br&gt;+import org.apache.commons.lang.builder.EqualsBuilder;
&lt;br&gt;+import org.apache.commons.lang.builder.HashCodeBuilder;
&lt;br&gt;+
&lt;br&gt;+public class RelationshipPK implements Serializable {
&lt;br&gt;+
&lt;br&gt;+	/**
&lt;br&gt;+	 * @TODO documentation
&lt;br&gt;+	 */
&lt;br&gt;+	private static final long serialVersionUID = 1L;
&lt;br&gt;+	/**
&lt;br&gt;+	 * The relationship source
&lt;br&gt;+	 * @uml.property &amp;nbsp;name=&amp;quot;source&amp;quot;
&lt;br&gt;+	 * @uml.associationEnd &amp;nbsp;inverse=&amp;quot;relationships:net.smartlab.web.registry.Entity&amp;quot;
&lt;br&gt;+	 * @directed &amp;nbsp;true
&lt;br&gt;+	 */
&lt;br&gt;+	private Entity source;
&lt;br&gt;+	/**
&lt;br&gt;+	 * The relationship target.
&lt;br&gt;+	 * @directed &amp;nbsp;true
&lt;br&gt;+	 */
&lt;br&gt;+	private Entity target;
&lt;br&gt;+	
&lt;br&gt;+	
&lt;br&gt;+	
&lt;br&gt;+	public RelationshipPK() {
&lt;br&gt;+		super();
&lt;br&gt;+	}
&lt;br&gt;+	public RelationshipPK(Entity source, Entity target) {
&lt;br&gt;+		super();
&lt;br&gt;+		this.source = source;
&lt;br&gt;+		this.target = target;
&lt;br&gt;+	}
&lt;br&gt;+	/**
&lt;br&gt;+	 * Returns the item from which the relationship originates.
&lt;br&gt;+	 * 
&lt;br&gt;+	 * @return returns the source.
&lt;br&gt;+	 * @uml.property &amp;nbsp;name=&amp;quot;source&amp;quot;
&lt;br&gt;+	 * @hibernate.property column=&amp;quot;`source`&amp;quot;
&lt;br&gt;+	 */
&lt;br&gt;+	public Entity getSource() {
&lt;br&gt;+		return source;
&lt;br&gt;+	}
&lt;br&gt;+	/**
&lt;br&gt;+	 * Returns the item to which the relationship is directed.
&lt;br&gt;+	 * 
&lt;br&gt;+	 * @return returns the target.
&lt;br&gt;+	 * @hibernate.property column=&amp;quot;`target`&amp;quot; not-null=&amp;quot;true&amp;quot;
&lt;br&gt;+	 */
&lt;br&gt;+	public Entity getTarget() {
&lt;br&gt;+		return target;
&lt;br&gt;+	}
&lt;br&gt;+	/**
&lt;br&gt;+	 * Sets the item from which the relationship originates.
&lt;br&gt;+	 * 
&lt;br&gt;+	 * @param source the source to set.
&lt;br&gt;+	 * @uml.property &amp;nbsp;name=&amp;quot;source&amp;quot;
&lt;br&gt;+	 */
&lt;br&gt;+	public void setSource(Entity source) {
&lt;br&gt;+		this.source = source;
&lt;br&gt;+	}
&lt;br&gt;+	/**
&lt;br&gt;+	 * Sets the item to which the relationship is directed.
&lt;br&gt;+	 * 
&lt;br&gt;+	 * @param target the target to set.
&lt;br&gt;+	 */
&lt;br&gt;+	public void setTarget(Entity target) {
&lt;br&gt;+		this.target = target;
&lt;br&gt;+	}
&lt;br&gt;+	
&lt;br&gt;+	
&lt;br&gt;+	protected void reverse() {
&lt;br&gt;+		Entity temp = this.target;
&lt;br&gt;+		this.target = this.source;
&lt;br&gt;+		this.source = temp;
&lt;br&gt;+	}
&lt;br&gt;+
&lt;br&gt;+	public boolean equals(Object o) {
&lt;br&gt;+		if (o == null) return false;
&lt;br&gt;+		if (!(o instanceof RelationshipPK)) return false;
&lt;br&gt;+		
&lt;br&gt;+		RelationshipPK rPk = (RelationshipPK)o;
&lt;br&gt;+		
&lt;br&gt;+		return new EqualsBuilder().append(getSource(), rPk.getSource())
&lt;br&gt;+		.append(getTarget(), rPk.getTarget()).isEquals();
&lt;br&gt;+	}
&lt;br&gt;+	
&lt;br&gt;+	public int hashCode() {
&lt;br&gt;+		return new HashCodeBuilder(123455667, -1456658990).append(this.target).append(this.source).toHashCode();
&lt;br&gt;+	}
&lt;br&gt;+}
&lt;br&gt;Index: src/net/smartlab/web/registry/Relationship.java
&lt;br&gt;===================================================================
&lt;br&gt;--- src/net/smartlab/web/registry/Relationship.java	(rÃ©vision 1234)
&lt;br&gt;+++ src/net/smartlab/web/registry/Relationship.java	(copie de travail)
&lt;br&gt;@@ -22,6 +22,9 @@
&lt;br&gt;&amp;nbsp; */
&lt;br&gt;&amp;nbsp;package net.smartlab.web.registry;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+import org.apache.commons.lang.builder.EqualsBuilder;
&lt;br&gt;+import org.apache.commons.lang.builder.HashCodeBuilder;
&lt;br&gt;+
&lt;br&gt;&amp;nbsp;import net.smartlab.web.BusinessObject;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;/**
&lt;br&gt;@@ -35,28 +38,16 @@
&lt;br&gt;&amp;nbsp; * should be created to ensure full browseability.
&lt;br&gt;&amp;nbsp; * 
&lt;br&gt;&amp;nbsp; * @author rlogiacco
&lt;br&gt;+ * @hibernate.class schema=&amp;quot;registry&amp;quot; table=&amp;quot;`relationship`&amp;quot;
&lt;br&gt;&amp;nbsp; * @stereotype component
&lt;br&gt;&amp;nbsp; */
&lt;br&gt;&amp;nbsp;public class Relationship extends BusinessObject {
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;	private static final long serialVersionUID = -6755482377883259670L;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+	private RelationshipPK relationshipPk = null;
&lt;br&gt;+	
&lt;br&gt;&amp;nbsp;	/**
&lt;br&gt;-	 * The relationship source
&lt;br&gt;-	 * @uml.property name=&amp;quot;source&amp;quot;
&lt;br&gt;-	 * @uml.associationEnd inverse=&amp;quot;relationships:net.smartlab.web.registry.Entity&amp;quot;
&lt;br&gt;-	 * @directed true
&lt;br&gt;-	 */
&lt;br&gt;-	private Entity source;
&lt;br&gt;-
&lt;br&gt;-	/**
&lt;br&gt;-	 * The relationship target.
&lt;br&gt;-	 * 
&lt;br&gt;-	 * @directed true
&lt;br&gt;-	 */
&lt;br&gt;-	private Entity target;
&lt;br&gt;-
&lt;br&gt;-	/**
&lt;br&gt;&amp;nbsp;	 * A name identifying the relationship.
&lt;br&gt;&amp;nbsp;	 */
&lt;br&gt;&amp;nbsp;	private String name;
&lt;br&gt;@@ -76,33 +67,11 @@
&lt;br&gt;&amp;nbsp;	 * @param name the relationship type.
&lt;br&gt;&amp;nbsp;	 */
&lt;br&gt;&amp;nbsp;	public Relationship(Entity source, Entity target, String name) {
&lt;br&gt;-		this.source = source;
&lt;br&gt;-		this.target = target;
&lt;br&gt;+		this.relationshipPk = new RelationshipPK(source, target);
&lt;br&gt;&amp;nbsp;		this.name = name;
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;	/**
&lt;br&gt;-	 * Returns the item from which the relationship originates.
&lt;br&gt;-	 * 
&lt;br&gt;-	 * @return returns the source.
&lt;br&gt;-	 * @uml.property &amp;nbsp;name=&amp;quot;source&amp;quot;
&lt;br&gt;-	 * @hibernate.parent column=&amp;quot;`source`&amp;quot;
&lt;br&gt;-	 */
&lt;br&gt;-	public Entity getSource() {
&lt;br&gt;-		return source;
&lt;br&gt;-	}
&lt;br&gt;-
&lt;br&gt;-	/**
&lt;br&gt;-	 * Sets the item from which the relationship originates.
&lt;br&gt;-	 * 
&lt;br&gt;-	 * @param source the source to set.
&lt;br&gt;-	 * @uml.property &amp;nbsp;name=&amp;quot;source&amp;quot;
&lt;br&gt;-	 */
&lt;br&gt;-	public void setSource(Entity source) {
&lt;br&gt;-		this.source = source;
&lt;br&gt;-	}
&lt;br&gt;-
&lt;br&gt;-	/**
&lt;br&gt;&amp;nbsp;	 * Returns the relationship name.
&lt;br&gt;&amp;nbsp;	 * 
&lt;br&gt;&amp;nbsp;	 * @return returns the name.
&lt;br&gt;@@ -122,48 +91,38 @@
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;	/**
&lt;br&gt;-	 * Returns the item to which the relationship is directed.
&lt;br&gt;-	 * 
&lt;br&gt;-	 * @return returns the target.
&lt;br&gt;-	 * @hibernate.many-to-one column=&amp;quot;`target`&amp;quot; not-null=&amp;quot;true&amp;quot;
&lt;br&gt;+	 * Reverses the relationship direction.
&lt;br&gt;&amp;nbsp;	 */
&lt;br&gt;-	public Entity getTarget() {
&lt;br&gt;-		return target;
&lt;br&gt;+	public void reverse() {
&lt;br&gt;+		this.relationshipPk.reverse();
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;+	
&lt;br&gt;+	
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;	/**
&lt;br&gt;-	 * Sets the item to which the relationship is directed.
&lt;br&gt;-	 * 
&lt;br&gt;-	 * @param target the target to set.
&lt;br&gt;+	 * @hibernate.id
&lt;br&gt;+	 * @TODO documentation
&lt;br&gt;+	 * @return
&lt;br&gt;&amp;nbsp;	 */
&lt;br&gt;-	public void setTarget(Entity target) {
&lt;br&gt;-		this.target = target;
&lt;br&gt;+	public RelationshipPK getRelationshipPk() {
&lt;br&gt;+		return relationshipPk;
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-	/**
&lt;br&gt;-	 * Reverses the relationship direction.
&lt;br&gt;-	 */
&lt;br&gt;-	public void reverse() {
&lt;br&gt;-		Entity temp = this.target;
&lt;br&gt;-		this.target = this.source;
&lt;br&gt;-		this.source = temp;
&lt;br&gt;+	public void setRelationshipPk(RelationshipPK relationshipPk) {
&lt;br&gt;+		this.relationshipPk = relationshipPk;
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-	/**
&lt;br&gt;-	 * @see java.lang.Object#equals(java.lang.Object)
&lt;br&gt;-	 */
&lt;br&gt;-	public boolean equals(Object obj) {
&lt;br&gt;-		if (obj instanceof Relationship) {
&lt;br&gt;-			Relationship relationship = (Relationship)obj;
&lt;br&gt;-			return relationship.target.getId() == this.target.getId() &amp;&amp; relationship.name.equals(this.name);
&lt;br&gt;-		}
&lt;br&gt;-		return false;
&lt;br&gt;+	public boolean equals(Object o) {
&lt;br&gt;+		if (o == null) return false;
&lt;br&gt;+		if (!(o instanceof Relationship)) return false;
&lt;br&gt;+		
&lt;br&gt;+		Relationship r = (Relationship)o;
&lt;br&gt;+		
&lt;br&gt;+		return new EqualsBuilder().append(getRelationshipPk(), r.getRelationshipPk())
&lt;br&gt;+		.append(getName(), r.getName()).isEquals();
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;-
&lt;br&gt;-	/**
&lt;br&gt;-	 * @see java.lang.Object#hashCode()
&lt;br&gt;-	 */
&lt;br&gt;+	
&lt;br&gt;&amp;nbsp;	public int hashCode() {
&lt;br&gt;-		return ( this.name + this.source.getId() + this.target.getId()).hashCode();
&lt;br&gt;+		return new HashCodeBuilder(123455667, -1456658990).append(this.relationshipPk).append(this.name).toHashCode();
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;Index: /home/sebastien/workspace/smartweb/modules/registry/res/smartweb-registry.jar.hcf
&lt;br&gt;===================================================================
&lt;br&gt;Cannot display: file marked as a binary type.
&lt;br&gt;svn:mime-type = application/octet-stream
&lt;br&gt;&lt;br&gt;Property changes on: /home/sebastien/workspace/smartweb/modules/registry/res/smartweb-registry.jar.hcf
&lt;br&gt;___________________________________________________________________
&lt;br&gt;Name: svn:mime-type
&lt;br&gt;&amp;nbsp; &amp;nbsp;- application/octet-stream
&lt;br&gt;&amp;nbsp; &amp;nbsp;+ text/xml
&lt;br&gt;Index: pom.xml
&lt;br&gt;===================================================================
&lt;br&gt;--- pom.xml	(rÃ©vision 1234)
&lt;br&gt;+++ pom.xml	(copie de travail)
&lt;br&gt;@@ -260,7 +260,7 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/component&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/components&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;componentProperties&amp;gt;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;configurationfile&amp;gt;${basedir}/res/smartweb.jar.hcf&amp;lt;/configurationfile&amp;gt;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;configurationfile&amp;gt;${basedir}/res/smartweb-registry.jar.hcf&amp;lt;/configurationfile&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;outputfilename&amp;gt;schema.sql&amp;lt;/outputfilename&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;export&amp;gt;false&amp;lt;/export&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;drop&amp;gt;true&amp;lt;/drop&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;smartweb-user mailing list
&lt;br&gt;smartweb-user@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-user&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Users-f17547.html&quot; embed=&quot;fixTarget[17547]&quot; target=&quot;_top&quot; &gt;SmartWeb Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-registry--Issues-Installing-jar-in-Maven-Repo-tp17459843s17546p17479017.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17477231</id>
	<title>smartweb-auth . Subject.display...</title>
	<published>2008-05-26T11:49:05Z</published>
	<updated>2008-05-26T11:49:05Z</updated>
	<author>
		<name>svetrini</name>
	</author>
	<content type="html">What do you think about make it unique ?
&lt;br&gt;&lt;br&gt;Bye
&lt;br&gt;s.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17477231&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/smartweb-auth-.-Subject.display...-tp17477231s17546p17477231.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17459843</id>
	<title>[registry] Issues Installing jar in Maven Repo</title>
	<published>2008-05-25T09:50:48Z</published>
	<updated>2008-05-25T09:50:48Z</updated>
	<author>
		<name>Sébastien LE CALLONNEC</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&quot;font-family:arial,helvetica,sans-serif;font-size:10pt&quot;&gt;Hi All, &lt;br&gt;&lt;br&gt;&lt;br&gt;I have had some issues trying to install registry into my (local) maven repository, and I thought I might share them with you to find out whether I've been doing something wrong.&lt;br&gt;&lt;br&gt;- First, I had to change the pom file to point onto hibernate-registry.hcf.xml, as the hibernate.hcf.xml was not existing;&lt;br&gt;- I also had to change the DTD in that&amp;nbsp; hibernate-registry.hcf.xml file, as I was getting the following error when running &quot;mvn install&quot;:&lt;br&gt;&lt;br style=&quot;font-style: italic;&quot;&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;&amp;nbsp;&quot;Don't use old DTDs, read the Hibernate 3.x Migration Guide!&quot;&lt;/span&gt;&lt;br&gt;&lt;br&gt;- Then, I was getting the following error when trying to install the registry jar:&lt;br&gt;&lt;br&gt;13:10:41,949&amp;nbsp; INFO org.hibernate.cfg.Configuration - Reading mappings from resource:
 net/smartlab/web/registry/Entry.hbm.xml&lt;br&gt;13:10:42,076 ERROR org.hibernate.util.XMLHelper - Error parsing XML: XML InputStream(185) The content of element type &quot;set&quot; is incomplete, it must match &quot;(meta*,subselect?,cache?,synchronize*,comment?,key,(element|one-to-many|many-to-many|composite-element|many-to-any),loader?,sql-insert?,sql-update?,sql-delete?,sql-delete-all?,filter*)&quot;.&lt;br&gt;[INFO] ------------------------------------------------------------------------&lt;br&gt;[ERROR] FATAL ERROR&lt;br&gt;[INFO] ------------------------------------------------------------------------&lt;br&gt;[INFO] Could not parse mapping document from resource net/smartlab/web/registry/Entry.hbm.xml&lt;br&gt;&lt;br&gt;After a bit of investigation, it turned out that one of the &quot;set&quot; definitions in that file was empty.&amp;nbsp; I had to tweak the Hibernate configuration (and in the process I got the opportunity to curse maven once again).&lt;br&gt;&lt;br&gt;I'm attaching the changes I've carried out on the project to
 finally get it to install correctly (though not being familiar with it, I am not sure whether the Hibernate changes I've made suit the db schema).&amp;nbsp; I'm also attaching smartweb-registry.jar.hcf &quot;as is&quot;, because despite having set its Subversion mime type to text/xml (as shown in patch), it wouldn't give me a diff.&amp;nbsp; I'd be interested to know whether you've ever had that problem (the fact that I can't diff that file).&lt;br&gt;&lt;br&gt;Anyway, did I miss something in that module?&lt;br&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;br&gt;Regards,&lt;br&gt;Sébastien.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;__________________________________________________&lt;br&gt;Do You Yahoo!?&lt;br&gt;En finir avec le spam? Yahoo! Mail vous offre la meilleure protection possible contre les messages non sollicités &lt;br&gt;http://mail.yahoo.fr Yahoo! Mail &lt;/body&gt;&lt;/html&gt;&lt;br /&gt;&lt;tt&gt;[registry.patch]&lt;/tt&gt;&lt;br /&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;tt&gt;Index: src/net/smartlab/web/registry/Entity.java
&lt;br&gt;===================================================================
&lt;br&gt;--- src/net/smartlab/web/registry/Entity.java	(rÃ©vision 1234)
&lt;br&gt;+++ src/net/smartlab/web/registry/Entity.java	(copie de travail)
&lt;br&gt;@@ -208,8 +208,8 @@
&lt;br&gt;&amp;nbsp;	 * @return returns the relationships.
&lt;br&gt;&amp;nbsp;	 * @hibernate.set lazy=&amp;quot;true&amp;quot; schema=&amp;quot;registry&amp;quot; table=&amp;quot;`relationship`&amp;quot;
&lt;br&gt;&amp;nbsp;	 * &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;cascade=&amp;quot;all&amp;quot;
&lt;br&gt;-	 * @hibernate.key column=&amp;quot;`source`&amp;quot;
&lt;br&gt;-	 * @hibernate.composite-element class=&amp;quot;net.smartlab.web.registry.Relationship&amp;quot;
&lt;br&gt;+	 * @hibernate.collection-key column=&amp;quot;`source`&amp;quot;
&lt;br&gt;+	 * @hibernate.collection-one-to-many class=&amp;quot;net.smartlab.web.registry.Relationship&amp;quot;
&lt;br&gt;&amp;nbsp;	 * @uml.property &amp;nbsp;name=&amp;quot;relationships&amp;quot;
&lt;br&gt;&amp;nbsp;	 */
&lt;br&gt;&amp;nbsp;	public Set getRelationships() {
&lt;br&gt;@@ -276,7 +276,7 @@
&lt;br&gt;&amp;nbsp;			Iterator relationships = this.relationships.iterator();
&lt;br&gt;&amp;nbsp;			while (relationships.hasNext()) {
&lt;br&gt;&amp;nbsp;				Relationship relationship = (Relationship)relationships.next();
&lt;br&gt;-				if (entity.equals(relationship.getTarget())) {
&lt;br&gt;+				if (entity.equals(relationship.getRelationshipPk().getTarget())) {
&lt;br&gt;&amp;nbsp;					relationships.remove();
&lt;br&gt;&amp;nbsp;				}
&lt;br&gt;&amp;nbsp;			}
&lt;br&gt;Index: src/net/smartlab/web/registry/RelationshipPK.java
&lt;br&gt;===================================================================
&lt;br&gt;--- src/net/smartlab/web/registry/RelationshipPK.java	(rÃ©vision 0)
&lt;br&gt;+++ src/net/smartlab/web/registry/RelationshipPK.java	(rÃ©vision 0)
&lt;br&gt;@@ -0,0 +1,94 @@
&lt;br&gt;+package net.smartlab.web.registry;
&lt;br&gt;+
&lt;br&gt;+import java.io.Serializable;
&lt;br&gt;+
&lt;br&gt;+import org.apache.commons.lang.builder.EqualsBuilder;
&lt;br&gt;+import org.apache.commons.lang.builder.HashCodeBuilder;
&lt;br&gt;+
&lt;br&gt;+public class RelationshipPK implements Serializable {
&lt;br&gt;+
&lt;br&gt;+	/**
&lt;br&gt;+	 * @TODO documentation
&lt;br&gt;+	 */
&lt;br&gt;+	private static final long serialVersionUID = 1L;
&lt;br&gt;+	/**
&lt;br&gt;+	 * The relationship source
&lt;br&gt;+	 * @uml.property &amp;nbsp;name=&amp;quot;source&amp;quot;
&lt;br&gt;+	 * @uml.associationEnd &amp;nbsp;inverse=&amp;quot;relationships:net.smartlab.web.registry.Entity&amp;quot;
&lt;br&gt;+	 * @directed &amp;nbsp;true
&lt;br&gt;+	 */
&lt;br&gt;+	private Entity source;
&lt;br&gt;+	/**
&lt;br&gt;+	 * The relationship target.
&lt;br&gt;+	 * @directed &amp;nbsp;true
&lt;br&gt;+	 */
&lt;br&gt;+	private Entity target;
&lt;br&gt;+	
&lt;br&gt;+	
&lt;br&gt;+	
&lt;br&gt;+	public RelationshipPK() {
&lt;br&gt;+		super();
&lt;br&gt;+	}
&lt;br&gt;+	public RelationshipPK(Entity source, Entity target) {
&lt;br&gt;+		super();
&lt;br&gt;+		this.source = source;
&lt;br&gt;+		this.target = target;
&lt;br&gt;+	}
&lt;br&gt;+	/**
&lt;br&gt;+	 * Returns the item from which the relationship originates.
&lt;br&gt;+	 * 
&lt;br&gt;+	 * @return returns the source.
&lt;br&gt;+	 * @uml.property &amp;nbsp;name=&amp;quot;source&amp;quot;
&lt;br&gt;+	 * @hibernate.property column=&amp;quot;`source`&amp;quot;
&lt;br&gt;+	 */
&lt;br&gt;+	public Entity getSource() {
&lt;br&gt;+		return source;
&lt;br&gt;+	}
&lt;br&gt;+	/**
&lt;br&gt;+	 * Returns the item to which the relationship is directed.
&lt;br&gt;+	 * 
&lt;br&gt;+	 * @return returns the target.
&lt;br&gt;+	 * @hibernate.property column=&amp;quot;`target`&amp;quot; not-null=&amp;quot;true&amp;quot;
&lt;br&gt;+	 */
&lt;br&gt;+	public Entity getTarget() {
&lt;br&gt;+		return target;
&lt;br&gt;+	}
&lt;br&gt;+	/**
&lt;br&gt;+	 * Sets the item from which the relationship originates.
&lt;br&gt;+	 * 
&lt;br&gt;+	 * @param source the source to set.
&lt;br&gt;+	 * @uml.property &amp;nbsp;name=&amp;quot;source&amp;quot;
&lt;br&gt;+	 */
&lt;br&gt;+	public void setSource(Entity source) {
&lt;br&gt;+		this.source = source;
&lt;br&gt;+	}
&lt;br&gt;+	/**
&lt;br&gt;+	 * Sets the item to which the relationship is directed.
&lt;br&gt;+	 * 
&lt;br&gt;+	 * @param target the target to set.
&lt;br&gt;+	 */
&lt;br&gt;+	public void setTarget(Entity target) {
&lt;br&gt;+		this.target = target;
&lt;br&gt;+	}
&lt;br&gt;+	
&lt;br&gt;+	
&lt;br&gt;+	protected void reverse() {
&lt;br&gt;+		Entity temp = this.target;
&lt;br&gt;+		this.target = this.source;
&lt;br&gt;+		this.source = temp;
&lt;br&gt;+	}
&lt;br&gt;+
&lt;br&gt;+	public boolean equals(Object o) {
&lt;br&gt;+		if (o == null) return false;
&lt;br&gt;+		if (!(o instanceof RelationshipPK)) return false;
&lt;br&gt;+		
&lt;br&gt;+		RelationshipPK rPk = (RelationshipPK)o;
&lt;br&gt;+		
&lt;br&gt;+		return new EqualsBuilder().append(getSource(), rPk.getSource())
&lt;br&gt;+		.append(getTarget(), rPk.getTarget()).isEquals();
&lt;br&gt;+	}
&lt;br&gt;+	
&lt;br&gt;+	public int hashCode() {
&lt;br&gt;+		return new HashCodeBuilder(123455667, -1456658990).append(this.target).append(this.source).toHashCode();
&lt;br&gt;+	}
&lt;br&gt;+}
&lt;br&gt;Index: src/net/smartlab/web/registry/Relationship.java
&lt;br&gt;===================================================================
&lt;br&gt;--- src/net/smartlab/web/registry/Relationship.java	(rÃ©vision 1234)
&lt;br&gt;+++ src/net/smartlab/web/registry/Relationship.java	(copie de travail)
&lt;br&gt;@@ -22,6 +22,9 @@
&lt;br&gt;&amp;nbsp; */
&lt;br&gt;&amp;nbsp;package net.smartlab.web.registry;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+import org.apache.commons.lang.builder.EqualsBuilder;
&lt;br&gt;+import org.apache.commons.lang.builder.HashCodeBuilder;
&lt;br&gt;+
&lt;br&gt;&amp;nbsp;import net.smartlab.web.BusinessObject;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;/**
&lt;br&gt;@@ -35,28 +38,16 @@
&lt;br&gt;&amp;nbsp; * should be created to ensure full browseability.
&lt;br&gt;&amp;nbsp; * 
&lt;br&gt;&amp;nbsp; * @author rlogiacco
&lt;br&gt;+ * @hibernate.class schema=&amp;quot;registry&amp;quot; table=&amp;quot;`relationship`&amp;quot;
&lt;br&gt;&amp;nbsp; * @stereotype component
&lt;br&gt;&amp;nbsp; */
&lt;br&gt;&amp;nbsp;public class Relationship extends BusinessObject {
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;	private static final long serialVersionUID = -6755482377883259670L;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+	private RelationshipPK relationshipPk = null;
&lt;br&gt;+	
&lt;br&gt;&amp;nbsp;	/**
&lt;br&gt;-	 * The relationship source
&lt;br&gt;-	 * @uml.property name=&amp;quot;source&amp;quot;
&lt;br&gt;-	 * @uml.associationEnd inverse=&amp;quot;relationships:net.smartlab.web.registry.Entity&amp;quot;
&lt;br&gt;-	 * @directed true
&lt;br&gt;-	 */
&lt;br&gt;-	private Entity source;
&lt;br&gt;-
&lt;br&gt;-	/**
&lt;br&gt;-	 * The relationship target.
&lt;br&gt;-	 * 
&lt;br&gt;-	 * @directed true
&lt;br&gt;-	 */
&lt;br&gt;-	private Entity target;
&lt;br&gt;-
&lt;br&gt;-	/**
&lt;br&gt;&amp;nbsp;	 * A name identifying the relationship.
&lt;br&gt;&amp;nbsp;	 */
&lt;br&gt;&amp;nbsp;	private String name;
&lt;br&gt;@@ -76,33 +67,11 @@
&lt;br&gt;&amp;nbsp;	 * @param name the relationship type.
&lt;br&gt;&amp;nbsp;	 */
&lt;br&gt;&amp;nbsp;	public Relationship(Entity source, Entity target, String name) {
&lt;br&gt;-		this.source = source;
&lt;br&gt;-		this.target = target;
&lt;br&gt;+		this.relationshipPk = new RelationshipPK(source, target);
&lt;br&gt;&amp;nbsp;		this.name = name;
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;	/**
&lt;br&gt;-	 * Returns the item from which the relationship originates.
&lt;br&gt;-	 * 
&lt;br&gt;-	 * @return returns the source.
&lt;br&gt;-	 * @uml.property &amp;nbsp;name=&amp;quot;source&amp;quot;
&lt;br&gt;-	 * @hibernate.parent column=&amp;quot;`source`&amp;quot;
&lt;br&gt;-	 */
&lt;br&gt;-	public Entity getSource() {
&lt;br&gt;-		return source;
&lt;br&gt;-	}
&lt;br&gt;-
&lt;br&gt;-	/**
&lt;br&gt;-	 * Sets the item from which the relationship originates.
&lt;br&gt;-	 * 
&lt;br&gt;-	 * @param source the source to set.
&lt;br&gt;-	 * @uml.property &amp;nbsp;name=&amp;quot;source&amp;quot;
&lt;br&gt;-	 */
&lt;br&gt;-	public void setSource(Entity source) {
&lt;br&gt;-		this.source = source;
&lt;br&gt;-	}
&lt;br&gt;-
&lt;br&gt;-	/**
&lt;br&gt;&amp;nbsp;	 * Returns the relationship name.
&lt;br&gt;&amp;nbsp;	 * 
&lt;br&gt;&amp;nbsp;	 * @return returns the name.
&lt;br&gt;@@ -122,48 +91,38 @@
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;	/**
&lt;br&gt;-	 * Returns the item to which the relationship is directed.
&lt;br&gt;-	 * 
&lt;br&gt;-	 * @return returns the target.
&lt;br&gt;-	 * @hibernate.many-to-one column=&amp;quot;`target`&amp;quot; not-null=&amp;quot;true&amp;quot;
&lt;br&gt;+	 * Reverses the relationship direction.
&lt;br&gt;&amp;nbsp;	 */
&lt;br&gt;-	public Entity getTarget() {
&lt;br&gt;-		return target;
&lt;br&gt;+	public void reverse() {
&lt;br&gt;+		this.relationshipPk.reverse();
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;+	
&lt;br&gt;+	
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;	/**
&lt;br&gt;-	 * Sets the item to which the relationship is directed.
&lt;br&gt;-	 * 
&lt;br&gt;-	 * @param target the target to set.
&lt;br&gt;+	 * @hibernate.id
&lt;br&gt;+	 * @TODO documentation
&lt;br&gt;+	 * @return
&lt;br&gt;&amp;nbsp;	 */
&lt;br&gt;-	public void setTarget(Entity target) {
&lt;br&gt;-		this.target = target;
&lt;br&gt;+	public RelationshipPK getRelationshipPk() {
&lt;br&gt;+		return relationshipPk;
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-	/**
&lt;br&gt;-	 * Reverses the relationship direction.
&lt;br&gt;-	 */
&lt;br&gt;-	public void reverse() {
&lt;br&gt;-		Entity temp = this.target;
&lt;br&gt;-		this.target = this.source;
&lt;br&gt;-		this.source = temp;
&lt;br&gt;+	public void setRelationshipPk(RelationshipPK relationshipPk) {
&lt;br&gt;+		this.relationshipPk = relationshipPk;
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-	/**
&lt;br&gt;-	 * @see java.lang.Object#equals(java.lang.Object)
&lt;br&gt;-	 */
&lt;br&gt;-	public boolean equals(Object obj) {
&lt;br&gt;-		if (obj instanceof Relationship) {
&lt;br&gt;-			Relationship relationship = (Relationship)obj;
&lt;br&gt;-			return relationship.target.getId() == this.target.getId() &amp;&amp; relationship.name.equals(this.name);
&lt;br&gt;-		}
&lt;br&gt;-		return false;
&lt;br&gt;+	public boolean equals(Object o) {
&lt;br&gt;+		if (o == null) return false;
&lt;br&gt;+		if (!(o instanceof Relationship)) return false;
&lt;br&gt;+		
&lt;br&gt;+		Relationship r = (Relationship)o;
&lt;br&gt;+		
&lt;br&gt;+		return new EqualsBuilder().append(getRelationshipPk(), r.getRelationshipPk())
&lt;br&gt;+		.append(getName(), r.getName()).isEquals();
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;-
&lt;br&gt;-	/**
&lt;br&gt;-	 * @see java.lang.Object#hashCode()
&lt;br&gt;-	 */
&lt;br&gt;+	
&lt;br&gt;&amp;nbsp;	public int hashCode() {
&lt;br&gt;-		return ( this.name + this.source.getId() + this.target.getId()).hashCode();
&lt;br&gt;+		return new HashCodeBuilder(123455667, -1456658990).append(this.relationshipPk).append(this.name).toHashCode();
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;Index: /home/sebastien/workspace/smartweb/modules/registry/res/smartweb-registry.jar.hcf
&lt;br&gt;===================================================================
&lt;br&gt;Cannot display: file marked as a binary type.
&lt;br&gt;svn:mime-type = application/octet-stream
&lt;br&gt;&lt;br&gt;Property changes on: /home/sebastien/workspace/smartweb/modules/registry/res/smartweb-registry.jar.hcf
&lt;br&gt;___________________________________________________________________
&lt;br&gt;Name: svn:mime-type
&lt;br&gt;&amp;nbsp; &amp;nbsp;- application/octet-stream
&lt;br&gt;&amp;nbsp; &amp;nbsp;+ text/xml
&lt;br&gt;Index: pom.xml
&lt;br&gt;===================================================================
&lt;br&gt;--- pom.xml	(rÃ©vision 1234)
&lt;br&gt;+++ pom.xml	(copie de travail)
&lt;br&gt;@@ -260,7 +260,7 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/component&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/components&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;componentProperties&amp;gt;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;configurationfile&amp;gt;${basedir}/res/smartweb.jar.hcf&amp;lt;/configurationfile&amp;gt;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;configurationfile&amp;gt;${basedir}/res/smartweb-registry.jar.hcf&amp;lt;/configurationfile&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;outputfilename&amp;gt;schema.sql&amp;lt;/outputfilename&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;export&amp;gt;false&amp;lt;/export&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;drop&amp;gt;true&amp;lt;/drop&amp;gt;
&lt;br&gt;&lt;/tt&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;br /&gt; &lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;smartweb-user mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17459843&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-user&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://www.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smartweb-registry.jar.hcf&lt;/strong&gt; (1K) &lt;a href=&quot;http://www.nabble.com/attachment/17459843/0/smartweb-registry.jar.hcf&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Users-f17547.html&quot; embed=&quot;fixTarget[17547]&quot; target=&quot;_top&quot; &gt;SmartWeb Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-registry--Issues-Installing-jar-in-Maven-Repo-tp17459843s17546p17459843.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17424910</id>
	<title>Fwd: FW: FATELA GIRARE salvera' un bambino</title>
	<published>2008-05-23T05:51:43Z</published>
	<updated>2008-05-23T05:51:43Z</updated>
	<author>
		<name>Pino Contartese</name>
	</author>
	<content type="html">Fatela Girare&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;---------- Messaggio inoltrato ----------&lt;br&gt;Da: &lt;b class=&quot;gmail_sendername&quot;&gt;Giancarlo Naso&lt;/b&gt; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17424910&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gianaso@...&lt;/a&gt;&amp;gt;&lt;br&gt;Date: 23 maggio 2008 13.54&lt;br&gt;
Oggetto: FW: FATELA GIRARE salvera&amp;#39; un bambino&lt;br&gt;A: &lt;br&gt;&lt;br&gt;&lt;br&gt;



&lt;div&gt;
&lt;br&gt;&lt;blockquote&gt;&lt;blockquote&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote&gt;&lt;hr&gt;&lt;blockquote&gt;&lt;blockquote&gt;&lt;blockquote&gt;&lt;blockquote&gt;&lt;blockquote&gt;&lt;blockquote&gt;&lt;blockquote&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt;&lt;blockquote&gt;&lt;blockquote&gt;&lt;blockquote&gt;FATELA GIRARE salvera&amp;#39; un bambino&lt;br&gt;
&amp;gt; &amp;gt; Se la cestinerete davvero non avete cuore.&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Salve, sono un padre di 29 anni. Io e mia moglie abbiamo avuto una&lt;br&gt;&amp;gt; &amp;gt; vita&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; meravigliosa.&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Dio ci ha voluto benedire con una bellissima bambina.&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Il nome di nostra figlia è Rachele. Ha 10 anni. Poco tempo fa i&lt;br&gt;&amp;gt; &amp;gt; dottori&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; hanno rilevato un cancro al cervello nel suo piccolo corpo.&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; C&amp;#39;è una sola via per salvarla è operare.&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Purtroppo, noi non abbiamo denaro sufficiente per far fronte al&lt;br&gt;&amp;gt; &amp;gt; costo.&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; AOL e ZDNET hanno acconsentito ad aiutarci.&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; L&amp;#39;unico modo con il quale loro possono aiutarci è questo: Io invio&lt;br&gt;
&amp;gt; &amp;gt; questa&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; email a voi e voi inviatela ad altre persone. AOL rileverà la traccia&lt;br&gt;&amp;gt; &amp;gt; di&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Questa e-mail e calcolerà quante persone la riceveranno.&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Ogni persona che aprirà questa e-mail e la invierà ad altre persone&lt;br&gt;&amp;gt; &amp;gt; ci&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; donerà 32 centesimi.&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Per favore aiutateci.&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Con sincerità,&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; George Arlington&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Barbara Varano&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Laboratorio di Virologia&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Istituto Superiore di Sanità&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Viale Regina Elena 299&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; 00161 Roma&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Tel 06-49903170&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Fax 06-49387184&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Dr Fabrizio Bianchi 1° Ricercatore CNR Sezione Epidemiologia Istituto&lt;br&gt;&amp;gt; &amp;gt; di&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Fisiologia Clinica Consiglio Nazionale delle Ricerche Area di Ricerca&lt;br&gt;&amp;gt; &amp;gt; di&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; San&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Cataldo Via Moruzzi,1 - 56127 PISA (Italy) phone: +39-(0)50-3152100/1&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; fax: +39-(0)50-3152095&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Massimiliano Giangaré cell. 328 9583457&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Prof. Ettore Cardarelli Università degli studi di Roma &amp;#39;La Sapienza&amp;#39;&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Via Eudossiana 18 00184 Roma&lt;/blockquote&gt;&lt;/blockquote&gt;&lt;/blockquote&gt;&lt;br&gt;&lt;hr&gt;Windows Live Mail &lt;a href=&quot;http://get.live.com/wlmail/overview&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Controlla i tuoi account di posta con un unico programma, è GRATIS!&lt;/a&gt; &lt;/blockquote&gt;
&lt;br&gt;&lt;hr&gt;Live Search Maps &lt;a href=&quot;http://maps.live.it/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Vorresti un pub diverso dal solito? Cercalo con Live Search Maps!&lt;/a&gt; &lt;/blockquote&gt;&lt;br&gt;&lt;hr&gt;Windows Live Mobile &lt;a href=&quot;http://windowslivemobile.msn.com/BrowserServiceHotmail.aspx?lang=it-it&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Da oggi la posta di Hotmail la controlli anche dal tuo cellulare! &lt;/a&gt;&lt;/blockquote&gt;
&lt;br&gt;&lt;hr&gt;Windows Live Mail &lt;a href=&quot;http://get.live.com/wlmail/overview&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Controlla i tuoi account di posta con un unico programma, è GRATIS!&lt;/a&gt; &lt;/blockquote&gt;&lt;br&gt;&lt;hr&gt;Windows Live Mobile &lt;a href=&quot;http://windowslivemobile.msn.com/Homepage.aspx?lang=it-it&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Collegati a Messenger dal tuo cellulare!&lt;/a&gt; &lt;/blockquote&gt;
&lt;br&gt;&lt;hr&gt;Windows Live Mail &lt;a href=&quot;http://get.live.com/wlmail/overview&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Controlla i tuoi account di posta con un unico programma, è GRATIS!&lt;/a&gt; &lt;/blockquote&gt;&lt;br&gt;&lt;hr&gt;Windows Live Mobile &lt;a href=&quot;http://windowslivemobile.msn.com/Homepage.aspx?lang=it-it&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Collegati a Messenger dal tuo cellulare!&lt;/a&gt; &lt;/blockquote&gt;
&lt;br&gt;&lt;hr&gt;Live Search Maps &lt;a href=&quot;http://maps.live.it/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Vorresti un pub diverso dal solito? Cercalo con Live Search Maps!&lt;/a&gt; &lt;/blockquote&gt;&lt;br&gt;&lt;hr&gt;Windows Live Mail &lt;a href=&quot;http://get.live.com/wlmail/overview&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Controlla i tuoi account di posta con un unico programma, è GRATIS!&lt;/a&gt; &lt;/blockquote&gt;
&lt;br&gt;&lt;hr&gt;Windows Live Mobile &lt;a href=&quot;http://windowslivemobile.msn.com/BrowserServiceHotmail.aspx?lang=it-it%20&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Da oggi la posta di Hotmail la controlli anche dal tuo cellulare! &lt;/a&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17424910&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Fwd%3A-FW%3A-FATELA-GIRARE-salvera%27-un-bambino-tp17424910s17546p17424910.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17415719</id>
	<title>Re: JTA configuration</title>
	<published>2008-05-22T16:27:40Z</published>
	<updated>2008-05-22T16:27:40Z</updated>
	<author>
		<name>Roberto Lo Giacco-4</name>
	</author>
	<content type="html">Hi Stefano,
&lt;br&gt;I don't know very well jetty, but in my experience jetty is not at all
&lt;br&gt;JTA enabled, meaning you can't test JTA in jetty without adding some
&lt;br&gt;sort of JTA wrapper around jetty threading handler...
&lt;br&gt;&lt;br&gt;I'll further investigate, but I'm not sure....
&lt;br&gt;&lt;br&gt;2008/5/22 Stefano Vetrini &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17415719&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stvnove@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi All!!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm testing smartweb and smartweb-auth outside Jboss (I'm using jetty),
&lt;br&gt;&amp;gt; but I have a problem:
&lt;br&gt;&amp;gt; I don't know how to manage transaction &amp;nbsp;with smartweb outside Jboss :-/
&lt;br&gt;&amp;gt; In particular Jetty doesn't have an own JTA.
&lt;br&gt;&amp;gt; Who can help me?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; bye
&lt;br&gt;&amp;gt; s.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.net email is sponsored by: Microsoft
&lt;br&gt;&amp;gt; Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; smartweb-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17415719&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;Roberto Lo Giacco
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17415719&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/JTA-configuration-tp17413591s17546p17415719.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17413591</id>
	<title>JTA configuration</title>
	<published>2008-05-22T14:13:19Z</published>
	<updated>2008-05-22T14:13:19Z</updated>
	<author>
		<name>svetrini</name>
	</author>
	<content type="html">Hi All!!
&lt;br&gt;&lt;br&gt;I'm testing smartweb and smartweb-auth outside Jboss (I'm using jetty),
&lt;br&gt;but I have a problem:
&lt;br&gt;I don't know how to manage transaction &amp;nbsp;with smartweb outside Jboss :-/
&lt;br&gt;In particular Jetty doesn't have an own JTA.
&lt;br&gt;Who can help me?
&lt;br&gt;&lt;br&gt;bye
&lt;br&gt;s.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17413591&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/JTA-configuration-tp17413591s17546p17413591.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17406684</id>
	<title>Interventi sistemistici e note</title>
	<published>2008-05-22T08:23:23Z</published>
	<updated>2008-05-22T08:23:23Z</updated>
	<author>
		<name>Roberto Lo Giacco-4</name>
	</author>
	<content type="html">Nei prossimi giorni verranno messi in atto alcuni interventi
&lt;br&gt;sistemistici che hanno l'obiettivo di migrare i server aziendali verso
&lt;br&gt;una situazione più stabile e pulita dove non siano presenti le
&lt;br&gt;condizioni di mancanza di ordine che sperimentiamo da un pò di tempo a
&lt;br&gt;questa parte.
&lt;br&gt;&lt;br&gt;Gli interventi prevedono la formattazione delle macchine web, master,
&lt;br&gt;test, leonardo e zara in maniera progressiva.
&lt;br&gt;&lt;br&gt;Vi invito a segnalare installazioni di software particolari da dover
&lt;br&gt;backuppare che potrebbero essere a noi sconosciute ed ovviamente ad
&lt;br&gt;effettuare il backup (o indicare i percorsi da backuppare) di quanto
&lt;br&gt;ritenete possa esservi utile e non deve andare perduto.
&lt;br&gt;&lt;br&gt;A strettissimo giro verranno anche formattate le postazioni desktop
&lt;br&gt;dove il sistema operativo diverrà Ubuntu 8.04: in questo caso è ancor
&lt;br&gt;maggiormente necessario che indichiate eventuali file che dobbiamo
&lt;br&gt;backuppare in quanto non provvederemo a verificare i files installati.
&lt;br&gt;&lt;br&gt;Vorrei segnalare infine come non sia stata affatto dedicata attenzione
&lt;br&gt;al rispetto delle procedure di lavorazione del software indicate nei
&lt;br&gt;documenti Naming Convention e Produzione:
&lt;br&gt;&amp;nbsp;- commenti su subversion inesistenti
&lt;br&gt;&amp;nbsp;- progetti lavorati al di fuori del repository e committati a blocchi
&lt;br&gt;&amp;nbsp;- strutture dei repository inconsistenti
&lt;br&gt;&amp;nbsp;- naming convention violate abissalmente
&lt;br&gt;&amp;nbsp;- carenza di documentazione e di test unitari
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;Roberto Lo Giacco
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;smartweb-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17406684&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Developers-f17548.html&quot; embed=&quot;fixTarget[17548]&quot; target=&quot;_top&quot; &gt;SmartWeb Developers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Interventi-sistemistici-e-note-tp17406684s17546p17406684.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17204245</id>
	<title>Re: Problem smartweb-1.2.4 with Struts 1.3.8</title>
	<published>2008-05-13T02:07:14Z</published>
	<updated>2008-05-13T02:07:14Z</updated>
	<author>
		<name>svetrini</name>
	</author>
	<content type="html">Sorry, but I have few information to help you...&lt;br&gt;I can only suggest you tu use maven like your dependncy manger.&lt;br&gt;There is an eclipse plugin too. &lt;br&gt;&lt;a href=&quot;http://maven.apache.org/eclipse-plugin.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://maven.apache.org/eclipse-plugin.html&lt;/a&gt;&lt;br&gt;
&lt;br&gt;bye&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2008/5/12 Rocco Fusella &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17204245&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rfusella@...&lt;/a&gt;&amp;gt;:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;div dir=&quot;ltr&quot;&gt;When
I use smartweb there is a problem as it tries version of struts-1.2.8
while I have to use the version of struts-1.3.8 because otherwise I
will not work smartweb-auth. How can I do?&lt;/div&gt;
&lt;br&gt;-------------------------------------------------------------------------&lt;br&gt;
This SF.net email is sponsored by: Microsoft&lt;br&gt;
Defy all challenges. Microsoft(R) Visual Studio 2008.&lt;br&gt;
&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________&lt;br&gt;
smartweb-user mailing list&lt;br&gt;
&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17204245&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-user@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-user&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-user&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft 
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008. 
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;smartweb-user mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17204245&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-user&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Users-f17547.html&quot; embed=&quot;fixTarget[17547]&quot; target=&quot;_top&quot; &gt;SmartWeb Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-smartweb-1.2.4-with-Struts-1.3.8-tp17194665s17546p17204245.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17194665</id>
	<title>Problem smartweb-1.2.4 with Struts 1.3.8</title>
	<published>2008-05-12T12:31:00Z</published>
	<updated>2008-05-12T12:31:00Z</updated>
	<author>
		<name>Rocco Fusella-2</name>
	</author>
	<content type="html">&lt;div id=&quot;result_box&quot; dir=&quot;ltr&quot;&gt;When
I use smartweb there is a problem as it tries version of struts-1.2.8
while I have to use the version of struts-1.3.8 because otherwise I
will not work smartweb-auth. How can I do?&lt;/div&gt;
&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft 
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008. 
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;smartweb-user mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17194665&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-user&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Users-f17547.html&quot; embed=&quot;fixTarget[17547]&quot; target=&quot;_top&quot; &gt;SmartWeb Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-smartweb-1.2.4-with-Struts-1.3.8-tp17194665s17546p17194665.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17194467</id>
	<title>Re: [auth] Error when I try to do login</title>
	<published>2008-05-12T12:20:42Z</published>
	<updated>2008-05-12T12:20:42Z</updated>
	<author>
		<name>Roberto Lo Giacco-4</name>
	</author>
	<content type="html">This should work for you... just drop the handler attribute...
&lt;br&gt;&lt;br&gt;&amp;lt;exception type=&amp;quot;net.smartlab.web.auth.AuthenticationException&amp;quot;
&lt;br&gt;key=&amp;quot;operation.notPermitted&amp;quot; path=&amp;quot;/autorizationException.jsp&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;Roberto Lo Giacco
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft 
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008. 
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;smartweb-user mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17194467&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smartweb-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/smartweb-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/smartweb-user&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/SmartWeb-Users-f17547.html&quot; embed=&quot;fixTarget[17547]&quot; target=&quot;_top&quot; &gt;SmartWeb Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-auth--Error-when-I-try-to-do-login-tp17146537s17546p17194467.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17194432</id>
	<title>Re: [auth] Error when I try to do login</title>
	<published>2008-05-12T12:18:20Z</published>
	<updated>2008-05-12T12:18:20Z</updated>
	<author>
		<name>Roberto Lo Giacco-4</name>
	</author>
	<content type="html">Hi Rocco, I'll try to answer your question
&lt;br&gt;&lt;br&gt;2008/5/12 Rocco Fusella &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17194432&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rfusella@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt; problem is because I wrong word in config struts but now it's ok.
&lt;br&gt;&lt;br&gt;Can you tell us what was the problem so we can document it? If you got
&lt;br&gt;that error may be someone else will get into the same problem in the
&lt;br&gt;future...
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Now I have another problem. when I insert password for login if the
&lt;br&gt;&amp;gt; credenzial is ok login no problem
&lt;br&gt;&amp;gt; but when I insert wrong credenzial I have this exception.
&lt;br&gt;&amp;gt; &amp;nbsp;How can I do to manage this this exceptional viewing the login page if the
&lt;br&gt;&amp;gt; credentials are wrong?
&lt;br&gt;&amp;gt; This is my xml config of struts-auth for global exception
&lt;br&gt;&amp;gt; &amp;lt;exception type=&amp;quot;net.smartlab.web.auth.AuthenticationException&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;key=&amp;quot;operation.notPermitted&amp;quot; path=&amp;quot;/autorizationException.jsp&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; handler=&amp;quot;net.smartlab.web.auth.handlers.PasswordAuthenticationHandler&amp;quot;/&amp;gt;
&lt;/div&gt;&lt;br&gt;The problem here is the handler attribute as you specified the wrong
&lt;br&gt;class, probably you get confused by the class name.
&lt;br&gt;&lt;br&gt;In smartweb-auth handlers are used to extend the basic functionalities
&lt;br&gt;of authentication, authorization, accounting or registration.... they
&lt;br&gt;cannot be used inside the struts configuration file as there the
&lt;br&gt;handlers are used to manage exceptions...
&lt;br&gt;&lt;br&gt;To be brief: you specified the wrong class in the struts configuration.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 18:48:19,257 WARN &amp;nbsp;[ExceptionCatcher] Exception from exceptionCommand
&lt;br&gt;&amp;gt; 'servlet-exception'
&lt;br&gt;&amp;gt; &amp;nbsp;java.lang.ClassCastException
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.struts.chain.commands.servlet.ExceptionHandler.handle(ExceptionHandler.java:61)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.struts.chain.commands.AbstractExceptionHandler.execute(AbstractExceptionHandler.java:99)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase.java:51)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:190)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.struts.chain.commands.ExceptionCatcher.postprocess(ExceptionCatcher.java:163)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:209)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:283)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at net.smartlab.web.ActionServlet.process(ActionServlet.java:64)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.struts.chain.commands.servlet.PerformForward.handleAsForward(PerformForward.java:113)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.struts.chain.commands.servlet.PerformForward.perform(PerformForward.java:96)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.struts.chain.commands.AbstractPerformForward.execute(AbstractPerformForward.java:54)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase.java:51)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:190)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.commons.chain.generic.LookupCommand.execute(LookupCommand.java:304)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:190)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:283)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at net.smartlab.web.ActionServlet.process(ActionServlet.java:64)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at net.smartlab.web.auth.ActionFilter.doFilter(ActionFilter.java:92)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:153)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at java.lang.Thread.run(Thread.java:536)
&lt;br&gt;&amp;gt; &amp;nbsp;18:48:19,304 ERROR [[action]] Servlet.service() for servlet action threw
&lt;br&gt;&amp;gt; exception
&lt;br&gt;&amp;gt; net.smartlab.web.auth.AuthenticationException: Invalid credentials
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; net.smartlab.web.auth.handlers.PasswordAuthenticationHandler.onLogin(PasswordAuthenticationHandler.java:57)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at net.smartlab.web.auth.Domain.login(Domain.java:302)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at net.smartlab.web.auth.UserAction.login(UserAction.java:280)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Method.java:324)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at net.smartlab.web.DynaAction.execute(DynaAction.java:150)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at net.smartlab.web.Action.execute(Action.java:98)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.struts.chain.commands.servlet.ExecuteAction.execute(ExecuteAction.java:58)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.struts.chain.commands.AbstractExecuteAction.execute(AbstractExecuteAction.java:67)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase.java:51)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:190)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.commons.chain.generic.LookupCommand.execute(LookupCommand.java:304)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:190)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:283)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at net.smartlab.web.ActionServlet.process(ActionServlet.java:64)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at
&lt;br&gt;&amp;gt; org.apache.struts.cha