[JBoss-dev] [Design of JBoss Build System] - Partial Build of jboss-head from repository

2005-04-26 Thread [EMAIL PROTECTED]
You can now partially build jboss-head from the repository with the new build 
system.  Here are the steps at this point:

You probably want this in it's own directory:
mkdir jboss-dir
  | cd jboss-dir
Then, just check out the toplevel build and the tools module:
cvs co jbossas
  | cvs co tools
You will need to set your cvs info in jbossas/local.properties:
cvs.prefix=:ext:rcampbell
Note, you will need ssh-agent setup to run cvs without entering a password for 
now. 
Now you are ready to synchronize and build:

  | ant sychronize
  | ant build
  | output/jboss-5.0.0alpha/bin/run.sh -c all
  | 
The synchronize target will checkout the source components from cvs and 
download thirdparty components from the repository.

There are a few caveats.  I have only completed the modules marked as complete 
under http://jira.jboss.com/jira/browse/JBBUILD-1, so this means things like 
tomcat are not included yet.  Also, I just noticed the execute bit is not being 
set for run.sh.  Furthermore, while the server starts up without error, I 
haven't done any extensive testing on it.

Please ask any questions here and report all problems to 
http://jira.jboss.com/jira/browse/JBBUILD

I will have a release with documentation tomorrow.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875361#3875361

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875361


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss's Web Services Implementation] - Re: Problems with ThreadLocal Document use in SAAJ

2005-04-26 Thread [EMAIL PROTECTED]
anonymous wrote : 
  | anonymous wrote : 
  |   | The problem with this is that I can't, of course, attach an element to 
the threadlocal document because there could be many active SOAPMessage objects 
within the same thread. 
  |   | 
  | 
  | Why is that? Can you show me a valid use case where there are multiple 
SOAPMessages per Thread?

Sure, what about an SAAJ client application that communicates with 2 
webservices and then analyzes the results afterwords.

anonymous wrote :  The current WS4EE implemenation in Branch_4_0 works with the 
same ThreadLocal construct.

Correct me if I am wrong, but it looks like the current implementation doesn't 
use a threadlocal implementation, but instead just spawns multiple document 
instances. It looks like the Axis implementation attempts to solve the problem 
I mentioned by maintaining a back reference to the SOAPPart. By glancing 
through the code it does look like 4.0 could suffer from the problem of 
assigning one document element to another document.

The design method I mention could still work by importing nodes if they are 
from a different document (this is what the RI appears to do).

-Jason



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875278#3875278

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875278


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss's Web Services Implementation] - Re: Problems with ThreadLocal Document use in SAAJ

2005-04-26 Thread [EMAIL PROTECTED]
So, to summarize this approach more clearly:

  | * Continue using thread local document behind the scenes to ensure that all 
nodes are allocated from the same document instance.
  | * Make SOAPPartImpl.getDocumentElement() return its nested  SOAPEvelopeImpl.
  | * Maintain a reference to the associated SOAPPartImpl in every child 
NodeImpl.
  | * Make NodeImpl.getOwnerDocument() return the SOAPPartImpl reference
  | * Create an implementation of org.w3c.Document with create methods that 
return SAAJ elements and nodes instead of DOM elements/nodes.
  | * Delegate to the above implementation from SOAPPartImpl.
  | * Change the ThreadLocal reference to reference this new Document 
implementation
  | 
This should allow for efficient DOM access (read and write) on the SAAJ tree.

-Jason


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875355#3875355

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875355


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: JBoss Portal 2.0 Beta 1

2005-04-25 Thread [EMAIL PROTECTED]
thanks

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875240#3875240

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875240


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss's Web Services Implementation] - Re: Problems with ThreadLocal Document use in SAAJ

2005-04-25 Thread [EMAIL PROTECTED]
The reason why there is a ThreadLocal association for the Document is that 
there are many many invocation points where it is necessary to create a DOM 
Element in order to add it to the current Document. As you know, you can't 
associate an Element with Document A that was created for Document B.


  | org.jboss.ws.soap ( in D:\projects\jboss-head\webservice\src\main ) ( 
11 occurrences in 4 files )
  | SOAPElementImpl.java ( 3 occurrences )
  | (48, 23) super(DOM2Utils.createElement(localPart));
  | (55, 23) super(DOM2Utils.createElement(localPart, prefix, 
namespace));
  | (62, 23) super(DOM2Utils.createElement(name));
  | SOAPFactoryImpl.java ( 3 occurrences )
  | (21, 23) public SOAPElement createElement(Name name) throws 
SOAPException
  | (26, 23) public SOAPElement createElement(String localName) 
throws SOAPException
  | (31, 23) public SOAPElement createElement(String localName, 
String prefix, String uri) throws SOAPException
  | SOAPFaultImpl.java ( 3 occurrences )
  | (49, 43) addChildElement(faultcode = 
factory.createElement(faultcode));
  | (50, 45) addChildElement(faultstring = 
factory.createElement(faultstring));
  | (118, 47) addChildElement(faultactor = 
factory.createElement(faultactor));
  | SOAPPartImpl.java ( 2 occurrences )
  | (146, 19) public Element createElement(String tagName) throws 
DOMException
  | (181, 19) public Element createElementNS(String namespaceURI, 
String qualifiedName) throws DOMException
  | 

Currently the Thread is the owner of that Document because I could not identify 
another entity that is reachable from all createElement invocation points. The 
SOAPPart is not reachable from all these invocation points.

You say

anonymous wrote : 
  | The problem with this is that I can't, of course, attach an element to the 
threadlocal document because there could be many active SOAPMessage objects 
within the same thread. 
  | 

Why is that? Can you show me a valid use case where there are multiple 
SOAPMessages per Thread? The current WS4EE implemenation in Branch_4_0 works 
with the same ThreadLocal construct.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875242#3875242

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875242


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: getting User-Agent data from inside included jsp

2005-04-25 Thread [EMAIL PROTECTED]
it is because we don't set that header in the propery values. create a feature 
request in jira for this please

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875245#3875245

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875245


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Profiler] - Re: Start JbossProfiler

2005-04-25 Thread [EMAIL PROTECTED]
If you are using it inside JBoss, install jboss-profiler-noAOP.sar and start, 
pause and stop the profiler using the JMX console, at the NativeProfiler MBean.

As for this error, this is a typo. You need to add profilerconsole.jar to the 
Classpath if you want to use the SocketConsole.

Here is the code that is looking for the class. (I will fix the message error)


 jclass 
