[JBoss-dev] [XDoclet on JBoss (XDoclet/JBoss)] - Re: XDoclet Configuration

2004-11-23 Thread rajdeep_dua
you dont need to configure xdoclet explicitly , it gets configured when you install jboss ide plugins View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3856052#3856052 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3856052

[JBoss-dev] [JBossCache] - Re: multiple treecaches - TransactionManagers

2004-11-23 Thread norbert
There's an Interface TransactionManagerLookup that you may implement. Your TransactionManagerLookup-class simply returns the TransactionManager of your choice. Than you let TreeCache use this transactionmanagerlookup-class to make use of the assigned transactionmanager by either passing an

[JBoss-dev] [ jboss-Bugs-1050226 ] missing time zone in xs:date representation

2004-11-23 Thread SourceForge.net
Bugs item #1050226, was opened at 2004-10-19 18:24 Message generated for change (Comment added) made by tdiesler You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1050226group_id=22866 Category: None Group: None Status: Closed Resolution: Fixed Priority: 5

[JBoss-dev] [JBossCache] - Re: TreeCacheListener

2004-11-23 Thread norbert
The callbacks of TreeCacheListener run synchronous with the underlying method that causes the event. Locks generated by this underlying call are still held while the callback-method is being executed. e.g. there's a put(...) being executed. During the execution of the put a Node is being

[JBoss-dev] [JBoss IDE (dev)] - Re: XDoclet CMP2 Exception

2004-11-23 Thread rajdeep_dua
Ya i also go this error when i tried to use jboss version no as 4.0,when i mobed to 3.0 it worked fine View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3856056#3856056 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3856056

[JBoss-dev] [JBossCache] - Possible newbie question but still a problem

2004-11-23 Thread nine_mirrors
Howdy all! background: In our db we have a rather large table (500k entries). Said table is growing over time but not all entries are live. We are aware of this so we prune the table about once a week. The only live entries that we are sure of at run-time are those that are actually requested

[JBoss-dev] jboss-4.0 build.215 Build Successful

2004-11-23 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041123040524Lbuild.215 BUILD COMPLETE-build.215Date of build:11/23/2004 04:05:24Time to build:22 minutes 32 secondsLast changed:11/23/2004 03:38:01Last log entry:Fix: [ 1050226 ] missing

[JBoss-dev] [ jboss-Bugs-1071332 ] CMR and ejbCreate

2004-11-23 Thread SourceForge.net
Bugs item #1071332, was opened at 2004-11-23 00:42 Message generated for change (Comment added) made by loubyansky You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1071332group_id=22866 Category: JBossCMP Group: v4.0 Status: Open Resolution: Works For Me

[JBoss-dev] [JBossCache] - Re: Possible newbie question but still a problem

2004-11-23 Thread norbert
You are right, as of JBossCache 1.1 get(Fqn,Key) is actually only being called by the JUnit-testcases. In respect to TreeCache itself it's (yet) redundant. Instead of returning null your CacheLoader should return a prefilled Map of Key-Value-pairs when get(Fqn) is being called Have a look into

[JBoss-dev] [JBossCache] - Re: Possible newbie question but still a problem

2004-11-23 Thread nine_mirrors
norbert wrote : You are right, as of JBossCache 1.1 get(Fqn,Key) is actually only being called by the JUnit-testcases. In respect to TreeCache itself it's (yet) redundant. | | Instead of returning null your CacheLoader should return a prefilled Map of Key-Value-pairs when get(Fqn) is being

[JBoss-dev] [JBossCache] - Re: Possible newbie question but still a problem

2004-11-23 Thread norbert
It's absolutely unefficient to store a whole table in a single node - Transactional locking, eviction and Cacheloading work on Node-level, not key/value-pair level. As a result every 'put(Fqn,key,value)' would lock your entire data if the Fqn being used is a constant. You are better of if you

