You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
(157) |
May
(789) |
Jun
(608) |
Jul
(554) |
Aug
(868) |
Sep
(654) |
Oct
(994) |
Nov
(803) |
Dec
(982) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(1006) |
Feb
(1054) |
Mar
(1345) |
Apr
(1305) |
May
(1392) |
Jun
(1016) |
Jul
(265) |
Aug
(1) |
Sep
(8) |
Oct
(9) |
Nov
(8) |
Dec
(19) |
2007 |
Jan
(20) |
Feb
(10) |
Mar
(20) |
Apr
(8) |
May
(4) |
Jun
(1) |
Jul
(6) |
Aug
(3) |
Sep
(6) |
Oct
(12) |
Nov
(7) |
Dec
(13) |
2008 |
Jan
(5) |
Feb
(4) |
Mar
(34) |
Apr
(32) |
May
(22) |
Jun
(21) |
Jul
(30) |
Aug
(18) |
Sep
(30) |
Oct
(23) |
Nov
(86) |
Dec
(51) |
2009 |
Jan
(25) |
Feb
(26) |
Mar
(34) |
Apr
(47) |
May
(38) |
Jun
(25) |
Jul
(36) |
Aug
(9) |
Sep
(8) |
Oct
(10) |
Nov
(4) |
Dec
(17) |
2010 |
Jan
(7) |
Feb
(9) |
Mar
(26) |
Apr
(49) |
May
(52) |
Jun
(48) |
Jul
(39) |
Aug
(27) |
Sep
(9) |
Oct
(14) |
Nov
(7) |
Dec
(10) |
2011 |
Jan
(12) |
Feb
(9) |
Mar
(17) |
Apr
(33) |
May
(39) |
Jun
(36) |
Jul
(29) |
Aug
(26) |
Sep
(29) |
Oct
(38) |
Nov
(35) |
Dec
(27) |
2012 |
Jan
(20) |
Feb
(34) |
Mar
(29) |
Apr
(33) |
May
(45) |
Jun
(46) |
Jul
(50) |
Aug
(35) |
Sep
(55) |
Oct
(68) |
Nov
(79) |
Dec
(45) |
2013 |
Jan
(67) |
Feb
(20) |
Mar
(55) |
Apr
(52) |
May
(25) |
Jun
(25) |
Jul
(34) |
Aug
(27) |
Sep
(21) |
Oct
(21) |
Nov
(19) |
Dec
(12) |
2014 |
Jan
(10) |
Feb
(8) |
Mar
(13) |
Apr
(18) |
May
(36) |
Jun
(26) |
Jul
(17) |
Aug
(19) |
Sep
(13) |
Oct
(8) |
Nov
(7) |
Dec
(5) |
2015 |
Jan
(11) |
Feb
(2) |
Mar
(13) |
Apr
(15) |
May
(7) |
Jun
(2) |
Jul
(4) |
Aug
(3) |
Sep
(3) |
Oct
|
Nov
(2) |
Dec
(1) |
2016 |
Jan
(3) |
Feb
(5) |
Mar
(19) |
Apr
(34) |
May
(9) |
Jun
(10) |
Jul
(5) |
Aug
(10) |
Sep
(5) |
Oct
(11) |
Nov
(19) |
Dec
(7) |
2017 |
Jan
(4) |
Feb
(4) |
Mar
(8) |
Apr
(5) |
May
(12) |
Jun
(5) |
Jul
(11) |
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
From: legolas <nu...@jb...> - 2005-06-13 20:35:44
|
Like I said, I want to create the menu dynamically from the layout jsp, and not from a portlet. So I don't even have a RenderRequest, but a LayoutDispatcher which has no relation to JBossRenderRequest. Anyway, I'd like to participate in creating that cleaner API, and will start of with some suggestions. Firstly I think that the portal objects needs to be easily accessible from the theme and layout API, such that the navigation can be made part of the layout. I'd like to see the page structure to be recursive, such that a multilevel page navigation can be accomplished. Also I'd suggest to allow different kinds of nodes in the page hierarchy like URL nodes, that point to an external page for instance. One could for instance think of the page structure existing of nodes, where each node can be a page, a URL or a label. In case the node is a label, it can contain other nodes, hence creating a nested structure. What do you think? Cheers, Marcel View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881338#3881338 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881338 |
From: jdoble <nu...@jb...> - 2005-06-13 20:31:19
|
1) Apologies. When I can't understand the other guy's reply, I try to assume there is a possibility the other guy never understood me. 2) I don't know what a ControllerContext is, or how CONFIGURED and INSTALLED relate to started and stopped, but I'll do some digging. 3) I can't have doWork() inside start because the work is not associated with the service that is being started. It depends on the service being started, but is not that service's business. Doing the work in an MBean notification listening for the state change will work only if the listeners get to do their thing before ServiceController goes ahead and starts the dependents (which I will research), and only if we want to go ahead and start the dependents regardless of the outcome of the work (may not always be the case). View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881337#3881337 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881337 |
From: <ad...@jb...> - 2005-06-13 20:08:13
|
I don't think the problem is that I misunderstood your request. Please try to keep your post less verbose (or at least less dense in text :-). As it is, I'm not going to read your full posts, just search for the optimal phrase that says what you actually want. I also never consider solutions without understanding the problem. You just proposed a particular solution that does not consider the full problem space. anonymous wrote : | This is a problem for us because there are times when we need to start a service, do some work, then start the dependent services. | Which under the new controller that allows manual control would be (in pseudo code) | public void myRoutine(ObjectName service) | { | // Get the context we want to control | ControllerContext context = controller.getContext(service); | | // Make sure dependents don't progress beyond configured | for (ControllerContext dependent: context.getDependents()) | dependent.change(dependent, ControllerState.CONFIGURED); | | // Start the context | controller.change(context, ControllerState.INSTALLED); | | // Do some work here | doWork(); | | // Start the dependents | for (ControllerContext dependent: context.getDependents()) | dependent.change(dependent, ControllerState.INSTALLED); | } | I also don't see why even under the current model, you can't have the doWork() either inside start() or on an MBean notification listening for the start state change, but there you go.... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881333#3881333 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881333 |
From: jdoble <nu...@jb...> - 2005-06-13 19:52:56
|
Hmm. I'm not sure what you mean by "target state" and "defined independentl= y". At first I thought that maybe you were suggesting that we define anothe= r state variable for our services, which would be orthogonal to the existin= g notion of service lifecycle. That way, we could bypass ServiceController = to do our starting and stopping (i.e. even if ServiceController views our s= ervice as started, we could have orthogonal "active" and "inactive" states.= Of course it would not be completely orthogonal, because if the state comb= ination (stopped, active) wouldn't make any sense. The problem I have with = this approach is that it complicates the service state machines for our ser= vices (which my background in telecom tells me is almost always a bad idea,= because it makes it much more difficult to prove that your state machines = are correct, and would be a royal pain because we have dozens of services),= and probably requires us to create another service, comparable to ServiceC= ontroller, to manage the active/inactive states of services, and to broadca= st notifications to other interested services. I think it would be a shame = to do this, because the existing service lifecycle is so close to what we n= eed. In fact, it was one of the things that drew me to JBoss in the first p= lace. My second thought is that I may not be understanding your reply at all, in = which case, some clarification would be appreciated. We have always been surprised by the semantics of the start method in Servi= ceController. The stop method works as we would expect (i.e. when someone r= equests a service to be stopped, all of its dependents are first stopped). = For the start method, when someone requests a service to be started, we wo= uld have expected any services the requested service depends on to first be= started, then the requested service, and no dependents on the requested se= rvice). Instead, if any services the requested service depends on are not = started, the method just returns. If not, the service is started, then the = transitive closure of its dependents are started. This is great if your pla= n is to start all services anyway, but no so great if you need finer contro= l, or need to do work between starting services. That being said, JBoss has been very useful to us as an overall framework, = so we have attempted to work around this behavior (i.e. we ensure that all = of the services a given service depends on are started before we request th= e given service to be started), but as is, the automatic starting of depend= ent services cannot be worked around, without introducing a completely orth= ogonal concept of service state as described earlier. Maybe (hopefully) I am missing or misunderstanding something. Please clarif= y the approach which you consider to be the "correct" one.=20 =20 View the original post : http://www.jboss.org/index.html?module=3Dbb&op=3Dv= iewtopic&p=3D3881331#3881331 Reply to the post : http://www.jboss.org/index.html?module=3Dbb&op=3Dpostin= g&mode=3Dreply&p=3D3881331 |
From: <ad...@jb...> - 2005-06-13 19:12:43
|
I never updated this thread with the real answer to this problem. Basically, what you need is a policy object that can be injected. Something like: | <bean name="RemoteCL" class="whatever"/> | | <bean name="EJBDeployer" ...> | <property name="RemoteCL"><inject name="RemoteCL"/></property> | </bean> | | or even better?.... | <bean name="MyEJB" class="org.jboss.ejb.Container"> | <property name="RemoteCL"><inject name="EJBDeployer" property="RemoteCL"/></property> | </bean> | Then what you can do is have RemoteCL be defined as either a Null implementation or a real implementation. If you change the implementation of RemoteCL by redeploying its dds it will automatically restart the EJBDeployer/MyEJB with the new config. You don't need the notion of optional, you just need a placeholder that has a Null/NOOP implementation. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881327#3881327 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881327 |
From: <ad...@jb...> - 2005-06-13 19:02:27
|
The correct way to do is to allow each "service" to have its target state defined independently. Of course a dependent can never be in a higher state than a dependee regardless of the requested target state. http://www.jboss.org/index.html?module=bb&op=viewtopic&t=64673 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881326#3881326 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881326 |
From: <rfr...@jb...> - 2005-06-13 18:56:16
|
I would like hear more about this appliance. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881325#3881325 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881325 |
From: jdoble <nu...@jb...> - 2005-06-13 18:48:50
|
My company has developed a network management appliance using JBoss as an underlying framework. Up to now, we haven't had any need to modify the JBoss code itself, but we recently ran into a issue that can easily be resolved with a minor modification to org.jboss.system.ServiceController.java. Given that our product is an appliance, we have had to write additional Operations, Administration and Maintenance (OAM) services (e.g. system monitoring & automatic recovery, backup & restore, etc.) which typically require individual services, or groups of services to be stopped and/or started. We have been invoking the stop and start JMX operations in ServiceController.java to request the individual stop/start operations, so that ServiceController's cached service states are kept up to date, and so that any services that are listening to ServiceControllers notifications are informed when other services are started or stopped. The problem we currently have is that the start method not only starts the requested service, but then proceeds to start any services that depend an the requested service, which will then start any services that depend on those services and so on. This is a problem for us because there are times when we need to start a service, do some work, then start the dependent services. The solution we are proposing is this: Modify the start method in ServiceController.java to have the following signature: public synchronized void start(ObjectName serviceName, Boolean startDependents) and modify the code which starts dependent services to look like the following: if (startDependents.booleanValue()) | { | // Those that depend on me are waiting for my start, recursively start them | log.debug("Starting dependent components for: " + serviceName | + " dependent components: " + ctx.dependsOnMe); | ArrayList tmp = new ArrayList(ctx.dependsOnMe); | for (int n = 0; n < tmp.size(); n++) | { | // marcf fixme circular dependencies? | ServiceContext ctx2 = (ServiceContext) tmp.get(n); | start(ctx2.objectName); | } | tmp.clear(); | } In order to ensure that existing clients of ServiceController do not need to be modified, add the following method: public synchronized void start(ObjectName serviceName) throws Exception | { | start(serviceName, Boolean.TRUE); | } Both of the start methods would need to be tagged as JMX operations, so that they clients can invoke them via the JMX server. I am happy to make this change (if approved/allowed/etc.). I am new to the JBoss contributor process, so I will likely have a few questions about how best to proceed. I am hoping that this forum was the right place to start. If not, please advise. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881324#3881324 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881324 |
From: legolas <nu...@jb...> - 2005-06-13 13:43:13
|
Hi all, I need to connect JBoss Portal to a MaxDB database i/o the default MySQL database. So I took the user guide and closely followed the instructions to deploy JBoss Portal RC 3 on JBoss 4.0.2, wrote a suitable connector, started it and... got a NullPointerException. After some investigation it appeared that hibernate is capable of retreiving the database name from the connection metadata, this name is then mapped into the dialect using a static Properties field in the org.hibernate.cfg.SettingsFactory, which is yet incomplete and does not contain a mapping for MaxDB (a.k.a. SapDB). So after starting JBoss with run.sh -c portal -Dhibernate.dialect=org.hibernate.dialect.SAPDBDialect, it worked fine. So first of all I'd like to say great job guys, the automated installer really works great! But can you please mention in the user guide that this environment setting needs to be set when using a different database? Cheers, Marcel View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881284#3881284 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881284 |
From: sla <nu...@jb...> - 2005-06-13 11:32:24
|
Hello! I want to generate dvc information with xdoclet and I can't manage with this can anyone tell me where can i find any info how to map dvc class into more than one table columns? And which xdoclets tags should I use? I would be very grateful for any help Szymon View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881266#3881266 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881266 |
From: mikezzz <nu...@jb...> - 2005-06-13 10:53:15
|
AFAIK, M2 does not have any hibernate code. What version of JBoss are you building against? What command did you use to check out the source? Mike. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881258#3881258 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881258 |
From: legolas <nu...@jb...> - 2005-06-13 10:46:23
|
Hi, slight typo in the src URL it refered to RC2 i/o RC3, it should read http://download.jboss.com/jbossportal/2.0RC3/jboss-portal-2.0-RC3-src.tar.gz. Cheers, Marcel View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881255#3881255 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881255 |
From: woranop <nu...@jb...> - 2005-06-13 10:29:13
|
Hello I'm interested JBoss AS and I found present have Mono Project(.Net on multi platforms)http://www.mono-project.com/Main_Page and I think If JBOSS create new JBOSS AS with support boths Java and .net(MonoProject) , it will be new Application Server Technology.right? But it's sound to very difficult But I want to share my idea. Could Anyone share your idea about this? thank you View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881252#3881252 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881252 |
From: <ju...@jb...> - 2005-06-13 08:45:48
|
Actually even if you don't inherit JBossPortlet, you can cast the RenderRequest to JBossRenderRequest. I know it is a little bit dirty but for now this is the only way .... Anyway, we want to provide a cleaner API for accessing such portal objects in 2.2, we have not started to design it and participation and suggestions are welcome. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881244#3881244 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881244 |
From: legolas <nu...@jb...> - 2005-06-13 08:18:13
|
Hi Julien, Thank you for your answer. I already had a look at the catalog portlet sources, but since it is a portlet that inherits JBossPortlet, it has access to JBossRenderRequest.getPortalObjects(), which supplies to information to display. In a layout JSP I do not have access to the JBossRenderRequest, so how can I access the desired information from a layout JSP? You said the API is likely to change, in what way is it going t change? Would you like some idea's about what we would like to accomplish? REegards, Marcel View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881243#3881243 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881243 |
From: Thomas.fi <nu...@jb...> - 2005-06-12 21:57:24
|
same error with eclipse 31RC2, are you doing something for this? org.jboss.ide.eclipse - 1.4.1.e31-jre14 Problems occurred when invoking code from plug-in: "org.eclipse.jface". eclipse.buildId=I20050610-1757 java.version=1.4.2_06 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US Command-line arguments: -os win32 -ws win32 -arch x86 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881227#3881227 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881227 |
From: drakonis <nu...@jb...> - 2005-06-12 20:58:23
|
Well i don't seem to make this work: if I use: | <bind pointcut="execution(* com.test.proiect.web.index->doGet(..)) AND within(com.test.proiect.web.index)"> | <interceptor class="com.test.proiect.web.AspectAutentificare"/> | </bind> | where index is a class which extends HttpServlet it doesn't seem to work. when I try: | <bind pointcut="execution(* com.test.proiect.web.index->doGet(..))"> | <interceptor class="com.test.proiect.web.AspectAutentificare"/> | </bind> | IT WORKS. I only resorted to this redundant pointcut example because other logic expresions fail too. Actually all the pages in the package should be intercepted on the execution of doGet and autenthification checked, all but the page to which i'm redirectiong in case of unauthorised acces. Ok si shouldn't the first pointcut intercept the call on the page too? Thanks! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881225#3881225 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881225 |
From: adamw <nu...@jb...> - 2005-06-12 08:43:59
|
You mean parsing request.getURL()? Or maybe looking at request.getPortletSession()? All I want to do is to create a link to a page with some parameters that I can read in portlets. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881201#3881201 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881201 |
From: mtedone1 <nu...@jb...> - 2005-06-12 00:08:26
|
Hi, I've got a problem building M2 downloaded from CVS. It doesn't find Hibernate jars. What shall I download and where shall I put it? Is it enough to download the HBN jars and put these under the lib folder? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881192#3881192 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881192 |
From: <ju...@jb...> - 2005-06-11 23:47:14
|
We have released the 2.0 RC3 of JBoss Portal. JBoss Portal 2.0 RC3 works with JBoss 4.0.2 and not with earlier versions. The release fixes a couple of bugs : http://jira.jboss.com/jira/browse/JBPORTAL-268 http://jira.jboss.com/jira/browse/JBPORTAL-267 The downloads are accessible with the following links : http://download.jboss.com/jbossportal/2.0RC3/jboss-portal-2.0-RC3-jboss-4.0.2.zip http://download.jboss.com/jbossportal/2.0RC3/jboss-portal-2.0-RC3.zip http://download.jboss.com/jbossportal/2.0RC3/jboss-portal-2.0-RC2-src.tar.gz http://download.jboss.com/jbossportal/2.0RC3/jboss-forums-2.0-RC3.zip http://download.jboss.com/jbossportal/2.0RC3/jboss-forums-2.0-RC3-src.tar.gz All docs can be found here: http://www.jboss.org/products/jbossportal#docs View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881191#3881191 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881191 |
From: <ju...@jb...> - 2005-06-11 23:46:47
|
We have released the 2.0 RC3 of JBoss Portal. JBoss Portal 2.0 RC3 works with JBoss 4.0.2 and not with earlier versions. The release fixes a couple of bugs : http://jira.jboss.com/jira/browse/JBPORTAL-268 http://jira.jboss.com/jira/browse/JBPORTAL-267 The downloads are accessible with the following links : http://download.jboss.com/jbossportal/2.0RC2/jboss-portal-2.0-RC3-jboss-4.0.2.zip http://download.jboss.com/jbossportal/2.0RC2/jboss-portal-2.0-RC3.zip http://download.jboss.com/jbossportal/2.0RC2/jboss-portal-2.0-RC2-src.tar.gz http://download.jboss.com/jbossportal/2.0RC2/jboss-forums-2.0-RC3.zip http://download.jboss.com/jbossportal/2.0RC2/jboss-forums-2.0-RC3-src.tar.gz All docs can be found here: http://www.jboss.org/products/jbossportal#docs View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881191#3881191 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881191 |
From: mholzner <nu...@jb...> - 2005-06-11 14:43:06
|
there's always a way ;) In this case it's just not a standard way. You can always look at the way the portal is building URLs, it's no secret. The issue is that this can change with any version..... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881168#3881168 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881168 |
From: g00gl3 <nu...@jb...> - 2005-06-11 09:09:56
|
sorry...this is pointcut code | <aop> | <bind pointcut="execution(org.omg.CORBA.Object org.omg.CORBA.ORB->resolve_initial_references(java.lang.String))"> | <interceptor class="EchoInterceptor" /> | </bind> | </aop> | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881163#3881163 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881163 |
From: g00gl3 <nu...@jb...> - 2005-06-11 09:07:38
|
Hi, Guys I'm affraid that i cant solve it without someone's help I need to catch resolve initial refereneces from org.omg.CORBA.ORB So, i've create specified pointcut: But got nothing =( Even "all(org.omg.CORBA.ORB)" doesn't catch anything... Does anybody hnow what is the problem? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881162#3881162 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881162 |
From: <tom...@jb...> - 2005-06-11 05:22:09
|
Ok. Is done and checked into HEAD of JBossRemoting. See http://wiki.jboss.org/wiki/Wiki.jsp?page=Remoting_streams for details. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881157#3881157 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881157 |