checkClass=jni_interface-FindClass(org/jboss/profiler/threadcheck/StartupProfilerCheck);
 if (checkClass==NULL) {
fprintf (stderr,\n***\nFatalError: Cannot find 
com.jboss.profiler.threadcheck.StartupProfillerCheck.initCheck(String,int)\n);
fprintf (stderr,Check you bootclasspath for 
profilerConsole.jar\n);
 return;
 }


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875276#3875276

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875276


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss's Web Services Implementation] - Re: Problems with ThreadLocal Document use in SAAJ

2005-04-25 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote : anonymous wrote : 
  |   | -snip-
  |   | Correct me if I am wrong, but it looks like the current implementation 
doesn't use a threadlocal implementation, but instead just spawns multiple 
document instances. It looks like the Axis implementation attempts to solve the 
problem I mentioned by maintaining a back reference to the SOAPPart. By 
glancing through the code it does look like 4.0 could suffer from the problem 
of assigning one document element to another document.
  |   | 
  |   | The design method I mention could still work by importing nodes if they 
are from a different document (this is what the RI appears to do).
  |   | 
  | 
  | Alternatively we could do the same the thing that the axis implementation 
does, and hold a reference to the SOAPPart in every Node, and then when 
getOwnerDocument is called we return the SOAPPart. The SOAPPart implementation 
would then always return the envelope as the owner. Then the fact that all 
nodes are allocated via a threadlocal document doesn't matter.  It is probably 
better implemented this way anyways because returning the actual DOM document 
can be problematic since each the NodeImpl is not actually stored in the 
document (its aggregate org.w3c.Node) is, which could lead to confusion.
  | 
  | What do you think?
  | 
  | -Jason 
  | 
  | 
  | 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875298#3875298

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875298


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Mail Services] - Re: M4 planning

2005-04-25 Thread [EMAIL PROTECTED]
Humm, I defintely do not want to do NIO for M4 and do not want to require JDK5 
for SSL until its more on the back burner.  I prefer refactoring the entire 
framework not to require a 1:1 correllation between threads to connections as 
the main stream protocol.  However, I'm thinking you're right that might be 
best done in parallel  (if you look I have an NIOServer in CVS already which 
started that) just to avoid a labor constraint vs a period with a non-working 
server or some kind of massive long running CVS transaction...The new non 
1:1 correlation stuff ought to work for both non-blocking and blocking IO and 
eventually the mainstream stuff should be deprecated for it.  I suggest looking 
at the work being done on Tomcat 5.5's HTTP11 and new AJP connector stuff for a 
guide on how to pull that off.  I think they manage to do that W/O NIO!!!  
Thoughts?

-Andy

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875313#3875313

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875313


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Messages being missed out in the new Implementation of j

2005-04-25 Thread [EMAIL PROTECTED]
Possible.

How can I replicate the test?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875344#3875344

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875344


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBossCache] - Re: TreeCache Structure

2005-04-25 Thread [EMAIL PROTECTED]
Lakshmi,

This post does not relate to design of JBossCache. So I will move it to user 
forum shortly.

To answer some of you questions:

1. Tree cache structure has implication on concurrency and locking. Currently 
the isolation level/locking is applied on per node basis. So if you have finer 
node, the concurrency can be better (but more cache overhead).

2. To limit the memory, you can configure different region of the data such 
that /X and /X/Y can be different regions, for example.

-Ben


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875353#3875353

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875353


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss/Tomcat Integration] - Re: session persistence config

2005-04-24 Thread [EMAIL PROTECTED]
Did anyone try this in JBoss 4.0.0?
I get the following exception on shutdown and
I would love to turn off the serialization and the eventual errors on startup.

06:31:21,970 INFO  [session.ManagerBase] Cannot serialize session attribute X 
for session 93980FC2905F149809B62B7B1D9E548A

Thanks,
Ramesh

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875199#3875199

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875199


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design the new POJO MicroContainer] - Re: AOP/Metadata integration config

2005-04-24 Thread [EMAIL PROTECTED]
Ok, i'm almost done with this.  I need to make a few changes though.

ClassAdapter.getDependencies() and JoinPointFactory.getConstructorJoinpoint to 
take a Map (metadata) so that they can receive AOP based metadata.

I've also had to modify BeanMetaData to add the additional metadata map.

I'm really starting to think that the ClassAdapter API should move to the 
kernel.  I'm finding that I think the ClassAdapter will need access to the 
Kernel, or be able to be configured as any other bean in the system so that it 
can be initialized with various AOP policies/config.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875209#3875209

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875209


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Portal ClassLoader isolation

2005-04-24 Thread [EMAIL PROTECTED]
you can isolate your application class repository, look at 
http://www.jboss.org/wiki/Wiki.jsp?page=ClassLoadingConfiguration

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875212#3875212

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875212


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss's Web Services Implementation] - Problems with ThreadLocal Document use in SAAJ

2005-04-24 Thread [EMAIL PROTECTED]
I noticed a problem with document handling in our current SAAJ design.  I had a 
need to locate the root element of the SAAJ tree via the DOM API. I started to 
implement getDocumentElement() on SOAPPartImpl, when I noticed that currently 
all nodes are allocated from a single threadlocal document (I assume this was 
done for performance reasons?).  The problem with this is that I can't, of 
course, attach an element to the threadlocal document because there could be 
many active SOAPMessage objects within the same thread. 

If possible, I would like to change the design to a one-to-one relationship 
between a SOAPPart and a Document. This would allow the following operations to 
work correctly:

part.getDocumentElement() 

and

element.getOwnerDocument().getDocumentElement()

Can anyone think of a problem with switching to this approach?

-Jason

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875221#3875221

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875221


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss's Web Services Implementation] - Re: Problems with ThreadLocal Document use in SAAJ

2005-04-24 Thread [EMAIL PROTECTED]
If there are multiple SOAP messages possible in a single thread, the use of 
threadlocal to hold the root may not be suitable, because SAAJ is all about 
working on a SOAP message top to bottom.  I will be interested to know Thomas's 
thoughts on this issue.

I am thinking of scenarios where there can be multiple SOAP messages per thread 
at any instance of time.  Jason, refresh me on this!   On the client side, the 
client may create multiple SOAP messages in a single thread of execution. Then 
it will be difficult for the client to change the SOAP messages. Correct?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875223#3875223

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875223


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of the JBoss EJB Container] - Re: Inter-server ejb-refs?

