[JBoss-dev] [ jboss-Bugs-983462 ] Classloader (?) problem in 3.2.4. and 3.2.5

2004-07-05 Thread SourceForge.net
Bugs item #983462, was opened at 2004-07-01 16:31 Message generated for change (Comment added) made by drmlipp You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=983462group_id=22866 Category: None Group: v3.2 Status: Open Resolution: None Priority: 5

[JBoss-dev] [Nukes Development] - Re: Error in html module

2004-07-05 Thread chamcha
After a step trace into MultipartRequest.java and commons-fileupload code, I discover that a memory buffer of FileUploadSizeMax is allocated for each form field. So, since I have set FileUploadSizeMax=30MB, it's easy to understand why a OutOfMemoryException is thrown. Any suggestions? View

[JBoss-dev] [Nukes Development] - Re: Problems in new modules

2004-07-05 Thread Ana Bela
Thanks, the problem would have to be what you said. Now it functions well. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3840955#3840955 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3840955

[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Trouble with converting an AspectJ program

2004-07-05 Thread prilmeie
Mixins are definitely a good start, but nevertheless it's very hard, because I have to split the aspect into the static (mixin) and the dynamic part (interception). My feelings about this are that this is not in the spirit of AOP. But let's get to the facts. As far as I understand the WIKI

[JBoss-dev] [Nukes Development] - Re: Error in html module

2004-07-05 Thread jae77
you need to increase the min/max heap size when you start jboss. pls see the faq in the user group. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3840958#3840958 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3840958

[JBoss-dev] [ jboss-Bugs-985318 ] Serious connection leak in connection pool

2004-07-05 Thread SourceForge.net
Bugs item #985318, was opened at 2004-07-05 13:23 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=985318group_id=22866 Category: JBossServer Group: None Status: Open Resolution:

[JBoss-dev] [Nukes Development] - Re: Error in html module

2004-07-05 Thread chamcha
I've got the same problem in 1.1rc2. How do you solve it? maybe wrong charset encoding? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3840938#3840938 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3840938

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

2004-07-05 Thread kimptoc_mail
View results here -> http://tck2.jboss.com/cc/buildresults/jboss-3.2?log=log20040705025256Lbuild.113 BUILD COMPLETE-build.113Date of build:07/05/2004 02:52:56Time to build:18 minutes 46 secondsLast changed:07/05/2004 02:32:56Last log entry:throw an exception if method-param

[JBoss-dev] [Nukes Development] - Re: Error in html module

2004-07-05 Thread chamcha
I think this is a bug, look at MultipartRequest.java line 68: upload.setSizeThreshold(sizeMax); This seems to be wrong, the threshold must be different from max upload size. I think a new attribute in CoreModule MBean is needed. View the original post :

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

2004-07-05 Thread kimptoc_mail
View results here -> http://tck2.jboss.com/cc/buildresults/jboss-3.2?log=log20040705035648Lbuild.114 BUILD COMPLETE-build.114Date of build:07/05/2004 03:56:48Time to build:13 minutes 40 secondsLast changed:07/05/2004 02:54:46Last log entry:handle limit/offset

[JBoss-dev] [Build System] - Re: JBoss 3.2.3 from CVS not compiling

2004-07-05 Thread mtk
Thanks. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3840949#3840949 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3840949 --- This SF.Net email sponsored by Black Hat

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

2004-07-05 Thread kimptoc_mail
View results here -> http://tck2.jboss.com/cc/buildresults/jboss-3.2?log=log20040705075150Lbuild.115 BUILD COMPLETE-build.115Date of build:07/05/2004 07:51:50Time to build:15 minutes 5 secondsLast changed:07/05/2004 07:31:50Last log entry:BugFix for Bug-ID 985318 "Serious

[JBoss-dev] [Nukes Development] - Re: Display an image with a Blob

2004-07-05 Thread pista
I found several errors in my prior code... I have corrected them. But it's doesn't work !! Julien, could you help me ? I don't know how to do ! Thanks a lot ! There is the code in my theme, to display my image with the URL http://myserver/nukes/idImage;. | File myFile = new

[JBoss-dev] [Nukes Development] - Re: Error in html module

2004-07-05 Thread chamcha
Hi jae77. Heap size is up to 256MB, the file that give me the OutOfMemory error is an image of about 15kb. Take a look to MultipartRequest.java line 68. Actually a FileUploadSizeMax amount of bytes is allocated for each multipart parameter. This seems to be a bug. View the original post :

[JBoss-dev] [Nukes Development] - Re: Error in html module

2004-07-05 Thread chamcha
in nukes at org.jboss.nukes.servlet.MultipartRequest line 68. this is the code, please read my comment: public MultipartRequest(HttpServletRequest request, int sizeMax) throws FileUploadException { super(request); // Create a new file upload handler DiskFileUpload

[JBoss-dev] [Nukes Development] - Problems with displaying images

2004-07-05 Thread Ana Bela
Hello everyone, I have other problem with manage images... I upload a image using Manage Html and no problem, but after a image is not displaying because a error occurs: The image http://localhost:8080/nukes/image.gif; cannot be displayed, because it contains errors. Thanks, View the

[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Trouble with converting an AspectJ program

2004-07-05 Thread kabkhan
I took a look at your example: 1) Initially when I ran it the class cast failed. However, I found this to be due to running within Eclipse, with your jboss-aop-stack on the source path. And my personal build.xml is set up to use the Eclipse output classes. For some reason, this was causing

[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Trouble with converting an AspectJ program

2004-07-05 Thread kabkhan
Ops! | public class StackHeightAspect implements IStackHeight | { | private int height; | | public int size () | { |return height; | } | | public Object pushInvocation ( MethodInvocation invocation ) throws Throwable | { | ++

[JBoss-dev] [ jboss-Patches-985616 ] Persistent messages not rolled back when queue stopped/full

2004-07-05 Thread SourceForge.net
Patches item #985616, was opened at 2004-07-06 10:19 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376687aid=985616group_id=22866 Category: JBossMQ Group: v3.2 Status: Open Resolution:

[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Trouble with converting an AspectJ program

2004-07-05 Thread prilmeie
Many, many thanks, I would have been lost without you! You saved me at least one week reading (and trying to understand) the JBoss AOP source code. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3841007#3841007 Reply to the post :

[JBoss-dev] JBoss Test Results: 87 % ( 1733 / 1975 ) - come on - pull your finger out. JBoss (HEAD/winxp/1.4.1_06) [AUTOMATED]

2004-07-05 Thread kimptoc_mail
=== ==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS== ===

[JBoss-dev] [ jboss-Bugs-983462 ] Classloader (?) problem in 3.2.4. and 3.2.5

2004-07-05 Thread SourceForge.net
Bugs item #983462, was opened at 2004-07-02 00:31 Message generated for change (Comment added) made by mabinogi You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=983462group_id=22866 Category: None Group: v3.2 Status: Open Resolution: None Priority: 5

[JBoss-dev] [ jboss-Patches-985681 ] JRMPInvoker updated to implement NotificationBroadcaster

2004-07-05 Thread SourceForge.net
Patches item #985681, was opened at 2004-07-06 04:08 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376687aid=985681group_id=22866 Category: JBossServer Group: CVS HEAD Status: Open

[JBoss-dev] [TODO -- DEVELOPMENT] - Re: JRMPInvoker need to implement NotificationBroadcaster

2004-07-05 Thread lretief
I have submitted a patch. I now notice a similar problem with RMIClassLoader. Can I go ahead there as well? Caused by: java.lang.IllegalArgumentException: The MBean jboss.rmi:type=RMIClassLoader exists but does not implement the NotificationBroadcaster interface. ... 62 more View the

[JBoss-dev] Test Job Failed to Complete Successfully (or we gave up on it...)! JBoss (HEAD/winxp/1.4.2_03) [AUTOMATED]

2004-07-05 Thread kimptoc_mail
=== ==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS== ===

[JBoss-dev] JBoss Test Results: % ( / ) - . JBoss (HEAD/winxp/1.4.2_03) [AUTOMATED]

2004-07-05 Thread kimptoc_mail
=== ==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS== ===

[JBoss-dev] [TODO -- DEVELOPMENT] - Re: JRMPInvoker need to implement NotificationBroadcaster

2004-07-05 Thread [EMAIL PROTECTED]
Thanks for looking, but the patch is not valid and making other mbeans implement NotificationBroadcaster is not the way to address the exception. The real problem is that the org.jboss.management.j2ee.MBean class only registers for notification on mbeans that implement

[JBoss-dev] [Caches on JBoss (Caches/JBoss)] - Re: TreeCache deadlock

2004-07-05 Thread bwang00
Rich, not yet. I am still waiting for Chuck's log file. But can you also send me your code snippet calling Hibernate apis? :-) Chuck, when you send me the log file, can you also give me a snippet for your code as well? E.g., how you call Hibernate and then do your own rollback. And what happens

[JBoss-dev] [Caches on JBoss (Caches/JBoss)] - Re: Infinite loop in LRUAlgorithm

2004-07-05 Thread bwang00
You are right. This is a bug. I am surprised that the unit tests didn't pick it up. :-) I will fix this. Meanwhile, if you need to have a fix based on release 1.02, you can check it out from jboss-head from cvs as: cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/jboss co -r JBossCache1_0x jboss-head

[JBoss-dev] Automated Test done successfully: 2004-49-06 12:49

2004-07-05 Thread noreply
The Test done sucussfully DATE 2004-49-06 12:49,REVISION ${tag} http://192.168.1.200/management/cvschange/cvschangelog.html - View latest commits http://192.168.1.200/management/unit-test/index.html - View test result and report bugs

[JBoss-dev] [Caches on JBoss (Caches/JBoss)] - Re: Infinite loop in LRUAlgorithm

2004-07-05 Thread bwang00
Can you do me a favor by opening a bug in sourceforge? It will be easier to track the changes in the future. Thanks again, -Ben View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3841027#3841027 Reply to the post :

[JBoss-dev] Automated Test done successfully: 2004-57-06 12:57

2004-07-05 Thread noreply
The Test done sucussfully DATE 2004-57-06 12:57,REVISION ${tag} http://192.168.1.200/management/cvschange/cvschangelog.html - View latest commits http://192.168.1.200/management/unit-test/index.html - View test result and report bugs

[JBoss-dev] Automated Test done successfully: 2004-59-06 12:59

2004-07-05 Thread noreply
The Test done sucussfully DATE 2004-59-06 12:59,REVISION ${tag} http://192.168.1.200/management/cvschange/cvschangelog.html - View latest commits http://192.168.1.200/management/unit-test/index.html - View test result and report bugs

[JBoss-dev] Automated Test done successfully: 2004-00-06 01:00

2004-07-05 Thread noreply
The Test done sucussfully DATE 2004-00-06 01:00,REVISION ${tag} http://192.168.1.200/management/cvschange/cvschangelog.html - View latest commits http://192.168.1.200/management/unit-test/index.html - View test result and report bugs

[JBoss-dev] Automated Test done successfully: 2004-01-06 01:01

2004-07-05 Thread noreply
The Test done sucussfully DATE 2004-01-06 01:01,REVISION ${tag} http://192.168.1.200/management/cvschange/cvschangelog.html - View latest commits http://192.168.1.200/management/unit-test/index.html - View test result and report bugs