[JBoss-user] [Beginners Corner] - JSP 2.0 tag file latest syntax doesn't work in JBoss 4.0

2005-01-22 Thread cjohan
Here is an example tag file: <%@ attribute name="greeting" required="true" %> | <%@ attribute name="name" required="true" %> | ${greeting}, ${name}! | I try to use the tag in a simple page, such as: | <%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> | | | | Tag Files Exa

[JBoss-user] [Messaging, JMS & JBossMQ] - Configuring JBoss 4.0.1 to use SonicMQ 6.1

2005-01-22 Thread headljd
I had problems getting Sonic's example for Configuring JBoss 3.2.5 with Sonic 6.1(http://www.sonicsoftware.com/cgi-bin/sonic.cgi/dx_view_entry.w?entry_id=188) to work in JBoss 4.0.1. When JBoss started it gave the following exception: 550 ERROR [org.jboss.jms.jndi.JMSProviderLoader] Starting fa

[JBoss-user] [Installation & Configuration] - Configuring JBoss to work with Hibernate 3...

2005-01-22 Thread BigCanOfTuna
I am trying to configure JBoss 4.0.1 to use Hibernate3b instead of 2.x. I believe this should be possible, but I am encountering some errors. First, here is how the server is configured: | ./deploy/jboss-hibernate.deployer < (as downloaded with distribution) | /hibe

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: oracle blob bug exposed in org.jboss.mq.pm.jdbc3.Persist

2005-01-22 Thread javajedi
Check out the Oranxo JDBC driver for Oracle at http://www.inetsoftware.de/English/Produkte/ORANXO/. We are using this because it doesn't have the ridiculous 4k blob problem that Oracle's JDBC drivers do. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863255#

[JBoss-user] [Persistence & CMP/JBoss] - Re: CMP Bean Finder expression error

2005-01-22 Thread fbiaggi
Hi, the >= operator is not supported on ejb-ql specifications. Use jboss-ql instead View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863253#3863253 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863253 -

[JBoss-user] [Beginners Corner] - HelloWorldMBean using JBoss

2005-01-22 Thread amerigo5
Hi, how can I run the HelloWorldMBean sample by Sun on JBoss? Thanks? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863245#3863245 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863245 ---

[JBoss-user] [Installation & Configuration] - Re: JBoss 4.0.1 and xalan

2005-01-22 Thread nkerickson
Thanks for the quick response! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863242#3863242 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863242 --- This SF.Net

[JBoss-user] [Persistence & CMP/JBoss] - Re: Memory Leak: Read-Only Method

2005-01-22 Thread [EMAIL PROTECTED]
Is there a chance you could try also 3.2.6 and provide deployment descirptors and any changes you applied to standardjboss(cmp-jdbc.xml) files? Also please open an issue in jira.jboss.com for this. Thanks. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863241#

[JBoss-user] [Persistence & CMP/JBoss] - Re: delete and insert vs update

2005-01-22 Thread [EMAIL PROTECTED]
Since there is no a testcase attached to the issue, it would be nice if you could provide one. Thanks. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863240#3863240 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863240

[JBoss-user] [Installation & Configuration] - Re: JBoss 4.0.1 and xalan

2005-01-22 Thread [EMAIL PROTECTED]
You have to use the xerces parser found in the jboss-4.0.1/lib/endorsed directory so you need a -Djava.endorsed.dirs="$JBOSS_ENDORSED_DIRS" option as is done with the run.sh/run.bat scripts. Alternatively if your not using jaxr you can just remove the all/deploy/ebxmlrr-service.sar directory.

[JBoss-user] [Installation & Configuration] - Re: JBoss 4.0.1 and xalan

2005-01-22 Thread nkerickson
I am getting the same using jdk j2sdk1.4.2_6. I am starting JBoss using the JBoss IDE plugin for eclipse. Any ideas? Thanks, Neil View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863238#3863238 Reply to the post : http://www.jboss.org/index.html?module=bb&op=

[JBoss-user] [JBossWS] - Unable to deploy with a custom container configuration

