[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - XFFDS Server on Jboss /AOP framework

2004-03-28 Thread BigBoss
I wish to start an open source project . The aim and deliverables of the project are 
described below:
The XFFD Server Project. : a complementary  EE [Enterprise Engineering]  platform 

In software development for business and so called enterprise systems separation of 
presentation logic from business logic is a standard adorable practice in the software 
engineering arena. JSP has been pushed by Java camp with this promise . How much it 
has succeeded in reality is a debateable . . The fact is a Web designer is interested 
in the look and feel and movement on the page rather than how to produce dynamic data 
that populates those pages. Ideally the Web designer should be able to design and 
paint using a presentation technology and programmer should be able to pipe in the 
right data into the right spots which would have some identifiable name in the page as 
the user interacts with the page. 
Coming from an old mainframe background, this was precisely what was happening 20 
years back. Only limitation was how much the designer could do with those fat green 
screens of the dumb terminals. In fact designers were never called in to help to set 
up the old BMS [basic mapping support from IBM]  screens. At the most we [programmers] 
would do some prototypes of those screens and sit with the business analysts to figure 
out if the positions of the fields would be right or if the flow of the screens would 
be right. 
After 20 years of relentless progress and  after being swept over by two generations 
of new technology [the client server and then the internet] , and in today amidst  
technological opulence  we seem to be back with a problem  that the old dumb terminals 
 would have  solved by trying to over- come the limitation of technology. 
In the old days BMS solved the problem by giving each field in the screen [we used to 
call it a MAP  ] a unique name and then producing a data structure on which the 
processing programs would receive data from as well as  map their data  to by 
ÃÂÃÂÃÂÃÂreceive and send screenÃÂÃÂÃÂÃÂ command. This worked extremely 
efficiently. The input and outputs and business logic could be handled by different 
functional modules and the screen attributes, for example, colour and character 
highlighting could be changed and the static texts like headers and prompts could be 
changed and the map recompiled without touching the program modules or ever 
recompiling them.

We are back with the issue of mixing presentation and design feature with code today 
because primarily adding code any where has become so much easy and cheap to do with 
our current technology.   
However this problem keeps coming back because we have not solved a fundamental 
problem in program design and execution. Let me state the problem. When we write an 
application there are features in the application to which we put our mind into. 
Depending on the nature of the issue in hand we get domain experts, coding experts in 
different areas like taxation, security and usability  to address these features. 
However the product we produce at the end of the day ie. the run time module is one 
big chunk or a random mix of smaller chunks. We have no idea which feature is being 
produced as the machine is executing the application code. In terms of object 
technology methods are passed almost randomly from one object to other without any 
recognition of features these objects are catering for.
We might keep the separation of concern alive at the code level , when it comes to  
the technology of run time or execution it is a mix of  all features. The code cannot 
run by features selectively.  
The current dilemma with mixing of presentation engine with business logic is just  a 
revelation of the weakness in this program execution technology.  Our technology does 
not allow taking two different features [at our system definition process] and mixing 
them at will at the execution time or withdrawing one selectively at execution time. 
This problem so far to some extent  is similar to what AOP is trying to solve. 
However XFFDS takes an approach where  features become fundamental unit of programming 
rather than after thoughts. 
To summarise  XFFDS approach: an object can be looked upon as a collection of fields 
and methods. What each method in an object does is to create a subset of fields from 
the object and link with another subset of fields in another or the same object. In 
XFFDS we propose to give each of these links a name and represent an application 
feature as a sequence of these links and subsets.   If we take this view a feature is 
represented in the same fashion at design time and run time. The links between the 
subsets at design time will give  a meta-view of the application which is embedded in 
the code itself. This meta-view are the links that states why the designer did what he 
did. The flow between subsets then become staff that we can study before putting a 
single line of program code.
This ca

[JBoss-dev] [Nukes Development] - Re: Downloads Module Update

2004-03-28 Thread rebornspirit
Nice,

I read that you have a test web site, where can I find this one? I tried looking at 
your home page but it doesn't exist.

Grtz

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827820#3827820";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827820>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - Re: packaging configuration 'add folder' not working -- help

2004-03-28 Thread treillyfla
So my work-around is to pick an "External File/Folder" instead of a project 
File/Folder which avoids the NPE. Then edit the ant file to the context/project 
relative path afterwards.

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827816#3827816";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827816>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWeb] - JSF and JBOSS

2004-03-28 Thread ianwhamilton
I have some basic questions about getting JSF and JBOSS to work together.

I believe I have JSF basically working in the webmodule my Enterprise App.

I have a webmodule and an ejbmoduel (session bean and entity bean) all in the same 
.ear. However I am unable to contact the session bean to retrieve data from the entity 
bean (to return to JSF).

I am generally unsure of where to put and how to set up the call to the session bean 
and how to generate the deployment descriptors and which descriptors are necessary?

At the moment I  have a request scope managed bean which makes a call to a stateful 
session bean wich makes a local call to the entity bean.

Should I use a session scope managed bean in JSF?
Should I use a remote interface or local interface to contact the EJB session bean?
Does it matter where in the JSF code hierarchy I put the EJB session bean call?

I get repeated jndi type errors (not bound) or a class cast exception depending on how 
I fiddle with the initial context/lookup.


I think my problem is with jndi. I am not sure how to correctly set this up or what I 
should expect to see in the jndi-vew of JMX to track down the errors.


Could someone help me with an explanation and code snippets/deloyment descriptors?

I am using XDoclet to generate the deployment.


Thanks very much in advance,

Ian


http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827811#3827811";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827811>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-925133 ] Read-only entity fails to load.

2004-03-28 Thread SourceForge.net
Bugs item #925133, was opened at 2004-03-29 12:40
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=925133&group_id=22866

Category: JBossCMP
Group: v3.2
Status: Open
Resolution: None
Priority: 5
Submitted By: Mark Brodziak (brodziakm)
Assigned to: Nobody/Anonymous (nobody)
Summary: Read-only entity fails to load.

Initial Comment:
Operating System: Windows XP
JDK Version: 1.4.2
JBoss Version: JBoss 3.2.3

I am using a set of read-only entity beans. This EJB 
package deploys and executes correctly under JBoss 
3.2.1 (and 3.2.0RC3).

Under JBoss 3.2.3 the attached exception trace occurs.

The following forum entry (on JBoss.org) indicates that 
this problem was resolved earlier; it appears to have 
been re-introduced.

http://www.jboss.org/index.html?
module=bb&op=viewtopic&t=22204

I believe that the issue relates to the handling of read-
only fields; I believe that they are being incorrectly 
optimised out of the SQL, and hence not loaded.

To reproduce the bug:
1. Define a read-only entity bean. In my case the entity 
contains only 2 fields: key and description, which are 
both read-only.
2. Deploy the EJB.
3. Attempt to access the EJB. The exception trace 
should occur.

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=925133&group_id=22866


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 97 % ( 1628 / 1673 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/linux1/1.4.2_03) [AUTOMATED]

2004-03-28 Thread kimptoc_mail
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Mar 29 05:20:04 BST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1673



Successful tests:  1628

Errors:33

Failures:  12





[time of test: 2004-03-29.02-42 GMT]
[java.version: 1.4.2_03]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_03-b02]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-28.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.2_03/logtests/testresults/reports/html//2004-03-29.02-42
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.ejbconf.test.MetaDataUnitTestCase
Test:testMethodPermissions
Type:error
Exception:   org.jboss.deployment.DeploymentException
Message: Error in ejb-jar.xml for Session Bean StatelessSession: Cannot create 
webservice client; - nested throwable: (java.lang.IllegalStateException: No 'jboss' 
MBeanServer found!)
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionInTxMarkRollback_remote
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionNewTxMarkRollback_remote
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionNoTx_remote
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionInTxMarkRollback_local
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionNewTxMarkRollback_local
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!

