[JBoss-user] [Beginners Corner] - Re: Problem with org.jboss.tm.JBossRollbackException using j

2006-07-04 Thread Chris Miles
I have just switched everything to postgresql and getting the EXACT same error now what is going on with this??? I cant find anyone with the same problem View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955314#3955314 Reply to the post : http://www.jboss.

[JBoss-user] [Beginners Corner] - Re: Problem with org.jboss.tm.JBossRollbackException using j

2006-07-02 Thread Chris Miles
I found the cause of this problem.. was the formatting of my query that was preventing it from running. I have some more strange | private void storeRow() throws SQLException | { | String updateStatement = | "update Account set " + | "credit = ?, " + | "

[JBoss-user] [Beginners Corner] - Problem with org.jboss.tm.JBossRollbackException using jdbc:

2006-07-01 Thread Chris Miles
This exception is being thrown by my ejbStore method. my ejbCreate method is successfully creating a new row in the database but then fails on ejbStore. ejbStore calls the following method to do the database work required | private void storeRow() throws SQLException | { | Stri

[JBoss-user] [Beginners Corner] - Re: Problem deploying EJB to JBoss

2006-07-01 Thread Chris Miles
good call... never experienced a problem with JBuilder itself like that before. compiled by hand and everything is working excellent now. thanks for your time and patience. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954848#3954848 Reply to the post : h

[JBoss-user] [Beginners Corner] - Re: Problem deploying EJB to JBoss

2006-06-30 Thread Chris Miles
I am compiling through JBuilder - I am pointing it to the JDK that came with Sun Application Server 8.2, which is java 1.5.0_06-b05. This is what it is setting the classpath to when building the project. C:\Documents and Settings\Chris\Desktop\implementation\projects\cakeinabox\classes;C:\Sun

[JBoss-user] [Beginners Corner] - Re: Problem deploying EJB to JBoss

2006-06-29 Thread Chris Miles
.. sorry seems it doesnt seem like that made any different with this forums width. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954541#3954541 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954541 Using Tomcat but

[JBoss-user] [Beginners Corner] - Re: Problem deploying EJB to JBoss

2006-06-29 Thread Chris Miles
and here is the console text not being wrapped. 01:14:32,253 DEBUG [MainDeployer] Starting deployment of package: file:/C:/jboss-4.0.4.GA/server/default/deploy/AccountJAR.jar 01:14:32,253 DEBUG [MainDeployer] Starting deployment (init step) of package at: file:/C:/jboss-4.0.4.GA/server/default/d

[JBoss-user] [Beginners Corner] - Re: Problem deploying EJB to JBoss

2006-06-29 Thread Chris Miles
Im not sure if this is what you are looking for. I have turned console logging to DEBUG in the log4j.xml 01:08:20,639 DEBUG [MainDeployer] Starting deployment of package: file:/C:/jboss -4.0.4.GA/server/default/deploy/AccountJAR.jar 01:08:20,639 DEBUG [MainDeployer] Starting deployment (init step

[JBoss-user] [Beginners Corner] - Re: Problem deploying EJB to JBoss

2006-06-29 Thread Chris Miles
sorry for being so stupid (thats why I am a n00b i suppose) but how do I show the full error? What I pasted was everything that was printed to the console. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954483#3954483 Reply to the post : http://www.jboss.co

[JBoss-user] [Installation, Configuration & Deployment] - EJB Deployment problem.

2006-06-29 Thread Chris Miles
Sorry to post in here. hope it is ok as I have not recieved an answer in the beginners section. The code for my EJB and xml files are in this thread http://www.jboss.com/index.html?module=bb&op=viewtopic&t=85735 I am getting the following error from the server console output. It is pointing to

[JBoss-user] [Beginners Corner] - Re: Problem deploying EJB to JBoss

2006-06-29 Thread Chris Miles
you have confused me now. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954418#3954418 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954418 Using Tomcat but need to do more? Need to support web services, security? Ge

[JBoss-user] [Beginners Corner] - Re: Problem deploying EJB to JBoss

2006-06-29 Thread Chris Miles
any ideas guy? my bean seems developed fine. so I dont see any coding mistakes. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954363#3954363 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954363 Using Tomcat but need

[JBoss-user] [Beginners Corner] - Re: Problem deploying EJB to JBoss

2006-06-28 Thread Chris Miles
Ah good call. Never seen that. I was creating the jar with jar -cvf AccountJAR.jar AccountJAR So I have moved up a level and done. jar - cvf AccountJAR.jar * and JBoss now starts churning out stuff... errors though mind you but it's a start. haha. thanks for that. Here are the further errors

[JBoss-user] [Beginners Corner] - Re: Problem deploying EJB to JBoss

2006-06-28 Thread Chris Miles
/beans/AccountEJB/ AccountJAR/cakeinabox/beans/AccountEJB/AccountBean.class AccountJAR/cakeinabox/beans/AccountEJB/AccountHome.class AccountJAR/cakeinabox/beans/AccountEJB/Account.class Chris View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953943#3953943

[JBoss-user] [Beginners Corner] - Problem deploying EJB to JBoss

2006-06-27 Thread Chris Miles
I have a test jar which I downloaded which when placed in the deploy directory echos the following onto the console: 20:21:14,574 INFO [EjbModule] Deploying TesterBean 20:21:15,265 INFO [ProxyFactory] Bound EJB Home 'TesterBean' to jndi 'test/Tester' 20:21:15,495 INFO [EJBDeployer] Deployed:

[JBoss-user] [Security & JAAS/JBoss] - Is there a way to list currently logged-in users from an App

2005-08-31 Thread BI-Chris
Is there an easy way to get a list of all Users currently using an Application? The Application consists of several EJBs which are used from an Client-Application - no web-Interface. It is using it's own security domain. I was wondering if there is no way to get such a list from the web-console

[JBoss-user] [Installation, Configuration & Deployment] - Re: accessing a web app in jboss

2005-07-20 Thread BI-Chris
By default, this should be server-name:8080/ServletName For Example localhost:8080/Fibo/ for the Tutorial But I think you can change that with some config Files, which I assume you haven't done. You can also see what the web-console tells you. Try localhost:8080/web-console/ and have a look at

[JBoss-user] [Installation, Configuration & Deployment] - HtmlAdaptor throws MalformedObjectNameException every 10 Min

2005-07-19 Thread BI-Chris
Hi, I've got a strange Exception comming up every 10 Minutes. This is what's in the log-File and on Console. As you see, it occours at 15:59 and something, the next one is 16:09 and something and so on - exactly every 10 Minutes. I thought I may have messed up some files, but I just deleted the

[JBoss-user] User authentication info lost in clustered sessions

2004-04-20 Thread Chris Bonham
d both the principal and notes in ClusteredSession are transient which is where the information is stored for reauthentication via FormAuthenticator. Any ideas why the notes are not persisted unlike the session attributes? Has anyone else had this problem and how did you fix it? Thanks. -- Ch

[JBoss-user] [Clustering/JBoss] - After failover, not getting POST data for ~120 seconds

2004-02-12 Thread Chris Pennock
not the request? Weird. Does anyone have any experience with this phenomenon, or know where to look to begin to debug this? many thanks!! Chris --- SF.Net is sponsored by: Speed Start Your Linux Apps Now. Build and deploy apps & Web services f

[JBoss-user] [Clustering/JBoss] - ClassCastException during HTTP Session Replication Deserialization

2004-02-11 Thread Chris Pennock
an online resource discussing strategy for how complex or deep objects in the session should be to make HTTP session replication efficient? Any help would be greatly appreciated. thanks so much! Chris ClusteredHTTPSessionBeanImpl.unserializeSession() -- prot

Re: [JBoss-user] Problems getting started ...

2004-01-17 Thread chris
Hey, thanks! The JMX Console now works! But now I'm confused ... shouldn't it run using the J2RE? Do I have to install the SDK on the live system (will be a linux server)? The other thing is that the class loader warnings are still there and the same as before. Thanks, Chris >

[JBoss-user] Problems getting started ...

2004-01-17 Thread chris
avac.exe compiler With a nested exception to follow for 49 times ... Did I miss something I have to install? Or is the default config not working on XP? Please, I am new to JBoss and need some aid here to get started. Thanks, Chris ---

Re: [JBoss-user] JBoss 3.2.3 problems running in Linux for z/Series

2004-01-15 Thread Chris Bonham
e and the machine stopped crashing. Your problem is probably completely different, but the Diagnosis docs helped me tremendously. -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL PROTECTED] http://www.thirdeyeconsulting.com 317.823.3686 317.823.0353 (FAX) Quoting Poppe, Troy ([

[JBoss-user] SNMP Adaptor causing OutOfMemory errors?

2003-11-24 Thread Chris Bonham
OutOfMemory errors. -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL PROTECTED] http://www.thirdeyeconsulting.com 317.823.3686 317.823.0353 (FAX) --- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net

[JBoss-user] XMLLoginConfig doesn't clear JaasSecurityManager cache when redeployed

2003-11-12 Thread Chris Bonham
oded because there's no way to see all the configurations managed by the SecurityConfig. Is it acceptable to return all the configurations (from a security standpoint)? Thanks. -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL PROTECTED] http://www.thirdeyeconsulting.co

Re: [JBoss-user] JBoss Presentation

2003-08-29 Thread Chris Bonham
Putting the zip file on SourceForge is fine by me; I imagine one of the JBoss admins would have to do it though. Also, please link to presentation in the FAQ forum if you'd like. Thanks. -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL PROTECTED] http://www.thirdeyeconsultin

[JBoss-user] JBoss Presentation

2003-08-28 Thread Chris Bonham
I gave a presentation on JBoss and Web Services at the Indianapolis JUG (http://www.indyjug.net). The presentation can be downloaded from: http://www.thirdeyeconsulting.com/indyjug/jboss/ -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL PROTECTED] http://www.thirdeyeconsulting.com

[JBoss-user] JMS / JBossMQ JDBC2 PersistenceManager & Hypersonic log filesize

2003-07-29 Thread Chris May
g the jdbc2 PM rather than the old file-based one? 3) We don't care about loosing messages in the event of a server crash. Is there any way of turning off the DB logging to file completely and having the whole process run in-memory inste

Re: [JBoss-user] ApplicationDeadlockException on read-onlymethods

2003-07-24 Thread Chris May
l? Kind of like optimistic locking, but applied per-method (so that write methods still lock the bean, but a read method can execute even against a locked bean?) ta Chris >>> [EMAIL PROTECTED] 07/23/03 07:24pm >>> with QueuedPessimisticEJBLock, read-only shorten the duration o

[JBoss-user] ApplicationDeadlockException on read-only methods

2003-07-23 Thread Chris May
eLocationEntity ejb/cms/PageLocationEntity get* true Can anyone help, or point me in the right direction? thanks, Chris --- This SF.Net email sponsored by: Free pre-built ASP.NET

Re: [JBoss-user] JBoss 3.2.1: ConnectionFactory not bound

2003-07-23 Thread Chris May
cular, it needs to be able to create server/default/data and subdirs thereof, for hypersonic. Chris >>> [EMAIL PROTECTED] 07/23/03 01:21pm >>> Hi all, I'm trying to get 3.2.1 up and running under solaris, but keep running into naming exceptions when trying to lo

[JBoss-user] JBoss 3.2.1: ConnectionFactory not bound

2003-07-23 Thread Chris May
depend upon a ConnectionFactory already being bound to java:/ConnectionFactory, I can't find anything that looks like it might create and bind it. Help!! TIA, Chris --- This SF.net email is sponsored by: VM Ware With VMware you can run multi

Re: [JBoss-user] Jetty - static files removed from tmp dir

2003-07-15 Thread Chris May
What OS? On Solaris, there are default housekeeping scripts (kicked off from root's cron) which clear out files from /tmp and /var/tmp, but leave directory structures intact. Might you have something like this running on your box? Chris >>> [EMAIL PROTECTED] 07/12/03 07:59pm &g

Re: [JBoss-user] Problems with message driven beans

2003-04-04 Thread Chris Bonham
David, Are you running in a UNIX environment? If so, you probably need to increase the number of open file descriptors like so (sockets are considered file descriptors): ulimit -n 8192 Good luck! -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL PROTECTED] http

Re: [JBoss-user] Tomcat doesn't start under JBoss 3.2.0RC3?

2003-03-19 Thread Chris Bonham
d the "build bundle" command. Thanks. -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL PROTECTED] http://www.thirdeyeconsulting.com 317.823.3686 317.823.0353 (FAX) Quoting Chris Bonham ([EMAIL PROTECTED]): > I'm in the process of upgrading our application from JBoss 3