2005-04-24 Thread [EMAIL PROTECTED]
Yes.


  | ejb-ref
  |ejb-ref-namesome/local/Name/ejb-ref-name
  |jndi-namejnp://some.host.name:1099/remote/BeanName/jndi-name
  | /ejb-ref
  | 


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875224#3875224

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875224


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: CacheInterceptor not intercepting

2005-04-22 Thread [EMAIL PROTECTED]
Can you open a Jira issue in JBossCache and attach the sample file so I can 
take a look?

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874975#3874975

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874975


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Remoting, Unified Invokers] - Re: Debug messages in JBoss remoting in a clustered system

2005-04-22 Thread [EMAIL PROTECTED]
These messages are based on the jboss remoting services running.  They will try 
to perform autodiscovery.  This is what you are seeing in the logs.  They are 
not anything to be worried about as no core servies are using jboss remoting in 
4.x versions, so can remove the remoting services.  

These services are within the remoting-service.xml within the deploy directory. 
 If you think you have removed these, look for the string 'AsyncServerInvoker' 
in your jboss directory and find where it is being defined and remote it and 
the other remoting services.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875050#3875050

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875050


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: JBoss Portal 2.0 Beta 1

2005-04-22 Thread [EMAIL PROTECTED]
OS?
AS?
DB?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875073#3875073

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875073


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JTA and JTS on JBoss] - Re: Where should UserTransaction live?

2005-04-22 Thread [EMAIL PROTECTED]
(3a) put the new classes in the transaction module and move the 
ServerVMClientUserTransaction to the transaction module.

No code should broken by this as all that is happening is that the 
ServerVMClientUserTransaction will live in a different jar.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875123#3875123

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875123


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: JBoss Portal + JBoss AS 4.0.1 sp1 bundle

2005-04-22 Thread [EMAIL PROTECTED]
kev, yes. That was me. The first version I put out was clean. I had to make a 
midnight change to it and forgot to cleanse the following version. Sorry about 
that.

I'll get my act together with the bundled versions for RC. ;-)

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875074#3875074

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875074


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Eclipse IDE (dev)] - example of pde build

2005-04-22 Thread [EMAIL PROTECTED]
For the build fanatics here (yes - you marshall ,)

http://opensource.atlassian.com/projects/hibernate/browse/HBX-239
now contains a build example for hibernate tools - thought you might like it as 
an example.

Check the comments too - they include some golden advice regarding weird bugs 
in eclipse's build system.



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875094#3875094

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875094


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - CVS moved

2005-04-21 Thread [EMAIL PROTECTED]
We have moved our repository from sourceforge to our own hosting.
The change is the CVSROOT which is now :

:ext:[EMAIL PROTECTED]:/cvsroot/jboss for developers
:pserver:[EMAIL PROTECTED]:/cvsroot/jboss for anonymous that want to checkout 
the project


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874810#3874810

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874810


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Error Injections

2005-04-21 Thread [EMAIL PROTECTED]
what do you mean by precompiled class.  Also, can you try outside of Eclipse? 
 I personally do not use eclipse, so you'll have to get Kabir or Raymond to 
test it out.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874833#3874833

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874833


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: JavaServerFaces Portlet integration working with JBoss P

2005-04-21 Thread [EMAIL PROTECTED]
kevs3d wrote : I've recently upgraded to the jboss4.0.1sp1+portal bundle and 
it's working great. We have deployed our JSF portal app (using the SunRI) and 
the next step would be to move it to the MyFaces JSF impl. Can I ask if there 
is any more progress on the jboss portal+MyFaces integration?
  | 

Tomorrow (Friday), I will be working with Stan (our MyFaces-Portlet committer) 
to get this finished up. I will post an announcement in the forums here once 
done. I can email you directly, if you post your email here. 

I believe what he worked on is a simple Quiz-Portlet. We had to make a small 
change to the Portal on how it handles requests from MyFaces a few weeks ago. 
Once we've confirmed that his portlet works, we will post the example portlet 
in the wiki download-wars area as well, so you have an example to go by.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874842#3874842

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874842


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss's Web Services Implementation] - Re: XML Schema capabilities

2005-04-21 Thread [EMAIL PROTECTED]
It seems that parsing a schema to any object model would require creating 
instances of that object model and populate the state of those instances. This 
will probably be done through API methods on those object instances.

Can you show us examples of the actual issues that you are having? Why can't 
you create a valid schema object tree?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874854#3874854

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874854


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss IIOP on JBoss] - Re: JBoss + Janeva = 'CORBA.BAD_PARAM'

2005-04-21 Thread [EMAIL PROTECTED]
 ??  ??? ; :-)

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874853#3874853

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874853


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Remoting, Unified Invokers] - Re: Debug messages in JBoss remoting in a clustered system

2005-04-21 Thread [EMAIL PROTECTED]
This is due to the remoting services within remoting-service.xml.  Not sure 
what your question is, but can just remove this file if not using remoting 
explicitly within your application code.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874860#3874860

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874860


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Error Injections

2005-04-21 Thread [EMAIL PROTECTED]
seems like a JBoss AOP Eclipse integration problem then?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874869#3874869

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874869


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design the new POJO MicroContainer] - AOP/Metadata integration config

2005-04-21 Thread [EMAIL PROTECTED]
I was just thinking about metadata and per bean AOP configuration.  I was 
thinking of a generic ability to define metadata on a bean.  It would be a 
special XML element and BeanMetaData would have an additional property called 
Metadata.  Metadata would be a map that you defined in the XML.  This would 
allow AOP to receive any metadata it needed in any format it wanted.

for example:


  | bean name=foo class=org.jboss.Test
  |metadata
  |   map
  |  entry
  |   keyAOP/key
  |   value
  |list
  |   bean class=org.jboss.aop.advice.AdviceBinding
  |property 
name=pointcutexecution(...)/property
  |property name=advices
  |  list
  | bean 
class=org.jboss.aop.advice.Adviceetc.../bean
  | /list
  |/property
  |   /bean
  |   bean 
class=org.jboss.aop.annotation.AnnotationOverride/
  |  
  |   /value
  |metadata
  | /bean
  | 

So, the ClassAdapter could query the BeanMetaData for AOP metadata and apply 
things like annotation overrides and such.  This allows us to reuse the 
annotation override facility built into JBoss AOP yet gives us flexibility to 
provide any metadata for any subsystem that plugs into the ClassAdapter.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874879#3874879

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874879


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design the new POJO MicroContainer] - rename ClassAdapter to AspectAdapter?

2005-04-21 Thread [EMAIL PROTECTED]
Is the ClassAdapter doing anything but integrating with AOP?  If so, let's just 
call it AspectAdapter.  Then the real purpose of it is pretty clear.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874881#3874881

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874881


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design the new POJO MicroContainer] - Re: rename ClassAdapter to AspectAdapter?