===
Mon Mar 29 05:20:04 BST 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version
java version "1.4.2_03"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_03-b02)
Java HotSpot(TM) Client VM (build 1.4.2_03-b02, mixed mode)


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2004-03-28 Thread kimptoc_mail
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Mar 29 02:44:36 GMTDT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

===
Mon Mar 29 02:44:36 GMTDT 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version "1.4.2_03"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_03-b02)
Java HotSpot(TM) Client VM (build 1.4.2_03-b02, mixed mode)


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2004-03-28 Thread kimptoc_mail
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Mar 29 02:30:41 GMTDT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
[junit] Running org.jboss.test.webservice.security.SecurityUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 4.406 sec
[junit] Running org.jboss.test.webservice.state.RedeployUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 4.89 sec
[junit] Running org.jboss.test.webservice.state.StateUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 4.969 sec
[junit] Running org.jboss.test.webservice.uddi.UddiUnitTestCase
[junit] org.jboss.test.webservice.uddi.UddiUnitTestCase: This test involves 
intense database activity and may require to adjust your server -Xmx settings.
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 10.344 sec
[junit] Running org.jboss.test.webservice.ws4eecomplex.JSR109ComplexEJBTestCase
[junit] Tests run: 12, Failures: 0, Errors: 0, Time elapsed: 5.719 sec
[junit] Running 
org.jboss.test.webservice.ws4eecomplex.JSR109ComplexWsClientTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.078 sec
[junit] Running org.jboss.test.webservice.ws4eehandler.WS4EEHandlerTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.938 sec
[junit] Running org.jboss.test.webservice.ws4eesimple.JSR109SimpleClientTestCase
[junit] Tests run: 4, Failures: 0, Errors: 2, Time elapsed: 2.375 sec
[junit] TEST org.jboss.test.webservice.ws4eesimple.JSR109SimpleClientTestCase 
FAILED
[junit] Running org.jboss.test.webservice.ws4eesimple.JSR109SimpleEJBTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 3.734 sec
[junit] Running org.jboss.test.webservice.ws4eesimple.JSR109SimpleSecureTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.438 sec
[junit] Running org.jboss.test.webservice.ws4eesimple.JSR109SimpleWebTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 4.359 sec
[junit] Running org.jboss.test.webservice.wsr.RedeployUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 3.828 sec
[junit] Running org.jboss.test.webservice.wsr.WSRUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 3.594 sec