[JBoss-user] Tomcat doesn't start under JBoss 3.2.0RC3?

2003-03-19 Thread Chris Bonham
der the JBoss catalina directory, but the root directory, C:\catalina. I also tried this with Tomcat 4.1.18 and received the same results. Is there a bug in the deployment process? Thanks. -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL PROTECTED] http://www.thirdeyeconsulting.com

Re: [JBoss-user] code for "is user authenticated" in JBoss?

2003-03-04 Thread Chris Bonham
urity/JBossUserRealm.java Good luck! -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL PROTECTED] http://www.thirdeyeconsulting.com 317.823.3686 317.823.0353 (FAX) Quoting Ken Yee ([EMAIL PROTECTED]): > > I'm still trying to figure out how to do autologin into JBoss > declarati

[JBoss-user] MDB Dependency and JMS Recovery

2003-03-03 Thread Chris Bonham
JDBC2 PersistenceManager). When JBoss starts up, the undelivered messages are sent, triggering the MDB, but the dependent SLSB is not yet ready! Is there a way to reorder this sequence of events or is it a bug? I've attached a stacktrace. Thanks. -- Chris Bonham President/CEO Third Eye Consulting, I

Re: [JBoss-user] jboss_3_1.dtd

2003-02-13 Thread Chris Bonham
va:221) at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:201) at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:76) at org.jboss.metadata.XmlFileLoader.getDocument(XmlFileLoader.java:260) ... 19 more Thanks. -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMA

Re: [JBoss-user] jboss_3_1.dtd

2003-02-12 Thread Chris Bonham
Sacha, Yes, the jboss_3_1.dtd does exist in the JBoss distribution, but XDoclet generates the public id to reference the jboss.org website and that URL doesn't exist. I could change XDoclet, but it would be nice to reference the URL instead. Thanks for all the great work! -- Chris B

[JBoss-user] jboss_3_1.dtd

2003-02-12 Thread Chris Bonham
cache mechanism that may force me to upgrade to JBoss 3.2.0 RC1? Thanks. -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL PROTECTED] http://www.thirdeyeconsulting.com 317.823.3686 317.823.0353 (FAX) --- This sf.net ema

Re: [JBoss-user] Problem Insert Data To Database

2003-01-06 Thread Chris Chen
you are having some conflicts with your field. You should rename your field to something else other than group. It would be the easier solution. Thanks, Chris On Monday, January 6, 2003, at 02:40 AM, [EMAIL PROTECTED] wrote: I'm encounter problem with unable to insert data to databas

Re: [JBoss-user] Pre compiling JSP Pages

2002-12-20 Thread Chris Bonham
In Ant 1.5 there is an optional task JspC that uses the same Apache Jasper class. This is how we use it with Tomcat 4.0.6: And then we make sure they compile, etc. -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL

Re: [JBoss-user] Jboss on WIN2000

2002-11-22 Thread Chris Bonham
x27;t think these settings are limiting the test, but I'll check to database again. Also, is the 240 user statistic from the ECPerf test an upper limit in JBoss given your configuration? Thanks. -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL PROTECTED] http://www.thirdeyecons

Re: [JBoss-user] Jboss on WIN2000

2002-11-22 Thread Chris Bonham
o record some performance metrics using org.jboss.ejb.plugins.MetricsInterceptor. I know every application is different (and we could very well have bugs in ours), but in general, given a similar application and environment, how many concurrent users have others been able to scale to with JBoss?

Re: [JBoss-user] Open File limit under linux with BASH 2.05

2002-11-13 Thread Chris Bonham
[root@test root]# su jboss bash-2.05a$ ulimit -n 1024 bash-2.05a$ ulimit -n 8192 bash-2.05a$ ulimit -n 8192 -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL PROTECTED] http://www.thirdeyeconsulting.com 317.823.3686 317.823.0353 (FAX) Quoting Jonathan Cowherd ([EMAIL PROTECTED

Re: [JBoss-user] Open File limit under linux with BASH 2.05

2002-11-13 Thread Chris Bonham
cally linked to this), every thread is also a process that shares the file descriptors and data with the child processes. That means you'll possibly see the same files under /proc/1000/fd and /proc/1001/fd given processes 1000 and 1001 are mapped to Java threads. -- Chris Bonham President/CEO

Re: [JBoss-user] Performance issue while adding to a EJB 2.0 relation - JBoss version: 3.0.2

2002-11-13 Thread Chris Bonham
FYI for those following this thread: I finally had time to create a simple testcase and file a bug report (637934). Thanks. -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL PROTECTED] http://www.thirdeyeconsulting.com 317.823.3686 317.823.0353 (FAX) Quoting Dain Sundstrom

Re: [JBoss-user] Performance issue while adding to a EJB 2.0 relation - JBoss version: 3.0.2

2002-11-01 Thread Chris Bonham
mes out. I've attached code snippets below. Thanks. -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL PROTECTED] http://www.thirdeyeconsulting.com 317.823.3686 317.823.0353 (FAX) SelectedBowComponentBean.java: /** * @ejb.interface-method * @ejb.relat