2005-01-22 Thread forkbomb
Using JBoss 4.0.1, I get an error when attempting to deploy with a custom container configuration: | org.jboss.deployment.DeploymentException: Failed to find InvokerProxyBindingMetaData for: 'session-webservice-invoker'. Check the invoker-proxy-binding-name to invoker-proxy-binding/name mapp

[JBoss-user] [Installation & Configuration] - Re: DHCP woes

2005-01-22 Thread [EMAIL PROTECTED]
Whatever your hostname command returns needs to map to a valid interface so that is what is needed in the hosts file. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863232#3863232 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode

[JBoss-user] [Persistence & CMP/JBoss] - Re: EJB QL/JBoss QL possible across a collection?

2005-01-22 Thread HariV
query="SELECT OBJECT(h) FROM Parent AS h , Child AS d WHERE d.commodityCode=?1 AND d MEMBER OF h.details" This query check for a commodity code in the child and checks whether the matching child belongs to a parent. In your case query="SELECT OBJECT(h) FROM GrandParent AS GP , Children AS

[JBoss-user] [Persistence & CMP/JBoss] - Re: Memory Leak: Read-Only Method

2005-01-22 Thread HariV
what is the configuration you are using. Are you using "Instance Per Transaction"? If you are using Instance per transaction, an instance will be created for every transaction. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863229#3863229 Reply to the post

[JBoss-user] [Beginners Corner] - Problem in running the Duke Bank Example

2005-01-22 Thread gunjangupta
I am able to deploy the Duke bank application. The login screen of the page is opening. But when I try to logon the application fails with the following error :- javax.servlet.jsp.JspTagException: javax.servlet.jsp.el.ELException: An error occurred while getting property "accounts" from an inst

[JBoss-user] [HTTPD, Servlets & JSP] - apache 5 tomcat with jboss 4.01

2005-01-22 Thread zdavidlnx
Hi is Apache tomcat 5 "emdebed" with jboss 4.0.1? Tomcat 5 is use as the default server for JSP and Servets. isnt it? so i have to use Apache tomcat configuration files or have i to use specific files from jboss to use it as JSP/Servlets Server? are configuration different when using JSP/Servl

[JBoss-user] [Installation & Configuration] - DHCP woes

2005-01-22 Thread chrismalan
Since getting the broadband JBoss does not start without problems anymore. I used to connect to the old computer via an ethernet card and use the dial-up modem of the old computer. An ISA modem which worked many years without problem. Now the same ethernet card is connected to the ASDL modem.

[JBoss-user] [Installation & Configuration] - Re: what are username and pwd

2005-01-22 Thread chrismalan
The username and password of a user with full access and privileges to the database in question. Mostly, the username and password of the user who creted the database. By database I don't mean MSSQL Server (the database server), but something like "ClientsDatabase" or whatever. Of course, in

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JMS Connection pooling???

2005-01-22 Thread arnold
Hi Adrian, I have set up JMS connection pooling using java:/JmsXA, but running into problem with durable subsctriptions. Is there a way to set the client ID on the connection obtained from the pool? JBoss throws error when I try to call setClientID() on the connection object. I am using JBoss

[JBoss-user] [HTTPD, Servlets & JSP] - How to disable Automatic Redirection to last accessed resour

2005-01-22 Thread poojac20
Hi I need to find out how I can disable automatic redirection to the last accessed resource after session timeout? I am using jboss 3.2.3 with embedded Tomcat 4.1. For authentication, I am using j_securitycheck along with JAAS DatabaseServerLoginModule. If the user clicks on a link when sess

[JBoss-user] [EJB/JBoss] - null returned for DOUBLE value after a findByPrimaryKey()

2005-01-22 Thread lahirukarunatilake
HI, Im using JBOSS 3.2.3 and mysql 5. My table has a field with DOUBLE(5,2) as the data type. When I try to do a findByPrmaryKey on that table using the EJB it returns a null value. but I can use ejbCreate and insert values to that field. Further I can get the value to that field by usi