tests-util-unit:
[junit] Running org.jboss.test.util.test.PropertyEditorsUnitTestCase
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.453 sec
[junit] Running org.jboss.test.util.test.PropertyPatternUnitTestCase
[junit] Tests run: 17, Failures: 0, Errors: 0, Time elapsed: 0.093 sec
[junit] Running org.jboss.test.util.test.ProtocolHandlerUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.078 sec
[junit] Running org.jboss.test.util.test.SchedulerUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.468 sec
[junit] Running org.jboss.test.util.test.StringsUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.188 sec
[junit] Running org.jboss.test.util.test.ThreadPoolRunnableUnitTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1.157 sec
[junit] Running org.jboss.test.util.test.ThreadPoolTaskUnitTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1.204 sec

tests-jbossmx-compliance:
[junit] Running org.jboss.test.jbossmx.compliance.modelmbean.ModelMBeanTestCase
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.485 sec
[junit] Running org.jboss.test.jbossmx.compliance.monitor.BasicTestCase
[junit] Tests run: 9, Failures: 7, Errors: 0, Time elapsed: 2.687 sec
[junit] TEST org.jboss.test.jbossmx.compliance.monitor.BasicTestCase FAILED
[junit] Running org.jboss.test.jbossmx.compliance.notcompliant.NCMBeanTestCase
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.563 sec
[junit] Running org.jboss.test.jbossmx.compliance.objectname.BasicTestCase
[junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 0.047 sec
[junit] Running org.jboss.test.jbossmx.compliance.objectname.CanonicalTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.062 sec
[junit] Running org.jboss.test.jbossmx.compliance.objectname.MalformedTestCase
[junit] Tests ru

[JBoss-dev] JBoss Test Results: 97 % ( 1626 / 1673 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/linux1/1.4.1_06) [AUTOMATED]

2004-03-28 Thread kimptoc_mail
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Mar 29 02:20:54 BST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1673



Successful tests:  1626

Errors:34

Failures:  13





[time of test: 2004-03-28.23-41 GMT]
[java.version: 1.4.1_06]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_06-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-28.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.1_06/logtests/testresults/reports/html//2004-03-28.23-41
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.ejbconf.test.MetaDataUnitTestCase
Test:testMethodPermissions
Type:error
Exception:   org.jboss.deployment.DeploymentException
Message: Error in ejb-jar.xml for Session Bean StatelessSession: Cannot create 
webservice client; - nested throwable: (java.lang.IllegalStateException: No 'jboss' 
MBeanServer found!)
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionInTxMarkRollback_remote
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionNewTxMarkRollback_remote
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionNoTx_remote
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionInTxMarkRollback_local
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionNewTxMarkRollback_local
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!

===
Mon Mar 29 02:20:54 BST 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version
java version "1.4.1_06"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_06-b01)
Java HotSpot(TM) Client VM (build 1.4.1_06-b01, mixed mode)


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 97 % ( 1628 / 1673 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.1_06) [AUTOMATED]

