[JBoss-dev] jboss-head Build Failed

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

[JBoss-dev] [Design of JBoss Eclipse IDE (dev)] - How does the Compile JSP functionality work? I'm not geting

2005-04-18 Thread marceloverdijk
How does this Compile JSP functionality work? I created a JSP file and made a mistake on purpose. When I right click the file and choose Compile JSP nothing happens... I would expect a error in the Problems view. Regards, Marcel View the original post : http://www.jboss.org/index.html?mod

[JBoss-dev] jboss-head-jdk-matrix Build Failed

2005-04-18 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head-jdk-matrix?log=log20050419004835 BUILD FAILEDAnt Error Message: /home/cruisecontrol/work/scripts/build-jboss-head.xml:63: The following error occurred while executing this line: /home/cruisecontrol/work/scripts/build-jb

[JBoss-dev] [Design of JMX on JBoss (JBoss/JMX)] - Re: Separated XMBean implementation

2005-04-18 Thread reverbel
Done: http://jira.jboss.com/jira/browse/JBJMX-92 Before trying to reproduce the problem, please do a CVS update in the transaction and iiop subdirs. I have just committed some changes in those subdirs. The NPE does not happen if I copy jboss-transaction.jar and jboss-iiop.jar (the modules o

[JBoss-dev] [Design the new POJO MicroContainer] - Re: initializing a GenericBeanFactory

2005-04-18 Thread [EMAIL PROTECTED]
Ok, everything is working now. Fixed one thing in AbstractValueMEtaData... in getChildren, actually look to see if value is a valueMetaData, then pass it back. Added test to PlainDependencyTestCase View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3874391#38743

[JBoss-dev] [Design the new POJO MicroContainer] - Re: initializing a GenericBeanFactory