[JBoss-dev] [JBoss IDE (dev)] - Re: Unable to find a javac compiler for JSPs

2004-11-23 Thread brett_s_r
My fix for this is to ensure tools.jar is in the bootstrap classpath in the server configuration. It is not included as a JRE library by default. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3856067#3856067 Reply to the post :

[JBoss-dev] [ jboss-Bugs-1071661 ] shutdown misses org/jboss/system/server/ServerImpl

2004-11-23 Thread SourceForge.net
Bugs item #1071661, was opened at 2004-11-23 14:30 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1071661group_id=22866 Category: Build System Group: CVS HEAD Status: Open

[JBoss-dev] [JBossCache] - Re: Possible newbie question but still a problem

2004-11-23 Thread nine_mirrors
norbert wrote : It's absolutely unefficient to store a whole table in a single node - Transactional locking, eviction and Cacheloading work on Node-level, not key/value-pair level. As a result every 'put(Fqn,key,value)' would lock your entire data if the Fqn being used is a constant. | |

[JBoss-dev] [JBossCache] - Re: Possible newbie question but still a problem

2004-11-23 Thread norbert
So what? - Having 500k Nodes in a flat hirachy implies having 500k Entries in the Root nodes 'children' HashMap. Not a big deal in terms of node-hirarchy. Given you specify a reasonable evictiontimeout, you would not even have to store 70% of 500k entries, but only the percentage that is

[JBoss-dev] [ jboss-Bugs-1071661 ] shutdown misses org/jboss/system/server/ServerImpl

2004-11-23 Thread SourceForge.net
Bugs item #1071661, was opened at 2004-11-23 14:30 Message generated for change (Settings changed) made by andd You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1071661group_id=22866 Category: Build System Group: CVS HEAD Status: Closed Resolution: Fixed

[JBoss-dev] [ jboss-Bugs-1071690 ] XMBean persistence doesn't work with jdk5 runtime

2004-11-23 Thread SourceForge.net
Bugs item #1071690, was opened at 2004-11-23 15:21 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1071690group_id=22866 Category: JBossMX Group: v4.0 Status: Open Resolution:

[JBoss-dev] [JBoss IDE (dev)] - Re: JBoss IDE 1.4 does not use XDoclet 1.2.2 ???

2004-11-23 Thread lesterlaforce
jbroberg wrote : did you just manually copy the 1.2.2 jars into the pluggins dir ? It seems this question has been answered (if I am not mistaken) in another recent post (XDoclet CMP2 Exception). View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3856079#3856079

[JBoss-dev] [JBossWS] - Confusion about XML descriptors and tools

2004-11-23 Thread jobor
Hello, I'm trying out JBoss 4.0 and want to use the web services capability of EJB's and JBoss. But some things are not very clear to me. So I have a few questions. 1 - What is the preferred way to generate the WSDL mapping file? Should I use wscompile or should I use the Axis style? I think it

[JBoss-dev] jboss-4.0 build.216 Build Successful

2004-11-23 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041123082306Lbuild.216 BUILD COMPLETE-build.216Date of build:11/23/2004 08:23:06Time to build:23 minutes 36 secondsLast changed:11/23/2004 08:08:38Last log entry:depend on

[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Field Interception

2004-11-23 Thread [EMAIL PROTECTED]
The Invocation is either a: FieldGetInvocation in that case, you can get the field value by the return of invoke.invokeNext(); or FieldSetInvocation which is when the field is written to. Then the value would be: FieldSetInvocation.getValue() Take a look at the javadocs for all the

[JBoss-dev] [ jboss-Bugs-1065491 ] war isolation issue

2004-11-23 Thread SourceForge.net
Bugs item #1065491, was opened at 2004-11-12 16:51 Message generated for change (Comment added) made by ssswdon You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1065491group_id=22866 Category: JBossMX Group: v4.0 Status: Open Resolution: None Priority: 5

[JBoss-dev] [JBossWS] - Confusion about XML descriptors and tools

2004-11-23 Thread ${bb.Guest}
Johan, 1) wscompile is the prefered way to generate WSDL, it is the only way to generate jaxrpc-mapping.xml 2) webservices.xml is not generated 3) webservices.xml is the standard deployment descriptor for WS4EE server side components. WS4EE clients have their metadata specified in the