2004-03-28 Thread kimptoc_mail
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Mar 29 01:30:01 GMTDT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1673



Successful tests:  1628

Errors:34

Failures:  11





[time of test: 2004-03-28.23-35 GMT]
[java.version: 1.4.1_06]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_06-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_06/logtests/testresults/reports/html//2004-03-28.23-35
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.ejbconf.test.MetaDataUnitTestCase
Test:testMethodPermissions
Type:error
Exception:   org.jboss.deployment.DeploymentException
Message: Error in ejb-jar.xml for Session Bean StatelessSession: Cannot create 
webservice client; - nested throwable: (java.lang.IllegalStateException: No 'jboss' 
MBeanServer found!)
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionInTxMarkRollback_remote
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionNewTxMarkRollback_remote
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionNoTx_remote
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionInTxMarkRollback_local
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionNewTxMarkRollback_local
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!

===
Mon Mar 29 01:30:01 GMTDT 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version "1.4.1_06"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_06-b01)
Java HotSpot(TM) Client VM (build 1.4.1_06-b01, mixed mode)


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Mail Services] - Re: whether javamail activation frame work ?

2004-03-28 Thread jredden
Problem solved.  It took something like this:

(though a more elegant solution is out there in refactor land ...)


--- source start --

package com.zenred.advert;

import java.io.InputStream;
import java.io.OutputStream;
import java.io.ByteArrayOutputStream;
import java.io.ByteArrayInputStream;

import java.io.IOException;
import javax.activation.DataSource;
import javax.ejb.FinderException;

import com.zenred.advert.interfaces.DocumentFilterIF;

/**
 *
 */
public class ByteStreamDataSource implements DataSource {

private String key;
private Short stream_size;
private  DocumentFilterIF delegated_o;
public ByteStreamDataSource (String key, 
 Short stream_size,
 DocumentFilterIF delegated_o
 ){
this.key = key;
this.stream_size = stream_size;
this.delegated_o = delegated_o;
}


   public InputStream getInputStream()
   throws IOException{
   try{
   return new ByteArrayInputStream(DocumentSizeMap.getDocument(stream_size,
   key,
   delegated_o));
   }
   catch(FinderException fe){
   throw new IOException(fe.getMessage());
   }
   }

public  OutputStream getOutputStream()
throws IOException{
return new ByteArrayOutputStream();
}

private String content_type;
public String getContentType(){
return content_type;
}

public void setContentType(String content_type){
this.content_type = content_type;
}

public String getName(){
return key;
}



}





package com.zenred.advert;

import javax.ejb.RemoveException;
import javax.ejb.FinderException;
import java.rmi.RemoteException;