2005-04-18 Thread [EMAIL PROTECTED]
I'll dig further, but another problem Seems that controller and such doesn't get set on the AbstractDependency in the Map sent into th | java.lang.NullPointerException | at org.jboss.beans.metadata.plugins.AbstractDependencyValueMetaData.getValue(AbstractDependencyValueMetaData.java:11

[JBoss-dev] jboss-3.2 build.330 Build Fixed

2005-04-18 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2?log=log20050418185341Lbuild.330 BUILD COMPLETE - build.330Date of build: 04/18/2005 18:53:41Time to build: 44 minutes 19 secondsLast changed: 04/18/2005 12:27:49Last log entry: Remove the references t

[JBoss-dev] [Design the new POJO MicroContainer] - Re: initializing a GenericBeanFactory

2005-04-18 Thread [EMAIL PROTECTED]
"[EMAIL PROTECTED]" wrote : | I should warn you that I haven't done anything except basic config tests (no injection/dependency tests) on the collections because I was waiting to see | what Alex could handle in the XML mapping. :-( The same is true for the GenericBeanFactory, except there I

[JBoss-dev] [Design the new POJO MicroContainer] - Re: initializing a GenericBeanFactory

2005-04-18 Thread [EMAIL PROTECTED]
It is a bug/typo: AbstractMapMetaData: I just committed the fix... | |public Iterator getChildren() |{ | ArrayList children = new ArrayList(map.keySet()); | - children.add(map.values()); | + children.addAll(map.values()); | return children.iterator

[JBoss-dev] [Design the new POJO MicroContainer] - initializing a GenericBeanFactory

2005-04-18 Thread [EMAIL PROTECTED]
Not sure how to do it. Tried this: | AbstractBeanMetaData metaData1 = new AbstractBeanMetaData("aspect", GenericBeanFactory.class.getName()); | ArrayList constructor1 = new ArrayList(); | constructor1.add(new AbstractParameterMetaData(KernelConfigurator.class.getName(),

[JBoss-dev] [Design of JBoss Portal] - Re: Certificate Authentication

2005-04-18 Thread [EMAIL PROTECTED]
If you're trying to use ssl auth, then you need to modify this file: jboss-portal-2.0\core\src\resources\portal-core-war\WEB-INF\web.xml Look for this block: | http://localhost:8080/webdav/files | | | Follow the above wiki link Julien posted for SSL Setup inside JB

[JBoss-dev] [Design of JBoss Portal] - Re: Certificate Authentication

2005-04-18 Thread [EMAIL PROTECTED]
I have not tried yet but I don't see any reason why it would not work. I think that first you must enable client cert in web.xml of portal-core.sar/portal-server.war/WEB-INF/web.xml the entry for this scheme is not yet here (we only put form and basic auth) so you must add it then to make clie

[JBoss-dev] [Design of JBoss Portal] - Certificate Authentication

2005-04-18 Thread patrickdalla
I wan't to configure portal authentication to be made via user certificate. Where I configure this? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3874362#3874362 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3874362

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Proxy implementation and advisors

2005-04-18 Thread [EMAIL PROTECTED]
Simple usecase tests for AOP/MC integration: http://jira.jboss.com/jira/browse/JBAOP-109 Assigned to me View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3874361#3874361 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=387

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Proxy implementation and advisors

2005-04-18 Thread [EMAIL PROTECTED]
"[EMAIL PROTECTED]" wrote : The hard part about the GenericBeanFactory is creating all the metadata. Also, how about all the metadata overrides? I think this should be a separate API with the ClassAdapter instead of the way we proposed it in Boston. Not only would this get rid of the need for

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Proxy implementation and advisors

2005-04-18 Thread [EMAIL PROTECTED]
anonymous wrote : | In your example the Class adaptor not only has to do the above, but also is it already woven. We do not want to do all this pre-processing at class load time or this "lightweight" container will take forever to boot up. The slow pre-processing is the same reason I did no

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Proxy implementation and advisors

2005-04-18 Thread [EMAIL PROTECTED]
The hard part about the GenericBeanFactory is creating all the metadata. Also, how about all the metadata overrides? I think this should be a separate API with the ClassAdapter instead of the way we proposed it in Boston. Not only would this get rid of the need for javassist to preprocess and

[JBoss-dev] jboss-head-testsuite Build Failed

2005-04-18 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head-testsuite?log=log20050417173123 BUILD FAILEDAnt Error Message: /home/cruisecontrol/work/scripts/build-jboss-head.xml:66: The following error occurred while executing this line: /home/cruisecontrol/work/scripts/build-jbo

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Proxy implementation and advisors

2005-04-18 Thread [EMAIL PROTECTED]
"[EMAIL PROTECTED]" wrote : | | My thinking was the class adapter would go through something like the following logic: | | Object implements Advised -> InstanceAdvisor | (!Object implements Advised) && canWeave -> Runtime Weaving | (!Object implements Advised) && canWeave == false -

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Proxy implementation and advisors

2005-04-18 Thread [EMAIL PROTECTED]
"[EMAIL PROTECTED]" wrote : | BTW, why don't you finish GenericBeanFactory instead of looking at this stuff? To more completely answer your question, I am at an impass waiting for: AOP integration JBossXB parsing and to a lesser extent classloading. So I've moved up the stack and I'm now look

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Proxy implementation and advisors

2005-04-18 Thread [EMAIL PROTECTED]
"[EMAIL PROTECTED]" wrote : | What I want to do inside registerMBean is use an AOP domain configuration | to wrap the MBean in advices, but regardless of the advisor implementation. | Well actually, going forward, this will more annotation driven rather than the | public class XXX imple

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Proxy implementation and advisors

2005-04-18 Thread [EMAIL PROTECTED]
"[EMAIL PROTECTED]" wrote : BTW, why don't you finish GenericBeanFactory instead of looking at this stuff? Because it is already done: http://jira.jboss.com/jira/browse/JBMICROCONT-21 http://cvs.sourceforge.net/viewcvs.py/jboss/microkernel/src/main/org/jboss/beans/metadata/plugins/factory/Generic

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Proxy implementation and advisors

2005-04-18 Thread [EMAIL PROTECTED]
"[EMAIL PROTECTED]" wrote : Look at the EJB3 code for examples, but it uses something called a ClassContainer. (I know the names are confusing). | | My thinking was a proxy (java.lang.reflect or a javassist one) that creates an invocation and delegates to this ClassContainer.Eventually, t

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Proxy implementation and advisors

2005-04-18 Thread [EMAIL PROTECTED]
Look at the EJB3 code for examples, but it uses something called a ClassContainer. (I know the names are confusing). My thinking was a proxy (java.lang.reflect or a javassist one) that creates an invocation and delegates to this ClassContainer.Eventually, the InstanceAdvisor will be replaced

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Proxy implementation and advisors

2005-04-18 Thread [EMAIL PROTECTED]
We discussed this in Boston, but I want to make sure you agree with my summary. http://jira.jboss.com/jira/browse/JBAOP-82 Do you plan to support proxies on non-weaved code? I had a look at the current proxy implementation, the EJB3 and new JMS usage (which all do different but similar things). B

[JBoss-dev] [Design of JMX on JBoss (JBoss/JMX)] - Re: Separated XMBean implementation

2005-04-18 Thread [EMAIL PROTECTED]
There should be no change by the jmx -> mbeans. All I did was move code. Can you tell me how to reproduce the problem (report it on JIRA). View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3874338#3874338 Reply to the post : http://www.jboss.org/index.html?modul

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Integration of aop/aspects into JBAS and other projects

2005-04-18 Thread [EMAIL PROTECTED]
The integration point is the annotation (which also belongs in JBossSX) and that needs to be consistent with the features provided by each version. | @SecurityDomain("other") | @NewSecurityFeatureNotAvailableInJBoss32 // Shouldn't compile under 3.2.x | public void doSomething() | { | }

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Integration of aop/aspects into JBAS and other projects

2005-04-18 Thread [EMAIL PROTECTED]
"[EMAIL PROTECTED]" wrote : It has actually been much easier to package it as this "monolithic" aspect library over the past few years. Ok, one contra example is code to integrate the deployer/classloader across versions: http://cvs.sourceforge.net/viewcvs.py/jboss/jboss-aspects/src/main/org/jbo

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Integration of aop/aspects into JBAS and other projects

2005-04-18 Thread [EMAIL PROTECTED]
A standalone release of aop which includes a security aspect depending on the implementation details of jboss-4.0.x makes no sense. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3874332#3874332 Reply to the post : http://www.jboss.org/index.html?module=bb&o

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Integration of aop/aspects into JBAS and other projects

2005-04-18 Thread [EMAIL PROTECTED]
It has actually been much easier to package it as this "monolithic" aspect library over the past few years. If there is a bug or feature addition in any of the aspects in the library, I can easily patch any version of JBoss. It would actually be more "monolithic" if the code was part of Branch

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Integration of aop/aspects into JBAS and other projects

2005-04-18 Thread [EMAIL PROTECTED]
I believe the aspects belong in the module that implements them. This is the only approach that will allow the aspect to evolve across versions rather than trying to maintain a monolithic single integration package jboss-aspects. The aspect requires the rest of the implementation anyway, e.g. the

[JBoss-dev] [Design of JMX on JBoss (JBoss/JMX)] - Re: jboss-jmx cann't be compiled

2005-04-18 Thread [EMAIL PROTECTED]
You mean the jmx module stand-alone? It compiles fine as part of the jboss checkout. AFAIK it's been a couple of years since the last stand-alone realease (jboss-mx v1.1.2) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3874310#3874310 Reply to the post : ht

[JBoss-dev] [Design of JBoss Portal] - Re: Java Content Repository (JCR) support?

2005-04-18 Thread mholzner
see http://www.jboss.org/index.html?module=bb&op=viewtopic&t=62557 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3874306#3874306 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3874306 -

[JBoss-dev] [Design of JBoss Portal] - Re: javax.servlet.ServletException: no main

2005-04-18 Thread sovattha
Had the same problem with the example file downloaded on the site. Added a / in the helloworld-pages.xml |default | | helloworld | | HelloWorldPortletWindow | /helloworld.HelloWorldPortlet.HelloWorldPortletInstance | true |

[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: [testing with AOP]

2005-04-18 Thread ifrit
Is it possible to apply a point cut to an entire branch of packages, like for example pointcut="..." and within(java.*) for all class in package java and the subpackages aso. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3874280#3874280 Reply to the post :

[JBoss-dev] [Design of JMX on JBoss (JBoss/JMX)] - Re: jboss-jmx cann't be compiled

2005-04-18 Thread miloveme
In addition, build.xml is wrong. library.classpath property have no sun.jmx.classpath property. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3874277#3874277 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3874277

[JBoss-dev] [Design of JMX on JBoss (JBoss/JMX)] - jboss-jmx cann't be compiled

2005-04-18 Thread miloveme
I cann't compile jboss-jmx module in tag-name jboss-4.0. In my opinion, there is no some class needing when compile. for example, org.jboss.mx.server.ServerConstants View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3874276#3874276 Reply to the post : http://www

[JBoss-dev] [Design of JBoss Media (EMB)] - Is this party still under development?

2005-04-18 Thread Czernay
I just stumbled over that EMB JSR (http://jcp.org/en/jsr/detail?id=086) and also found /docs/examples/media/jboss-media-entity-ejb.jar that looks like an implementation. I just can't find any more docs or hints on it's fitness. Is this still worked on? Can it be used? Does it work? Thanks for a