[JBoss-dev] [XDoclet on JBoss (XDoclet/JBoss)] - XDoclet: ejb.interface-method Challenges

2004-05-02 Thread abcolson
I am using the JBoss-IDE 1.2.0 and utilizing the @ejb XDoclet tags.  The tags/code 
completion work for class level documentation, but not for method level documentation.

For example, @ejb.bean works at the class level documentation, but 
@ejb.interface-method does not work at the method level documentation.

I thought this was no big deal at first, but when the IDE did not generate my 
interface correctly (i.e. without my method) I realized I had a problem.

It seems strange to me that when I installed the IDE that I would only get/install 
part of the @ejb tags. 

Am I missing something here?  Help appreciated.

Tony

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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head Build Failed

2004-05-02 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/?log=log20040503002851
BUILD FAILEDAnt Error Message: file:/home/build/cruisecontrol/work/scripts/build-jboss-head.xml:55: exec returned: 1Date of build: 05/03/2004 00:28:51Time to build: 12 minutes 2 secondsLast changed: 05/03/2004 00:23:21Last log entry: Read Write Lock Pattern




    Unit Tests: (0)No Tests RunThis project doesn't have any tests 
 Modifications since last build: (8)addedchussenetaspects/src/test/test/patterns/readwritelock/Account.javaRead Write Lock Patternaddedchussenetaspects/src/test/test/patterns/readwritelock/AccountWithReadWriteLock.javaRead Write Lock Patternaddedchussenetaspects/src/test/test/patterns/readwritelock/Driver.javaRead Write Lock Patternaddedchussenetaspects/src/test/test/patterns/readwritelock/ProcessTransaction.javaRead Write Lock Patternaddedchussenetaspects/src/test/test/patterns/readwritelock/META-INF/jboss-aop.xmlRead Write Lock Patternaddedchussenetaspects/src/main/org/jboss/aop/patterns/readwritelock/ReadWriteLockAspect.javaRead Write Lock Patternaddedchussenetaspects/src/main/org/jboss/aop/patterns/readwritelock/readLockOperation.javaRead Write Lock Patternaddedchussenetaspects/src/main/org/jboss/aop/patterns/readwritelock/writeLockOperation.javaRead Write Lock Pattern



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

2004-05-02 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/?log=log20040503000618Lbuild.116
BUILD COMPLETE - build.116Date of build: 05/03/2004 00:06:18Time to build: 12 minutes 19 secondsLast changed: 05/02/2004 23:59:57Last log entry: added pluggable pointcut and dynamic cflow.




    Unit Tests: (0)No Tests RunThis project doesn't have any tests 
 Modifications since last build: (11)modifiedpatriot1burkeaop/src/main/org/jboss/aop/AspectManager.javaadded pluggable pointcut and dynamic cflow.modifiedpatriot1burkeaop/src/main/org/jboss/aop/AspectXmlLoader.javaadded pluggable pointcut and dynamic cflow.modifiedpatriot1burkeaop/src/main/org/jboss/aop/advice/CFlowInterceptor.javaadded pluggable pointcut and dynamic cflow.modifiedpatriot1burkeaop/src/main/org/jboss/aop/pointcut/CFlowMatcher.javaadded pluggable pointcut and dynamic cflow.addedpatriot1burkeaop/src/main/org/jboss/aop/pointcut/DynamicCFlow.javaadded pluggable pointcut and dynamic cflow.modifiedpatriot1burkeaop/docs/examples/method-execution/methodexecution.htmladded pluggable pointcut and dynamic cflow.modifiedpatriot1burkeaop/docs/examples/method-execution/methodexecution.wikiadded pluggable pointcut and dynamic cflow.modifiedpatriot1burkeaop/docs/examples/annotation14/annotation.htmladded pluggable pointcut and dynamic cflow.modifiedpatriot1burkeaop/docs/examples/annotation14/annotation.wikiadded pluggable pointcut and dynamic cflow.modifiedpatriot1burkeaop/docs/examples/examples.htmladded pluggable pointcut and dynamic cflow.modifiedpatriot1burkeaop/docs/examples/examples.wikiadded pluggable pointcut and dynamic cflow.