RE: [JBoss-user] Re: "removing bean lock and it has tx set" - question

2002-10-13 Thread Chris Pinfold
3) Restart JBoss 4) Remove the data using entity beans, via a session facade Are we possibly doing something wrong or is this related to the same bug? Regards Chris This is the error message: 2002-10-10 14:37:50,699 ERROR [com.yambay.mdrover.erp.proxy.session.ERPTestManagerBean] Failed due

Re: [JBoss-user] jboss-all compilation

2002-10-04 Thread Chris Bonham
To retrieve new directories from CVS try this command: cvs update -d -- Chris Bonham President/CEO Third Eye Consulting, Inc. [EMAIL PROTECTED] http://www.thirdeyeconsulting.com 317.823.3686 317.823.0353 (FAX) Quoting David Jencks ([EMAIL PROTECTED]): > Maybe you updated an old checkout.

Re: [JBoss-user] Avoid creating elements

2002-10-04 Thread Chris Bonham
When looking up your EJB homes from JNDI, are you prefixing the name with java:comp/env/ ? When I did this, I had to have an for every EJB that referenced by that bean. Just use ejb/MySupermanEJB directly and you shouldn't need the tag. -- Chris Bonham President/CEO Third Eye Consulting

RE: Re[2]: [JBoss-user] JBOSS - Components library

2002-09-27 Thread Chris Snow
Instead of a library of components, what about a library of 'links' to components, such as in projects like ofbiz (www.ofbiz.org)? -Original Message- From: Alex Loubyansky [mailto:[EMAIL PROTECTED]] Sent: 27 September 2002 12:15 To: rahul ganjoo Subject: Re[2]: [JBoss-user] JBOSS - Compon

RE: [JBoss-user] M-N relationship error -xdoclet

2002-09-23 Thread Chris Pinfold
* **/ public abstract Collection getTechObjects(); Have a look at the xdcolet generated ejb-jar.xml and jbosscmp-jdbc.xml files and make sure that xdoclet is generating what you expect. Regards Chris -Original Message- From: Victor Batista [mailto:[EMAIL

[JBoss-user] Session Bean calling in application/servlets

2002-09-06 Thread Chris Chen
hanks, Chris PGP at ldap://pgpkeys.mit.edu/ --- This sf.net email is sponsored by: OSDN - Tired of that same old cell phone? Get a new here for FREE! https://www.inphonic.com/r.asp?r=sourceforge1&refcod

[JBoss-user] MySql with Jboss 3.0.1

2002-08-19 Thread Chris Pinfold
Title: MySql with Jboss 3.0.1 I am having problems deploying mysql-service.xml (MySql Datasource) using Jboss 3.0.1. This worked fine in 3.0.0, but now I get the folllowing error: I have attached the mysql-service.xml file. 05:00:51,079 ERROR [URLDeploymentScanner] MBeanException: Excep

RE: [JBoss-user] SAP R/3 JCA connector and JBoss 3.0.0

2002-08-18 Thread Chris Pinfold
Here you go David... Regards Chris -Original Message- From: David Jencks [mailto:[EMAIL PROTECTED]] Sent: Thursday, 15 August 2002 10:47 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] SAP R/3 JCA connector and JBoss 3.0.0 Can you send me the (suitably de-password-ized) working

RE: [JBoss-user] SAP R/3 JCA connector and JBoss 3.0.0

2002-08-14 Thread Chris Pinfold
heers Chris -Original Message- From: David Jencks [mailto:[EMAIL PROTECTED]] Sent: Saturday, 10 August 2002 2:36 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] SAP R/3 JCA connector and JBoss 3.0.0 Is the SAP adapter itself deploying properly? this makes it look like it isn't:

RE: [JBoss-user] SAP R/3 JCA connector and JBoss 3.0.0

2002-08-08 Thread Chris Pinfold
java:322) at org.mortbay.util.ThreadPool$JobRunner.run(ThreadPool.java:713) at java.lang.Thread.run(Thread.java:536) Regards Chris -Original Message- From: David Jencks [mailto:[EMAIL PROTECTED]] Sent: Friday, 9 August 2002 1:25 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] SAP R

RE: [JBoss-user] SAP DB and JBoss

2002-08-08 Thread Chris Pinfold
There is one in the docs/examples/jca directory in the 3.0.1 release (it was not in the 3.0.0) Regards Chris -Original Message- From: Sandor Arpa Sent: Friday, 9 August 2002 2:37 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] SAP DB and JBoss Howdy, is anybody out there who has