import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Multipart;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMultipart;



import javax.activation.DataSource;
import javax.activation.DataHandler;

import com.zenred.advert.interfaces.ContentFactoryIF;
import com.zenred.advert.interfaces.DocumentFilterIF;
import com.zenred.advert.interfaces.AdvertMailException;

/**
 * ContentComplex.java
 *
 *
 * Created: Sun Mar 21 14:33:43 2004
 *
 * @author 
 * @version
 */

public class ContentComplex implements ContentFactoryIF{
public ContentComplex () {
}

public Message getContent(Message message, String key, DocumentFilterIF 
delegated_object)throws AdvertMailException{

String _content_type = 
MimeMapAvecExtensions.getContentTypeFor(key);
String msgText = key;

try{
Short stream_size = delegated_object.prepareDocument(key);

MimeBodyPart mbp1 = new MimeBodyPart();
mbp1.setContent(msgText, "text/plain");

MimeBodyPart mbp2 = new MimeBodyPart();
ByteStreamDataSource bytestreamdatasource = new ByteStreamDataSource(key, 
stream_size, delegated_object);
bytestreamdatasource.setContentType(_content_type);
// mbp2.setContent(_content_type);
mbp2.setDataHandler(new DataHandler(bytestreamdatasource));

Multipart mp = new MimeMultipart();
mp.addBodyPart(mbp1);
mp.addBodyPart(mbp2);

message.setContent(mp); 
}
catch(FinderException fe){
fe.printStackTrace();
throw new AdvertMailException(fe.getMessage());
}
catch(RemoteException re){
re.printStackTrace();
throw new AdvertMailException(re.getMessage());
}
catch(MessagingException me){
me.printStackTrace();
throw new AdvertMailException(me.getMessage());
}
return message;
}


}// ContentComplex




package com.zenred.advert;

import com.zenred.advert.interfaces.ContentFactoryIF;

/**
 * ContentFactory.java
 *
 *
 * Created: Sun Mar 21 14:48:54 2004
 *
 * @author 
 * @version
 */

public class ContentFactory {

private static String text_plain = "text/plain";
private static String text_html = "text/html";

public static ContentFactoryIF getInstance(String type){
if(type.equals(text_plain) ||
type.equals(text_html)) {
return new ContentSimple();
}
else{ 
return new ContentComplex();
}
}   

}// ContentFactory


http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827799#3827799";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827799>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technolog

[JBoss-dev] [EJB on JBoss] - Problem using oracle-sequence key generation with JBoss 3.2.

2004-03-28 Thread jeeads
I have created some entity beans that have non nullable foreign keys and
when I go to test them I find an interesting problem.  To test these beans
 I must create or find an existing bean for the instatiation of the non 
nullable foreign key.  No matter if I create or find the foreign key prior to 
creating the bean to test, when creating the bean to test the 
org.jboss.ejb.plugins.cmp.jdbc.keygen.JDBCOracleCreateCommand 
doesn't get called?  Here is the print out of the problem.  All bean transactions are 
marked required.