[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - JBossAOPized application NoClassDefFoundError: org/jboss/aop

2004-05-02 Thread bensench
Has anyone JBossAOPized any JBoss application and successfully on JBoss?

I tried to JBossAOPized an application and run it on JBoss 3.0.6. I got the following 
error messages:

javax.servlet.ServletException: Unexpected Error
java.lang.NoClassDefFoundError: org/jboss/aop/AspectManager
 at xpetstore.services.petstore.ejb.PetstoreEJB.(Unknown Source)

The original application was runnable on JBoss 3.0.6.

What I did was:

1. Created an jboss-aop.xml to include a MethodInterceptor to intercept any methods 
invoked
on a session EJB,  CustomerEJB.
2. Compiled the MethodInterceptor and aopc the classses files as the example build.xml 
does.
This step also AOPized another session EJB, PetstoreEJB which "utilizes" 
CustomerEJB.
3. Built the Ear file of the application containing some JBossAOPized class files.
4. Copied jboss-aop.xml to the lib directory of the JBoss application.
5. Starts JBoss with the following command:
 run -c myapp
6. Copied the application Ear file to the deploy directory.
7. Accessed the application index.jsp using web browser.
8. Clicked a link which sent request to PetstoreEJB. This step result a 
ServletException as
mentioned above.

I had the jboss-aop.jar in the lib directory of the application, ie, 
$(JBOSS_HOME}/server/myapp/lib

Do I have to change the run.bat file? Since I pre-compiled the classes,
I shouldn't have to specify the option:
 -Djava.system.class.loader=org.jboss.aop.standalone.SystemClassLoader
Right?

Thanks in advance.

Ben C

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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&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-05-02 Thread kimptoc_mail
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon May  3 03:22:20 GMTDT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

===
Mon May  3 03:22:20 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: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&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-05-02 Thread kimptoc_mail
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon May  3 03:03:04 GMTDT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.484 sec
[junit] Running org.jboss.test.util.test.PropertyPatternUnitTestCase
[junit] Tests run: 17, Failures: 0, Errors: 0, Time elapsed: 0.109 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.484 sec
[junit] Running org.jboss.test.util.test.StringsUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.187 sec
[junit] Running org.jboss.test.util.test.ThreadPoolRunnableUnitTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1.188 sec
[junit] Running org.jboss.test.util.test.ThreadPoolTaskUnitTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1.218 sec

tests-webservice-unit:
[junit] Running org.jboss.test.webservice.basic.AxisUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 2, Time elapsed: 0.421 sec
[junit] TEST org.jboss.test.webservice.basic.AxisUnitTestCase FAILED
[junit] Running org.jboss.test.webservice.ejbcomplex.EJBComplexUnitTestCase
[junit] org.jboss.test.webservice.ejbcomplex.EJBComplexUnitTestCase: This test 
involves some intense persistence actions and may require you to adjust your server 
-Xmx settings.
[junit] Tests run: 4, Failures: 0, Errors: 4, Time elapsed: 4.047 sec
[junit] TEST org.jboss.test.webservice.ejbcomplex.EJBComplexUnitTestCase FAILED
[junit] Running org.jboss.test.webservice.ejbsimple.HelloUnitTestCase
[junit] Tests run: 8, Failures: 0, Errors: 7, Time elapsed: 4.125 sec
[junit] TEST org.jboss.test.webservice.ejbsimple.HelloUnitTestCase FAILED
[junit] Running org.jboss.test.webservice.ejbsimple.RedeployUnitTestCase
[junit] Tests run: 8, Failures: 0, Errors: 7, Time elapsed: 4.938 sec
[junit] TEST org.jboss.test.webservice.ejbsimple.RedeployUnitTestCase FAILED
[junit] Running org.jboss.test.webservice.external.ExternalUnitTestCase
[junit] org.jboss.test.webservice.external.ExternalUnitTestCase: This test 
requires a working http(s) connection to the internet. If you are running behind a 
firewall, you must start the server with the correct -Dhttp.proxy options. See the 
java documentation for that topic.
[junit] Tests run: 2, Failures: 0, Errors: 1, Time elapsed: 3.344 sec
[junit] TEST org.jboss.test.webservice.external.ExternalUnitTestCase FAILED
[junit] Running org.jboss.test.webservice.external.RedeployUnitTestCase
[junit] org.jboss.test.webservice.external.RedeployUnitTestCase: This test 
requires a working http(s) connection to the internet. If you are running behind a 
firewall, you must start the server with the correct -Dhttp.proxy options. See the 
java documentation for that topic.
[junit] Tests run: 2, Failures: 0, Errors: 1, Time elapsed: 3.359 sec
[junit] TEST org.jboss.test.webservice.external.RedeployUnitTestCase FAILED
[junit] Running org.jboss.test.webservice.jmx.JmxUnitTestCase
[junit] Tests run: 11, Failures: 0, Errors: 10, Time elapsed: 4.281 sec
[junit] TEST org.jboss.test.webservice.jmx.JmxUnitTestCase FAILED
[junit] Running org.jboss.test.webservice.jmx.RedeployUnitTestCase
[junit] Tests run: 11, Failures: 0, Errors: 10, Time elapsed: 4.359 sec
[junit] TEST org.jboss.test.webservice.jmx.RedeployUnitTestCase FAILED
[junit] Running org.jboss.test.webservice.security.SecurityUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 2, Time elapsed: 4.688 sec
[junit] TEST org.jboss.test.webservice.security.SecurityUnitTestCase FAILED
[junit] Running org.jboss.test.webservice.state.RedeployUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 3, Time elapsed: 3.875 sec
[junit] TEST org.jboss.test.webservice.state.RedeployUnitTestCase FAILED
[junit] Running org.jboss.test.webservice.state.StateUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 3, Time elapsed: 3.734 sec
[junit] TEST org.jboss.test.webservice.state.StateUnitTestCase FAILED
[junit] Running org.jboss.test.webservice.udd

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

2004-05-02 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/?log=log20040502211806Lbuild.115
BUILD COMPLETE - build.115Date of build: 05/02/2004 21:18:06Time to build: 12 minutes 31 secondsLast changed: 05/02/2004 21:10:25Last log entry: synchronize getInstanceAdvisor




    Unit Tests: (0)No Tests RunThis project doesn't have any tests 
 Modifications since last build: (1)modifiedpatriot1burkeaop/src/main/org/jboss/aop/instrument/Instrumentor.javasynchronize getInstanceAdvisor



[JBoss-dev] [Tomcat] - Re: Need help with directory structure between 2.2.4 and 3.2

2004-05-02 Thread [EMAIL PROTECTED]
The equivalent of the jboss.jcml file is: server/default/conf/jboss-service.xml




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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Deployers on JBoss (Deployers/JBoss)] - Re: Deployment of application with beanshell problem