Re: [JBoss-user] JBoss client jar files size

2002-06-14 Thread Chris Chen
comes with 1.4 has this classloading issue fixed. However, anything before 1.4 will have problems running JAAS. Thus you are left to either upgrade to 1.4 or give up using Webstart... For my project, I chose the latter. Thanks, Chris At 05:54 AM 06/14/2002, you wrote: > If you want the c

RE: [JBoss-user] LDAP Authentication settings

2002-06-13 Thread Shaw, Chris
e the correct role. And when I look in the LDAP log file I see from the generated queries that there is no mention of the role which the user should be checked against. So, it is the LDAP role mapping part that I am missingany ideas what I've got wrong? Thanks & Regards Chris -=-=-=

RE: [JBoss-user] LDAP Authentication settings

2002-06-13 Thread Shaw, Chris
cn ou=Groups,o=ecb.int How do I get the role name passed into my LDAP query in the right place? Thanks (again) for help... Chris -=-=-= -Original Message- From: Chris Chen [mailto:[EMAIL PROTECTED]] Sent: 13 June 2002 11:58 To: [EMAIL PRO

RE: [JBoss-user] LDAP Authentication settings

2002-06-13 Thread Shaw, Chris
I guess that java:/jaas/myDomain in jboss-web.xml points to an application-policy in login-context.xml with the name "myDomain" :-) Chris -=-=- -Original Message- From: Shaw, Chris Sent: 13 June 2002 11:39 To: '[EMAIL PROTECTED]' Subject: RE: [JBoss-user] LDAP Aut

RE: [JBoss-user] LDAP Authentication settings

2002-06-13 Thread Chris Chen
o be the same as the what you're referring to in your jboss/security-domain element. In your case, the application-policy name inside login-config.xml will be "myDomain". Thanks, Chris At 02:39 AM 06/13/2002, you wrote: >Thanks for the mail... > >I've now tried

RE: [JBoss-user] LDAP Authentication settings

2002-06-13 Thread Shaw, Chris
-web.xml file with the following: java:/jaas/myDomain But now I am trying to find out where to tell JBoss that myDomain points to LDAPLogin. The online-docs keep referring to auth.conf but this file seems to have been deprecated so I want to do it the 'right' w

[JBoss-user] RE: LDAP Authentication settings

2002-06-13 Thread Shaw, Chris
Hi, Thanks for the help & pointers (QS was especially useful) I now have my login-config.xml file, as below, with the name "LDAPLogin". How/where do I tell JBoss that the authentication needs to point to this application-policy?

Re: [JBoss-user] IDE Question

2002-06-12 Thread Chris Chen
t way i've seen so far.. I don't think there's any other IDE that lets you compile against something that has no source code generated yet.. THanks, Chris At 11:25 AM 06/12/2002, you wrote: >What IDE are you guys and gals using? I have been using Intellij, but >now that I

[JBoss-user] LDAP Authentication settings

2002-06-12 Thread Shaw, Chris
vance... Chris -=-=-= WEB-INF/web.xml WEB Resource Web resource description / HEAD GET POST PUT DELETE Auth constraint description CNSRole NONE

Re: [JBoss-user] What's best practice for remote calls?? Solved: SOOO close to CMR (1-to-many) working...I may just wet myself! :)

2002-06-11 Thread Chris Chen
us, when you run xdoclet, it will automatically generate the Local Home for you automatically. Then you simply have to look up the local-jndi-name inside your other beans and you're ready to go, plus all the little ejb-ref stuff you have to add in for those beans of course. Hope that helps,

Re: [JBoss-user] What's best practice for remote calls?? Solved: SOOO close to CMR (1-to-many) working...I may just wet myself! :)

2002-06-11 Thread Chris Chen
methods. This has the added benefit of allowing me to use the same method name for the local and remote since it's the Home that I'm retrieving that indicates to JBoss whether I want local or remote method calls. Thanks, Chris At 05:42 PM 06/11/2002, you wrote: >Okay, I figured it

RE: [JBoss-user] jndi confusion - two servers on same machine

2002-06-11 Thread Chris Chen
ternal/ldap/dscape"); This is copied from the JBoss Main Documentation book so if you need more information, get the main documentation off Flashline. Thanks, Chris At 12:48 PM 06/11/2002, you wrote: Okay so I fooled around with adding an external context mbean to the servlet server - but

Re: [JBoss-user] Catalina, ClassPath and XML parsers