Error using lanehome.create to initialize the non nullable foreign key for the bases 
bean
Initializing testBasesBean.
2004-03-26 13:04:13,281 DEBUG [org.jboss.ejb.plugins.LogInterceptor] InvokeHome: 
create(471582173,4]]J,32526,32526,[EMAIL 
PROTECTED],YYYDDD;;;NNN444tttGGG===HHH>>>111WWWTTTppp666RRR[[[QQQ===333P```222UUUKKKggg]]]???\\\RRR555aaaWWWtttiii222111rrr^^^[[[666===444555tttGGG===TTTAAA666IIIAAA777SSSIII000CCC888UUUMM?NkkkaaaMMMCCCpppf,-16268,-1279147916,f999xxxKKKAAAmmm000VVVCCCUUULLLMMMCCCLLL999222OOO111XXXOOOFFFXXXEEE;;;[[[QZZZGGGeee[[[===DDDTTTCCCooofff999xxxZZZmmmcccOOOMMMrrryyy:::CCCyyyoooBBBYYY444111rrrOOO<<<111NNNWWWccc999EEEjjjaaaLLLCCCV,-22018,1888135678,Sat
 Apr 17 10:33:03 CDT 2004,Sat Apr 17 11:56:25 CDT 2004,Sat Apr 17 11:56:25 CDT 
2004,Sat Apr 17 11:56:25 CDT 
2004,12186,12186,12186,7785,7785,7785,OOOvvvmmm666EEEXXXyyyooo[[[dddoooBBB888ddd;;;111:::MMMCCC^^^UUU777JJJZZZFFFYYYOOOWWWDDDLLLCCC000???QQQ>>>555FFFYYYOOO<<>>TTTaaa666]]]UUUhhh^^^JJJ```WWWttt999```444PPP```sssIII???SSS555@@@]]]SSS555222BBB___AAA7___\\\777>>>;;;111MMMCCCBBB^^^TTTAAAmmmcccaaa<<>>NNN;;;CCC:::UUUKKKwwwJJJ@@@===OOOFFF222:::NNNCCCVVV666III555[[[HHHvvv<<>>444;;;FFFPPP@@@666RRR555@@@===444FFFLLLBBB___888^^^III@@@RRR???NNNrrrTTTJJJ222rrrTTTggg^^^444```VVVsssGGGQQQ```333www@@@vvvlll555]]]lll???555LLLUUUKKK777III@@@[[[RRREEEaaaWWWCCCUUULLL___TTTQQQmmmdddOOOYYYaaaXXXCCCVVVfffmmmyyy444OOOEEE222DDD;;;777^^^@@@GGGQQQ>>>GGG===]@@@LLLSSSIII777SSSIII666LLLCCCKKKBBBgggsssIIIUUUlll555DDDaaasssiii<<>>NNNaaaMMMCCC000IIITTTAAA777III666000CCCUUUKKK999VVV888___EEE<<>>MMMjjjaaaCCCooofff888JJJAAAvvvmmmFFF222rrrDDDCCC000ooo888555[[[222===OOFFF111EEE>>>[[[PPPZZZ[[[RRRnnnQQQJJJ]]]TTT666SSS^^^000SSSIIIjjj```BB,-391886304,Sun
 Mar 21 19:05:04 CST 2004,32181,32181,-5753,1,1,Oracle8iSeqCol_Lane:Primary key: 
52,null,null)
2004-03-26 13:04:18,671 DEBUG [com.genecodes.oracle8iseqcol.bases.BasesBean] 
setEntityContext
2004-03-26 13:04:18,687 DEBUG [com.genecodes.oracle8iseqcol.bases.BasesBean] ejbCreate
2004-03-26 13:04:18,703 INFO  [org.jboss.ejb.plugins.LogInterceptor] Application 
Exception
javax.ejb.CreateException: Primary key for created instance is null.
at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.createEntity(JDBCStoreManager.java:556)

Error using lanehome.findByPrimaryKey to initialize the non nullable foreign key for 
the bases bean
Initializing testBasesBean.
2004-03-28 16:54:36,609 DEBUG [org.jboss.ejb.plugins.LogInterceptor] InvokeHome: 
findByPrimaryKey(Primary key: 54)
2004-03-28 16:54:36,625 DEBUG [com.genecodes.oracle8iseqcol.lane.LaneBean] 
setEntityContext
2004-03-28 16:54:36,640 DEBUG 
[org.jboss.ejb.plugins.cmp.jdbc.JDBCFindByPrimaryKeyQuery.Oracle8iSeqCol_Lane#findByPrimaryKey]
 Executing SQL: SELECT ID FROM LANE WHERE ID=?
2004-03-28 16:54:41,859 DEBUG [org.jboss.ejb.plugins.LogInterceptor] InvokeHome: 
create(BwnAAAWWW222FFF<<>>QQQ\\\III[[[QQQAAA888@@@]]]TTTBBBTTTAAA777yyyCCCRRRooo000CCCoooeee888OOO^^^111qqqEEE222qqqDDD[[[QQQ333sssQQQXXX333:::SSSJJJfff\\\QQQGGGdddYYY333iii___KKKHHHSSSfff]]]???___kkkrrrKKKAAArrriiiKKKhhhaaaQQQ333sss[[[QQQ333000===]]]???555RRRZZZ444???FFFVVV999UUUKKK^^^@@@555RRRHHHEEEJJJUUUrrriiiKKK^^^nnntttVVVMMM444uuuMMMjjjddd666cccYYYlll@@@lllccc666yyyBB888999777BBBIII???222NNNDDD111<<<>>[[[PPP===EEE;;;WWWMMMJJJggg]]]PPP\\\dddwwwcccYYYvvv999^^^eee\\\999VVVeeeyyyEEE<<>>ZZZQQQ333___VVVsssUUUKKKfff]]]555RRRbbbiiiKKK<<
<  ejb-name>Oracle8iSeqCol_Bases<  /ejb-name>
<  pk-constraint>false<  /pk-constraint>
<  table-name>BASES<  /table-name>
<  cmp-field>
<  field-name>id<  /field-name>
<  column-name>ID<  /column-name>
<  auto-increment/>
<  /cmp-field>
 

[JBoss-dev] [Nukes Development] - CVS Build Problems

2004-03-28 Thread jlauman
I've been trying to build Nukes from CVS with JBoss v3.2.4RC2 and keep getting the 
same 'class not found' error in two files: NukesBuilder.java and 
LifeCycleInterceptor.java..

It's looking for three classes that don't exist or at least I can't find them in 
v3.2.x, the do exist in v3.0.x.  They are:

org.jboss.mx.interceptor.MBeanAttributeInterceptor
org.jboss.mx.interceptor.Invocation
org.jboss.mx.interceptor.InvocationException

In 3.2.x the above files are:

org.jboss.mx.interceptor.ModelMBeanAttributeInterceptor
org.jboss.mx.server.Invocation / org.jboss.Invocation
org.jboss.mx.server.InvocationException / org.jboss.InvocationException

Does Nukes build with the latest JBoss or am I missing something?

Jack

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827782#3827782";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827782>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [TODO -- DEVELOPMENT] - Re: Want to contribute?

2004-03-28 Thread syeda
Thanks guys,

I will synch with branch_3_2

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827781#3827781";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827781>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Managing interceptors via an interactive 3d management m

2004-03-28 Thread Jeremy Pitten
The applets require sun jre 1.4.2 and java3d 1.3.1 pre-installed.


http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827779#3827779";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827779>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Mail Services] - Re: TODO: TLS and JBossSX integration

2004-03-28 Thread mk
Hi,

I could verify the first error (where you get "Default SSL context init failed: 
null"). In my case this was due to the fact that I did not have kestore as specified 
in jboss-service.xml 
(/home/mkrause/testkeys in my case). I saw this error by setting 
'-Djavax.net.debug="ssl,handshake" ' as a command-line argument to the VM when 
starting jboss. For some reason the line 
'System.setProperty("javax.net.debug", "ssl,handshake");'
in CmdSTARTTLS.java has no effect (why?).

The second thing (Export restriction: this JSSE implementation is non-pluggable.) I 
could not verify. Even though I also live outside the US (-: What happens if you 
comment the line
'java.security.Security.addProvider( new com.sun.net.ssl.internal.ssl.Provider());' in 
the same file?

Michael


http://www.jboss.org/index.html?module=bb&op=viewtopic&p=382#382";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=382>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [TODO -- DEVELOPMENT] - Re: Want to contribute?

2004-03-28 Thread ivelin
cvs ... co -r Branch_3_2 jboss-3.2

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827774#3827774";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827774>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - Re: JBoss-IDE and Eclipse 3.0M8

2004-03-28 Thread jmspaggi
;)

Hi Laurent.

And what's about M7 pb? Need us to post them? Because I have some probleme with.

I can test in M8 is you want some help.

Dont esitate ton contact me at Jean-Marc at Spaggiari dot org.

JMS

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827773#3827773";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827773>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - Re: @ejb-ref and @jboss.ejb-ref-jndi .... ??????

2004-03-28 Thread albertfang
About the second issue. there is a bug in xdoclet. As you can see , it is "ejb-ref" in 
jboss.xml , but "ejb-local-ref" in ejb-jar.xml. you have to "mannually" change ejb-ref 
to ejb-local-ref in jboss.xml.

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827772#3827772";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827772>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Downloads Module Update

2004-03-28 Thread thepriz
I will add the downloads module to CVS when I have it in the beta state. The last 
alpha version of the downloads module was released today. If you have been watching my 
test website you may have noticed I only have one more feature to add to put it in a 
beta state. The feature is not an easy one for me to do so I am going to ask you for 
help.

I have a block that displays a Top 10 Rated list. There is a configuration setting 
that only allows downloads with X or more votes to be included on this list. I need to 
be able to get that config item from the configuration of the downloads module. I see 
this working like getting the siteName from nukes core. I tried to follow this but got 
lost (I am a novice when it comes to application servers and JMX). It looks like I 
have to create a MBeanProxy and then I can get the attributes that I want through the 
proxy is this correct? I just need to know if I am barking up the right tree or should 
I be looking at somthing else? If I am going in the right direction is there any 
information on the MBeanProxy class?

Thanks,

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827770#3827770";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827770>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Mail Services] - Re: Calendar Server proposal

2004-03-28 Thread mikea-xoba
agreed we want something in jboss that can serve many of the same functions as popular 
office suites, which definitely goes beyond mail per se. i guess i was just playing 
devil's advocate. sorry! 

mike

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827765#3827765";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827765>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [TODO -- DEVELOPMENT] - Re: Want to contribute?

2004-03-28 Thread triathlon98
JBOSS-HEAD
or 
Branch_3_2

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827764#3827764";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827764>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - JBoss-IDE and Eclipse 3.0M8

2004-03-28 Thread letiemble
Hi,

This is to anticipate questions on the forum.
JBoss-IDE is currently only comptabile with Eclipse 3.0M6. In CVS, the release is 
almost compatible with M7 and testing is on the way. As the M8 has been released the 
2004-03-26, further testing are in progress to ensure that the next release will 
function smoothly on it.

So PLEASE, don't post problems with M8 as it is known that there are problems.

Thank you.

Laurent.

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827758#3827758";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827758>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - Re: Eclipse 3.0M7:

2004-03-28 Thread dkrizic
Hi!

Look here for a version 1.2.330

http://www.jboss.org/index.html?module=bb&op=viewtopic&t=46959

Good luck, this version does not work for me, therefore I use Eclipse 2.1.3 until a 
version for M7/M8 is available.

...darko


http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827757#3827757";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827757>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - Re: Eclipse 3.0M7:

2004-03-28 Thread letiemble
Hi,

The best would be to check-out the CVS version. It is known to be almost M7 compatible.

Laurent.

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827756#3827756";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827756>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - Re: Eclipse 3.0M7:

2004-03-28 Thread gardiner
Hello,

how can I get a Eclipse M7 (or better M8) compatible JBossIDE? The Update mechanism 
only provides 1.2.230... dkrizic: How did you get 1.2.330?

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827755#3827755";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827755>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - Re: JBoss 1.22, Eclipse 2.13 problem?

2004-03-28 Thread gardiner
I'm just working through the tutorial with JDK 1.4.2_04, Eclipse 2.1.3 and IDE 1.2.2. 
The interface is generated pretty well:

public double[] compute( int number ) throws java.rmi.RemoteException;

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827754#3827754";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827754>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [TODO -- DEVELOPMENT] - Re: Want to contribute?

2004-03-28 Thread ivelin
You probably want to start with the stable JBoss 3.2 branch.
Check out module JBoss-3-2 with Branch_3-2

Ivelin


http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3827753#3827753";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3827753>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development