2005-04-21 Thread [EMAIL PROTECTED]
I refer the honourable gentlement I gave some moments ago:
http://www.mail-archive.com/cgi-bin/htsearch?method=andformat=shortconfig=jboss-development_lists_sourceforge_netrestrict=exclude=words=humpty

i.e. Worry about what it does, rather than what it is called.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874883#3874883

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874883


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design the new POJO MicroContainer] - Re: rename ClassAdapter to AspectAdapter?

2005-04-21 Thread [EMAIL PROTECTED]
Call it ClassAdapter2 to adopt the wonderfully clear convention used with class 
loading implementations.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874885#3874885

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874885


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design the new POJO MicroContainer] - Re: rename ClassAdapter to AspectAdapter?

2005-04-21 Thread [EMAIL PROTECTED]
A good name will help you understand what it does, without having to look deep 
into it. A bad name will just confuse you.

Humpty dumpty will haunt me :)

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874898#3874898

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874898


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JMX on JBoss (JBoss/JMX)] - Dependencies on start/stop events (Barrier Service)

2005-04-21 Thread [EMAIL PROTECTED]
There have been a few people that want to depend on the tomcat startup, eg:

http://www.jboss.com/index.html?module=bbop=viewtopict=63006
http://www.jboss.com/index.html?module=bbop=viewtopict=61423

Can we make the tomcat connector emit start/stop notification and create a 
barrier service controlling a dependent mbean, so that people can easily depend 
on that?

If I remember Scott has already drafted that somewhere?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874902#3874902

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874902


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Remoting, Unified Invokers] - Re: Running JBoss Remoting on other AS.

2005-04-20 Thread [EMAIL PROTECTED]
Yes.  Just need jboss-remoting.jar and other jars remoting depends on.  If get 
the standalone release at 
http://sourceforge.net/project/showfiles.php?group_id=22866package_id=135729, 
can just use the libs contained within.

The samples in the distro run standalone.  

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874570#3874570

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874570


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Remoting, Unified Invokers] - Re: Callback for transport progress notification

2005-04-20 Thread [EMAIL PROTECTED]
There is no way to do this currently with the remoting implementation.  To 
achieve this, would need to change the marshaller implementation to provide 
this feedback, as this is where the data is actually being sent over the wire.  

Would you mind submitting a feature request to Jira, our issue tracking system 
(http://jira.jboss.com), under the JBossRemoting project?  We'll put it on out 
road map for a future release (but may be a while... unless you might have a 
few spare cycles) :)

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874571#3874571

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874571


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JMX on JBoss (JBoss/JMX)] - Re: JIRA and JMX

2005-04-20 Thread [EMAIL PROTECTED]
Are we .. discontinuing jbossmx??

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874581#3874581

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874581


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-04-20 Thread [EMAIL PROTECTED]
This is a sourceforge issue, usually a transient one. Sourceforge has been very 
slow lately...

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874588#3874588

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874588


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Undeploying aop is realllly slow

2005-04-20 Thread [EMAIL PROTECTED]
Hmmm, i thought i fixed a lot of this.  It used to be really slow because 
undeploy recalculated all bindings with EVERY XML element, now it should only 
do it for the whole file.  You can log a bug, or you can look into it yourself 
as I probably won't get to it for awhile.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874622#3874622

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874622


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Error Injections

2005-04-20 Thread [EMAIL PROTECTED]
can you be more specific?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874624#3874624

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874624


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Deployers on JBoss (Deployers/JBoss)] - Re: NOVICE: plese help to deploy simple app

2005-04-20 Thread [EMAIL PROTECTED]
You are in the wrong (jboss developers) forum.

Please try one of the JBoss USER forums:

http://www.jboss.com/index.html?module=bbop=viewforumf=61
http://www.jboss.com/index.html?module=bbop=viewforumf=47

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874649#3874649

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874649


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss IIOP on JBoss] - Re: IIOP.NET under SSL with SSL accelerator card

2005-04-20 Thread [EMAIL PROTECTED]
Maybe the IORInterceptor is the cleanest solution after all :) It needs some 
more careful examination since the various pieces are already there and it 
could just be a matter of configuration, I just haven't looked at it in much 
detail...

Franscisco may know how to setup this?

A little dirty hack would be to just subclass DefaultServerSocketFactory and 
privide dummy implementions for the 2-3 extra SSLServerSocketFactory methods to 
pass the initial construction step. Then configure for ssl as usual...

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874660#3874660

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874660


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JMX on JBoss (JBoss/JMX)] - Re: JIRA and JMX

2005-04-20 Thread [EMAIL PROTECTED]
No, just putting it on the same release cycle as JBossAS since it is developed
as part of it.

Maintaining JIRA issues in two different places makes no sense and just 
confuses people.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874669#3874669

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874669


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Error Injections

2005-04-20 Thread [EMAIL PROTECTED]
The error thrown when memory is exhausted is constructed at jvm boot time,
otherwise it might not have enough memory to even construct that Throwable
object on the heap.

So there is no way to intercept the new OutOfMemoryError() when it is actually
thrown, because it is not constructed at that time.

Assuming that memory is already exhausted (and it is some other problem like
thread construction), you wouldn't be able to do anything anyway.
Trying to handle any of the JVM internal errors is a crapshoot. The JVM itself
has already given up and failed the request.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874670#3874670

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874670


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: Error Injections

2005-04-20 Thread [EMAIL PROTECTED]
I'm not sure that's what he wants to do.  He'll have to clarify what he means 
by Error Injections.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874676#3874676

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874676


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-04-20 Thread [EMAIL PROTECTED]
Don't use JRockit.  But, I do believe that JRockit JVM has hooks for 
transformers.  Let me know if you investigate this.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874700#3874700

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874700


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-04-20 Thread [EMAIL PROTECTED]
for me it seems like a bug to have the cert and not the principal.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874716#3874716

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874716


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-04-20 Thread [EMAIL PROTECTED]
Read about the BaseCertLoginModule:
http://www.jboss.org/wiki/Wiki.jsp?page=BaseCertLoginModule


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874731#3874731

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874731


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss's Web Services Implementation] - Re: XML Schema capabilities

2005-04-20 Thread [EMAIL PROTECTED]
I just found out that the Xerces-2 Implementation is not useful for general use 
and is subject to change soon.
http://issues.apache.org/jira/browse/XERCESJ-1067

The Xerces Schema API is not going to change.

