Re: [JBoss-user] when is jboss.xml necessary?

2003-08-29 Thread Adrian Brock
It isn't necessary. There are defaults for everything. The defaults are unlikely to be the best options for all your beans. On Fri, 2003-08-29 at 23:54, Matthew Hixson wrote: > In my .ear I have a .jar. (I guess that's better than having my ear in > a jar. ahahhaaha.) >Anyway, it seems t

[JBoss-user] JVM options for hardhit jboss-tomcat deployment

2003-08-29 Thread Sheldon Hearn
Hi folks, I'm battling to find appropriate -Xss, -Xms and -Xmx values for the JVM running a jboss-3.2.1-tomcat-4.1.24 deployment, the Coyote connector of which needs to handle heavy access (at least 500 concurrent connections). Has anyone got any silver bullets for me? I'm running on a FreeBSD b

[JBoss-user] when is jboss.xml necessary?

2003-08-29 Thread Matthew Hixson
In my .ear I have a .jar. (I guess that's better than having my ear in a jar. ahahhaaha.) Anyway, it seems that anytime I have jboss.xml in the META-INF directory, as I've seen some example code doing, I get an exception: javax.management.InstanceAlreadyExistsException: jboss.j2ee:jndiNa

[JBoss-user] BUSINESS PROPOSAL/PARTNERSHIP

2003-08-29 Thread bubusblah
FROM:BUBUS BLAH TEL:+31-630-55-312 FAX:+31-645-838-748 REQUEST FOR A BUSINESS RELATIONSHIP This E-mail may come to you as a surprise but it was out of my sincere desire to share a mutual business relationship with you. I am a solicitor by name BUBUS BLAH, a personal lawyer to the KABILA family and

[JBoss-user] Delivery Notification: Delivery has failed

2003-08-29 Thread Internet Mail Delivery
This report relates to a message you sent with the following header fields: Return-path: <[EMAIL PROTECTED]> Received: from conversion-daemon.bgl1mx1-a-fixed.sancharnet.in by bgl1mx1-a-fixed.sancharnet.in (iPlanet Messaging Server 5.2 HotFix 0.9 (built Jul 29 2002)) id <[EMAIL PROTECT

[JBoss-user] STOP Paying For Your PAY-PER-VIEW, MOVIE CHANNELS, Adult Channels, SPORT EVENTS, and more......... v

2003-08-29 Thread Sherrie Huerta
CABLE TV VIEWERS PAY-PER-VIEW, ADULT CHANNELS, MOVIE CHANNELS, SPORT EVENTS, and other SPECIAL EVENTS---FREE!!!To Find Out More - Follow This Linkpwfjsa ztrrommwt s aupm f ladm uewldaatd

Re: [JBoss-user] Advice wanted for tracking Deadlocks

2003-08-29 Thread Bill Burke
EntityLockMonitor won't help you then. JBoss CMP and BMP should try to update beans in the order that they are accessed. Also not that any finder calls within a transaction will cause a synchronization events of all beans changed within transaction. Bill Jonathan.O'[EMAIL PROTECTED] wrote:

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.thirdeyeconsulting.com

Re: [JBoss-user] don't get load blancing to run

2003-08-29 Thread Bill Burke
remove farm-service.xml from the machine and manually deploy there. Stefan Groschupf wrote: If the Session bean is in the same JVM as your MDB then it will not be load balanced. THe logic behind this is that local calls will always be faster. Sounds like that is the solution for my problem

Re: [JBoss-user] logging sometimes works, sometimes doesn't

2003-08-29 Thread Marco Tedone
I cannot give you an answer to your question, but I can tell you what I do to get a logger from within my EJB: //The logger instance private transient final Category log = Category.getInstance(getClass().getName()); from now on, you can use log.info(String msg) or the other methods associated wit

[JBoss-user] logging sometimes works, sometimes doesn't

2003-08-29 Thread Matthew Hixson
I am doing some debugging and would like to see all logging messages written to the console. In the class of interest I am gaining a reference to the logger like so: private static Logger _systemLogger = Logger.getLogger("CONSOLE"); Sometimes I see messages like: [CONSOLE] : but more often

RE: [JBoss-user] jbossMQ question: durable subscriber user authe ntication

2003-08-29 Thread thomas . cherel
Title: RE: [JBoss-user] jbossMQ question: durable subscriber user authe ntication Indeed that was my mistake. Thanks. I should have looked better. Sorry. Thomas Cherel -Original Message- From: Adrian Brock [mailto:[EMAIL PROTECTED]] Sent: Friday, August 29, 2003 2:30 PM To: [EMA

[JBoss-user] Delivery Notification: Delivery has failed

2003-08-29 Thread Internet Mail Delivery
This report relates to a message you sent with the following header fields: Return-path: <[EMAIL PROTECTED]> Received: from conversion-daemon.ndl1mx1-a-fixed.sancharnet.in by ndl1mx1-a-fixed.sancharnet.in (iPlanet Messaging Server 5.2 HotFix 1.17 (built Jun 23 2003)) id <[EMAIL PROTEC

RE: [JBoss-user] jbossMQ question: durable subscriber user authentication

2003-08-29 Thread Adrian Brock
Did you have a associated with the user in jbossmq-state.xml? e.g. connection = (QueueConnection) conFactory.createQueueConnection("john", "needle"); connection = (QueueConnection) conFactory.createQueueConnection("john", "needle"); fails because john has a configured client-id But guest/guest

Re: [JBoss-user] Illegal class loader binding

2003-08-29 Thread Matthew Hixson
Thanks, Scott. I have a workaround in place for now. I took all of our .jar files from our webapp's WEB-INF/lib directory and put them into jboss/server/default/lib. That'll work for now until I can find the time to try 3.2.2RC3 and do some more debugging. Thanks, -M@ On Friday, August

RE: [JBoss-user] jbossMQ question: durable subscriber user authentication

2003-08-29 Thread thomas . cherel
Sorry to take an opportunity again to ask a separate question, but I am a little concern with this "Only one user can signon as a particular client-id at any one time". My early experiment of defining access rights to JMS queues (not topic) in JBoss tend to prove what you just say: I cannot have t

Re: [JBoss-user] jbossMQ question: durable subscriberuser authentication

2003-08-29 Thread Adrian Brock
Take a look in jbossmq-state.xml Do you see something like ID:1 in the durable subscriptions? This means you are using "annonymous" client ids. Either configure your user with a client id in jbossmq-state.xml (see the example for john) or use Connection.setClientID() Durable subscriptions are m

Re: [JBoss-user] Advice wanted for tracking Deadlocks

2003-08-29 Thread Jonathan . O'Connor
Bill, Sadly, I'm getting DB deadlocks. Sometimes they freeze the whole system, and other times they don't. I'll have a look at the entity lock monitor. Sounds good. Thanks, Jonathan O'Connor Bill Burke <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 29.08.2003 17:57 Please respond to jboss-us

[JBoss-user] ALERT - Virus W32/Sobig.f@MM found; an attachment/message has been quarantined

2003-08-29 Thread DSAVEXCHANGE001(Network Associates Anti-Virus - Mailbox Agent)
Action Taken: An attempt to disinfect the attachment was unsuccessful, so the attachment was quarantined from the message and replaced with a text file informing the recipient of the action taken. The infected attachment has been placed in the designated quarantine folder. Please exercise extreme c

[JBoss-user] ALERT - Virus W32/Sobig.f@MM found; an attachment/message has been quarantined

2003-08-29 Thread DSAVEXCHANGE001(Network Associates Anti-Virus - Mailbox Agent)
Action Taken: An attempt to disinfect the attachment was unsuccessful, so the attachment was quarantined from the message and replaced with a text file informing the recipient of the action taken. The infected attachment has been placed in the designated quarantine folder. Please exercise extreme c

Re: [JBoss-user] IIOP ans Security

2003-08-29 Thread Francisco Reverbel
Interoperable security for EJB invocations is not implemented yet. JBoss has security, of course, but not in an interoperable (CORBA-compliant) way. The CORBA compliant way of securing EJB invocations is based on CSIv2 (Common Secure Interoperability version 2), an OMG specification that our II

RE: [JBoss-user] JMS: JBoss to Weblogic messaging

2003-08-29 Thread thomas . cherel
Title: RE: [JBoss-user] JMS: JBoss to Weblogic messaging It uses the MQSeries API to create the connection factory and queue objects, but those objects get registered in the JNDI namespace of JBoss itself. Basically, this is something very similar to the jbossmq-destinations.xml but for MQSe

Re: [JBoss-user] jbossMQ question: durable subscriber user authentication

2003-08-29 Thread Aurele Vrata Venet
Hi Adrian, thanks for that I got over the JMSSecurityException: Connection not authorized error.I got another problem now. I was under the impression that a publish(msg, DeliveryMode.PERSISTENT, 3, 0) meant that the JMS provider would keep the message until the message was subscribed to s

Re: [JBoss-user] Illegal class loader binding

2003-08-29 Thread Scott M Stark
This indicates that the correct class loader is not seen during initialization of the war, but is unrelated to the issue you reference. There have been some fixes for the web class loader integration in 3.2.2RC3 so try that and if there is still an issue open a bug report on sourceforge. http://

[JBoss-user] JBoss Performance Tuning Tips - a bit of an emergency

2003-08-29 Thread Elankath, Tarun (Cognizant)
Hi all, We have a small web + ejb application for a POC (Proof of Concept) that is competing against a corresponding .NET application. We are using Struts, 1 Stateful Session Bean, 1 Stateless Session Bean and only 10 JSP pages. The application connects to a separate MS-SQL database server. Th

Re: [JBoss-user] JBoss Presentation

2003-08-29 Thread Aurele Vrata Venet
thank you for the presentation. Great for a jboss beginner like me. Is it OK if we put it in SourceForge for easier access? I'd also like to put a thread in the FAQ forum at jboss.org, as I have seen many beginner's question for good intro material. Vrata I gave a presentation on JBoss an

Re: [JBoss-user] Help with memory leak issue

2003-08-29 Thread Holger Baxmann
... query or other task that does not write to the database, you still get the commit but nothing to commit, so to speak. this non-existing tx should be comitted, according to mr. escher bax --- This sf.net email is sponsored by:ThinkGeek W

Re: [JBoss-user] don't get load blancing to run

2003-08-29 Thread Joao Clemente
> > If the Session bean is in the same JVM as your MDB then it will not be > > load balanced. THe logic behind this is that local calls will always > > be faster. > > Sounds like that is the solution for my problem. But what can i do when > i wish to not deploy my application in one node that is i

Re: [JBoss-user] don't get load blancing to run

2003-08-29 Thread Stefan Groschupf
If the Session bean is in the same JVM as your MDB then it will not be load balanced. THe logic behind this is that local calls will always be faster. Sounds like that is the solution for my problem. But what can i do when i wish to not deploy my application in one node that is in a farm? Th

RE: [JBoss-user] JMS: JBoss to Weblogic messaging

2003-08-29 Thread Adrian Brock
:-) I thought it used the MQSeries API to construct the object referenes rather than JNDI? Regards, Adrian On Fri, 2003-08-29 at 14:29, [EMAIL PROTECTED] wrote: > I know this patch, I submitted it :-) > The patch contains much more details that what we discussed and can > probably be reused to f

Re: [JBoss-user] read file for EJB

2003-08-29 Thread Adrian Brock
That works as well, but it isn't very portable. If you have an mbean you can specify ${jboss.server.data.dir}/myfolder/23.xml" Regards, Adrian On Fri, 2003-08-29 at 13:55, Stefan Groschupf wrote: > File file = new File(System.getProperty("jboss.server.data.dir") + "/" + > "myFolder/23.xml"); >

Re: [JBoss-user] read file for EJB

2003-08-29 Thread Adrian Brock
Use a resource-ref to define a URL. (The most portable mechanism) Or classloader.getResource[AsStream]() and put the file in your deployment or the /conf folder if it is shared. Regards, Adrian On Fri, 2003-08-29 at 13:02, Milen Dyankov wrote: > Hi, > > suppose I have EJB that needs to read som

Re: [JBoss-user] Advice wanted for tracking Deadlocks

2003-08-29 Thread Bill Burke
I don't remember, but I think my EntityLockMonitor is in 3.0.6. Uncomment this MBean within server//conf/jboss-service.xml It has a number of utilities for debugging deadlocks. See our for-pay doco for more info. Are you getting DB deadlocks or JBoss deadlocks? Bill Jonathan.O'[EMAIL PROTECT

Re: [JBoss-user] don't get load blancing to run

2003-08-29 Thread Bill Burke
If the Session bean is in the same JVM as your MDB then it will not be load balanced. THe logic behind this is that local calls will always be faster. Bill Stefan Groschupf wrote: Hi Friends, I have trouble to get loadbalancing to run. May be I'm only over see something since I have much ti

Re: [JBoss-user] IIOP ans Security

2003-08-29 Thread Bill Burke
We don't have this interoperability with CORBA and security at this time. It is one of the things we are planning to implement once Sun grants us the license to certification (we're waiting patiently). You would have to build a bridge until then. Or you could fund Francisco Reverbel to implem

RE: [JBoss-user] JMS: JBoss to Weblogic messaging

2003-08-29 Thread thomas . cherel
Title: RE: [JBoss-user] JMS: JBoss to Weblogic messaging I know this patch, I submitted it :-) The patch contains much more details that what we discussed and can probably be reused to figure out how to configure weblogic JMS in JBoss (the initial email of this list). Thomas Cherel -Ori

RE: Antwort: [JBoss-user] User authorization/authentication with JBossMQ

2003-08-29 Thread thomas . cherel
Thanks. It does help.   Thomas Cherel     -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, August 29, 2003 5:00 AM To: [EMAIL PROTECTED] Subject: Antwort: [JBoss-user] User authorization/authentication with JBossMQ   Maybe this will hel

RE: [JBoss-user] JMS: JBoss to Weblogic messaging

2003-08-29 Thread thomas . cherel
Thanks for the details. Thomas Cherel -Original Message- From: Adrian Brock [mailto:[EMAIL PROTECTED] Sent: Friday, August 29, 2003 7:53 AM To: [EMAIL PROTECTED] Subject: RE: [JBoss-user] JMS: JBoss to Weblogic messaging On Fri, 2003-08-29 at 03:06, [EMAIL PROTECTED] wrote: > Quick ques

[JBoss-user] sync-on-commit-only and cascade-delete

2003-08-29 Thread Andrew May
I'm having a problem trying to user sync-on-commit-only and cascade-delete with JBoss 3.2.1 (Sun JDK1.4.2, Solaris). We've got a number of related entities like this: LOGIN---IDENTITY | | LOGINPROPERTIES IDENTITYPROPERTIES login->identity, login->loginproper

Re: [JBoss-user] read file for EJB

2003-08-29 Thread Anders Engström
On Fri, Aug 29, 2003 at 02:02:23PM +0200, Milen Dyankov wrote: > Hi, > > suppose I have EJB that needs to read some configuration data from external > file (lets say an XML file). > Where I'm supposed to place this config file, and how can I tell my EJB > where it is? > > I've tried to pack bot

Re: [JBoss-user] read file for EJB

2003-08-29 Thread Stefan Groschupf
File file = new File(System.getProperty("jboss.server.data.dir") + "/" + "myFolder/23.xml"); point to / jbosshome/server/yourConfig/data/myFolder... HTH Stefan. Milen Dyankov wrote: Hi, suppose I have EJB that needs to read some configuration data from external file (lets say an XML file). W

[JBoss-user] read file for EJB

2003-08-29 Thread Milen Dyankov
Hi, suppose I have EJB that needs to read some configuration data from external file (lets say an XML file). Where I'm supposed to place this config file, and how can I tell my EJB where it is? I've tried to pack both the EJB and "config.xml" in jar and use something like File file = new File("c

Re: [JBoss-user] User authorization/authentication with JBossMQ

2003-08-29 Thread Adrian Brock
Unfortunatly not. We need to separate the durable subscriptions from the same state as the users/roles. The key part is determining the for a user. I made a start in 3.2 on a jdbc statemanager that uses an extended version of the DB schmea required for the DatabaseLoginModule. It is not tested as

[JBoss-user] Advice wanted for tracking Deadlocks

2003-08-29 Thread Jonathan . O'Connor
I just started stress testing our JBoss server. I run our unit tests simultaneously in two different windows. However, I'm getting a number of deadlocks occurring in both Entity Bean creation and removal. Does anyone have any bright ideas how I can track down the problem? In case its relevant, JB

RE: [JBoss-user] JMS: JBoss to Weblogic messaging

2003-08-29 Thread Adrian Brock
On Fri, 2003-08-29 at 03:06, [EMAIL PROTECTED] wrote: > Quick question related to the remote invoker proxy binding. > Is it something new (this invoker proxy binding) in JBoss 3.2 to avoid > creating a complete different container-configuration? > > In JBoss 3.0.5, when bringing MQSeries as a JMS

RE: [JBoss-user] JMS: JBoss to Weblogic messaging

2003-08-29 Thread Adrian Brock
On Fri, 2003-08-29 at 02:38, [EMAIL PROTECTED] wrote: > Actually, in the latest MQSeries (WebSphere MQ 5.3.0.2 with CSD03 - > also called WebSphere MQ 5.3.0.3 - and the WebSphere MQ Extended > Transactional Clients - which requires CSD03) you have the support fro > XAConnectionFactory and through r

[JBoss-user] don't get load blancing to run

2003-08-29 Thread Stefan Groschupf
Hi Friends, I have trouble to get loadbalancing to run. May be I'm only over see something since I have much time pressure. ;( I have 3 node jboss-3.2.2RC3_jetty-4.2.11 on one machine running with the binding service. The farming service is running well. I have my main application that run only

Re: [JBoss-user] API's for...

2003-08-29 Thread Marek Lange
Muraly R wrote: Hi Gurus, I like to know the following from the client application: 1. List beans currently in the EJB Server. 2. List registered JNDI names. 3. List system properties currently used by the EJB Server. Is there any API exposed for client application to use and list out. Your AP

[JBoss-user] Email Quarantined Due to Virus

2003-08-29 Thread MAILsweeper
The Email Message: Re: Details, Sent To: [EMAIL PROTECTED] Contained the following virus that could not be cleaned: Scenarios/Incoming/Inbound Scan: A virus has been detected: 'W32/Sobig-F'. --- This sf.net email is sponsored by:ThinkGeek We

Antwort: [JBoss-user] User authorization/authentication with JBossMQ

2003-08-29 Thread ulf . schroeter
Maybe this will help :-)  NO user entries in jbossmq-state.xml, but stored in a central database using JAAS DatabaseServerLoginModule in ../conf/login-config.xml                                                JMS-Guest              java:/SystemJaasDS              SELECT password FROM princ

Antwort: [JBoss-user] JBoss Presentation

2003-08-29 Thread ulf . schroeter
Good work ! Regards Ulf Schroeter

Re: [JBoss-user] JBoss Mail Service

2003-08-29 Thread Stephane Nicoll
If you use the JavaMail API directly you have to provide, in some ways, configuration items such as mail host, protocol, login, password, etc etc The mail-service.xml contained in the deploy directory is a sample that you can copy to get your own MailSession. That way, you retrieve your mail s

RE: [JBoss-user] JBoss Mail Service

2003-08-29 Thread Rupp, Heiko
The possibility to have one centrally administrated set of preferences. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Sent: Friday, August 29, 2003 9:14 AM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: [JBoss-user] JBoss Mail S

[JBoss-user] JBoss Mail Service

2003-08-29 Thread pluttrel
What are the benefits of using the JavaMail service in JBoss vs using the JavaMail api directly? thanks. .peter -- CONFIDENTIALITY NOTICE: This e-mail message, including any attachments,is for the sole use of the intended recipient(s), even if addressed incorrectly, and may contain co

[JBoss-user] ALERT - Virus W32/Sobig.f@MM found; an attachment/message has been quarantined

2003-08-29 Thread DSAVEXCHANGE001(Network Associates Anti-Virus - Mailbox Agent)
Action Taken: An attempt to disinfect the attachment was unsuccessful, so the attachment was quarantined from the message and replaced with a text file informing the recipient of the action taken. The infected attachment has been placed in the designated quarantine folder. Please exercise extreme c

[JBoss-user] ALERT - Virus W32/Sobig.f@MM found; an attachment/message has been quarantined

2003-08-29 Thread DSAVEXCHANGE001(Network Associates Anti-Virus - Mailbox Agent)
Action Taken: An attempt to disinfect the attachment was unsuccessful, so the attachment was quarantined from the message and replaced with a text file informing the recipient of the action taken. The infected attachment has been placed in the designated quarantine folder. Please exercise extreme c

[JBoss-user] ALERT - Virus W32/Sobig.f@MM found; an attachment/message has been quarantined

2003-08-29 Thread DSAVEXCHANGE001(Network Associates Anti-Virus - Mailbox Agent)
Action Taken: An attempt to disinfect the attachment was unsuccessful, so the attachment was quarantined from the message and replaced with a text file informing the recipient of the action taken. The infected attachment has been placed in the designated quarantine folder. Please exercise extreme c

[JBoss-user] ALERT - Virus W32/Sobig.f@MM found; an attachment/message has been quarantined

2003-08-29 Thread DSAVEXCHANGE001(Network Associates Anti-Virus - Mailbox Agent)
Action Taken: An attempt to disinfect the attachment was unsuccessful, so the attachment was quarantined from the message and replaced with a text file informing the recipient of the action taken. The infected attachment has been placed in the designated quarantine folder. Please exercise extreme c

[JBoss-user] IIOP ans Security

2003-08-29 Thread Alexander Titov
Hello. In the section 8 (page 412-413) of the JBoss Administration and Development Third Edition (3.2.x Series) book it is written, that "Every secured EJB method invocation,... requires the authentication and authorization of the caller because security information is handled as a stateless attri

[JBoss-user] API's for...

2003-08-29 Thread Muraly R
Hi Gurus, I like to know the following from the client application: 1. List beans currently in the EJB Server. 2. List registered JNDI names. 3. List system properties currently used by the EJB Server. Is there any API exposed for client application to use and list out. Thanks Muraly ---

[JBoss-user] Illegal class loader binding

2003-08-29 Thread Matthew Hixson
I'm trying to deploy an ear file that contains one jar and one war file. The jar file with my entity beans deploys correctly, but JBoss throws the exception below while trying to parse the jar files in the .war's WEB-INF/lib directory. I don't think there is a problem with the jar file be

Re: [JBoss-user] ejbStore(): Again!!!

2003-08-29 Thread Muraly R
Hi Gurus, Finally I was able to resolve the problem related to this issue. Generally the problem was related when ejbStore() was invoked after a call to setXXX() or ejbCreate().(Yes, now I know this is the expected behaviour :-). The solution is to use the following: 1. ejb

[JBoss-user] Antigen found Win32/Sobig.F.Worm (CA(InoculateIT),CA(Vet),Sophos)virus

2003-08-29 Thread ANTIGEN_DVNTEX01
Antigen for Exchange found details.pif infected with Win32/Sobig.F.Worm (CA(InoculateIT),CA(Vet),Sophos) worm. The message is currently Purged. The message, "Re: Wicked screensaver", was sent from [EMAIL PROTECTED] and was discovered in IMC Queues\Inbound located at Devote/Bunnik/DVNTEX01. -

[JBoss-user] Delivery Notification: Delivery has failed

2003-08-29 Thread Internet Mail Delivery
This report relates to a message you sent with the following header fields: Return-path: <[EMAIL PROTECTED]> Received: from conversion-daemon.bgl1mx1-a-fixed.sancharnet.in by bgl1mx1-a-fixed.sancharnet.in (iPlanet Messaging Server 5.2 HotFix 0.9 (built Jul 29 2002)) id <[EMAIL PROTECT

RE: [JBoss-user] Certificate problem

2003-08-29 Thread Pham Thanh Quan
Title: RE: [JBoss-user] Certificate problem Thank you all for your help. Maybe I have to buy the document. -Original Message- From: Sheldon Hearn [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 28, 2003 6:12 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Certificate problem

[JBoss-user] User authorization/authentication with JBossMQ

2003-08-29 Thread thomas . cherel
Title: User authorization/authentication with JBossMQ I was wondering why the user authorization/authentication with JBossMQ was configured through this jbossmq-state.xml file (In JBoss 3.0.5) and not through a more standard JAAS security domain? Another way to ask the question is: can I use

[JBoss-user] Re: Approved

2003-08-29 Thread lina01
See the attached file for details

RE: [JBoss-user] JMS: JBoss to Weblogic messaging

2003-08-29 Thread thomas . cherel
Title: RE: [JBoss-user] JMS: JBoss to Weblogic messaging Quick question related to the remote invoker proxy binding. Is it something new (this invoker proxy binding) in JBoss 3.2 to avoid creating a complete different container-configuration? In JBoss 3.0.5, when bringing MQSeries as a JMS p

RE: [JBoss-user] JMS: JBoss to Weblogic messaging

2003-08-29 Thread thomas . cherel
Title: RE: [JBoss-user] JMS: JBoss to Weblogic messaging Actually, in the latest MQSeries (WebSphere MQ 5.3.0.2 with CSD03 - also called WebSphere MQ 5.3.0.3 - and the WebSphere MQ Extended Transactional Clients - which requires CSD03) you have the support fro XAConnectionFactory and through r

[JBoss-user] ALERT - Virus W32/Sobig.f@MM found; an attachment/message has been quarantined

2003-08-29 Thread DSAVEXCHANGE001(Network Associates Anti-Virus - Mailbox Agent)
Action Taken: An attempt to disinfect the attachment was unsuccessful, so the attachment was quarantined from the message and replaced with a text file informing the recipient of the action taken. The infected attachment has been placed in the designated quarantine folder. Please exercise extreme c

[JBoss-user] ALERT - Virus W32/Sobig.f@MM found; an attachment/message has been quarantined

2003-08-29 Thread DSAVEXCHANGE001(Network Associates Anti-Virus - Mailbox Agent)
Action Taken: An attempt to disinfect the attachment was unsuccessful, so the attachment was quarantined from the message and replaced with a text file informing the recipient of the action taken. The infected attachment has been placed in the designated quarantine folder. Please exercise extreme c

[JBoss-user] Report to Recipient(s)

2003-08-29 Thread NHHAM010
Incident Information:-__ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user