<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-13450</id>
	<title>Nabble - java.net - GlassFish</title>
	<updated>2009-12-14T18:36:17Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/java.net---GlassFish-f13450.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/java.net---GlassFish-f13450.html" />
	<subtitle type="html">The GlassFish community is building a free, open source application server which implements the newest features in the Java EE 5 platform (the next version of the J2EE platform). java.net - GlassFish home is &lt;a href=&quot;http://glassfish.dev.java.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26788484</id>
	<title>Re: delegate=&quot;true&quot; or delegate=&quot;false&quot;</title>
	<published>2009-12-14T18:36:17Z</published>
	<updated>2009-12-14T18:36:17Z</updated>
	<author>
		<name>jluehe</name>
	</author>
	<content type="html">On 12/12/09 02:45, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26788484&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;glassfish@...&lt;/a&gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have read almost all post in forums and web, I have still problems about delegation model of my EAR application which is consisting WEB and EJB module. My web module is also consisting restful web services.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have read necessary documenations and it says:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [b]
&lt;br&gt;&amp;gt; The Java Servlet speciication recommends that a webmodule's class loader look in the local class loader before delegating to its parent. You canmake this class &amp;nbsp;loader follow the delegation inversion model in the Servlet speciication by setting delegate=&amp;quot;false&amp;quot; in the class-loader element of the sun-web.xml ile. It is safe to do this only for a webmodule that does not interact with any other modules. For details, see “class-loader” in Sun GlassFish Enterprise Server v3 Application Deployment Guide.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The default value is delegate=&amp;quot;true&amp;quot;, which causes a webmodule's class loader to delegate in the samemanner as the other class loaders. Youmust use delegate=&amp;quot;true&amp;quot; for a web application that accesses EJB components or that acts as a web service client or endpoint. For details about sun-web.xml, see Sun GlassFish Enterprise Server v3 Application Deployment Guide.
&lt;br&gt;&amp;gt; [/b]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Shortly, I want to use always my bundled libraries in my modules without regard to be included in my application server. If my modules had this library, they should be loaded from my application.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1 - ) For example, Glassfish V3 is bundled with Jersey 1.1.4.1. If my modules need to use 1.1.5-ea-SNAPSHOT what my delegation value in my sun-web.xml should be ? (Both of my modules need to use 1.1.5-ea-SNAPHOT)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2 - ) As far as I know, the packages javax.* are not loaded with this delegation model. If I want to use new version of these libraries, what should I do? For example JSR-303 libraries is good example of it. I want to use new snaphots of Hibernate Validater which has javax.validation.* packages. I am not sure in this case what will happen. 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 3 - ) What is the motivation behind this setting which is default false. I think that it should be default false. Because If an application has a library, it means that it delibrately consisting it. That is to say, it should be loaded.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 4 - ) Again from my understandings, this setting is just for web modules. What is the equalivant setting in EJB Modules.
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;There are a number of packages, including &amp;quot;java.*&amp;quot; and &amp;quot;javax.*&amp;quot;,
&lt;br&gt;for which symbol resolution will always be delegated to the parent 
&lt;br&gt;classloader,
&lt;br&gt;regardless of the WebappClassLoader's &amp;quot;delegate&amp;quot; setting.
&lt;br&gt;&lt;br&gt;This is to ensure that applications are prevented from overriding core 
&lt;br&gt;Java runtime
&lt;br&gt;classes or changing the API versions of specifications that are part of 
&lt;br&gt;the Java EE
&lt;br&gt;platform.
&lt;br&gt;&lt;br&gt;The only exception to the &amp;quot;unconditional delegation&amp;quot; rule is related to the
&lt;br&gt;&amp;quot;useBundledJsf&amp;quot; configuration option (also in sun-web.xml), which allows
&lt;br&gt;a web application to have a bundled &amp;quot;javax.faces.*&amp;quot; &amp;nbsp;(in addition to 
&lt;br&gt;&amp;quot;com.sun.faces.*&amp;quot;) honored.
&lt;br&gt;&lt;br&gt;See Arun Gupta's blog at
&lt;br&gt;&lt;a href=&quot;http://weblogs.java.net/blog/2008/12/11/totd-59-alternative-jsf-implementations-glassfish-myfaces-and-tomahawk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weblogs.java.net/blog/2008/12/11/totd-59-alternative-jsf-implementations-glassfish-myfaces-and-tomahawk&lt;/a&gt;&lt;br&gt;for additional info.
&lt;br&gt;&lt;br&gt;As far as I know, the WebappClassloader is the only type of classloader in
&lt;br&gt;GlassFish whose delegation behaviour is configurable.
&lt;br&gt;&lt;br&gt;Jan
&lt;br&gt;&lt;br&gt;&amp;gt; [Message sent by forum member 'sessizlik' ]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376145&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376145&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26788484&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26788484&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26788484&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26788484&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/delegate%3D%22true%22-or-delegate%3D%22false%22-tp26756470p26788484.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26788038</id>
	<title>JavaEE 6 and GlassFish v3 Virtual Conference - Tomorrow!</title>
	<published>2009-12-14T17:32:07Z</published>
	<updated>2009-12-14T17:32:07Z</updated>
	<author>
		<name>pelegri</name>
	</author>
	<content type="html">I just realized that nobody has sent an invitation to the USERS and DEV 
&lt;br&gt;aliases about the online Virtual Conference that we are hosting 
&lt;br&gt;tomorrow; we had sent invites to several places, including the GlassFish 
&lt;br&gt;registration mailing list, TheAquarium and Twitter@glassfish but we 
&lt;br&gt;missed DEV and USERS.
&lt;br&gt;&lt;br&gt;The online conference is tomorrow, Dec 15th. &amp;nbsp;8am-&amp;gt;5pm. &amp;nbsp;Pacific Time.
&lt;br&gt;&lt;br&gt;It is free but you need to register. &amp;nbsp;Attendance is through your 
&lt;br&gt;(flash-enabled) browser. &amp;nbsp;In addition to the actual presentation 
&lt;br&gt;(slides+audio), there will be demos in a number of the sessions. &amp;nbsp;We 
&lt;br&gt;also provide a chat room and we will answer Qs during the presentation.
&lt;br&gt;&lt;br&gt;Registration is at [1].
&lt;br&gt;Additional details at [2] and [3].
&lt;br&gt;&lt;br&gt;[1]&lt;a href=&quot;https://dct.sun.com/dct/forms/reg_us_2011_956_0.jsp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dct.sun.com/dct/forms/reg_us_2011_956_0.jsp&lt;/a&gt;&lt;br&gt;[2]&lt;a href=&quot;http://blogs.sun.com/theaquarium/entry/java_ee_6_virtual_conference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blogs.sun.com/theaquarium/entry/java_ee_6_virtual_conference&lt;/a&gt;&lt;br&gt;[3]&lt;a href=&quot;http://www.sun.com/software/products/glassfishv3/GlassFish_Conference_Flyer.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sun.com/software/products/glassfishv3/GlassFish_Conference_Flyer.pdf&lt;/a&gt;&lt;br&gt;&lt;br&gt;I will be using twitter @glassfish to let you know when each 
&lt;br&gt;presentation goes online.
&lt;br&gt;&lt;br&gt;The response so far has been very good. &amp;nbsp;Hope to see many of you tomorrow.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - eduard/o
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26788038&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26788038&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/JavaEE-6-and-GlassFish-v3-Virtual-Conference---Tomorrow%21-tp26788038p26788038.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26788040</id>
	<title>JavaEE 6 and GlassFish v3 Virtual Conference - Tomorrow!</title>
	<published>2009-12-14T17:32:07Z</published>
	<updated>2009-12-14T17:32:07Z</updated>
	<author>
		<name>pelegri</name>
	</author>
	<content type="html">I just realized that nobody has sent an invitation to the USERS and DEV 