The Xerces-2 Implementation is good for parsing schema files and building an 
object model defined by the Xerces Schema API.  But if a user wants to use the 
Xerces-2 implementation to build a schema file (lets say from a Java 
Interface/Class), it is buggy and inflexible.

So I am at a crossroad.  For the WSDL to Java subsystem where schema parsing is 
required, I am going to use the Xerces-2 implementation. In this case, I am 
only interested in the Xerces Schema API.

For the Java to WSDL subsystem, where I need to generate the schema files, I 
will implement the interfaces defined by the Xerces Schema API. This provides 
me more control in generating the schema files.

Talked to Jason about this and he concurred that this approach seems reasonable.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874751#3874751

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874751


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Eclipse IDE (dev)] - Notes about current development

2005-04-19 Thread [EMAIL PROTECTED]

Moving development discussion to the forums
---
The team have been doing many talks via private emails, IM chat and what not ;) 
We are doing our best to move as much as possible of this
discussion and at least conclusions/indications in the public dev forum.
So, be ready to hear some more noise and you are as always welcome to 
contribute ;)

The new build system is Almost Here(TM)
---
Marshal had some extra time this weekend to start playing with the automated 
PDE build this weekend, and he spent all 
day today working on some rather fun issues. (basically eclipse 3.1M5a was a 
bad release). At any rate, once he moved to eclipse 3.1M6, his problems were 
clearing up. I expect to have a fully working automatable build working by 
sometime tomorrow.
  
CVS Restructure is a go
---
The new cvs restructure was committed on Friday. The new layout is very sane, 
so we are hoping it will last for the length of the project. (its located at 
/cvsroot/jboss/jbosside now)
 
New Update Site is live
---
This includes both stable and development branches of development. We've 
also made space for integration and nightly builds once our automated build 
process is in gear. 
http://download.jboss.org/jbosside/updates/[stable|development|integration|nightly]
 
JBossIDE extensions are no longer dependent on the crappy XML editor
---
Both Hibernate Tools and jBPM Designer are now free from the shackles of 
JBossIDE's xml editor. Marshall will hopefully be freeing JBossIDE core, and 
bundling WTP's XML/HTML/JSP editors later this week.
 
Hibernate Tools
---
Work is being done to allow more things to be customized by the user when doing 
reverse engineering. Goal is to have a functionallity that is usable both from 
a ui and a ant based build.
 
jBPM Designer
---
Koen has been doing work on the help plugin, and automating the build of his 
docbook documentation into the help plugin. Similar help system
have been done for Hibernate tools. We will try and do the same for JBossIDE 
and our other extensions. Koen has also prepared the jBPM Designer for the 
upcoming WTP 1.0M4 release, which will be 
needed for our upcoming release late next week =).
 
AOP Developer
---
Rob is busy working on adding support for non-implemented AOP tags in the AOP 
descriptor. This should allow user 
imported jboss-aop.xml descriptors to work without throwing up. He has also 
completed his new pointcut wizard 
that allows for complete fine grained editing of an AOP pointcut.
 
JSR88 Plugin
---
Rob will start work on the JSR88 plugin this week.. hopefully we will have 
something to release by 1.5 Milestone 3.
 
JBossIDE 1.5M2 Release delayed by a week (to April 29th)
---
The team unanimously decided to delay the release of JBossIDE 1.5M2 by a week 
to wait for Webtools 1.0M4 and to give us more time to work out the new build 
system. We hope to have an integration build out by the end of the week for 
Max, Koen, and Rob to sync up with. The plan is to have our XML editors ripped 
out completely, and the 
WTP pre-reqs put into the build.. we'll see how easy that turns out though.
 
And as always...

Remember that we love contributors! 


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874406#3874406

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874406


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss IIOP on JBoss] - Re: IIOP.NET under SSL with SSL accelerator card

2005-04-19 Thread [EMAIL PROTECTED]
I don't know exactly how ssl accelerators works, but would the exported IOR 
need to contain the host/ssl port of the accelerator?

Another idea to try may be to configure normally the server for ssl, but use a 
plain (non-ssl) connection factory, maybe?



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874433#3874433

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874433


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss IIOP on JBoss] - Re: IIOP.NET under SSL with SSL accelerator card

2005-04-19 Thread [EMAIL PROTECTED]
I just checked and it probably won't work because SSLServerSocketFactory is a 
subinterface of ServerSocketFactory, so it'll probably won't accept a value of 
org.jacorb.orb.factory.DefaultServerSocketFactory

(try that anyways :)

All the relevant entries are in conf/jacorb.properties (in the 'all' 
configuration).

You can try also to see if that does the trick

jacorb.security.support_ssl=on
jacorb.security.ssl_components_added_by_ior_interceptor=off

I guess you want to set those 2 as well, to the address/port of the accelerator 
card:
jacorb.ior_proxy_host=1.2.3.4
jacorb.ior_proxy_port=4711


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874475#3874475

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874475


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-04-19 Thread [EMAIL PROTECTED]
I've started this - commit message:


  | Some kernel/aspect tests for annotations.
  | 
  | To run: compile for Java5 then ant -f build-test50.xml run-tests
  | 
  | TODO: Fix the dependency aspect so it works, I'm only doing
  | this to simulate field field injection which isn't *yet* in the BeanInfo
  | model.
  | TODO: Didn't realise until too late that there is already is a test50 source
  | directory and associated build (needs consolidating)
  | 

I'll fix the dependency aspect later today, I've got to look at a bug that is
holding up Francisco.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874492#3874492

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874492


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-04-19 Thread [EMAIL PROTECTED]
As far as I can see, the default does the following in JBoss/Tomcat integration.

Your client comes in, he has a valid certification. In the certificate is 
enclosed the client DN (distinguish name). The default authentication mechanism 
maps this DN to the request.getRemoteUser().

So now during a request, JBoss Portal uses the getRemoteUser() value to fetch 
the user from the UserModule.

So I guess that you must have the certificate DN that is matching the value of 
getUserName() in the User interface.

I have not tried it yet but I'd like to know the outcome of this.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874495#3874495

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874495


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-04-19 Thread [EMAIL PROTECTED]
What about getUserPrincipal() and if it is not null 
getUserPrincipal().getName() ?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874506#3874506

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874506


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-04-19 Thread [EMAIL PROTECTED]
exactly, I will fix this and use the Principal instead of getRemoteUser() once 
the CVS blackout is done. The CVS is being moved to our own hosting and for now 
until it is moved we don't commit to it.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874510#3874510

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874510


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-04-19 Thread [EMAIL PROTECTED]
the code to modify if you want to test it is in : 
jboss-portal-2.0/core/src/main/org/jboss/portal/core/invocation/UserContextInterceptor.java