[JBoss-dev] [JBossWS] - XML RPC

2004-11-23 Thread infectedrhythms
Is there a way to use the apache XML RPC as a servlet? Thanks View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3856096#3856096 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3856096

[JBoss-dev] jboss-head build.481 Build Successful

2004-11-23 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20041123092059Lbuild.481 BUILD COMPLETE-build.481Date of build:11/23/2004 09:20:59Time to build:23 minutes 6 secondsLast changed:11/23/2004 08:09:39Last log entry:depend on

[JBoss-dev] [ jboss-Bugs-1068322 ] Txn bug-Jboss3.2.3,when there is 2 beans in the flow

2004-11-23 Thread SourceForge.net
Bugs item #1068322, was opened at 2004-11-17 22:39 Message generated for change (Comment added) made by ejort You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1068322group_id=22866 Category: JBossServer Group: v3.2 Status: Closed Resolution: Rejected

[JBoss-dev] [ jboss-Bugs-1071690 ] XMBean persistence doesn't work with jdk5 runtime

2004-11-23 Thread SourceForge.net
Bugs item #1071690, was opened at 2004-11-23 13:21 Message generated for change (Comment added) made by ejort You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1071690group_id=22866 Category: JBossMX Group: v4.0 Status: Open Resolution: None Priority: 5

[JBoss-dev] [ jboss-Bugs-1065491 ] war isolation issue

2004-11-23 Thread SourceForge.net
Bugs item #1065491, was opened at 2004-11-12 14:51 Message generated for change (Comment added) made by starksm You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1065491group_id=22866 Category: JBossMX Group: v4.0 Status: Open Resolution: None Priority: 5