2002-06-05 Thread Chris Chen
ement where you can set the System Properties? If so, then there wouldn't be a need to do a server-wide change of XML Parsers. One would simply define a set of JAXP properties to work with that specific application. Thanks, Chris At 10:38 AM 06/05/2002, you wrote: >Jboss3.0final, C

Re: [JBoss-user] Classloader problem

2002-06-05 Thread Chris Chen
Hi, I don't know which version you're running, but with JBoss 3.0, I had to manually add in an additional classpath element that will look for files under /lib/ext directory. So what I did was add the following line to my jboss-service.xml: Thanks, Chris At 10:13 AM 06/05

[JBoss-user] Disconnection and reconnection to Jboss

2002-06-04 Thread Chris Chen
to do a context lookup for the home interface every time a request is made. Do you gurus have any ideas? Thanks, Chris PGP at ldap://certserver.pgp.com/ ___ Don't miss the 2002 Sprint PCS Application Developer's Conference

Re: [JBoss-user] .sar file info

2002-06-04 Thread Chris Chen
Yea, It seems to be difficult to find any information regarding the SAR and RAR. I don't think I see any references to the DTD or description of the file formats in the JBoss Documentation (the subscription one). Can the description be added into the documentation? Thanks, Chris At

[JBoss-user] Change Log for version 2.4.x. ?

2002-06-04 Thread Chris Cuilla
is blank...the URL: http://www.jboss.org/changelog_2_4_beta.jsp shows nothing. Where can I find this change log? Thanks, Chris __ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com

Re: [JBoss-user] ClassCastException from serialize, redploy, deserialize

2002-05-31 Thread Chris Chen
long (I think). However, I may be wrong as it's been a while since I touched object serializations.  I normally use XML in place of serialization for storage these days for comptability reasons. Thanks, Chris At 12:06 PM 05/31/2002, you wrote: I've narrowed down my ClassCastEx

Re: [JBoss-user] JBoss 3.0 RC3 MDB Question

2002-05-31 Thread Chris Chen
e data inside a as well. So am I still doing something stupid? :) Thanks, Chris At 01:13 AM 05/31/2002, you wrote: >I'm successfully using an MDB that contains the following in ejb-jar.xml: > > > ... > >

[JBoss-user] JBoss 3.0 RC3 MDB Question

2002-05-30 Thread Chris Chen
nd working with the EJB inside the JBOSS container (ie. the MDB), does JBoss use a local connection that is much more efficient or does it go through a remote route? I would definitely prefer to use local ejb references but I am not sure what I'm doing wrong.. Can something please help me?

[JBoss-user] Introducing MultiSensit SDK

2002-04-30 Thread Chris Nunez
http://www.mstcorporation.com/body.jpg";> http://www.mstcorporation.com";>www.mstcorporation.com mailto:[EMAIL PROTECTED]";>[EMAIL PROTECTED] http://www.mstcorporation.com/logo.gif";> To be removed from our list pleas

[JBoss-user] Configuring MSSQL JDBC/DataSource for JBoss 3.0 beta

2002-04-04 Thread Chris Perren
efore I place copies in both the deploy and conf directories. Thanks for any help..   Chris Perren     Context ctx = new InitialContext(); javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup("java:comp/env/jdbc/ejbPool");     The ejb-jar.xml consists of   

[JBoss-user] JBuilder and JBoss 3.0 Beta

2002-03-29 Thread Chris Perren
I am trying to run JBoss 3.0 Beta through Jbuilder but unfortunately I am getting the follow exception. I have had no luck at figure out the correct jar file to add to my classpath. Thanks for any help   Chris     02:26:01,645 INFO  [MainDeployer] Deploying: file:/C:/JBoss/deploy/jmx-rmi

[JBoss-user] InstanceAlreadyExistsException when deploying a bean

2002-03-27 Thread Chris Perren
I am receiving a  javax.management.InstanceAlreadyExistsException when deploying a simple HelloWorld bean. I am new to ejbs and jboss and guessing that the following error occurred due to not resetting/clearing out the application(Jboss) database entry. Thanks for any help..   Chris

[JBoss-user] Jboss - Tomcat - Struts

2002-03-23 Thread Chris Perren
modifications. What is the best setup/process to use for developing the back end (ejb) but also the control logic (i.e. Struts) and presentation pieces (jsp). I guess what I don't understand is  how an integrated servlet/jsp engine helps the development process.   Thanks   Chris   

Re: Re: [JBoss-user] Problems with JBoss, Tomcat and Win2K?

