AW: [JBoss-user] JBoss.NET error

2003-03-25 Thread Jung , Dr. Christoph
Title: Nachricht It does not look like your session bean is called at all. What isyour globalJNDI name of your session bean andhow doesyour web-service.xml look like?Looks like there is a name "Facadecomp" in your web-service.xml referenced? CGJ -Ursprüngliche Nachricht-Von:

AW: Source code is the only truth? (was Re: [JBoss-user] Webservice call)

2003-03-25 Thread Jung , Dr. Christoph
Of course. In that sense, source code (the record) tells more truth than documentation (the record´s review in a local newspaper) under the presumption of an ideal VM (record player according to recording industry standard). CGJ -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED]

AW: [JBoss-user] Webservice call

2003-03-25 Thread Jung , Dr. Christoph
Title: Nachricht Source code generation is ok for everything that you do not like to debug ;-) For stubs and all kind of technical aspects, it is perfect when integrated into your IDE. The code looks as if you would write the stub manually. I could not see an optimization measures.

Antwort: [JBoss-user] JMS Queue Deployed at runtime

2003-03-25 Thread ulf . schroeter
You can use the jboss.mq.DestinationManger-MBean via jmx- console to create queues and topics at runtime. You also have to update the jbossmq-destinations-service.xml for persisting your configuration update, because queues and topics created at runtime will not be automatically stored in the

Re: [JBoss-user] Mac OSX: Hypersonic hanging during shutdown

2003-03-25 Thread Lennart Petersson
With localhost. Same happens if I change it to 127.0.0.1. /L måndagen den 24 mars 2003 kl 20.47 skrev [EMAIL PROTECTED]: is it configured with localhost or 127.0.0.1 ? måndagen den 24 mars 2003 kl 16.00 skrev Lennart Petersson: JBoss 3.0.7RC1 Anyone that knows why Hypersonic is hanging

Antwort: Re: [JBoss-user] JMS Queue Deployed at runtime

2003-03-25 Thread ulf . schroeter
I think that you also have to manually add the new queue/topic definition to jbossmq-destinations-service.xml because otherwise destinations created at runtime will not survive server restart. Ulf Schroeter MobilCom Communikationstechnik GmbH

Re: Antwort: [JBoss-user] JMS Queue Deployed at runtime