[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Field Interception

2004-11-23 Thread bhakthi
Hi Bill, Thanks a lot! I can read the values using getValue method. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3856106#3856106 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3856106

[JBoss-dev] [ jboss-Bugs-1071690 ] XMBean persistence doesn't work with jdk5 runtime

2004-11-23 Thread SourceForge.net
Bugs item #1071690, was opened at 2004-11-23 15:21 Message generated for change (Comment added) made by andd You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1071690group_id=22866 Category: JBossMX Group: v4.0 Status: Open Resolution: None Priority: 5

[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Problem with Jbos 4.0RC2 + Eclipse 3.1M2 + MyEclipse 3.8.2

2004-11-23 Thread anderskj1
Hi. Im trying to use JBOSS AOP in a JSP application. I have followed the chapter 8 in ref guide to setup JBOss 4 using AOP. I have downloaded the JBOss IDE + AOP extension for Eclipse. Everything seems to work perfect. I can add Inspectors to my methods. (The mappings are mapped to the

[JBoss-dev] [ jboss-Bugs-1071690 ] XMBean persistence doesn't work with jdk5 runtime

2004-11-23 Thread SourceForge.net
Bugs item #1071690, was opened at 2004-11-23 05:21 Message generated for change (Comment added) made by starksm You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1071690group_id=22866 Category: JBossMX Group: v4.0 Status: Open Resolution: None Priority: 5

[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Problem with Jbos 4.0RC2 + Eclipse 3.1M2 + MyEclipse 3.8

2004-11-23 Thread [EMAIL PROTECTED]
http://docs.jboss.org/aop/aspect-framework/reference/en/html/running.html#jboss Does that help? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3856110#3856110 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3856110

[JBoss-dev] [ jboss-Bugs-1071690 ] XMBean persistence doesn't work with jdk5 runtime

2004-11-23 Thread SourceForge.net
Bugs item #1071690, was opened at 2004-11-23 15:21 Message generated for change (Comment added) made by andd You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1071690group_id=22866 Category: JBossMX Group: v4.0 Status: Open Resolution: None Priority: 5

[JBoss-dev] [ jboss-Bugs-1071690 ] XMBean persistence doesn't work with jdk5 runtime

2004-11-23 Thread SourceForge.net
Bugs item #1071690, was opened at 2004-11-23 05:21 Message generated for change (Comment added) made by starksm You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1071690group_id=22866 Category: JBossMX Group: v4.0 Status: Open Resolution: None Priority: 5

[JBoss-dev] jboss-3.2 build.189 Build Successful

2004-11-23 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2?log=log20041123103859Lbuild.189 BUILD COMPLETE-build.189Date of build:11/23/2004 10:38:59Time to build:35 minutes 26 secondsLast changed:11/23/2004 09:57:53Last log entry:Backport jboss-4.0.1

[JBoss-dev] [ jboss-Bugs-1071690 ] XMBean persistence doesn't work with jdk5 runtime

2004-11-23 Thread SourceForge.net
Bugs item #1071690, was opened at 2004-11-23 15:21 Message generated for change (Comment added) made by andd You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1071690group_id=22866 Category: JBossMX Group: v4.0 Status: Open Resolution: None Priority: 5

[JBoss-dev] jboss-head build.482 Build Successful

2004-11-23 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20041123113002Lbuild.482 BUILD COMPLETE-build.482Date of build:11/23/2004 11:30:02Time to build:17 minutes 6 secondsLast changed:11/23/2004 11:13:16Last log entry:fixes and tests

[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Problem with Jbos 4.0RC2 + Eclipse 3.1M2 + MyEclipse 3.8

2004-11-23 Thread anderskj1
thanx for your reply. Is these assumptions right: (I read the link you suppplied and testet...no go) 1. I can use the supplied directory wich come with the AOP release instead of jar/unjar the deploy file? 2. I have this file structure

[JBoss-dev] jboss-head-jdk-matrix build.17 Build Successful

2004-11-23 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head-jdk-matrix?log=log20041123124017Lbuild.17 BUILD COMPLETE-build.17Date of build:11/23/2004 12:40:17Time to build:48 minutes 11 secondsLast changed:11/23/2004 11:13:16Last log entry:fixes and tests

[JBoss-dev] [Mail Services] - Milestone 2 imminent

2004-11-23 Thread [EMAIL PROTECTED]
I've scaled back the M2 release. I want to get out a stable release before we add any more features to the mix. M3 is still being figured out so don't take the roadmap (on the wiki) too seriously until we figure out what the new resource allocation is (or how many volunteers will step forward

[JBoss-dev] [ jboss-Bugs-1072058 ] Not spec compliant on ClientID checking

2004-11-23 Thread SourceForge.net
Bugs item #1072058, was opened at 2004-11-23 20:02 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1072058group_id=22866 Category: JBossMQ Group: v3.2 Status: Open Resolution:

[JBoss-dev] [ jboss-Bugs-1072058 ] Not spec compliant on ClientID checking

2004-11-23 Thread SourceForge.net
Bugs item #1072058, was opened at 2004-11-23 20:02 Message generated for change (Comment added) made by ejort You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1072058group_id=22866 Category: JBossMQ Group: v3.2 Status: Closed Resolution: Fixed Priority: 5

[JBoss-dev] [JBoss IDE (dev)] - Re: Creation of element failed: javax.xml.rpc.encoding.TypeM

2004-11-23 Thread brent.langdon
Okay, I tracked down the defect listing: http://sourceforge.net/tracker/?group_id=22866atid=376685func=detailaid=1014079 I see that this defect was fixed by letiemble on 2004-11-04 03:29 with the comment: Plugin runtime classpath was incomplete. Fixed in CVS. So I take it that in order to get

[JBoss-dev] [Build System] - Re: problems on jboss 3.2.7 rc2

2004-11-23 Thread sviluppatorefico
hi ryan...i've token it from branch_3_2. Now i try to see with cruisecontrol... thanks you View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3856176#3856176 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3856176

[JBoss-dev] [JBossWS] - WSDL / Schema Imports : Absolute URLs allowed in WS4EE?

2004-11-23 Thread sdahlen
I have been reading over the Web Services for J2EE spec to determine if absolute urls are allowed for WSDL imports. At this time I would say they are allowed. Is this assumption correct? I would like to know because my company has published a number of abstract WSDL files I must implement.

[JBoss-dev] [ jboss-Bugs-1071332 ] CMR and ejbCreate

2004-11-23 Thread SourceForge.net
Bugs item #1071332, was opened at 2004-11-22 22:42 Message generated for change (Comment added) made by kongdy You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1071332group_id=22866 Category: JBossCMP Group: v4.0 Status: Open Resolution: Works For Me

[JBoss-dev] [Mail Services] - Re: Milestone 2 imminent

2004-11-23 Thread [EMAIL PROTECTED]
With Kabir's help I proved that the bug is actually somehow in Entourage. It doesn't happen on his side, and doesn't happen with Thunderbird. So we should be go for M2 shortly. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3856200#3856200 Reply to the post

[JBoss-dev] [TODO -- DEVELOPMENT] - Re: EJB Timer Service

2004-11-23 Thread esn3
In JBoss 4, Is it possible to have an EJB Timer that is an HA-Singleton? The objective is to have only one instance of the EJB timer within the cluster, and if the node containing the timer goes down another node will automatically create a new EJB timer. View the original post :

[JBoss-dev] [JBossWS] - JBoss 4.0.0 xdoclet tags

2004-11-23 Thread joshua_hj
I need to expose a EJB as a Webservice with JBoss 4.0.0. I got it working with jboss-3.2.3 by using xdoclet jboss-net tags. Does any one know the equivalence of jboss-net xdoclet tags for use with JBoss-4.0.0? I know that JbosWS is the new module responsible for providing support for WebServices

[JBoss-dev] [XDoclet on JBoss (XDoclet/JBoss)] - Xdoclet in JBoss-4.0.0

2004-11-23 Thread joshua_hj
I need to expose a EJB as a Webservice with JBoss 4.0.0. I got it working with jboss-3.2.3 by using xdoclet jboss-net tags. Does any one know the equivalence of jboss-net xdoclet tags for use with JBoss-4.0.0? I know that JbosWS is the new module responsible for providing support for WebServices

[JBoss-dev] jboss-4.0-jdk-matrix build.22 Build Successful

2004-11-23 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0-jdk-matrix?log=log20041123204116Lbuild.22 BUILD COMPLETE-build.22Date of build:11/23/2004 20:41:16Time to build:38 minutes 47 secondsLast changed:11/23/2004 15:17:20Last log entry:Bug Fix [1072508]]:

[JBoss-dev] [ jboss-Bugs-1065491 ] war isolation issue

2004-11-23 Thread SourceForge.net
Bugs item #1065491, was opened at 2004-11-12 14:51 Message generated for change (Comment added) made by starksm You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1065491group_id=22866 Category: JBossMX Group: v4.0 Status: Open Resolution: None Priority: 5

[JBoss-dev] [ jboss-Bugs-1065491 ] war isolation issue

2004-11-23 Thread SourceForge.net
Bugs item #1065491, was opened at 2004-11-12 14:51 Message generated for change (Comment added) made by dsmall0 You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1065491group_id=22866 Category: JBossMX Group: v4.0 Status: Open Resolution: None Priority: 5

[JBoss-dev] jboss-3.2-testsuite build.9 Build Successful

2004-11-23 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2-testsuite?log=log20041123185115Lbuild.9 BUILD COMPLETE-build.9Date of build:11/23/2004 18:51:15Time to build:69 minutes 41 secondsLast changed:11/23/2004 15:03:59Last log entry:Bug Fix [1072058]: Not

[JBoss-dev] [ jboss-Bugs-1065491 ] war isolation issue

2004-11-23 Thread SourceForge.net
Bugs item #1065491, was opened at 2004-11-12 14:51 Message generated for change (Comment added) made by starksm You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=1065491group_id=22866 Category: JBossMX Group: v4.0 Status: Open Resolution: None Priority: 5

[JBoss-dev] [JBossWS] - Re: WebService Address

2004-11-23 Thread gpnewton
Is there any better solution to this problem for large scale deployments? If we need to go down into the sar deployment and change this file for every box we deploy to, that significantly complicates our deployment of JBoss. Is there any way to have the WebServiceHost attribute reflect the

[JBoss-dev] jboss-4.0-testsuite build.7 Build Successful

2004-11-23 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0-testsuite?log=log20041123214007Lbuild.7 BUILD COMPLETE-build.7Date of build:11/23/2004 21:40:07Time to build:104 minutes 34 secondsLast changed:11/23/2004 15:17:20Last log entry:Bug Fix [1072508]]:

[JBoss-dev] jboss-3.2 build.190 Build Successful

2004-11-23 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2?log=log20041123234142Lbuild.190 BUILD COMPLETE-build.190Date of build:11/23/2004 23:41:42Time to build:24 minutes 26 secondsLast changed:11/23/2004 15:03:59Last log entry:Bug Fix [1072058]: Not spec

[JBoss-dev] [JBossWS] - Error while accessing web service

2004-11-23 Thread sivauser
I have web service created. while accessing the service i am getting following error on server console. Please help if any one knows what is the problem.. Thanks s 11:21:25,990 WARN [jbossweb] WARNING: Error for /jboss-net/services/testHelloWorld

[JBoss-dev] [JBossCache] - JBossCache Bug in get(someNode, key)?

2004-11-23 Thread jiwils
I have two JVMs that are invoking put(blah, key, value) and get(blah, key) where blah is the same node in a TreeCacheAop instance. The keys and the values are String instances. A key, in this case, is a hashed version of its corresponding value which is just an FQN to another location in the

[JBoss-dev] jboss-head Build Failed

2004-11-23 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20041124002121 BUILD FAILEDAnt Error Message:/home/cruisecontrol/work/scripts/build-jboss-head.xml:63: The following error occurred while executing this line:

[JBoss-dev] [Clusters on JBoss (Clusters/JBoss)] - HASingleton Programming

2004-11-23 Thread moongabi
When I create an HASingleton MBean, can I just extends HASingletonSupport class in org.jboss.ha.singleton package? Or, just I should extends ServiceMBeanSupport class? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3856218#3856218 Reply to the post :

[JBoss-dev] [JBossWS] - Re: Error while accessing web service

2004-11-23 Thread sivauser
it solved. I have following files in /all/lib which i removed. saaj.jar, saaj-api.jar and saai-ri.jar View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3856220#3856220 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3856220

[JBoss-dev] jboss-4.0 build.217 Build Successful

2004-11-23 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041124013912Lbuild.217 BUILD COMPLETE-build.217Date of build:11/24/2004 01:39:12Time to build:19 minutes 27 secondsLast changed:11/24/2004 00:28:02Last log entry:Move tests-webservice and

[JBoss-dev] [JBossWS] - Re: WebService Address

2004-11-23 Thread [EMAIL PROTECTED]
This has been fixed in jboss-4.0.1 View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3856229#3856229 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3856229 --- SF email is

[JBoss-dev] [JBossWS] - Re: WSDL / Schema Imports : Absolute URLs allowed in WS4EE?

2004-11-23 Thread [EMAIL PROTECTED]
This has been fixed in jboss-4.0.1 View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3856230#3856230 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3856230 --- SF email is