it is pretty straightforward to change modify.

by the way, what is the version of JBoss you are using ? 4.0.2 ?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874517#3874517

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874517


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JMX on JBoss (JBoss/JMX)] - JIRA and JMX

2005-04-19 Thread [EMAIL PROTECTED]
There appears to be two places for JMX in JIRA
1) http://jira.jboss.com/jira/browse/JBJMX
2) 
http://jira.jboss.com/jira/secure/IssueNavigator.jspa?reset=truemode=hidepid=10030sorter/order=DESCsorter/field=priorityresolutionIds=-1component=12310134

Since we are not currently maintaining a JMX release outside of the appserver
I think JBJMX should be consolidated into the app server.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874540#3874540

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874540


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-04-19 Thread [EMAIL PROTECTED]
let me know how it goes with Weblogic...Could you write a WIKI page if you 
figure it out?

You could try JDK 5.0 and the -javaagent stuff.  Also, precompilation with 
AOPC.  I know there is one guy using WLS out there.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874542#3874542

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874542


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Profiler] - Re: Marshalling time

2005-04-19 Thread [EMAIL PROTECTED]
Yes... it can do it.

If you use jboss-profiler, all the information will be captured into binary 
files with an extension .log.gz.
Then you can use the web-tool to analyze the graph of callings.

You can set starts in the profiler, and only capture after a specific class 
appears in the stack-trace.


And please... provide feedback for anything you discover regarding it.


Clebert

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874544#3874544

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874544


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JMX on JBoss (JBoss/JMX)] - Re: JIRA and JMX

2005-04-19 Thread [EMAIL PROTECTED]
Yes, please nuke the JBJMX project. Any relevant issues can be migrated to JBAS 
under the jmx component.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874547#3874547

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874547


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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=bbop=viewtopicp=3874310#3874310

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874310


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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
authentication/authorization advices require jbosssx.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874325#3874325

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874325


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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_4_0 as I 
would not be able to do a new release of the aspect library (and EJB 3.0 for 
instance) without a complete rev of the entire application server.  This is 
quite unacceptable to most users.

So, in summary, although I think it might be asthetically appropriate, I don't 
see how this change you suggest will make anybody's life easier.  It sure will 
make the EJB3/AOP team's life much harder to do new releases.

 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874331#3874331

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874331


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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=bbop=viewtopicp=3874332#3874332

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874332


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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/jboss/aop/deployment/

anonymous wrote : If there is a bug or feature addition in any of the aspects 
in the library, I can easily patch any version of JBoss.

How so, are you going to keep up and supply different versions of these advices
as the internal api changes?

anonymous wrote : 
  | It would actually be more monolithic if the code was part of Branch_4_0 
as I would not be able to do a new release of the aspect library (and EJB 3.0 
for instance) without a complete rev of the entire application server.  
  | 

You need the implementation library anyway for the aspect to work. And the
implementation details (non-published api like SecurityAssociation) is going to
evolve independently across versions.

anonymous wrote : 
  | So, in summary, although I think it might be asthetically appropriate, I 
don't see how this change you suggest will make anybody's life easier.
  | 

Aesthetics are not an issue, it is about each module being responsible for
its own implementation.

anonymous wrote : 
  | It sure will make the EJB3/AOP team's 
  | 

The EJB3/AOP team should concentrate on delivering containers and the invocation
model, not how to integrate security.
And see above about needing jbosssx.jar anyway.

This is the same mentality that led to the JBossCache project becoming bloated.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874336#3874336

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874336


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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()
  | {
  | }
  | 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874337#3874337

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874337


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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=bbop=viewtopicp=3874338#3874338

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874338


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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). But all of them require 
weaving
of the target object (mainly through the assumption that there is a 
ClassAdvisor).

The only mechanism to dispatch to non-weaved code seems to be with
ProxyMixins, but these don't allow advice/interceptors and also require
javassist generated classes.

You can make it work if you want to create your own interceptors and
do insertInterceptor() by hand, but this does not work if you want to use
scopes/domains or externalize the configuration.
I'm pretty certain this isn't the intended usage.

I got very confused by some of the names of the different advisor classes,
it is not very clear what the intention of each is supposed to be?
Of course this is mostly my unfamialirty with the code as a re-newbie ;-)

My interest in this is for the annotated deployment of a javabean into an MBean.
Within JBoss it is fine to be able to weave javabean to add the mixin using 
@MBean
since we control the classloader, but for the standalone JMX this may not be 
possible so 
we need to fallback to a nonweaved class with a proxy using the same 
interceptors.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874342#3874342

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874342


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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 by some extension of the ClassContainer and we'll have unified 
APIs for adding advices/interceptors to a proxy or to an instance.

As far as your problem goes, if you want to use @MBean with weaving you DO NOT 
have to have control over classloading.  Just use the AOPC compiler.  For 
@Mbean anyways, we should pick one or the other.  Either weave or don't weave.

BTW, why don't you finish GenericBeanFactory instead of looking at this stuff?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874344#3874344

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874344


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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, the 
InstanceAdvisor will be replaced by some extension of the ClassContainer and 
we'll have unified APIs for adding advices/interceptors to a proxy or to an 
instance.
  | 
  | As far as your problem goes, if you want to use @MBean with weaving you DO 
NOT have to have control over classloading.  Just use the AOPC compiler.  For 
@Mbean anyways, we should pick one or the other.  Either weave or don't weave.

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 - ProxyAdvisor

With this being transparent to the user, i.e. me JMX.

My problem with using AOPC is that I cannot predicate a standalone MBeanServer
on the user using AOPC. They just do:

  | MBeanServer server = MBeanServerFactory();
  | server.registerMBean(objectName, new MyMBean());
  | 

In this case, MyMBean.class is not weaved for AOP and it is too late
to do it in registerMBean because they already loaded the class.

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.

This is one of those backward compatibility requirements.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874346#3874346

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874346


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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/GenericBeanFactory.java?rev=1.1view=markup

but the xml deployment is outstanding:
http://jira.jboss.com/jira/browse/JBXB-5

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874347#3874347

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874347


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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 implements XXXMBean
  | 
pattern.

