Ok, ... seems I don't need the login-config.xml. That puts me back at the
beginning ... so, any idea what I do need to make these errors go away?

18:54:13,716 ERROR [DBaseFetchBean] getTasks: Could not create
connection; - nested throwable: (Something unusual has occured to cause
the driver to fail. Please report this exception: java.sql.SQLException:
No Postgres username specified in startup packet.); - nested throwable:
(org.jboss.resource.ResourceException: Could not create connection; -
nested throwable: (Something unusual has occured to cause the driver to
fail. Please report this exception: java.sql.SQLException: No Postgres
username specified in startup packet.))

----- Original Message -----
From: "David Jencks" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, August 10, 2002 10:24 PM
Subject: Re: [JBoss-user] postgres driver failure ... could not create
connection


> The simple config (which I should have made the default) is to put the
user
> and pw in the config-properties in this file.  You only need to use a
login
> module if you don't want cleartext passwords in your config file or need
to
> have the db user identity depend on the app user identity in some way (in
> which case you need a more complicated login module)
>
> david jencks
>
> On 2002.08.10 18:35:22 -0400 G.L. Grobe wrote:
> > 18:54:13,716 ERROR [DBaseFetchBean] getTasks: Could not create
> > connection; - nested throwable: (Something unusual has occured to cause
> > the driver to fail. Please report this exception: java.sql.SQLException:
> > No Postgres username specified in startup packet.); - nested throwable:
> > (org.jboss.resource.ResourceException: Could not create connection; -
> > nested throwable: (Something unusual has occured to cause the driver to
> > fail. Please report this exception: java.sql.SQLException: No Postgres
> > username specified in startup packet.))
> >
> > I'm moving my app from 2.4 into 3.0.1 and I see that the default
> > postgres-service.xml file (below) has username and password commented
out
> > and says I must include a login module named PostgresDbRealm ... and
from
> > the errors above ... am I following that right? Anyone done this or know
> > how this is supposed to go? btw - I did comment the application-policy
> > section out, but same results.
> >
> > --- postgres-service.xml ---
> >
> > <?xml version="1.0" encoding="UTF-8"?>
> >
> >   <!--
============================================================================
============
> > -->
> >   <!-- New ConnectionManager setup for default PostgreSQL dbs
> >                       -->
> >   <!-- Build jmx-api (build/build.sh all) and view for config
> > documentation                     -->
> >   <!-- To avoid class not found headaches, copy your postgres driver to
> > the jboss lib directory -->
> >   <!--
============================================================================
============
> > -->
> >
> > <server>
> >
> >   <mbean
code="org.jboss.resource.connectionmanager.LocalTxConnectionManager"
> > name="jboss.jca:service=LocalTxCM,name=PostgresDS">
> >     <!-- ======================================================= -->
> >     <!-- You must include a login module configuration named
> > PostgresDbRealm
> >          in your login-conf.xml, here is an example for a
> >          ConfiguredIdentityLoginModule:
> >
> >     <application-policy name = "PostgresDbRealm">
> >        <authentication>
> >           <login-module code =
"org.jboss.resource.security.ConfiguredIdentityLoginModule"
> > flag = "required">
> >              <module-option name = "principal">myuser</module-option>
> >              <module-option name = "userName">myuser</module-option>
> >              <module-option name = "password">mypass</module-option>
> >              <module-option name =
"managedConnectionFactoryName">jboss.jca:service=LocalTxCM,name=PostgresDS</
module-option>
> >           </login-module>
> >        </authentication>
> >     </application-policy>
> >
> >     NOTE: the application-policy name attribute must match
> > SecurityDomainJndiName, and the
> >       module-option name = "managedConnectionFactoryName"
> >     must match the object name of the ConnectionManager you are
> > configuring here.
> >     -->
> >     <!--
=====================================================================
> > -->
> >     <!--uncomment out this line if you are using the PostgresDbRealm
> > above
> >     <attribute name="SecurityDomainJndiName">PostgresDbRealm</attribute>
> >     -->
> >
> >     <depends optional-attribute-name="ManagedConnectionFactoryName">
> >       <!--embedded mbean-->
> >       <mbean code="org.jboss.resource.connectionmanager.RARDeployment"
> > name="jboss.jca:service=LocalTxDS,name=PostgresDS">
> > <!-- ========== Set the JndiName ======================= -->
> >         <attribute name="JndiName">PostgresDS</attribute>
> >         <attribute name="ManagedConnectionFactoryProperties">
> >           <properties>
> >             <config-property name="ConnectionURL"
> >
type="java.lang.String">jdbc:postgresql://localhost:5432/acais</config-prope
rty>
> >             <config-property name="DriverClass"
> > type="java.lang.String">org.postgresql.Driver</config-property>
> >             <!--set these only if you want only default logins, not
> > through JAAS -->
> >             <config-property name="UserName"
> > type="java.lang.String"></config-property>
> >             <config-property name="Password"
> > type="java.lang.String"></config-property>
> >           </properties>
> >
> >         </attribute>
> >
> > <!--Below here are advanced properties -->
> >         <!--hack-->
> >         <depends
optional-attribute-name="OldRarDeployment">jboss.jca:service=RARDeployment,n
ame=JBoss
> > LocalTransaction JDBC Wrapper</depends>
> >
> >         <!--real attributes-->
> >       </mbean>
> >     </depends>
> >
> >    <depends optional-attribute-name="ManagedConnectionPool">
> >       <!--embedded mbean-->
> >       <mbean
code="org.jboss.resource.connectionmanager.JBossManagedConnectionPool"
> > name="jboss.jca:service=LocalTxPool,name=PostgresDS">
> >
> >         <attribute name="MinSize">0</attribute>
> >         <attribute name="MaxSize">50</attribute>
> >         <attribute name="BlockingTimeoutMillis">5000</attribute>
> >         <attribute name="IdleTimeoutMinutes">15</attribute>
> >         <!--criteria indicates if Subject (from security domain) or app
> > supplied
> >             parameters (such as from getConnection(user, pw)) are used
to
> > distinguish
> >             connections in the pool. Choices are
> >             ByContainerAndApplication (use both),
> >             ByContainer (use Subject),
> >             ByApplication (use app supplied params only),
> >             ByNothing (all connections are equivalent, usually if
adapter
> > supports
> >               reauthentication)-->
> >         <attribute name="Criteria">ByContainer</attribute>
> >       </mbean>
> >
> >     </depends>
> >     <depends
optional-attribute-name="CachedConnectionManager">jboss.jca:service=CachedCo
nnectionManager</depends>
> >
> >     <depends
optional-attribute-name="JaasSecurityManagerService">jboss.security:service=
JaasSecurityManager</depends>
> >
> >     <attribute
name="TransactionManager">java:/TransactionManager</attribute>
> >     <!--make the rar deploy! hack till better deployment-->
> >     <depends>jboss.jca:service=RARDeployer</depends>
> >
> >
> >   </mbean>
> >
> >
> > </server>
> >
> >
> > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> > <HTML><HEAD>
> > <META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
> > <META content="MSHTML 6.00.2716.2200" name=GENERATOR>
> > <STYLE></STYLE>
> > </HEAD>
> > <BODY bgColor=#ffffff>
> > <DIV><FONT face=Arial size=2>18:54:13,716 ERROR [DBaseFetchBean]
> > getTasks: Could
> > not create connection; - nested throwable: (Something unusual has
occured
> > to
> > cause the driver to fail. Please report this exception:
> > java.sql.SQLException:
> > No Postgres username specified in startup packet.); - nested throwable:
> > (org.jboss.resource.ResourceException: Could not create connection; -
> > nested
> > throwable: (Something unusual has occured to cause the driver to fail.
> > Please
> > report this exception: java.sql.SQLException: No Postgres username
> > specified in
> > startup packet.))<BR></FONT></DIV>
> > <DIV><FONT face=Arial size=2>I'm moving my app from 2.4 into 3.0.1 and I
> > see
> > that the default postgres-service.xml file (below) has username and
> > password&nbsp;commented out and says I must include a login module named
> > PostgresDbRealm ... and from the errors above ...&nbsp;am I following
> > that
> > right? Anyone done this or know how this is supposed to go? btw - I did
> > comment
> > the application-policy section out, but same results.</DIV></FONT>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>--- postgres-service.xml ---</DIV></FONT>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&lt;?xml version="1.0"
> > encoding="UTF-8"?&gt;</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp; &lt;!--
> >
============================================================================
============
> >
> > --&gt;<BR>&nbsp; &lt;!-- New ConnectionManager setup for default
> > PostgreSQL
> >
dbs&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > --&gt;<BR>&nbsp; &lt;!-- Build jmx-api (build/build.sh all) and view for
> > config
> >
documentation&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > --&gt;<BR>&nbsp; &lt;!-- To avoid class not found headaches, copy your
> > postgres
> > driver to the jboss lib directory --&gt;<BR>&nbsp; &lt;!--
> >
============================================================================
============
> >
> > --&gt;</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&lt;server&gt;</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp; &lt;mbean
> > code="org.jboss.resource.connectionmanager.LocalTxConnectionManager"
> >
name="jboss.jca:service=LocalTxCM,name=PostgresDS"&gt;<BR>&nbsp;&nbsp;&nbsp;
> >
> > &lt;!-- =======================================================
> > --&gt;<BR>&nbsp;&nbsp;&nbsp; &lt;!-- You must include a login module
> > configuration named
> > PostgresDbRealm<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; in
> > your
> > login-conf.xml, here is an example for
> > a<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > ConfiguredIdentityLoginModule:</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp; &lt;application-policy
> > name =
> > "PostgresDbRealm"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
&lt;authentication&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n
bsp;
> >
> > &lt;login-module code =
> > "org.jboss.resource.security.ConfiguredIdentityLoginModule" flag =
> >
"required"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs
p;&nbsp;&nbsp;
> >
> > &lt;module-option name =
> >
"principal"&gt;myuser&lt;/module-option&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > &lt;module-option name =
> >
"userName"&gt;myuser&lt;/module-option&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > &lt;module-option name =
> >
"password"&gt;mypass&lt;/module-option&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > &lt;module-option name =
> >
"managedConnectionFactoryName"&gt;jboss.jca:service=LocalTxCM,name=PostgresD
S&lt;/module-option&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&
nbsp;
> >
> > &lt;/login-module&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > &lt;/authentication&gt;<BR>&nbsp;&nbsp;&nbsp;
> > &lt;/application-policy&gt;</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp; NOTE: the
> > application-policy
> > name attribute must match SecurityDomainJndiName, and
> > the<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; module-option name =
> > "managedConnectionFactoryName"<BR>&nbsp;&nbsp;&nbsp; must match the
> > object name
> > of the ConnectionManager you are configuring here.<BR>&nbsp;&nbsp;&nbsp;
> > --&gt;<BR>&nbsp;&nbsp;&nbsp; &lt;!--
> > =====================================================================
> > --&gt;<BR>&nbsp;&nbsp;&nbsp; &lt;!--uncomment out this line if you are
> > using the
> > PostgresDbRealm above<BR>&nbsp;&nbsp;&nbsp; &lt;attribute
> >
name="SecurityDomainJndiName"&gt;PostgresDbRealm&lt;/attribute&gt;<BR>&nbsp;
&nbsp;&nbsp;
> >
> > --&gt;</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp; &lt;depends
> >
optional-attribute-name="ManagedConnectionFactoryName"&gt;<BR>&nbsp;&nbsp;&n
bsp;&nbsp;&nbsp;
> >
> > &lt;!--embedded mbean--&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;mbean
> > code="org.jboss.resource.connectionmanager.RARDeployment"
> > name="jboss.jca:service=LocalTxDS,name=PostgresDS"&gt;<BR>&lt;!--
> > ========== Set
> > the JndiName =======================
> > --&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;attribute
> >
name="JndiName"&gt;PostgresDS&lt;/attribute&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&
nbsp;&nbsp;&nbsp;
> >
> > &lt;attribute
> >
name="ManagedConnectionFactoryProperties"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nb
sp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> >
&lt;properties&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;
> >
> > &lt;config-property name="ConnectionURL"
> >
type="java.lang.String"&gt;jdbc:postgresql://localhost:5432/acais&lt;/config
-property&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp
;&nbsp;
> >
> > &lt;config-property name="DriverClass"
> >
type="java.lang.String"&gt;org.postgresql.Driver&lt;/config-property&gt;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > &lt;!--set these only if you want only default logins, not through JAAS
>
> --&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs
p;
> >
> > &lt;config-property name="UserName"
> >
type="java.lang.String"&gt;&lt;/config-property&gt;<BR>&nbsp;&nbsp;&nbsp;&nb
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > &lt;config-property name="Password"
> >
type="java.lang.String"&gt;&lt;/config-property&gt;<BR>&nbsp;&nbsp;&nbsp;&nb
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > &lt;/properties&gt;</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > &lt;/attribute&gt;</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&lt;!--Below here are advanced properties
> > --&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > &lt;!--hack--&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > &lt;depends
> >
optional-attribute-name="OldRarDeployment"&gt;jboss.jca:service=RARDeploymen
t,name=JBoss
> >
> > LocalTransaction JDBC Wrapper&lt;/depends&gt;</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > &lt;!--real attributes--&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > &lt;/mbean&gt;<BR>&nbsp;&nbsp;&nbsp; &lt;/depends&gt;</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp; &lt;depends
> >
optional-attribute-name="ManagedConnectionPool"&gt;<BR>&nbsp;&nbsp;&nbsp;&nb
sp;&nbsp;
> >
> > &lt;!--embedded mbean--&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;mbean
> > code="org.jboss.resource.connectionmanager.JBossManagedConnectionPool"
> > name="jboss.jca:service=LocalTxPool,name=PostgresDS"&gt;</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > &lt;attribute
> >
name="MinSize"&gt;0&lt;/attribute&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp
;&nbsp;
> >
> > &lt;attribute
> >
name="MaxSize"&gt;50&lt;/attribute&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs
p;&nbsp;
> >
> > &lt;attribute
> >
name="BlockingTimeoutMillis"&gt;5000&lt;/attribute&gt;<BR>&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > &lt;attribute
> >
name="IdleTimeoutMinutes"&gt;15&lt;/attribute&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp
;&nbsp;&nbsp;&nbsp;
> >
> > &lt;!--criteria indicates if Subject (from security domain) or app
> >
supplied<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs
p;
> >
> > parameters (such as from getConnection(user, pw)) are used to
> >
distinguish<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&
nbsp;
> >
> > connections in the pool. Choices
> >
are<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > ByContainerAndApplication (use
> >
both),<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > ByContainer (use
> >
Subject),<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb
sp;
> >
> > ByApplication (use app supplied params
> >
only),<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > ByNothing (all connections are equivalent, usually if adapter
> >
supports<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs
p;&nbsp;&nbsp;
> >
> > reauthentication)--&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > &lt;attribute
> >
name="Criteria"&gt;ByContainer&lt;/attribute&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;
> >
> > &lt;/mbean&gt;</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp;
> > &lt;/depends&gt;<BR>&nbsp;&nbsp;&nbsp; &lt;depends
> >
optional-attribute-name="CachedConnectionManager"&gt;jboss.jca:service=Cache
dConnectionManager&lt;/depends&gt;</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp; &lt;depends
> >
optional-attribute-name="JaasSecurityManagerService"&gt;jboss.security:servi
ce=JaasSecurityManager&lt;/depends&gt;</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp; &lt;attribute
> >
name="TransactionManager"&gt;java:/TransactionManager&lt;/attribute&gt;<BR>&
nbsp;&nbsp;&nbsp;
> >
> > &lt;!--make the rar deploy! hack till better
> > deployment--&gt;<BR>&nbsp;&nbsp;&nbsp;
> >
&lt;depends&gt;jboss.jca:service=RARDeployer&lt;/depends&gt;</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV><FONT face=Arial size=2>
> > <DIV><BR>&nbsp; &lt;/mbean&gt;</DIV>
> > <DIV>&nbsp;</DIV>
> > <DIV><BR>&lt;/server&gt;<BR></FONT></DIV></BODY></HTML>
> >
>
>
> -------------------------------------------------------
> This sf.net email is sponsored by:ThinkGeek
> Welcome to geek heaven.
> http://thinkgeek.com/sf
> _______________________________________________
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user
>



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to