2003-03-25 Thread Alberto Rodriguez Galco
If you can use jmx-console to create jms destinations at runtime, you can connect to the jmx agent (using one of its connectors)to manage jboss.mq.DestinationManager-MBeanfor creating runtimejms destinations - Original Message - From: [EMAIL PROTECTED] To: [EMAIL

Re: [JBoss-user] jboss.xml commit-option

2003-03-25 Thread Simone Milani
You need to merge the JBoss.xml with your file jboss-container.xml where you put something like container-configurations container-configuration extends="The one you want to extend" container-nameMyContainer/container-name ... commit-optionA/commit-option

RE: [JBoss-user] Feature Request

2003-03-25 Thread Rupp,Heiko
Ryan, This may be a sledgehammer for your thumbtack, but you could redesign your configuration system to use JMX MBeans. My understanding so far is that JBoss with JMX only can set run-time configurations. If you restart the server they will be lost. My understanding is, that David wanted

Re: [JBoss-user] EJBQL Help

2003-03-25 Thread Langelage, Frank
kiuma wrote: Hello ! Can some one tell me why on this query * @ejb.finder *signature=java.util.Collection findByActivityEnabled(String activityCode) *query=SELECT OBJECT(center) FROM WaActivityCenter center WHERE (center.activities.code = ?1) AND (center.status 0) *

Re: Re[6]: [JBoss-user] CMR with FK in the database

2003-03-25 Thread Simone Milani
Hi ALex, Thanks! Please remember that the PK must be Long in the SybaseCreate command or we get a ClassCastException: Long pk = null; //Retrieve the last identity created for this Connection mySybaseStmt = statement.getConnection().prepareStatement(IDENTITY_SQL);

[JBoss-user] Latest CVS version

2003-03-25 Thread Simone Milani
Hi, I have the CVS port blocked by a firewall and wonder how I can get a snapshot from CVS of the latest 3.2.0 tag. I am trying to use CVSGrab but is getting a nightmare. Thank you very much!! Simone

[JBoss-user] Configuring DataSources under JBoss 3.0.6

2003-03-25 Thread Morrow, Brian (LIT)
Hi there, Is there an up-to-date step-by-step guide to configuring DataSources under JBoss 3.0.6? I'm having a lot of trouble getting reliable documentation. Thanks! Brian Morrow.

RE: [JBoss-user] Webservice call

2003-03-25 Thread Mark.Gargan
Title: Nachricht Ill just have to get used to trusting the generation tools. Thanks again Christoph. Mark. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jung , Dr. Christoph Sent: 25 March 2003 08:14 To: '[EMAIL PROTECTED]' Subject: AW:

RE: [JBoss-user] Latest CVS version

2003-03-25 Thread Rupp,Heiko
H, I have the CVS port blocked by a firewall and wonder how I can get a snapshot from CVS of the latest 3.2.0 tag. I am trying to use CVSGrab but is getting a nightmare. Have a look at https://sourceforge.net/docman/display_doc.php?docid=768group_id=1#firewall Heiko -- Bancotec GmbH

RE: [JBoss-user] Possible bug: unchecked does not seem to work.

2003-03-25 Thread Kevin Conner
Does not JBoss support the unchecked element in ejb-jar.xml/method-permission? You still need to have a principal though. Some login modules allow you to specify the principal that is used when unauthenticated access is requested. If you don't specify this then all access must be

Re: [JBoss-user] Possible bug: unchecked does not seem to work.

2003-03-25 Thread Jon Haugsand
* Kevin Conner Does not JBoss support the unchecked element in ejb-jar.xml/method-permission? You still need to have a principal though. Some login modules allow you to specify the principal that is used when unauthenticated access is requested. If you don't specify this then all

[JBoss-user] help with cmr and ejbql

2003-03-25 Thread kiuma
Hello, I've the following query SELECT OBJECT(center) FROM WaActivityCenter center WHERE center.activities.description = ?1 AND center.status 0 ORDER BY center.description activities and center are in a many to many relation. during deployment the log is: Starting failed

Re: [JBoss-user] Possible bug: unchecked does not seem to work.

2003-03-25 Thread Jon Haugsand
* Jon Haugsand authentication login-module code = org.jboss.security.auth.spi.UsersRolesLoginModule flag = required / /authentication /application-policy I found out: authentication login-module code =

Re: [JBoss-user] help with cmr and ejbql

2003-03-25 Thread kiuma
kiuma wrote: Hello, I've the following query SELECT OBJECT(center) FROM WaActivityCenter center WHERE center.activities.description = ?1 AND center.status 0 ORDER BY center.description activities and center are in a many to many relation. during deployment the log is: Starting failed

Re: [JBoss-user] EJBQL Help

2003-03-25 Thread kiuma
Langelage, Frank wrote: kiuma wrote: Hello ! Can some one tell me why on this query * @ejb.finder *signature=java.util.Collection findByActivityEnabled(String activityCode) *query=SELECT OBJECT(center) FROM WaActivityCenter center WHERE (center.activities.code = ?1) AND

Re: [JBoss-user] Mac OSX: Hypersonic hanging during shutdown

2003-03-25 Thread viktor
Ahhh ... the HypersonicDatabase.java stopService() method uses localhost hardcoded ... and a hunch is if You use 127.0.0.1 instead on OSX it could work ? ... can You please try recompile JBoss 3.0.7RC1 ... as I do not have it handy ... it is a wild guess tho ... Thanks tisdagen den 25 mars

[JBoss-user] Please struts and jboss

2003-03-25 Thread kiuma
Hello again, this problem has remained unsolved to me. Am I the only with this problem. I have developed my jsp pages with struts template library. In version 3.0.6 + jetty I have no problem. When I try my app on 3.2.0rc4 templates elements are replicated! so 4 example, in v3.2.0, my index.jsp is

Re: [JBoss-user] Latest CVS version

2003-03-25 Thread Simone Milani
Hi Heiko, Thanks, I am trying to setup an SSH tunnell on my NT machine to use with CVS but no luck. Did you ever managed to do it? Thanks Simone - Original Message - From: Rupp,Heiko [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 11:40 AM Subject: RE:

[JBoss-user] Dynamic classloading and casting in Jboss3.0.4

2003-03-25 Thread s99luppe
Hi everyone, I'm pretty new to Jboss so I hope my questions isn't too stupid.. In the project Im currently in, I need to load classes stored in separate .jar-files with the same name, sharing a common interface. To accomplish this in Jboss I've made a simple session bean with an ordinary method

[JBoss-user] http session drive me nuts

2003-03-25 Thread Rupp,Heiko
Hi, does anyone have a simple example on how to use sessions with JBoss and Jetty. Yes, I know there are frameworks like struts and so. What I try to do is HttpSession session=request.getSession(); session.setAttribute(foo,bar); encodedURL=response.encodeURL(/some/page.jsp); But encodedURL is

[JBoss-user] (no subject)

2003-03-25 Thread Finn, Michael
I seem to be unable to get mod_jk2 talking to Jetty. I built mod_jk2 from source (jakarta-tomcat-connectors-4.1.18), and have it config'd on Apache 2.0.44 (RH 7.2). JBoss 3.2.0 built from JBoss 3.2 branch running on W2K. I have workers2.properties config'd. In the docs, I saw reference to

RE: [JBoss-user] Latest CVS version

2003-03-25 Thread Rupp,Heiko
Hi Simone, Thanks, I am trying to setup an SSH tunnell on my NT machine to use with CVS but no luck. Did you ever managed to do it? If you use anonymous access, you don't need to, as this is a non-encrypted connection. The trick here is to use a port that is normally open in the

Re: [JBoss-user] Feature Request

2003-03-25 Thread Ryan Hoegg
Rupp,Heiko wrote: Ryan, This may be a sledgehammer for your thumbtack, but you could redesign your configuration system to use JMX MBeans. My understanding so far is that JBoss with JMX only can set run-time configurations. If you restart the server they will be lost. My understanding

Re: [JBoss-user] http session drive me nuts

2003-03-25 Thread Jules Gosnell
Rupp,Heiko wrote: Hi, does anyone have a simple example on how to use sessions with JBoss and Jetty. Yes, I know there are frameworks like struts and so. What I try to do is HttpSession session=request.getSession(); session.setAttribute(foo,bar); encodedURL=response.encodeURL(/some/page.jsp);

[JBoss-user] RE: http session drive me nuts

2003-03-25 Thread Rupp,Heiko
Hi again, http://www.jguru.com/faq/view.jsp?EID=1045 provided the answer. The HttpSession mechanism tries to first store the session. Only if this fails, the urlencoding takes place. This still doesn't solve everything, but explains much :-) Thanks Heiko -Original Message-

Re: AW: [JBoss-user] JBoss.NET error

2003-03-25 Thread Nathan Hoover
You're totally right, the bean is not being hit at all, and it's due to the web-service.xml. I had updated the bean to have both remote and local interfaces since the last time it was working. The problem seems to be a bug in the XDoclet code that generates the web-service.xml - this is what's

RE: [JBoss-user] http session drive me nuts

2003-03-25 Thread Rupp,Heiko
And again, What I try to do is HttpSession session=request.getSession(); session.setAttribute(foo,bar); encodedURL=response.encodeURL(/some/page.jsp); But encodedURL is fixed at /some/page.jsp, no matter what I put in the session. So the next call to the servlet/jsp (e.g. via a

[JBoss-user] mod_jk2 and Jetty

2003-03-25 Thread Finn, Michael
Sorry, Ileft the subject off. -Original Message-From: Finn, Michael [mailto:[EMAIL PROTECTED]Sent: Tuesday, March 25, 2003 8:07 AMTo: Jboss-User (E-mail) (E-mail)Subject: [JBoss-user] (no subject) I seem to be unable to get mod_jk2 talking to Jetty. I built mod_jk2 from

[JBoss-user] jboss certification

2003-03-25 Thread Eric J Kaplan
How long till certification? http://www.sys-con.com/Java/articlenews.cfm?id=1930

Re: [JBoss-user] Mac OSX: Hypersonic hanging during shutdown

2003-03-25 Thread Lennart Petersson
Still not working... else localhost seems to work 'cause I can ping localhost and 127.0.0.1 is answering... but... wait a minute this same error message (java.sql.SQLException: Connection is broken: Malformed reply from SOCKS server) am I also getting now when trying to build xdoclet

AW: AW: [JBoss-user] JBoss.NET error

2003-03-25 Thread Jung , Dr. Christoph
Title: Nachricht this bug has been resolved in the 3.2 branch last week. If you get the latest sources, it should not occur anymore. -Ursprüngliche Nachricht-Von: Nathan Hoover [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 25. März 2003 14:33An: [EMAIL PROTECTED]Betreff:

RE: [JBoss-user] mod_jk2 and Jetty

2003-03-25 Thread Egger Lothar
hi mike here is my workers2.properties [ apache 2.0.43 jetty/JBOSS3.2.0RC3/4/5] maybe it helps ;) cheers lothar ##** [logger] level=INFO [config:] file=/usr/local/apache2/conf/workers2.properties debug=0 debugEnv=0 [uriMap:] info=Maps the requests. Options: debug debug=0

RE: [JBoss-user] http session drive me nuts

2003-03-25 Thread Rupp,Heiko
Jules, thanks fro your reply. Sessions will be tracked with cookies, not url rewriting, by default. I found this one out too now. For debugging, url rewriting is more obvious. Now I have a simple case (attached): browser calls the root-url http://localhost:8080/session-test there the

Re: AW: AW: [JBoss-user] JBoss.NET error

2003-03-25 Thread Nathan Hoover
I have 3.2RC4, which was released on Sunday. Shouldn't I have the right code? How can I get just the XDoclet module without rebuilding JBoss in its entirety? N At 03:33 PM 3/25/2003 +0100, you wrote: this bug has been resolved in the 3.2 branch last week. If you get the latest sources, it

[JBoss-user] Registering Webservices.

2003-03-25 Thread Mark.Gargan
Hi there Christoph, Is there an implementation of a JAXR registry currently available in jboss.net? If not could you suggest one thats popular to use to with publishing Jboss services? Thanks, Mark.

AW: AW: AW: [JBoss-user] JBoss.NET error

2003-03-25 Thread Jung , Dr. Christoph
Title: Nachricht I guess that the xdoclet module is not automatically part of the distro So you need to build it as a part of the jboss.net build cd jboss.net build it isthen generated into output/lib/ CGJ -Ursprüngliche Nachricht-Von: Nathan Hoover

Re: [JBoss-user] Latest CVS version

2003-03-25 Thread Jos Visser
If your firewall *does* support HTTPS access and you have a reasonable home box that you can configure you might want to check out my ProxyTunnel software that can dig SSH tunnels through HTTP proxies and firewalls. See http://www.josvisser.nl/proxytunnel. ++Jos.es And thus it came to pass

AW: [JBoss-user] Registering Webservices.

2003-03-25 Thread Jung , Dr. Christoph
Title: Nachricht weve got juddi integrated into head. CGJ -Ursprüngliche Nachricht-Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 25. März 2003 16:45An: [EMAIL PROTECTED]Betreff: [JBoss-user] Registering Webservices. Hi there Christoph,

RE: [JBoss-user] *-ds.xml file won't deploy on 3.2.0 RC4

2003-03-25 Thread Demyanovich, Craig - Apogent
The log output you show shouldn't get in the way of anything except maybe jsr 77 monitoring features. Can you set the log level to at least debug and show the server.log for the *-ds.xml file being deployed? I don't have any XADataSources handy to try this with. David, Thanks for the

RE: [JBoss-user] jboss.xml commit-option

2003-03-25 Thread Sonnek, Ryan
thanks simone, works like a champ. i was able to merge the files very easily, and it helps out my configuration quite a bit. Ryan -Original Message-From: Simone Milani [mailto:[EMAIL PROTECTED]Sent: Tuesday, March 25, 2003 3:22 AMTo: [EMAIL PROTECTED]Subject: Re:

Re: [JBoss-user] Mac OSX: Hypersonic hanging during shutdown

2003-03-25 Thread viktor
tisdagen den 25 mars 2003 kl 15.29 skrev Lennart Petersson: but... wait a minute this same error message (java.sql.SQLException: Connection is broken: Malformed reply from SOCKS server) am I also getting now when trying to build xdoclet documentation using Maven when Maven is trying to

Re: [JBoss-user] Latest CVS version

2003-03-25 Thread Simone Milani
I tried using cygwin but again no luck. Here is what I did. /home/personal$ CVSROOT=:pserver:[EMAIL PROTECTED]:/cvsroot/jbo ss /home/personal$ cvs -z3 checkout -r Branch_3_2 jboss-3.2 cvs.exe [checkout aborted]: connect to cvs-ssh.sourceforge.net(66.35.250.212):24 01 failed: Connection timed out

[JBoss-user] Non-Serializable Objects In JNDI

2003-03-25 Thread Nicholas
A while back there was a thread on here about a way to store non-Serializable objects in JNDI. Can someone give me a pointer to where that was ? Thanks. //Nicholas = Nicholas Whitehead Home: (973) 377 9335 Cell: (201) 615 2716 [EMAIL PROTECTED] Get Your News From The Crowbar:

RE: [JBoss-user] Registering Webservices.

2003-03-25 Thread Mark.Gargan
Title: Nachricht With services deployed in the Jboss is there any other further registration process required once the webservices have been deployed in the engine? Is there any documentation available on this section yet? Thanks, Mark. -Original Message- From: [EMAIL

Re: [JBoss-user] Latest CVS version

2003-03-25 Thread Jonathan . O'Connor
Simone, I cut this line out of the SourceForge help pages: cvs -d:pserver:[EMAIL PROTECTED]:80/cvsroot/jboss try reading https://sourceforge.net/docman/display_doc.php?docid=14033group_id=1#repositorymirroring for more info. Ciao, Jonathan O'Connor Development Manager XCOM Dublin Phone: +353 1

[JBoss-user] CVS Modules

2003-03-25 Thread Mark.Gargan
Hi folks, Im attempting to pull down the source jboss-head thru cvs. Ive been successful a few times but more often than not it fails half way thru. At the end of the day checking out the head takes about 20 mins. Is there a way of just checking out modules at a time? For instance just

RE: [JBoss-user] Latest CVS version

2003-03-25 Thread Rupp,Heiko
Hi, I cut this line out of the SourceForge help pages: cvs -d:pserver:[EMAIL PROTECTED]:80/cvsroot/jboss This works on unix, but on cygwin this yields: $ cvs -t -d:pserver:[EMAIL PROTECTED]:80/cvsroot/jboss login cvs login: notice: main loop with CVSROOT=:pserver:[EMAIL

[JBoss-user] One to Many CMR question.

2003-03-25 Thread Neal Sanche
Okay, I'm just trying to find a simple piece of information. Can a one to many CMR be created that references a non-key field of another EJB? For instance I'd like to do the following: +-++---+ | Text ||

Re: [JBoss-user] Latest CVS version

2003-03-25 Thread Simone Milani
Thanks, Tried that but I think my problem is that I also need to use a proxy server that does not support HTTP tunnelling. Simone - Original Message - From: Jonathan.O'[EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 5:15 PM Subject: Re: [JBoss-user] Latest

[JBoss-user] 3.2.0-RC4; MySQL; auto-increment pk field; XDoclet 1.2b2

2003-03-25 Thread Jos Visser
Hi all, Well, the subject says it all I guess :-) I have an entity bean (actually 50 of 'm, but that does not influence the discussion) with an Id field that maps to an AUTO INCREMENT INT field in a MySQL database (using MySQL 4.0.10 with Connector/J 3.0). I am using XDoclet to generate all the

[JBoss-user] Hot Deploy Issue

2003-03-25 Thread Andrews, Taff T [CC]
We've been having hot deploy issues with our version of JBoss 3.0.4/Tomcat 4.1.12. When we re-deploy a WAR and/or EJB.jar we get the following in our server.log: For our EJB's: 2003-03-25 11:50:26,322 INFO [org.jboss.deployment.MainDeployer] Undeploying

[JBoss-user] Sourceforge CVS performance is bad

2003-03-25 Thread Sebastian Hauer
Hi, What is up with sourceforge and their CVS access for anonymous users? If I have to issue any cvs command, either on a already checked out working copy of JBoss or once I try to checkout a fresh copy, I usually have to issue the same command ~15 times before I get a server response. Most of

RE: [JBoss-user] Sourceforge CVS performance is bad

2003-03-25 Thread Igor Fedorenko
Check SF CVS status page http://sourceforge.net/docman/display_doc.php?docid=2352group_id=1#cvs -Original Message- From: Sebastian Hauer [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 3:24 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] Sourceforge CVS performance is bad

Re: [JBoss-user] One to Many CMR question.

2003-03-25 Thread Alex Loubyansky
No, not at the moment. Foreign key fields should represent primary key fields. Probably, we'll address secondary keys in JBoss-4. alex Tuesday, March 25, 2003, 7:55:31 PM, you wrote: NS Okay, I'm just trying to find a simple piece of information. Can a one NS to many CMR be created that

RE: [JBoss-user] mod_jk2 and Jetty

2003-03-25 Thread Finn, Michael
Title: RE: [JBoss-user] mod_jk2 and Jetty Lothar, Thanks. Works now. As expected, turned out I had a few basic config issues due to lack of understanding on my part. The doc for workers2.properties seems to be seriously lacking -esp for the load balancing stuff. Not much luck googling for it.

Re: [JBoss-user] Deploying scheduler after EAR deployment

2003-03-25 Thread Brian Wallis
On Thu, 20 Mar 2003 19:54, Marek Lange wrote: That worked. Thanks. One question: is it possible to change the scheduler attributes at runtime with this construction ? Did I just ignore this question or did I answer it? Think I ignored it :-) Which scheduler attributes? You can change the

Re: [JBoss-user] Possible bug: unchecked does not seem to work.

2003-03-25 Thread Scott M Stark
Unchecked only means that you do not need any assigned roles to access the ejb. You still have to be an authenticated user. If you want to allow unauthenticated users use the unauthenticatedIdentity loign module option to assign such users an anonymous role. Scott Stark

Re: [JBoss-user] One to Many CMR question.

2003-03-25 Thread Neal Sanche
Okay, thanks Alex, that's a good enough answer for me at the moment. I've already figured out a workaround, but it's much like using a relation-table. Just making sure I wasn't missing something. -Neal On Tuesday 25 March 2003 05:12 pm, Alex Loubyansky wrote: No, not at the moment. Foreign

[JBoss-user] IllegalAccessException:with modifiers public

2003-03-25 Thread Andrew
Hi, I am trying to migrate our application to Jboss from weblogic. I have managed to deploy the application. I am using the default jetty servlet container. The issue I am facing is: I am using a SessionBean from which I try to call a method. I am trying to deploy my application in

[JBoss-user] IllegalAccessException:with modifiers public

2003-03-25 Thread Andrew
Hi, I am trying to migrate our application to Jboss from weblogic. I have managed to deploy the application. I am using the default jetty servlet container. The issue I am facing is: I am using a SessionBean from which I try to call a method. I am trying to deploy my application in

[JBoss-user] IllegalAccessException:with modifiers public

2003-03-25 Thread Andrew
Hi, I am trying to migrate our application to Jboss from weblogic. I have managed to deploy the application. I am using the default jetty servlet container. The issue I am facing is: I am using a SessionBean from which I try to call a method. I am trying to deploy my application in

Re: [JBoss-user] Latest CVS version

2003-03-25 Thread Guy Rouillier
Simone Milani wrote: Hi Heiko, Thanks, I am trying to setup an SSH tunnell on my NT machine to use with CVS but no luck. Did you ever managed to do it? Simone, have you tried PUTTY? I'm using that under Win2K with WinCvs at home to ssh into a remote CVS, and it's been working fine for

Re: [JBoss-user] IllegalAccessException:with modifiers public

2003-03-25 Thread Ian Duggan
On Tuesday 25 March 2003 8:04 pm, Andrew wrote: ERROR plugins.LogInterceptor - EJBException, causedBy: [SessionEJB] java.lang.IllegalAccessException: Class org.jboss.ejb.StatefulSessionContainer$C ontainerInterceptor can not access a member of class com.BaseClass with modifiers public at

Re: [JBoss-user] Mac OSX: Hypersonic hanging during shutdown

2003-03-25 Thread Lennart Petersson
nope, not that I am aware of... But i'm sitting behind a firewall at my office... /L tisdagen den 25 mars 2003 kl 17.09 skrev [EMAIL PROTECTED]: tisdagen den 25 mars 2003 kl 15.29 skrev Lennart Petersson: but... wait a minute this same error message (java.sql.SQLException: Connection is

Re: AW: AW: AW: [JBoss-user] JBoss.NET error

2003-03-25 Thread Nathan Hoover
This worked for me (of course) and my problem with the JNDI name went away. Hopefully this jar will be included as part of the 3.2 release. I am now having a new problem: An unhandled exception of type 'System.Web.Services.Protocols.SoapException' occurred in system.web.services.dll Additional