2004-05-02 Thread [EMAIL PROTECTED]
Remove the BeanShellSubDeployer config from conf/jboss-service.xml:


  |
  |
  | 


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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2004-05-02 Thread kimptoc_mail
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon May  3 01:47:05 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:   1726



Successful tests:  1612

Errors:107

Failures:  7





[time of test: 2004-05-02.23-37 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-05-02.23-37
 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.client.test.AppClientUnitTestCase
Test:testENC
Type:error
Exception:   javax.naming.NameNotFoundException
Message: test-client not bound
-



Suite:   org.jboss.test.client.test.AppClientUnitTestCase
Test:testEjbs
Type:error
Exception:   javax.naming.NameNotFoundException
Message: test-client not bound
-



Suite:   org.jboss.test.client.test.AppClientUnitTestCase
Test:testServerFound
Type:error
Exception:   java.lang.reflect.UndeclaredThrowableException
Message: 
-



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!

===
Mon May  3 01:47:05 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: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: MySQL & Pure-CMP --- issues w News & FAQ modules

2004-05-02 Thread hxp
LCB --


"LCB" wrote : You must set pk-constraint to true for mysql to fix the problem with 
creating the tables.
  | I have done it manually in the jbosscmp-jdbc.xml and it works fine.
  | 

Thanks for your reply, but it doesn't seem to be the solution.

1) From my tests, setting pk-constraint to true does not  fix the MySQL "Too big 
column length for column 'pn_name' (max = 255). Use BLOB instead". 
If I'm missing something, such as maybe a bug in xdoclet that means you have to go and 
hack the jbosscmp-jdbc.xml manually, please let me know.

2) Setting pk-constraint to true prevents the Entity from being deployed to HSQL. 

org.jboss.deployment.DeploymentException: 
  | Error while creating table NUKE_FAQ_CATEGORIES; 
  | - nested throwable: (java.sql.SQLException: 
  | Attempt to define a second primary key in statement 
  | [CREATE TABLE NUKE_FAQ_CATEGORIES (pn_name VARCHAR(256), 
  | pn_language VARCHAR(256), pn_id INTEGER NOT NULL IDENTITY, 
  | pn_parent_id INTEGER, 
  | CONSTRAINT PK_NUKE_FAQ_CATEGORIES PRIMARY KEY (pn_id))])
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStartCommand.createTable(JDBCStartCommand.java:232)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStartCommand.execute(JDBCStartCommand.java:93)
  | ...

Others have also seen this behavior...

"jae77" wrote : i know hsqldb has an issue where you can't enable the pk-constraint 
when creating the tables. 

3) So even if pk-constraint="true" fixed the MySQL column length mapping problem 
(which it doesnt seem to), it isn't portable across DBMS's.  

It would be good to get people's opinion here about how it is supposed to work; 
whether it's the HSQL or the MySQL mapping that's to blame; and where the fix needs to 
be made. 

But it is even more important to me to figure out how we can make a pure-CMP 
xdoclet-based template that works across all the DBMS's, transparently.

4) IMHO, this column length issue is not a PK-related problem...
 it seems the problem lies in the Nukes entity command (or the deeper JBoss o/r code) 
that generates the SQL phrase  for VARCHAR as 256 rather than 255: 