2002-03-18 Thread Chris Pitts
ppears to be working. Regards Chris -- Chris Pitts Farnham, UK Reply Header Subject:Re: [JBoss-user] Problems with JBoss, Tomcat and Win2K? Author: "Dmitri Colebatch" <[EMAIL PROTECTED]> Date:Sat, 16 Mar 2002 03:18:02 + >

[JBoss-user] Problems with JBoss, Tomcat and Win2K?

2002-03-12 Thread Chris Pitts
x27; deploy is throwing multiple 'UnknownHostException's during startup. The supplied test-catalina.ear is not deploying at all because of this. AFAICS there is no changes needed for the basic setup - or have I missed something really simple? Thanks in advance for any help. --

[JBoss-user] Re: Jboss-Jetty Cocoon 2 sucess

2001-12-19 Thread Chris Hamilton
bout cocoon/documentation, but cocoon/documents/index.html worked. Like the setup below, other than the going to /welcome instead of /cocoon/welcome like it should, it works. -Chris Jozsa Kristof wrote: >Chris, > >I was very happy to read your mail, as I'm suffering with Cocoon

[JBoss-user] migration jboss 2.2 to 2.4.3

2001-10-25 Thread chris
at $Proxy1.getPassword(Unknown Source) at ch.algacom.aaps.client.AdminFinderClient.main(AdminFinderClient.java: 52) pls can someone tell me what I'm doing wrong here? or is ther another very important change to the new version which I am not aware of? oh and did someone already

[JBoss-user] Re: weird colors with konqueror

2001-09-25 Thread Chris Kimpton
free to have a look - I cannot get to my linux box until tonight - I will check it out then and see how best to handle it ;-) I am colour blind - so it may well be weird for all browsers ;-) See ya, Chris _ Get your FREE download of

RE: [JBoss-user] URGENT Help!

2001-09-12 Thread Chris Tragas
it option c for all my beans. Pls HELP! thanks! Chris Tragas - [EMAIL PROTECTED] - www.atomicmedia.com - > -Original Message- > From: Chris Tragas > Sent

[JBoss-user] URGENT Help!

2001-09-12 Thread Chris Tragas
(): [FinderException]: " + fe.toString()); // do nothing } catch (Exception ex) { Debug.out("Exception in getting surveyQue

Re: [JBoss-user] JBoss Open House in London--September 12, 7 pm

2001-09-12 Thread Chris Kimpton
Hi, --- Julian Gosnell <[EMAIL PROTECTED]> wrote: > > Is this still on ? > It seems so - I just phoned the Marriot and the room is booked until 9pm tonight. Chris = Need somewhere to Live in London - http://freeflats.com

Re: AW: [JBoss-user] JBoss and Java Web Start

2001-08-09 Thread Chris Kimpton
Hi, > Which .jar files i need to include? You need all the jars/files in the jboss/client directory. You are currently getting errors for classes in jboss-j2ee.jar HTH, Chris = Need somewhere to Live in London - http://freeflats.com __

[JBoss-user] Re: [j2ee] Help with HTTPS

2001-08-09 Thread Chris Kimpton
d line - change run.bat/sh to set them then - also print them out too - to see if they are set. Its probably a class loader/System issue - although I did not think System is affected by the classloader. You almost definitely need the jsse jars in the jre libs - as you

Re: [JBoss-user] is JBOSS JNDI brain-dead or ...

2001-07-30 Thread Chris Windsor
low ... note "bar" should be under "foo".) The code throws a NamingException. This needs to be fixed, but until then, my solution is to simply flatten all entries to be only one context deep. Chris ---

[JBoss-user] is JBOSS JNDI brain-dead or ...

2001-07-26 Thread Chris Windsor
e way I'm doing these lookups? (sigh) Thanks for any hints that will allow me to leave my codebase as is. Plus, why can't jboss' jndi handle this? Chris _ Get your FREE download of MSN Explorer at http://explorer.ms

[JBoss-user] users.properties & roles.properties

2001-07-25 Thread Chris Adams
Hi all, A very stupid question, but where should these files be kept? Should they be zipped into the ear, or should the go into the conf folder within jboss. Thanks Chris Adams == Regus Computer Services Ltd Direct Line: 01279 712010 ESN: 6-741-2010

RE: [JBoss-user] JBoss2.2.2-tomcat3.2.2

2001-07-09 Thread Chris Tragas
tomcat is at 8080 Chris Tragas - [EMAIL PROTECTED] - www.atomicmedia.com - > -Original Message- > From: David Jencks [mailto:[EMAIL PROTECTED]] > Sent

  1   2   >