&lt;br&gt;aliases about the online Virtual Conference that we are hosting 
&lt;br&gt;tomorrow; we had sent invites to several places, including the GlassFish 
&lt;br&gt;registration mailing list, TheAquarium and Twitter@glassfish but we 
&lt;br&gt;missed DEV and USERS.
&lt;br&gt;&lt;br&gt;The online conference is tomorrow, Dec 15th. &amp;nbsp;8am-&amp;gt;5pm. &amp;nbsp;Pacific Time.
&lt;br&gt;&lt;br&gt;It is free but you need to register. &amp;nbsp;Attendance is through your 
&lt;br&gt;(flash-enabled) browser. &amp;nbsp;In addition to the actual presentation 
&lt;br&gt;(slides+audio), there will be demos in a number of the sessions. &amp;nbsp;We 
&lt;br&gt;also provide a chat room and we will answer Qs during the presentation.
&lt;br&gt;&lt;br&gt;Registration is at [1].
&lt;br&gt;Additional details at [2] and [3].
&lt;br&gt;&lt;br&gt;[1]&lt;a href=&quot;https://dct.sun.com/dct/forms/reg_us_2011_956_0.jsp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dct.sun.com/dct/forms/reg_us_2011_956_0.jsp&lt;/a&gt;&lt;br&gt;[2]&lt;a href=&quot;http://blogs.sun.com/theaquarium/entry/java_ee_6_virtual_conference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blogs.sun.com/theaquarium/entry/java_ee_6_virtual_conference&lt;/a&gt;&lt;br&gt;[3]&lt;a href=&quot;http://www.sun.com/software/products/glassfishv3/GlassFish_Conference_Flyer.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sun.com/software/products/glassfishv3/GlassFish_Conference_Flyer.pdf&lt;/a&gt;&lt;br&gt;&lt;br&gt;I will be using twitter @glassfish to let you know when each 
&lt;br&gt;presentation goes online.
&lt;br&gt;&lt;br&gt;The response so far has been very good. &amp;nbsp;Hope to see many of you tomorrow.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - eduard/o
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26788040&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26788040&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-dev-f13451.html&quot; embed=&quot;fixTarget[13451]&quot; target=&quot;_top&quot; &gt;java.net - glassfish dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/JavaEE-6-and-GlassFish-v3-Virtual-Conference---Tomorrow%21-tp26788040p26788040.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26787752</id>
	<title>deploying and running an app client using glassfish v 2.1</title>
	<published>2009-12-14T16:52:15Z</published>
	<updated>2009-12-14T16:52:15Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">I'm trying to deploy and run an app client using glassfish. &amp;nbsp;I deploy the jar using the following application-client.xml:
&lt;br&gt;[code]
&lt;br&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;
&lt;br&gt;&amp;lt;application-client version=&amp;quot;5&amp;quot; xmlns=&amp;quot;&lt;a href=&quot;http://java.sun.com/xml/ns/javaee&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://java.sun.com/xml/ns/javaee&lt;/a&gt;&amp;quot; xmlns:xsi=&amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/a&gt;&amp;quot; xsi:schemaLocation=&amp;quot;&lt;a href=&quot;http://java.sun.com/xml/ns/javaee&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://java.sun.com/xml/ns/javaee&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://java.sun.com/xml/ns/javaee/application-client_5.xsd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://java.sun.com/xml/ns/javaee/application-client_5.xsd&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;display-name&amp;gt;ApplicationClient1&amp;lt;/display-name&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;lt;/application-client&amp;gt;
&lt;br&gt;[/code]
&lt;br&gt;&lt;br&gt;But when I try to run the application (through the glassfish admin console) I get the following runtime error:
&lt;br&gt;[code]
&lt;br&gt;Dec 14, 2009 7:36:46 PM com.sun.enterprise.appclient.MainWithModuleSupport &amp;lt;init&amp;gt;
&lt;br&gt;WARNING: ACC003: Application threw an exception.
&lt;br&gt;java.lang.NoClassDefFoundError: com/foo/bar
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at applicationclient1.Main.main(Main.java:22)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Method.java:597)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.util.Utility.invokeApplicationMain(Utility.java:266)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.appclient.MainWithModuleSupport.&amp;lt;init&amp;gt;(MainWithModuleSupport.java:449)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.appclient.jws.boot.JWSACCMain.run(JWSACCMain.java:221)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.appclient.jws.boot.JWSACCMain.main(JWSACCMain.java:182)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Method.java:597)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.javaws.Launcher.executeApplication(Launcher.java:1528)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.javaws.Launcher.executeMainClass(Launcher.java:1466)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.javaws.Launcher.doLaunchApp(Launcher.java:1277)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.javaws.Launcher.run(Launcher.java:117)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.Thread.run(Thread.java:637)
&lt;br&gt;Caused by: java.lang.ClassNotFoundException: com.foo.bar
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.loader.EJBClassLoader.findClassData(EJBClassLoader.java:738)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.loader.EJBClassLoader.findClass(EJBClassLoader.java:628)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.ClassLoader.loadClass(ClassLoader.java:315)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.ClassLoader.loadClass(ClassLoader.java:250)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:398)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 22 more
&lt;br&gt;Error launching or running the application
&lt;br&gt;java.lang.reflect.InvocationTargetException
&lt;br&gt;java.lang.reflect.InvocationTargetException
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.appclient.jws.boot.JWSACCMain.run(JWSACCMain.java:221)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.appclient.jws.boot.JWSACCMain.main(JWSACCMain.java:182)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Method.java:597)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.javaws.Launcher.executeApplication(Launcher.java:1528)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.javaws.Launcher.executeMainClass(Launcher.java:1466)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.javaws.Launcher.doLaunchApp(Launcher.java:1277)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.javaws.Launcher.run(Launcher.java:117)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.Thread.run(Thread.java:637)
&lt;br&gt;Caused by: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.appclient.MainWithModuleSupport.&amp;lt;init&amp;gt;(MainWithModuleSupport.java:461)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 15 more
&lt;br&gt;Caused by: java.lang.reflect.InvocationTargetException
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Method.java:597)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.util.Utility.invokeApplicationMain(Utility.java:266)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.appclient.MainWithModuleSupport.&amp;lt;init&amp;gt;(MainWithModuleSupport.java:449)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 15 more
&lt;br&gt;Caused by: java.lang.NoClassDefFoundError: com/foo/bar
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at applicationclient1.Main.main(Main.java:22)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 21 more
&lt;br&gt;Caused by: java.lang.ClassNotFoundException: com.foo.bar
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.loader.EJBClassLoader.findClassData(EJBClassLoader.java:738)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.loader.EJBClassLoader.findClass(EJBClassLoader.java:628)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.ClassLoader.loadClass(ClassLoader.java:315)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.ClassLoader.loadClass(ClassLoader.java:250)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:398)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 22 more
&lt;br&gt;[/code]
&lt;br&gt;&lt;br&gt;the com.foo.bar class being reference is in a jar file called foo.jar. &amp;nbsp;I copied the jar file to the glassfish/lib/ and glassfish/lib/domain/domain/lib/ext/. &amp;nbsp;But I still get the same runtime error. &amp;nbsp; &amp;nbsp;However I'm able to run the application from the command line using the appclient script included with glassfish: ( I had to export the APPCPATH variable so it references the jar file I needed) 
&lt;br&gt;[code]
&lt;br&gt;export APPCPATH=foo.jar
&lt;br&gt;./glassfish/bin/appclient -xml sun-acc.xml myApp.jar 
&lt;br&gt;[/code]
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Jerry
&lt;br&gt;[Message sent by forum member 'djgerbavore' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376552&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376552&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787752&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787752&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/deploying-and-running-an-app-client-using-glassfish-v-2.1-tp26787752p26787752.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26787741</id>
	<title>Re: MySql connector problems, Class name is wrong or classpath</title>
	<published>2009-12-14T16:51:19Z</published>
	<updated>2009-12-14T16:51:19Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">Thanks so much ptony! I tried so many options, to no avail, but what you advised here really helped me out. The minor difference was that JVM settings were not under configurations tab, but under Application Server.
&lt;br&gt;[Message sent by forum member 'java_obsessed' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376551&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376551&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787741&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787741&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/MySql-connector-problems%2C-Class-name-is-wrong-or-classpath-tp21833176p26787741.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26787262</id>
	<title>Re: cleanest upgrade path from early V3 to FCS</title>
	<published>2009-12-14T15:57:15Z</published>
	<updated>2009-12-14T15:57:15Z</updated>
	<author>
		<name>Hassan Schroeder-2</name>
	</author>
	<content type="html">On Mon, Dec 14, 2009 at 3:49 PM, kedar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787262&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Kedar.Mhaswade@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; Maybe you can delete/cleanup the old osig cache:
&lt;br&gt;&amp;gt;&amp;gt; glassfish-home/glassfish-01/glassfish/domains/domain1/osgi-cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Right. I think that's needed. The cache refers to old modules/bundles
&lt;br&gt;&amp;gt; that are different from (older than) the ones available in v3/modules.
&lt;br&gt;&lt;br&gt;Great, that seems to have cured the initial startup failure.
&lt;br&gt;&lt;br&gt;I will have to test a bit to see if there are any anomalies running the
&lt;br&gt;new version with the old config, but at least I can start that now :-)
&lt;br&gt;&lt;br&gt;Thanks much!
&lt;br&gt;-- 
&lt;br&gt;Hassan Schroeder ------------------------ &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787262&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hassan.schroeder@...&lt;/a&gt;
&lt;br&gt;twitter: @hassan
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787262&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787262&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cleanest-upgrade-path-from-early-V3-to-FCS-tp26753575p26787262.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26787175</id>
	<title>Re: cleanest upgrade path from early V3 to FCS</title>
	<published>2009-12-14T15:49:21Z</published>
	<updated>2009-12-14T15:49:21Z</updated>
	<author>
		<name>Kedar Mhaswade</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;Ludovic Champenois wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hassan Schroeder wrote:
&lt;br&gt;&amp;gt;&amp;gt; On Sat, Dec 12, 2009 at 7:17 PM, kedar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787175&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Kedar.Mhaswade@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hmmm. Do you know what version is the old v3 installation?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; build 57
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Another option that should help is --verbose. So, add --verbose
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; to the above command line like:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; v3/glassfishv3/bin/asadmin start-domain --domaindir
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ../glassfish-01/glassfish/domains --verbose domain1
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Too long to paste here; see 
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://webtuitive.com/samples/glassfish-trace&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://webtuitive.com/samples/glassfish-trace&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; Maybe you can delete/cleanup the old osig cache:
&lt;br&gt;&amp;gt; glassfish-home/glassfish-01/glassfish/domains/domain1/osgi-cache
&lt;/div&gt;&lt;br&gt;Right. I think that's needed. The cache refers to old modules/bundles
&lt;br&gt;that are different from (older than) the ones available in v3/modules.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Ludo
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787175&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787175&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787175&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787175&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cleanest-upgrade-path-from-early-V3-to-FCS-tp26753575p26787175.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26787081</id>
	<title>Re: cleanest upgrade path from early V3 to FCS</title>
	<published>2009-12-14T15:41:41Z</published>
	<updated>2009-12-14T15:41:41Z</updated>
	<author>
		<name>Ludovic Champenois</name>
	</author>
	<content type="html">Hassan Schroeder wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Sat, Dec 12, 2009 at 7:17 PM, kedar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787081&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Kedar.Mhaswade@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Hmmm. Do you know what version is the old v3 installation?
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; build 57
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Another option that should help is --verbose. So, add --verbose
&lt;br&gt;&amp;gt;&amp;gt; to the above command line like:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; v3/glassfishv3/bin/asadmin start-domain --domaindir
&lt;br&gt;&amp;gt;&amp;gt; ../glassfish-01/glassfish/domains --verbose domain1
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Too long to paste here; see &amp;lt;&lt;a href=&quot;http://webtuitive.com/samples/glassfish-trace&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://webtuitive.com/samples/glassfish-trace&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;Maybe you can delete/cleanup the old osig cache:
&lt;br&gt;glassfish-home/glassfish-01/glassfish/domains/domain1/osgi-cache
&lt;br&gt;Ludo
&lt;br&gt;&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787081&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787081&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cleanest-upgrade-path-from-early-V3-to-FCS-tp26753575p26787081.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26787061</id>
	<title>Re: cleanest upgrade path from early V3 to FCS</title>
	<published>2009-12-14T15:39:54Z</published>
	<updated>2009-12-14T15:39:54Z</updated>
	<author>
		<name>Hassan Schroeder-2</name>
	</author>
	<content type="html">On Sat, Dec 12, 2009 at 7:17 PM, kedar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787061&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Kedar.Mhaswade@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Hmmm. Do you know what version is the old v3 installation?
&lt;br&gt;&lt;br&gt;build 57
&lt;br&gt;&lt;br&gt;&amp;gt; Another option that should help is --verbose. So, add --verbose
&lt;br&gt;&amp;gt; to the above command line like:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; v3/glassfishv3/bin/asadmin start-domain --domaindir
&lt;br&gt;&amp;gt; ../glassfish-01/glassfish/domains --verbose domain1
&lt;br&gt;&lt;br&gt;Too long to paste here; see &amp;lt;&lt;a href=&quot;http://webtuitive.com/samples/glassfish-trace&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://webtuitive.com/samples/glassfish-trace&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;-- 
&lt;br&gt;Hassan Schroeder ------------------------ &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787061&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hassan.schroeder@...&lt;/a&gt;
&lt;br&gt;twitter: @hassan
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787061&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787061&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cleanest-upgrade-path-from-early-V3-to-FCS-tp26753575p26787061.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26786634</id>
	<title>Re: GlassFish logging stopped working after deployment</title>
	<published>2009-12-14T15:05:50Z</published>
	<updated>2009-12-14T15:05:50Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">I put the log4j jar under the domains/&amp;lt;domain-name&amp;gt;/lib, but it did not solve the problem.
&lt;br&gt;&lt;br&gt;If I remove the part that uses the external library, the logging works fine.
&lt;br&gt;[Message sent by forum member 'tigerwei' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376520&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376520&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26786634&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26786634&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GlassFish-logging-stopped-working-after-deployment-tp26754200p26786634.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26786509</id>
	<title>GFv3 - Getting 403 after login - help in debugging?</title>
	<published>2009-12-14T14:56:44Z</published>
	<updated>2009-12-14T14:56:44Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">I read a post that is similar to mine (see &lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=373343&amp;#373343&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=373343&amp;#373343&lt;/a&gt;) but it looks a bit different and it doesn't seem to answer what I'm getting.
&lt;br&gt;&lt;br&gt;I have a reasonably simple webapp that I'm porting to Glassfish v3 (build 74.2) from Tomcat 6.0.20 and OC4J. &amp;nbsp;The important parts (I believe) of web.xml are:
&lt;br&gt;&lt;br&gt;[code]&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;web-app xmlns=&amp;quot;&lt;a href=&quot;http://java.sun.com/xml/ns/j2ee&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://java.sun.com/xml/ns/j2ee&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:xsi=&amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xsi:schemaLocation=&amp;quot;&lt;a href=&quot;http://java.sun.com/xml/ns/j2ee&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://java.sun.com/xml/ns/j2ee&lt;/a&gt;&amp;nbsp;web-app_2_4.xsd&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;version=&amp;quot;2.4&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;...
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;security-constraint&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;web-resource-collection&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;web-resource-name&amp;gt;PCL&amp;lt;/web-resource-name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;url-pattern&amp;gt;/pcl/*&amp;lt;/url-pattern&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;http-method&amp;gt;GET&amp;lt;/http-method&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;http-method&amp;gt;POST&amp;lt;/http-method&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/web-resource-collection&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;auth-constraint&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;role-name&amp;gt;pcl-user&amp;lt;/role-name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/auth-constraint&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/security-constraint&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;login-config&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;auth-method&amp;gt;FORM&amp;lt;/auth-method&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;form-login-config&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;form-login-page&amp;gt;/login.jsp&amp;lt;/form-login-page&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;form-error-page&amp;gt;/error.jsp&amp;lt;/form-error-page&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/form-login-config&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/login-config&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;security-role&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;role-name&amp;gt;pcl-user&amp;lt;/role-name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/security-role&amp;gt;
&lt;br&gt;...
&lt;br&gt;&amp;lt;/web-app&amp;gt;
&lt;br&gt;[/code]
&lt;br&gt;&lt;br&gt;What is happening is similar to the thread I indicated - my login seems to work but I'm sent to a 403 after that. &amp;nbsp;I haven't found the correct log-fu to use to find out [b]why[/b] I'm not succeeding during login. &amp;nbsp;Can anyone give me any pointers as to where to look for more information?
&lt;br&gt;&lt;br&gt;Thanks in advance for your help.
&lt;br&gt;[Message sent by forum member 'stdunbar' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376517&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376517&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26786509&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26786509&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GFv3---Getting-403-after-login---help-in-debugging--tp26786509p26786509.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26786460</id>
	<title>Re: Glassfish V2 UR1 Final Build and Firebird database</title>
	<published>2009-12-14T14:52:36Z</published>
	<updated>2009-12-14T14:52:36Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">There is a simple Firebird Connection Pool on GlassFish 2.1.1 here:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://mariosgaee.blogspot.com/2009/12/firebird-connection-pool-in-glassfish.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mariosgaee.blogspot.com/2009/12/firebird-connection-pool-in-glassfish.html&lt;/a&gt;&lt;br&gt;[Message sent by forum member 'komarios' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376516&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376516&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26786460&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26786460&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Glassfish-V2-UR1-Final-Build-and-Firebird-database-tp14525063p26786460.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26786340</id>
	<title>Firebird Connection Pool</title>
	<published>2009-12-14T14:43:24Z</published>
	<updated>2009-12-14T14:43:24Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">I have successfully created a Firebird Connection Pool on GlassFish 2.1.1. 
&lt;br&gt;I have also created a simple tutorial here:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://mariosgaee.blogspot.com/2009/12/firebird-connection-pool-in-glassfish.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mariosgaee.blogspot.com/2009/12/firebird-connection-pool-in-glassfish.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;I hope this will help all firebird fans!
&lt;br&gt;[Message sent by forum member 'komarios' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376512&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376512&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26786340&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26786340&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Firebird-Connection-Pool-tp26786340p26786340.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26785788</id>
	<title>Another deployment exception. PrincipalNameDescriptor.getPrincipal(Princ...</title>
	<published>2009-12-14T14:06:15Z</published>
	<updated>2009-12-14T14:06:15Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">Hi all. TIA for any help. I was attempting to figure out why one of my WS modules was unauthorized to hit an ejb, in my test Enterprise Application. Then I came across this exception. &amp;nbsp;Sounds like something to do with security realm principals. Ive checked and adjusted them to no avail. Only other posts Ive found, one not helpful, and the other to remove the empty string for the class that is associated with that principal. This EA had been working fine without any classes associated with those principals. If anyone can shed some light it would be great. Thanks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Exception occured in J2EEC Phasejava.lang.RuntimeException
&lt;br&gt;com.sun.enterprise.deployment.backend.IASDeploymentException: Error loading deployment descriptors for module [MyEnterpriseApp] -- null
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.backend.Deployer.loadDescriptors(Deployer.java:406)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.backend.AppDeployerBase.loadDescriptors(AppDeployerBase.java:359)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.backend.AppDeployer.explodeArchive(AppDeployer.java:303)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.backend.AppDeployer.deploy(AppDeployer.java:207)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.backend.AppDeployer.doRequestFinish(AppDeployer.java:148)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.phasing.J2EECPhase.runPhase(J2EECPhase.java:208)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.phasing.DeploymentPhase.executePhase(DeploymentPhase.java:108)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.phasing.PEDeploymentService.executePhases(PEDeploymentService.java:966)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:283)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:835)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.management.deploy.DeployThread.deploy(DeployThread.java:187)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.management.deploy.DeployThread.run(DeployThread.java:225)
&lt;br&gt;Caused by: java.lang.RuntimeException
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.runtime.common.PrincipalNameDescriptor.getPrincipal(PrincipalNameDescriptor.java:85)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.node.runtime.application.ApplicationRuntimeNode.addDescriptor(ApplicationRuntimeNode.java:200)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.node.DeploymentDescriptorNode.addNodeDescriptor(DeploymentDescriptorNode.java:195)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.node.DeploymentDescriptorNode.endElement(DeploymentDescriptorNode.java:342)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.node.SaxParserHandler.endElement(SaxParserHandler.java:474)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(AbstractSAXParser.java:601)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.org.apache.xerces.internal.impl.dtd.XMLNSDTDValidator.endNamespaceScope(XMLNSDTDValidator.java:263)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.org.apache.xerces.internal.impl.dtd.XMLDTDValidator.handleEndElement(XMLDTDValidator.java:2028)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.org.apache.xerces.internal.impl.dtd.XMLDTDValidator.endElement(XMLDTDValidator.java:901)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(XMLDocumentFragmentScannerImpl.java:1774)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(XMLDocumentFragmentScannerImpl.java:2930)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(XMLDocumentScannerImpl.java:648)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(XMLNSDocumentScannerImpl.java:140)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:510)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:807)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:737)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:107)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1205)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(SAXParserImpl.java:522)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at javax.xml.parsers.SAXParser.parse(SAXParser.java:395)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.io.DeploymentDescriptorFile.read(DeploymentDescriptorFile.java:298)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.archivist.Archivist.readRuntimeDeploymentDescriptor(Archivist.java:527)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.archivist.ApplicationArchivist.readRuntimeDeploymentDescriptor(ApplicationArchivist.java:455)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.backend.Deployer.loadDescriptors(Deployer.java:358)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 11 more
&lt;br&gt;Caused by: java.lang.ClassNotFoundException: 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.Class.forName0(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.Class.forName(Class.java:247)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.runtime.common.PrincipalNameDescriptor.getPrincipal(PrincipalNameDescriptor.java:78)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 34 more
&lt;br&gt;[Message sent by forum member 'javajoe83' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376506&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376506&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785788&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785788&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Another-deployment-exception.-PrincipalNameDescriptor.getPrincipal%28Princ...-tp26785788p26785788.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26785322</id>
	<title>Glassfish 2.1.1 Cannot resolve reference Unresolved Ejb-Ref</title>
	<published>2009-12-14T13:35:30Z</published>
	<updated>2009-12-14T13:35:30Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">Cannot resolve reference Unresolved Ejb-Ref ejb_customer@jndi: @&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785322&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;null@...&lt;/a&gt;@Session@null
&lt;br&gt;Exception occured in J2EEC Phasejava.lang.RuntimeException: Cannot resolve reference Unresolved Ejb-Ref ejb_customer@jndi: @&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785322&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;null@...&lt;/a&gt;@Session@null
&lt;br&gt;com.sun.enterprise.deployment.backend.IASDeploymentException: Error loading deployment descriptors for module [EnterpriseApp-war] -- Cannot resolve reference Unresolved Ejb-Ref ejb_customer@jndi: @&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785322&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;null@...&lt;/a&gt;@Session@null
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.backend.Deployer.loadDescriptors(Deployer.java:390)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.backend.ModuleDeployer.loadDescriptors(ModuleDeployer.java:423)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.backend.WebModuleDeployer.deploy(WebModuleDeployer.java:157)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.backend.ModuleDeployer.doRequestFinish(ModuleDeployer.java:179)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.phasing.J2EECPhase.runPhase(J2EECPhase.java:191)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.phasing.DeploymentPhase.executePhase(DeploymentPhase.java:108)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.phasing.PEDeploymentService.executePhases(PEDeploymentService.java:919)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:279)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:788)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.management.deploy.DeployThread.deploy(DeployThread.java:187)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.management.deploy.DeployThread.run(DeployThread.java:223)
&lt;br&gt;Caused by: java.lang.RuntimeException: Cannot resolve reference Unresolved Ejb-Ref ejb_customer@jndi: @&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785322&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;null@...&lt;/a&gt;@Session@null
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.util.EjbBundleValidator.accept(EjbBundleValidator.java:430)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.WebBundleDescriptor.visit(WebBundleDescriptor.java:1406)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.archivist.WebArchivist.validate(WebArchivist.java:188)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.archivist.ApplicationArchivist.openArchive(ApplicationArchivist.java:790)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.archivist.ApplicationArchivist.openArchive(ApplicationArchivist.java:744)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.enterprise.deployment.backend.Deployer.loadDescriptors(Deployer.java:349)
&lt;br&gt;[Message sent by forum member 'j2eestruts' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376501&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376501&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785322&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785322&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Glassfish-2.1.1-Cannot-resolve-reference-Unresolved-Ejb-Ref-tp26785322p26785322.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26785151</id>
	<title>Re: Monitoring with Glassfish v3</title>
	<published>2009-12-14T13:25:16Z</published>
	<updated>2009-12-14T13:25:16Z</updated>
	<author>
		<name>Prashanth Abbagani</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;meta content=&quot;text/html;charset=UTF-8&quot; http-equiv=&quot;Content-Type&quot;&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000000&quot;&gt;
Cedric,&lt;br&gt;
&lt;br&gt;
The instructions you were looking at is for external OSGI modules to
bring in their own monitoring. If you want to do this for an App, you
will need to make it an OSGI bundle. Please see my &lt;a href=&quot;http://blogs.sun.com/Prashanth/entry/making_your_app_monitoring_in&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;blog&lt;/a&gt;
on how to do this.&lt;br&gt;
&lt;br&gt;
If you don't want to make your App an OSGI bundle and don't mind having
a dependency on GlassFish, you could follow the steps discussed in &lt;a href=&quot;http://blogs.sun.com/foo/entry/mort_learns_how_to_use&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Byron's
blog&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
-Prashanth&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785151&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;glassfish@...&lt;/a&gt; wrote:
&lt;blockquote cite=&quot;mid:225888158.19001258476695792.JavaMail.tomcat@djnweb1.sjc.collab.net&quot; type=&quot;cite&quot;&gt;
  &lt;pre wrap=&quot;&quot;&gt;Hi,

I've installed the Glassfish v3 (glassfish-v3-b71) on my Linux server, and now I'm trying to deal with monitoring.
I've followed instructions on this great link: &lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://wiki.glassfish.java.net/attach/V3FunctionalSpecs/Making_Module_Monitorable_V3.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.glassfish.java.net/attach/V3FunctionalSpecs/Making_Module_Monitorable_V3.html&lt;/a&gt;. That implies:
- annotatations on the java class of my webservice (@ProbeProvider on my class, @Probe on my method to monitor,...)
- adding &quot;probe-provider-class-names&quot; in my MANIFEST.MF file of my webservice concerned, with the values &quot;org.glassfish.web.admin.monitor.RequestProbeProvider,org.glassfish.web.admin.monitor.JspProbeProvider&quot;
- creating a &quot;StatsProvider&quot; class which embedds a @ProbeListener, matching my method annotated with @Probe
- calling the method StatsProviderManager.register(...) in my webapplication, at starting-time.

But when I deploy my web archive on Glassfish3, I can see these logs:
[#|2009-11-17T16:53:33.328+0100|WARNING|glassfishv3.0|org.glassfish.admin.monitor.StatsProviderManagerDelegateImpl|_ThreadID=11;_ThreadName=Thread-1;|module-monitoring-level or container-monitoring config element for jsp-container does not exist.|#]

[#|2009-11-17T16:53:33.337+0100|WARNING|glassfishv3.0|org.glassfish.admin.monitor.StatsProviderManagerDelegateImpl|_ThreadID=11;_ThreadName=Thread-1;|Flashlight listener registration failed for this listener class: org.myproject.JspStatsProvider|#]

At the deployment, I go into a method where I've put:
StatsProviderManager.register(&quot;jsp-container&quot;, PluginPoint.SERVER, &quot;applications/app1/jsp1&quot;, new JspStatsProvider());

So in the documentation, it says that I can do: &amp;gt;asadmin get server.applications.app1.jsp1.*

But I do not get the new values defined with the annotations, only what I've configured in the admin interface to monitor. Seeing the warnings I get previously, I guess that there is a mistake in the configuration, but I don't see where, since I've followed the documentation.

I hope someone have already done this tutorial on the monitoring and could provide me some clues.

Kind regards,
Cédric.
[Message sent by forum member 'cedricbr' ]

&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://forums.java.net/jive/thread.jspa?messageID=372192&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=372192&lt;/a&gt;

---------------------------------------------------------------------
To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785151&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785151&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;

  &lt;/pre&gt;
&lt;/blockquote&gt;
&lt;br&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Monitoring-with-Glassfish-v3-tp26393382p26785151.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26785015</id>
	<title>Re: Linked policy contexts have different roleToSubjectMaps</title>
	<published>2009-12-14T13:15:05Z</published>
	<updated>2009-12-14T13:15:05Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">Hi Ralph,
&lt;br&gt;&lt;br&gt;I spoke to our deployment team, and it appears that you have another thread started on this problem,
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376084&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376084&lt;/a&gt;&lt;br&gt;&lt;br&gt;in which Ken Saks explained that the apparent regression occurred because in v2, component defining annotations were not processed when occurring in archives in lib. Please follow the recommendations in that thread for repackaging your app. &amp;nbsp;The problem you are seeing in the linking of policy contexts, appears to be because the component annotations are not being fully processed when they occur in an archive within lib. as such, the policy subsystem, does not find the corresponding ejb policy contexts when it performs the policy linking.
&lt;br&gt;[Message sent by forum member 'monzillo' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376499&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376499&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785015&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785015&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Linked-policy-contexts-have-different-roleToSubjectMaps-tp24699700p26785015.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26784706</id>
	<title>Re: Separate threads per context</title>
	<published>2009-12-14T12:57:22Z</published>
	<updated>2009-12-14T12:57:22Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">Great, thanks. I clearly wasn't using the proper magic words in Google. :-)
&lt;br&gt;[Message sent by forum member 'jasonab' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376498&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376498&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26784706&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26784706&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Separate-threads-per-context-tp26750572p26784706.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26784469</id>
	<title>Re: Linked policy contexts have different roleToSubjectMaps</title>
	<published>2009-12-14T12:43:23Z</published>
	<updated>2009-12-14T12:43:23Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">Hi Ralph,
&lt;br&gt;&lt;br&gt;we have been looking into your app under issue 
&lt;br&gt;&lt;a href=&quot;https://glassfish.dev.java.net/issues/show_bug.cgi?id=7942&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://glassfish.dev.java.net/issues/show_bug.cgi?id=7942&lt;/a&gt;&lt;br&gt;&lt;br&gt;Your analysis is correct, the problem appears to be that an EJBSecuritymanager is not being
&lt;br&gt;created and registered for the embedded EJB's. I recall working throiugh several tests for embedded ejbs' so there appears to be something different &amp;nbsp;about your app, that causes the embedded ejbs to not be seen. our team is working on it.
&lt;br&gt;&lt;br&gt;Ron
&lt;br&gt;[Message sent by forum member 'monzillo' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376496&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376496&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26784469&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26784469&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Linked-policy-contexts-have-different-roleToSubjectMaps-tp24699700p26784469.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26784242</id>
	<title>how to obtain instance name?</title>
	<published>2009-12-14T12:29:06Z</published>
	<updated>2009-12-14T12:29:06Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I need to have in a cluster some instance specific configuration data. Is there any way I can obtain the glassfish instance name at runtime from a web application? Or to obtain access to an instance specific configuration file? Not a cluster level configuration, but an instance level configuration file accesible from my web application.
&lt;br&gt;&lt;br&gt;Thanks a lot!
&lt;br&gt;&lt;br&gt;José Gallegos A.
&lt;br&gt;[Message sent by forum member 'escudero4x4' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376493&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376493&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26784242&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26784242&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-obtain-instance-name--tp26784242p26784242.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26784205</id>
	<title>Re: Review request: appclient/acc pom.xml revision (v3.1)</title>
	<published>2009-12-14T12:26:56Z</published>
	<updated>2009-12-14T12:26:56Z</updated>
	<author>
		<name>Jane Young-Lau</name>
	</author>
	<content type="html">Looks fine. &amp;nbsp;Thanks!
&lt;br&gt;&lt;br&gt;Tim Quinn wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; App clients need to have the GlassFish-provided JAXB implementation 
&lt;br&gt;&amp;gt; JAR accessible, rather than relying on the corresponding classes in 
&lt;br&gt;&amp;gt; the Java SE runtime. &amp;nbsp;That dependency was excluded from the pom. &amp;nbsp;This 
&lt;br&gt;&amp;gt; change corrects that.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - Tim
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Index: appclient/client/acc/pom.xml
&lt;br&gt;&amp;gt; ===================================================================
&lt;br&gt;&amp;gt; --- appclient/client/acc/pom.xml &amp;nbsp; &amp;nbsp;(revision 35098)
&lt;br&gt;&amp;gt; +++ appclient/client/acc/pom.xml &amp;nbsp; &amp;nbsp;(working copy)
&lt;br&gt;&amp;gt; @@ -492,10 +492,18 @@
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;!-- endorsed: jaxb-api-osgi.jar --&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;dependency&amp;gt;
&lt;br&gt;&amp;gt; + &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;scope&amp;gt;runtime&amp;lt;/scope&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;groupId&amp;gt;javax.xml.bind&amp;lt;/groupId&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;artifactId&amp;gt;jaxb-api-osgi&amp;lt;/artifactId&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/dependency&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; + &amp;nbsp; &amp;nbsp; &amp;lt;!-- GlassFish-delivered version jaxb-osgi.jar --&amp;gt;
&lt;br&gt;&amp;gt; + &amp;nbsp; &amp;nbsp; &amp;lt;dependency&amp;gt;
&lt;br&gt;&amp;gt; + &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;scope&amp;gt;runtime&amp;lt;/scope&amp;gt;
&lt;br&gt;&amp;gt; + &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;groupId&amp;gt;com.sun.xml.bind&amp;lt;/groupId&amp;gt;
&lt;br&gt;&amp;gt; + &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;artifactId&amp;gt;jaxb-osgi&amp;lt;/artifactId&amp;gt;
&lt;br&gt;&amp;gt; + &amp;nbsp; &amp;nbsp; &amp;lt;/dependency&amp;gt;
&lt;br&gt;&amp;gt; +
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;!-- endorsed: webservices-api-osgi.jar --&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;dependency&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;groupId&amp;gt;javax.xml&amp;lt;/groupId&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26784205&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26784205&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26784205&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26784205&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-dev-f13451.html&quot; embed=&quot;fixTarget[13451]&quot; target=&quot;_top&quot; &gt;java.net - glassfish dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Review-request%3A-appclient-acc-pom.xml-revision-%28v3.1%29-tp26783550p26784205.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26784112</id>
	<title>Re: Can't stop instance when out of permgen</title>
	<published>2009-12-14T12:20:45Z</published>
	<updated>2009-12-14T12:20:45Z</updated>
	<author>
		<name>Kedar Mhaswade</name>
	</author>
	<content type="html">GF V2?
&lt;br&gt;&lt;br&gt;Not that I know of.
&lt;br&gt;&lt;br&gt;When you get into this situation, can you do a thread dump and send it in email?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Kedar
&lt;br&gt;&lt;br&gt;Comerford, Sean wrote:
&lt;br&gt;&amp;gt; It is a known issue that asadmin stop-domain foo will fail when the foo 
&lt;br&gt;&amp;gt; instance is out of perm gen space?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Sean Comerford, Software Engineer
&lt;br&gt;&amp;gt; ESPN.com Site Architecture Group
&lt;br&gt;&amp;gt; Office: 860.766.6454 &amp;nbsp; &amp;nbsp;Cell: 860.329.5842
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26784112&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26784112&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Can%27t-stop-instance-when-out-of-permgen-tp26782869p26784112.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26784122</id>
	<title>Re: Connection Pool for Oracle DB in Glassfish v3?</title>
	<published>2009-12-14T12:19:59Z</published>
	<updated>2009-12-14T12:19:59Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">From your connection pool setting I realised that the URL you used missed a semicolon just before the @ symbol. and the resource type is not the correct one.
&lt;br&gt;There is a GlassFish 2.1.1 oracle connection pool here :
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://mariosgaee.blogspot.com/2009/12/oracle-connection-pool-in-glassfish.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mariosgaee.blogspot.com/2009/12/oracle-connection-pool-in-glassfish.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;If your follow the steps carefully you will probably have no problem.
&lt;br&gt;[Message sent by forum member 'komarios' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376489&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376489&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26784122&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26784122&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Connection-Pool-for-Oracle-DB-in-Glassfish-v3--tp25815027p26784122.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26783821</id>
	<title>test</title>
	<published>2009-12-14T11:57:18Z</published>
	<updated>2009-12-14T11:57:18Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">test
&lt;br&gt;&lt;br&gt;( I'm getting strange errors)
&lt;br&gt;[Message sent by forum member 'fredric' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376481&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376481&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783821&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783821&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/test-tp26783821p26783821.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26783799</id>
	<title>Re: connection pool set up with MySQL</title>
	<published>2009-12-14T11:55:22Z</published>
	<updated>2009-12-14T11:55:22Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">There is another tutorial for Glassfish 2.1.1 and mysql 5 connection pool here :
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://mariosgaee.blogspot.com/2009/12/mysql-connection-pool-in-glassfish.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mariosgaee.blogspot.com/2009/12/mysql-connection-pool-in-glassfish.html&lt;/a&gt;&lt;br&gt;[Message sent by forum member 'komarios' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376479&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376479&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783799&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783799&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/connection-pool-set-up-with-MySQL-tp21474638p26783799.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26783550</id>
	<title>Review request: appclient/acc pom.xml revision (v3.1)</title>
	<published>2009-12-14T11:40:53Z</published>
	<updated>2009-12-14T11:40:53Z</updated>
	<author>
		<name>Tim Quinn</name>
	</author>
	<content type="html">Hi.
&lt;br&gt;&lt;br&gt;App clients need to have the GlassFish-provided JAXB implementation JAR 
&lt;br&gt;accessible, rather than relying on the corresponding classes in the Java 
&lt;br&gt;SE runtime. &amp;nbsp;That dependency was excluded from the pom. &amp;nbsp;This change 
&lt;br&gt;corrects that.
&lt;br&gt;&lt;br&gt;Thanks.
&lt;br&gt;&lt;br&gt;- Tim
&lt;br&gt;&lt;br&gt;&lt;br&gt;Index: appclient/client/acc/pom.xml
&lt;br&gt;===================================================================
&lt;br&gt;--- appclient/client/acc/pom.xml &amp;nbsp; &amp;nbsp;(revision 35098)
&lt;br&gt;+++ appclient/client/acc/pom.xml &amp;nbsp; &amp;nbsp;(working copy)
&lt;br&gt;@@ -492,10 +492,18 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!-- endorsed: jaxb-api-osgi.jar --&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dependency&amp;gt;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;scope&amp;gt;runtime&amp;lt;/scope&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;groupId&amp;gt;javax.xml.bind&amp;lt;/groupId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;artifactId&amp;gt;jaxb-api-osgi&amp;lt;/artifactId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/dependency&amp;gt;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;lt;!-- GlassFish-delivered version jaxb-osgi.jar --&amp;gt;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;lt;dependency&amp;gt;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;scope&amp;gt;runtime&amp;lt;/scope&amp;gt;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;groupId&amp;gt;com.sun.xml.bind&amp;lt;/groupId&amp;gt;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;artifactId&amp;gt;jaxb-osgi&amp;lt;/artifactId&amp;gt;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;lt;/dependency&amp;gt;
&lt;br&gt;+
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!-- endorsed: webservices-api-osgi.jar --&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dependency&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;groupId&amp;gt;javax.xml&amp;lt;/groupId&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783550&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783550&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-dev-f13451.html&quot; embed=&quot;fixTarget[13451]&quot; target=&quot;_top&quot; &gt;java.net - glassfish dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Review-request%3A-appclient-acc-pom.xml-revision-%28v3.1%29-tp26783550p26783550.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26783498</id>
	<title>Re: MySQL Connection pool in Glassfish V2</title>
	<published>2009-12-14T11:37:38Z</published>
	<updated>2009-12-14T11:37:38Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">A simple mysql connection pool tutorial can be found here:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://mariosgaee.blogspot.com/2009/12/mysql-connection-pool-in-glassfish.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mariosgaee.blogspot.com/2009/12/mysql-connection-pool-in-glassfish.html&lt;/a&gt;&lt;br&gt;[Message sent by forum member 'komarios' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376474&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376474&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783498&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783498&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/MySQL-Connection-pool-in-Glassfish-V2-tp18955215p26783498.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26783465</id>
	<title>Re: GlassFish logging stopped working after deployment</title>
	<published>2009-12-14T11:35:12Z</published>
	<updated>2009-12-14T11:35:12Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">what is the location of your log4j.jar. it should be in class hierachy. Try by putting this jar at domain/&amp;lt;domain-name&amp;gt;lib.
&lt;br&gt;[Message sent by forum member 'xsunil_kumar' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376473&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376473&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783465&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783465&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GlassFish-logging-stopped-working-after-deployment-tp26754200p26783465.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26783368</id>
	<title>Re: JPA - One to Many persistence issue</title>
	<published>2009-12-14T11:29:12Z</published>
	<updated>2009-12-14T11:29:12Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">You need to define cascade type on personnel entity as this entity is the source entity and owner of the relationship.
&lt;br&gt;&lt;br&gt;In personnel entity , you need to define relationship like below
&lt;br&gt;&lt;br&gt;@ManyToOne(cascade=CascadeType.ALL)
&lt;br&gt;private Company company; 
&lt;br&gt;&lt;br&gt;After that You need first persist Company in database then you need to persist personnel as this is many to one relationship. Company can exist without personal also.
&lt;br&gt;&lt;br&gt;em.persist(company)
&lt;br&gt;personeel.setCompany(company)
&lt;br&gt;em.persist(personal)
&lt;br&gt;&lt;br&gt;//commit the transation.
&lt;br&gt;[Message sent by forum member 'xsunil_kumar' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376472&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376472&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783368&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783368&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/JPA---One-to-Many-persistence-issue-tp25876888p26783368.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26783160</id>
	<title>Re: Ubuntu upgrade broke / removed gf v2</title>
	<published>2009-12-14T11:17:51Z</published>
	<updated>2009-12-14T11:17:51Z</updated>
	<author>
		<name>Snjezana Sevo-Zenzerovic</name>
	</author>
	<content type="html">There is no need to go compile route since you could still download and 
&lt;br&gt;install standalone version of GlassFish v2 (the latest release from this 
&lt;br&gt;family is 2.1.1) and that should be compatible with your existing 
&lt;br&gt;configuration files.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Snjezana
&lt;br&gt;&lt;br&gt;Lance Raymond wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Well the subject says it all. &amp;nbsp;I have 1 development servers and 2 
&lt;br&gt;&amp;gt; production servers. &amp;nbsp;For numerous reasons we had to dist-upgrade the 
&lt;br&gt;&amp;gt; box's and when it restarted, glassfish was gone. &amp;nbsp;An aptitude search 
&lt;br&gt;&amp;gt; reveals;
&lt;br&gt;&amp;gt; c &amp;nbsp; glassfishv2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;nbsp; - Sun's open source GlassFish(TM) v2 Update
&lt;br&gt;&amp;gt; c &amp;nbsp; glassfishv2-bin &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - Sun's open source GlassFish(TM) 
&lt;br&gt;&amp;gt; v2 Update
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The 'c' being that the config files are still there, but not the 
&lt;br&gt;&amp;gt; application. &amp;nbsp;A re-install attempt shows;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Package glassfishv2 is not available, but is referred to by another 
&lt;br&gt;&amp;gt; package.
&lt;br&gt;&amp;gt; This may mean that the package is missing, has been obsoleted, or
&lt;br&gt;&amp;gt; is only available from another source
&lt;br&gt;&amp;gt; E: Package glassfishv2 has no installation candidate
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Now my question is what to do next? &amp;nbsp;We have an SSL cert that is a 
&lt;br&gt;&amp;gt; must to keep (the install was a nightmare, but did learn alot), I 
&lt;br&gt;&amp;gt; don't want to go the compile route, but if I must, I will, then I need 
&lt;br&gt;&amp;gt; to ask do I move to v3?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I am downling the v3 zip now to look at a little, but not sure on the 
&lt;br&gt;&amp;gt; SSL cert, etc. but wondering if anyone had this issue and an easy way 
&lt;br&gt;&amp;gt; to resolve. &amp;nbsp;The upgrade was from version 8.10 to 9.04. &amp;nbsp;Since it 
&lt;br&gt;&amp;gt; broke we went ahead and upgraded to 9.10.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks.
&lt;/div&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783160&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783160&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Ubuntu-upgrade-broke---removed-gf-v2-tp26779121p26783160.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26783174</id>
	<title>Re: Glassfish v3 update manager locale problem in MacOSX 10.6.2</title>
	<published>2009-12-14T11:17:24Z</published>
	<updated>2009-12-14T11:17:24Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">Hi, Can you check your 'Region' setting in Mac's 
&lt;br&gt;&lt;br&gt;&amp;nbsp;Apple Menu &amp;gt; System Preferences &amp;gt; Language &amp; Text &amp;gt; Formats &amp;gt; Region
&lt;br&gt;&lt;br&gt;tab. These are system wide settings. More regions and specifically he Spanish - Spain setting can be seen by checking 
&lt;br&gt;&lt;br&gt;&amp;nbsp;Show all regions
&lt;br&gt;&lt;br&gt;checkbox &amp;nbsp;to the side of the Region dropdown. Update Center just gets it's setting from what settings are in the this particular preference pane. You might need to relog once after setting it to Spain etc. Please let us know if it works.
&lt;br&gt;[Message sent by forum member 'mnsingh' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376469&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376469&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783174&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783174&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Glassfish-v3-update-manager-locale-problem-in-MacOSX-10.6.2-tp26776995p26783174.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26782869</id>
	<title>Can't stop instance when out of permgen</title>
	<published>2009-12-14T10:56:46Z</published>
	<updated>2009-12-14T10:56:46Z</updated>
	<author>
		<name>Comerford, Sean-2</name>
	</author>
	<content type="html">&lt;HTML&gt;
&lt;HEAD&gt;
&lt;TITLE&gt;Can't stop instance when out of permgen &lt;/TITLE&gt;
&lt;/HEAD&gt;
&lt;BODY&gt;
&lt;FONT FACE=&quot;Lucida Grande&quot;&gt;&lt;SPAN STYLE='font-size:11pt'&gt;It is a known issue that asadmin stop-domain foo will fail when the foo instance is out of perm gen space?&lt;BR&gt;
&lt;BR&gt;
-- &lt;BR&gt;
Sean Comerford, Software Engineer&lt;BR&gt;
ESPN.com Site Architecture Group&lt;BR&gt;
Office: 860.766.6454 &amp;nbsp;&amp;nbsp;&amp;nbsp;Cell: 860.329.5842&lt;BR&gt;
&lt;/SPAN&gt;&lt;/FONT&gt;
&lt;/BODY&gt;
&lt;/HTML&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Can%27t-stop-instance-when-out-of-permgen-tp26782869p26782869.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26782485</id>
	<title>Re: Linked policy contexts have different roleToSubjectMaps</title>
	<published>2009-12-14T10:29:56Z</published>
	<updated>2009-12-14T10:29:56Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">Hi Ron,
&lt;br&gt;&lt;br&gt;I checked my test application and played around with different configurations.
&lt;br&gt;Finally I come to the following result:
&lt;br&gt;&lt;br&gt;I have no security-role-mapping defined in the sun-ejb-jar.xml and also no ones in the sun-web.xml file. All Security-role-mappings are defined only in the sun-application.xml file of my ear. When I try to deploy I got the Error message :
&lt;br&gt;&lt;br&gt;Linked policy contexts have different roleToSubjectMaps (imixs-workflow-testclient-ear-0.0.2-SNAPSHOT/imixs-workflow-testclient-ejb-0_0_2-SNAPSHOT_jar) &amp;lt;-&amp;gt; (imixs-workflow-testclient-ear-0.0.2-SNAPSHOT/imixs-workflow-testclient-web-0_0_2-SNAPSHOT_war_internal)
&lt;br&gt;&lt;br&gt;where '_internal' is not the module name of my web module (!?). The defined name should be imixs-workflow-testclient-web-0_0_2-SNAPSHOT_war
&lt;br&gt;&lt;br&gt;After deployment fails with this error message I can not redeploy anymore. A deployment results now always in the error message :
&lt;br&gt;&lt;br&gt;SCHWERWIEGEND: Exception while loading the app
&lt;br&gt;org.glassfish.deployment.common.DeploymentException: Error in linking security policy for imixs-workflow-testclient-ear-0.0.2-SNAPSHOT -- Inconsistent Module State
&lt;br&gt;&lt;br&gt;So it is necessary to delete the directory /domain1/generated/policy/imixs-workflow-testclient-ear-0.0.2-SNAPSHOT manually and restart the server before I can start a new redeployment.
&lt;br&gt;&lt;br&gt;After all my tests it seems that the problem is the embedded EJB module which I placed into the /lib directory of my EAR.
&lt;br&gt;When I remove this shared EJB module deployment works fine.
&lt;br&gt;&lt;br&gt;The shared EJB Module defines one Session EJB without any @DeclareRoles annotation.
&lt;br&gt;&lt;br&gt;I have uploaded the EAR so you can see the structure of this app and also the provide descriptor files:
&lt;br&gt;&lt;a href=&quot;http://inter02.imixs.com/ralph/imixs-workflow-testclient-ear-0.0.2-SNAPSHOT.ear&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://inter02.imixs.com/ralph/imixs-workflow-testclient-ear-0.0.2-SNAPSHOT.ear&lt;/a&gt;&lt;br&gt;&lt;br&gt;thanks for any help
&lt;br&gt;Ralph
&lt;br&gt;[Message sent by forum member 'rsoika' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376463&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376463&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26782485&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26782485&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Linked-policy-contexts-have-different-roleToSubjectMaps-tp24699700p26782485.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26782467</id>
	<title>Re: Samples directory under the AppServer 2.1.1 install - fewer projects?</title>
	<published>2009-12-14T10:28:53Z</published>
	<updated>2009-12-14T10:28:53Z</updated>
	<author>
		<name>glassfish-2</name>
	</author>
	<content type="html">You may download and install Java EE 5 samples from the following location which also points to the instructions on installing and working with the samples.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://glassfish-samples.dev.java.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://glassfish-samples.dev.java.net/&lt;/a&gt;&lt;br&gt;&lt;br&gt;- sreeni
&lt;br&gt;[Message sent by forum member 'msreddy' ]
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.java.net/jive/thread.jspa?messageID=376462&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.java.net/jive/thread.jspa?messageID=376462&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26782467&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26782467&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---glassfish-users-f13453.html&quot; embed=&quot;fixTarget[13453]&quot; target=&quot;_top&quot; &gt;java.net - glassfish users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Samples-directory-under-the-AppServer-2.1.1-install---fewer-projects--tp26767419p26782467.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26782167</id>
	<title>JAXB Commons Lang Plugin 2.2 is released</title>
	<published>2009-12-14T10:08:35Z</published>
	<updated>2009-12-14T10:08:35Z</updated>
	<author>
		<name>Hanson Char</name>
	</author>
	<content type="html">&lt;a href=&quot;https://jaxb2-commons.dev.java.net/commons-lang-plugin/index.html#Enhance091213&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://jaxb2-commons.dev.java.net/commons-lang-plugin/index.html#Enhance091213&lt;/a&gt;&lt;br&gt;&lt;br&gt;To enable this plugin to work with Java 6.&lt;br&gt;
&lt;br&gt;Cheers,&lt;br&gt;Hanson&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/java.net---jaxb-users-f13500.html&quot; embed=&quot;fixTarget[13500]&quot; target=&quot;_top&quot; &gt;java.net - jaxb users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/JAXB-Commons-Lang-Plugin-2.2-is-released-tp26782167p26782167.html" />
</entry>

</feed>