CREATE TABLE NUKE_FAQ_CATEGORIES (pn_name VARCHAR(256) 
  does not work for MySQL which has a 255 limit on VARCHARs --- 
  "Too big column length for column 'pn_name' (max = 255). Use BLOB instead"

Anybody have any insights/comments on this one?

-- Howard

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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Interceptor not intercepting

2004-05-02 Thread Bill Burke
Did you look at the metadata example that comes with JBoss AOP beta1?  You have to run 
 that generates another XML file.  Then you must have that XML file and your binding 
in the jboss.aop.path System property.

If you change  to have report="true" then you can get an XML dump of bindings and 
metadata attached.  You can get the same thing graphically through the JBoss 
management console if you're running within JBoss.

Get back to me if you have more problems.

Bill



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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head build.114 Build Fixed

2004-05-02 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/?log=log20040502155302Lbuild.114
BUILD COMPLETE - build.114Date of build: 05/02/2004 15:53:02Time to build: 12 minutes 52 secondsLast changed: 05/02/2004 15:34:42Last log entry: add support for 3.0 branch - may not be used much




    Unit Tests: (0)No Tests RunThis project doesn't have any tests 
 Modifications since last build: (5)addedkimptoctools/etc/cruisecontrol/scripts/build-3.0.confadd support for 3.0 branch - may not be used muchmodifiedkimptoctools/etc/cruisecontrol/scripts/build-jboss-head.xmladd support for 3.0 branch - may not be used muchmodifiedkimptoctools/etc/cruisecontrol/scripts/gen_configs.shadd support for 3.0 branch - may not be used muchmodifiedkimptoctools/etc/cruisecontrol/scripts/generate.confadd support for 3.0 branch - may not be used muchmodifiedkimptoctools/etc/cruisecontrol/scripts/build-head.conffix target name typo



[JBoss-dev] jboss-head Build Failed

2004-05-02 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/?log=log20040502151344
BUILD FAILEDAnt Error Message: file:/home/build/cruisecontrol/work/scripts/build-jboss-head.xml:55: exec returned: 1Date of build: 05/02/2004 15:13:44Time to build: 17 minutes 25 secondsLast changed: 05/02/2004 15:03:33Last log entry: fix target name typo




    Unit Tests: (0)No Tests RunThis project doesn't have any tests 
 Modifications since last build: (1)modifiedkimptoctools/etc/cruisecontrol/scripts/build-head.conffix target name typo



[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Interceptor not intercepting

2004-05-02 Thread mriou
Trying again to post the pointcut declaration :

   
  |
  |
  | 

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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Interceptor not intercepting

2004-05-02 Thread mriou
Hi,

I wrote an interceptor that should execute on all methods tagged with @@transactional 
in javadoc. Here is the declaration :

   
   
   

Compilation is ok. The class is ok and includes JBossAOP hooks (I decompiled it). I 
also included a breakpoint in AspectXmlLoader.deployInterceptor and my interceptor is 
deployed at startup. Still my interceptor is not executed before entering in the 
method.

What can I do to find the origin of the problem ? Does somebody has an idea ?

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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [EJB on JBoss] - Re: Receive time out from different subnet

2004-05-02 Thread idler
In addition, I can get the initialContext. But when it looks up the EJB jndi name, it 
reports such error.

Thank you.

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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [EJB on JBoss] - Receive time out from different subnet

2004-05-02 Thread idler
Hello,

I developed a stand-alone client to access jboss server from a machine located in 
different subnet from the jboss server. The client software can work well with the 
server when they are in same machine or same subnet.
But when they are in different subnet, the client will receive the following error:
javax.naming.CommunicationException: Receive timed out.  Root exception is 
java.net.SocketTimeoutException: Receive timed out

at java.net.PlainDatagramSocketImpl.receive(Native Method)

at java.net.DatagramSocket.receive(DatagramSocket.java:671)

at org.jnp.interfaces.NamingContext.discoverServer(NamingContext.java:1093)

at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1192)

at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:514)

at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:507)

at javax.naming.InitialContext.lookup(InitialContext.java:347)

at clientware.DataCore.getGeneralUtilsReference(DataCore.java:101)

at clientware.DataCore.login(DataCore.java:365)

at clientware.DataCore.access$000(DataCore.java:30)

at clientware.DataCore$1.run(DataCore.java:302)

at java.lang.Thread.run(Thread.java:536)


My properties are like this:
java.naming.provider.url=jnp://192.168.66.186:1099
java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces

I'm not sure this is a bug of jboss or an error of my configuration.

Does anybody can help me?

Thank you very much.


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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - Re: JBoss-IDE 1.2.3 release

2004-05-02 Thread gkatz
after the update can we delete the duplicate folders? (the old 1.2.2 folders) or 
should i have done this before upgrading?

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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development