But the class still might not be pre-weaved.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874350#3874350

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874350


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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 looking at how we integrate 
JMX/MicroContainer
which basically involves using the same advice stack to wrap the POJOs 
regardless of which api is used to register/invoke them.
Which has come back to the AOP integration again :-)

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874354#3874354

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874354


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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 - ProxyAdvisor
  | 
  | With this being transparent to the user, i.e. me JMX.
  | 
  | 

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 not want to have javassist create 
ClassInfo structures.

anonymous wrote : 
  | This is one of those backward compatibility requirements.

This is far from a backward compatibility requirement considering we don't have 
an official @MBean implementation.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874355#3874355

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874355


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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 create 
ClassInfo's, but it would also not force me to totally refactor (practically 
rewrite) jboss AOP to use ClassInfo's to bind aspects.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874357#3874357

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874357


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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 not want to have javassist create 
ClassInfo structures.
  | 

I thought you already had an option for whether it does the weaving at runtime?


  |mbean code=org.jboss.aop.deployment.AspectManagerService
  |   name=jboss.aop:service=AspectManager
  | !-- HERE --
  |   attribute name=EnableTransformerfalse/attribute
  | 

anonymous wrote : This is far from a backward compatibility requirement 
considering we don't have an official @MBean implementation.

I'm talking about when it doesn't (that's why I said going forward) 
i.e. it follows the old fashioned Standard MBean pattern described above. 

1) I want to be able to register it in the mbean server (backwards 
compatibility) but also
make it available via injection in the MC.
2) Vice-versa, register a javabean written for the MC and add @MBean (not 
backwards compatible because this obviously didn't exist previously like you 
say).

Whichever method is used, I only want to maintain one implementation of the 
advices
and adding things like role based security should just be done with the 
standard aop advice.

OFF-TOPIC:
Even though in practice I cannot even do that because for a while (a few 
versions hence)
because I have to  maintain XMBean (along with its inteceptor model) 
but as just another ModelMBean implementation 
(this also for backwards compatibility since we have users using it).

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874358#3874358

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874358


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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 javassist 
to preprocess and create ClassInfo's, but it would also not force me to totally 
refactor (practically rewrite) jboss AOP to use ClassInfo's to bind aspects.

I've got to the stage where I don't care and just want something that works. :-)
Even if it is just the simple use cases. 

Without something concrete to build on and write test cases to show missing 
features, it 
is just lots of arguments in the forums and more delays.

I've already been through a couple of refactors (both the Bean model and xml)
and still don't know what the final api looks like, that's why I call it an 
impass and started
working on other things.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874360#3874360

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874360


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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=bbop=viewtopicp=3874361#3874361

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874361


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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 client cert effective you can follow this page :

http://www.jboss.org/wiki/Wiki.jsp?page=SSLSetup

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874369#3874369

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874369


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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:


  |   param-valuehttp://localhost:8080/webdav/files/param-value
  |   !-- Comment out for SSL communication between Portal and Webdav --
  |   !-- param-valuehttps://localhost:443/webdav/files/param-value --
  | 

Follow the above wiki link Julien posted for SSL Setup inside JBoss AS. 

