Re: [JBoss-user] Using Xerces

2001-05-14 Thread Chris Winters

* Manuel Alzola ([EMAIL PROTECTED]) [010512 12:09]:
> Hello, I´m trying to use xerces on jboss-tomcat, as I was doing in standalone 
>tomcat, but it continues using crimsom , and I suppose it becouse of this lines in 
>jboss run.bat
> 
> set JBOSS_CLASSPATH=%JBOSS_CLASSPATH%;../lib/crimson.jar
> set 
>JAXP=-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.crimson.jaxp.DocumentBuilderFactoryImpl
> set JAXP=%JAXP% 
>-Djavax.xml.parsers.SAXParserFactory=org.apache.crimson.jaxp.SAXParserFactoryImpl
> 
> I have not found in xerces docs a JAXP equivalent, and I need Xerces
> becouse crimson fails me when working with Xalan for xsl processing.

As long as you've got the xerces classes in the classpath, the
following should work:

set 
JAXP=-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
set JAXP="%JAXP% 
-Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl"

Hope this helps.

Chris

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Unsubscribe?

2001-04-30 Thread Chris Winters

* Jay Craig ([EMAIL PROTECTED]) [010430 17:13]:
> The problem is that you need your password to unsubscribe. If you've
> trashed it by accident, ther's no way out.

Actually, if you go to the URL specified in the headers you'll see
that there's a handy password reminder form -- as long as you know
what email you're subscribed under, you can get your password emailed
to you. (Even if you don't, it does a check when you type in your
address to ensure that it's actually subscribed.)

Chris

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Unsubscribe?

2001-04-30 Thread Chris Winters

* Steve Swing ([EMAIL PROTECTED]) [010430 15:30]:
> Unsubscribe?Go here: http://lists.sourceforge.net/lists/listinfo/jboss-user
> 
> JBoss-user Subscribers section toward the bottom of the page (last form
> field on the page).
> 
> From: White, Joshua
> To: '[EMAIL PROTECTED]'
> Sent: Monday, April 30, 2001 2:08 pm
> Subject: [JBoss-user] Unsubscribe?
> 
> 
> Does anybody know how to unsubscribe?

(Didn't we go through this recently?)

Every email you get from any Sourceforge-managed list has the
following headers (apologies for icky wrapping...):

=
List-Help: 

List-Post:

List-Subscribe:
, 

List-Id: The JBoss User main mailing list 

List-Unsubscribe:
,

List-Archive: 

=


Neat-o -- self-documenting mailing list messages! :-)

Chris

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Follow up: Collections and finders

2001-04-02 Thread Chris Winters

* Carles Pi-Sunyer ([EMAIL PROTECTED]) [010402 15:22]:
> I've tracked my problem down to a field in the database that is sometimes
> NULL. The entity bean variable is declared as an int. My failure occurs when
> the ejbLoad attempts to load the NULL value into the int field. I'm then
> getting a NullPointerException. Is this the expected behavior? Is there a
> way I can code or configure about this problem?

Yeah, use the wrapper classes rather than the primitive
types. (java.lang.Integer vs. int) I had this problem too and
everything cleared up after I made this change.

Chris

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user