If you modify this file, then you will have the choice in the user portlet to 
either log in standard or secure.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874371#3874371

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874371


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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(), new 
AbstractValueMetaData(kernel.getConfigurator(;
  |   AbstractConstructorMetaData cmd = new AbstractConstructorMetaData();
  |   metaData1.setConstructor(cmd);
  |   cmd.setParameters(constructor1);
  | 
  |   HashSet attributes1 = new HashSet();
  |   attributes1.add(new AbstractPropertyMetaData(bean, 
org.jboss.test.kernel.SimpleAspect));
  |   attributes1.add(new AbstractPropertyMetaData(constructor, new 
AbstractValueMetaData(new AbstractConstructorMetaData(;
  | 
  | 
  |   AbstractMapMetaData properties = new AbstractMapMetaData();
  |   properties.put(new AbstractValueMetaData(bean1), new 
AbstractValueMetaData(new AbstractDependencyValueMetaData(simple)));
  | 
  |   attributes1.add(new AbstractPropertyMetaData(properties, 
properties));
  |   metaData1.setProperties(attributes1);
  | 
  |  
  | 

got this:


  | java.lang.ClassCastException: java.util.HashMap$Values
  | at 
org.jboss.kernel.plugins.dependency.basic.BasicKernelController$DependencyMetaDataVisitor.visit(BasicKernelController.java:274)
  | at 
org.jboss.beans.metadata.plugins.AbstractValueMetaData.visit(AbstractValueMetaData.java:81)
  | at 
org.jboss.kernel.plugins.dependency.basic.BasicKernelController$DependencyMetaDataVisitor.visit(BasicKernelController.java:275)
  | at 
org.jboss.beans.metadata.plugins.AbstractFeatureMetaData.visit(AbstractFeatureMetaData.java:85)
  | at 
org.jboss.kernel.plugins.dependency.basic.BasicKernelController$DependencyMetaDataVisitor.visit(BasicKernelController.java:275)
  | at 
org.jboss.beans.metadata.plugins.AbstractFeatureMetaData.visit(AbstractFeatureMetaData.java:85)
  | at 
org.jboss.kernel.plugins.dependency.basic.BasicKernelController$DependencyMetaDataVisitor.visit(BasicKernelController.java:222)
  | at 
org.jboss.kernel.plugins.dependency.basic.BasicKernelController.preprocessMetaData(BasicKernelController.java:85)
  | at 
org.jboss.kernel.plugins.dependency.AbstractKernelController.install(AbstractKernelController.java:210)
  | at 
org.jboss.kernel.plugins.dependency.AbstractKernelController.install(AbstractKernelController.java:102)
  | at 
org.jboss.test.kernel.AspectTestCase.testDependencyCorrectOrder(AspectTestCase.java:61)
  | 
  | 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874379#3874379

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874379


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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();
  |}
  | 

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. :-(

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874381#3874381

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874381


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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 haven't even
done basic config tests.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874382#3874382

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874382


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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:112)
  | at 
org.jboss.kernel.plugins.config.Configurator.getPropertySetterJoinPoint(Configurator.java:428)
  | at 
org.jboss.kernel.plugins.config.Configurator.getPropertySetterJoinPoint(Configurator.java:405)
  | at 
org.jboss.kernel.plugins.config.AbstractKernelConfigurator.getPropertySetterJoinPoint(AbstractKernelConfigurator.java:106)
  | at 
org.jboss.beans.metadata.plugins.factory.GenericBeanFactory.create(GenericBeanFactory.java:77)
  | at 
org.jboss.test.kernel.AspectTestCase.testDependencyCorrectOrder(AspectTestCase.java:67)
  | 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874386#3874386

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874386


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[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=bbop=viewtopicp=3874391#3874391

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874391


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-04-17 Thread [EMAIL PROTECTED]
I am going ahead to create a tomcat module so I can reference it from 
testsuite. In addition, I am deploying tc5-cluster.aop (has jboss-aop.xml) 
under all/deploy. This is needed for http session fine-grained replication 
using aop.

I can modify the setup later on if there is a need.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874191#3874191

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874191


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: JBossAOP and static inner class loading

2005-04-17 Thread [EMAIL PROTECTED]
Cool,

However for JDK 1.4 your command line should be


  | java -Xbootclasspath/p:C:\testaop com.bar.MyClass
  | 

i.e. C:\testaop contains the java\lang\ directory structure. 

Also, make sure that C:\testaop is not the directory where your main classes 
are (otherwise they get added to the bootclasspath too)

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874192#3874192

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874192


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Scheme persistence

2005-04-17 Thread [EMAIL PROTECTED]
I have added the CMS persistence today that uses the CMS to store the 
permission. They are stored in XML format (the same as in the jboss-portal.xml 
descriptor) so it is much more convenient in that respect.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874230#3874230

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874230


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: y'a t'il quelqu'un qui parle français

2005-04-17 Thread [EMAIL PROTECTED]
Vous devriez tudier l'anglais.  Il aide beaucoup ici.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874239#3874239

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874239


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_ide95alloc_id396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Re: JBossAOP and static inner class loading

2005-04-16 Thread [EMAIL PROTECTED]
Can you try one of these classloading strategies?

http://docs.jboss.org/aop/1.1/aspect-framework/reference/en/html/running.html#d0e2784

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874176#3874176

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874176


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss IIOP on JBoss] - Re: CORBA servant MBean?

2005-04-15 Thread [EMAIL PROTECTED]
Looks interesting. At the very least, it could be used as a skeleton for people 
that want to do this sort of things.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874059#3874059

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874059


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Eclipse IDE (dev)] - Updated cvs code to work with 3.1M6

2005-04-15 Thread [EMAIL PROTECTED]
Hi,

Trying to remember to use the dev-forum instead of direct mails for this jboss 
ide dev stuff ,)

I have now updated the jsp.ui plugin to be compilable against 3.1M6, but
unfortunately I could not find a easy way to filter out _jspx field and 
method names - so that will be a small regression bug until we get plugged 
into the WTP JSP editor.

Please test if you can ,)

/max

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874070#3874070

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874070


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of the JBoss EJB Container] - Re: Calling to develop JBoss Batch container....

2005-04-15 Thread [EMAIL PROTECTED]
And where is the spec behind this?


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874109#3874109

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874109


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-04-15 Thread [EMAIL PROTECTED]
Ben Wang has created a web container aspect for fine-grained replication of 
session data. This brings up a previous issue of where aspects live and how 
they are deployed in non-trivial environments like JBAS.

Currently there are aspects like security living in the aspects module which do 
not belong in a standalone aspects library as evidenced by the module 
dependencies:


  |   path id=dependentmodule.classpath
  |  path refid=jboss.common.classpath/
  |  path refid=jboss.j2ee.classpath/
  |  path refid=jboss.j2se.classpath/
  |  path refid=jboss.jmx.classpath/
  |  path refid=jboss.system.classpath/
  |  path refid=jboss.security.classpath/
  |  path refid=jboss.j2se.classpath/
  |  path refid=jboss.system.classpath/
  |  path refid=jboss.remoting.classpath/
  |  path refid=jboss.cluster.classpath/
  |  path refid=jboss.transaction.classpath/
  |  path refid=jboss.aop.classpath/
  |  path refid=jboss.server.classpath/
  |  path refid=jboss.container.classpath/
  |   /path
  | 

The aspects I am most familar with that do not belong here are the security 
aspects, which depend on implementation details of jbosssx as it is bundled 
into JBAS.

Throw in deployment ordering, hot deployment, class loader scoping, alignment 
of aspects with their sevices for ease of installation packaging, etc. and the 
current monolithic aspect is not managable.

So this thread is a starting point to discuss how we are going to manage the 
aop aspects.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874111#3874111

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874111


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Deployers on JBoss (Deployers/JBoss)] - Re: proposed mods to SARDeployer

2005-04-15 Thread [EMAIL PROTECTED]
setHarURL was needed simply to allow the deployer to inject this value into the 
mbean.  Use of this at runtime or through the console is highly discouraged ;)

Another thought is that in the scheme y'all are proposing (provided multiple 
interceptors can process the deployer init stuff) we could simply have an 
additional Hibernate-specific interceptor which checks the deployment's mbeans 
for the Hibernate mbean and injects the url.  Then you would not need 
ServiceMBeanSupport exposing the URL attribute at all and could still get away 
with no specific HARDeployer.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874112#3874112

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874112


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Deployers on JBoss (Deployers/JBoss)] - Re: proposed mods to SARDeployer

2005-04-15 Thread [EMAIL PROTECTED]
Correct, and this is certainly the future deployment process architecture as a 
deployment is just a packaging with instructions on how to configuration the 
various aspects.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874114#3874114

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874114


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Build System] - Re: New Build - Standalone module - multiple builds

2005-04-15 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote : One issue that is not clear in this discussion is 
do I have sufficient info to go obtain the source for every jar I find in the 
dist? Ultimately I want this for patches as well. The ideal roundtrip behavior 
is that I would point a ant task to a release and have it spit out the 
jboss-build.xml that would obtain the source and thirdparty repository to 
rebuild the possibly patched dist.
  | 

Right, you might have a distribution which has potentially reflects multiple 
patches, and now you want the source for this distribution.  I think this is 
possible with the current design.  How it would work:

1.  Iterate over all the jars in a release, collecting the component id  
version  from each jar manifest.
2.  Verify there are no conflicts between jars.  IE, jboss-common.jar and 
jboss-common-client.jar must agree on their version. Otherwise, the source is 
not resolvable.
3.  Based on the above, you have enough information to create a toplevel build. 
*
4.  Upon calling synchronize for this toplevel build, the component id's and 
versions will be used to resolve the component-info from the build repository.  
5.  The component-info will contain the cvsroot, module, and tags for each 
component.  These data will then be used to checkout the source for each 
component.

* This does not address non-archive artifacts, such as text files.  We would 
need to add manifests to these text files if we wanted to be able to resolve 
their source components.  Is this necessary for this use case (or in general)?  


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874116#3874116

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874116


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


  1   2   3   4   5   6   7   8   9   10   >