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: <ju...@jb...> - 2005-05-10 14:38:01
|
paul, why do you need a servlet filter for fileupload in myfaces ? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877179#3877179 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877179 |
From: kevs3d <nu...@jb...> - 2005-05-10 14:36:40
|
Hi, There isn't any way as part of the JSR-168 portlet spec, which the JBoss Portal is implemented against. However, it's so useful that the JBoss guys may have implemented an extension specific to their APIs - but I don't know what. The way we did it (back in the days of the Alpha version) was to construct JBoss portal specific URLs. E.g. the way JBoss portal references portlets is through a defined URL format, so if you construct the URLs appropriately you can get other portlets to maximise: http://localhost:8080/portal/index.html?ctrl:id=window.default.CMSPortletWindow&ctrl:type=nav&ctrl:windowstate=maximized So if you know the window ID of your portlet (from your XML config) then you can construct a URL to bring it to the front. You can call portlet actions directly using URLs also. So if you code up a URL with an action request in it, e.g. http://localhost:8080/portal/index.html?ctrl:id=window.default.UserPortletWindow1&ctrl:type=render&ctrl:windowstate=maximized&op=showRegister Add that as the HREF of a link within one portlet, and when clicked it will call an action within another, in this case calling the "showRegister" portlet action event handler on the UserPortlet. Obviously this requires specific knowledge of the JBoss portal and also knowledge of what portlet Window IDs you have - but it works. Hope this helps, Cheers, Kev View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877178#3877178 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877178 |
From: <ju...@jb...> - 2005-05-10 14:36:21
|
you don't need to modify anything to use myfaces into jboss portal. we have a sample available here : http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossPortalSamples View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877177#3877177 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877177 |
From: paulhh <nu...@jb...> - 2005-05-10 14:35:24
|
Just a short note to say thanks for those on the JBoss and MyFaces teams that got the two working together. Nice work. We managed to move our stuff over from the Sun RI - and we have some fairly complex components - and it all went pretty smoothly. The main problems were due to MyFaces being a bit more strict than the RI, but once we realised that, things got sorted quickly enough. Cheers Phh. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877175#3877175 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877175 |
From: <ju...@jb...> - 2005-05-10 14:34:30
|
you mean have a portlet linking to another portlet ? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877174#3877174 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877174 |
From: hengels <nu...@jb...> - 2005-05-10 14:25:52
|
KernelOptionsDefault is more or less a plain java bean: public class KernelOptionsDefault | implements KernelOptions, KernelConstants { | | public static String _ARVERSION_ = "_AV_ KernelOptionsDefault 3103 029470 pflaum 02.05.2005-18:53 _AV_"; | | protected int processType = ProcessManagementConstants.PROCESSTYPE_JAVACLIENT; | protected boolean simulateApplication = false; | protected boolean mdi = false; | protected boolean exitVMAfterStop = true; | protected boolean use2Tier = false; // this was line 121 before comment stripping | protected boolean skipIntro = false; | protected char purpose = PURPOSE_PRODUCTIVE; | protected AppConfigurationEntry[] entries = null; | protected WProject project = GUIProject.getInstance(); | protected String loginContextName = null; | protected GraphicConfiguration graphicConfiguration = null; | | public AppConfigurationEntry[] getEntries() { | return entries; | } | | public void setEntries( AppConfigurationEntry[] newEntries ) { | entries = newEntries; | } | | public GraphicConfiguration getGraphicConfiguration() { | return graphicConfiguration; | } | | public boolean isExitVMAfterStop() { | return exitVMAfterStop; | } | | // ... | } View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877169#3877169 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877169 |
From: paulhh <nu...@jb...> - 2005-05-10 14:19:49
|
I think this causes us a few headaches. We'd like to be able to use the JSF file upload component from MyFaces - but I think this stops us. Also, we were thinking of doing some security stuff with Acegi, but that too will hit this in the portal. Obviously, running our stuff outside the portal is fine - but we'd really like to see it running inside JBoss Portal. Perhaps Gavin can give a bit more detail on what the issues are? Cheers Phh. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877168#3877168 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877168 |
From: <kab...@jb...> - 2005-05-10 14:16:13
|
Can you post your KernelAbstract and KernelOptionsDefault classes? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877166#3877166 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877166 |
From: hengels <nu...@jb...> - 2005-05-10 14:00:44
|
jboss-aop 1.1.2, jdk 1.4.2_03-b02, standalone, instrumentation on classloading the xml: <aspect class="wilken.lib.log.aop.Trace" scope="PER_VM"/> | | <bind pointcut="execution(* wilken.cst.gui.*->*(..))"> | <advice name="trace" aspect="wilken.lib.log.aop.Trace"/> | </bind> | | <bind pointcut="field(* wilken.cst.gui.*->*)"> | <advice name="trace" aspect="wilken.lib.log.aop.Trace"/> | </bind> the exceptions are looking like this: java.lang.ArrayIndexOutOfBoundsException: 12 | at wilken.cst.gui.basics.kernel.KernelAbstract.state_r_$aop(KernelAbstract.java) | at wilken.cst.gui.basics.kernel.KernelAbstract.wilken$cst$gui$basics$kernel$KernelAbstract$initialize$aop(KernelAbstract.java:202) and: java.lang.ArrayIndexOutOfBoundsException: 11 | at wilken.cst.gui.basics.kernel.KernelOptionsDefault.use2Tier_w_$aop(KernelOptionsDefault.java) | at wilken.cst.gui.basics.kernel.KernelOptionsDefault.<init>(KernelOptionsDefault.java:121) not all field interceptions fail. only some read accesses and some write accesses. the array index differs from field to field. method interception is working perfectly. any ideas, what am I doing wrong? Regards, Holger View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877162#3877162 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877162 |
From: sven.schulz <nu...@jb...> - 2005-05-10 13:16:02
|
Is there any facility or mechanism to implement interportlet communication in JBoss Portal RC. If not is there any best practice available. If neither the first nor the second holds, how can it be implemented? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877157#3877157 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877157 |
From: <sco...@jb...> - 2005-05-10 12:41:54
|
Give a concrete example that illustrates where the PD is getting lost then Tim. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877153#3877153 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877153 |
From: <bil...@jb...> - 2005-05-10 12:16:18
|
This is not true. The ClassLoader creates the class and it has the ProtectionDomain. A special ProtectionDomain is created for dynamically created classes though. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877148#3877148 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877148 |
From: <sco...@jb...> - 2005-05-10 11:58:37
|
File a bug report as we cannot be throwing away the protection domain. http://jira.jboss.com/jira/browse/JBAOP View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877146#3877146 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877146 |
From: sven.schulz <nu...@jb...> - 2005-05-10 11:26:00
|
After a lot of code introspection and a try and error session ADF Faces and MyFaces are working in JBoss Portal 2.0 RC. However I don't feel good about the solution. I modified the Sun JSF RI Portal bridge. When it comes to access the critical objects (Context, Request, Response, ...) I introspect the call stack and check if ADF or MyFaces class is invoking the respective method. If so I get the underlying Servlet specific object via the JBoss Bridge Framework and return it instead of the portal specific class. As you can see my solution is quite ugly. However it works and will suffice until a better integration concept is available. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877142#3877142 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877142 |
From: rainnight <nu...@jb...> - 2005-05-10 10:01:59
|
Dear all, I'm investigating to write a CORBA server inside JBoss addess space to use JacORB. But I can't find the version info about JacORB come with JBoss 3.2.3, so is there anyone know which version of JacORB is used in JBoss 3.2.3, it is 2.2? Thanks a lot. Erik View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877130#3877130 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877130 |
From: <ju...@jb...> - 2005-05-10 08:45:43
|
actually it is not an on going effort of the portal team but rather a personnal effort of sven. sven, could it be contributed back in any form (documentation or code) ? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877120#3877120 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877120 |
From: <ju...@jb...> - 2005-05-10 08:41:00
|
it is not possible because your filter is applied on your application and is not triggered by jboss portal. you need to move the filter to /jboss-portal.sar/portal-server.war/WEB-INF/web.xml this raise an interesting question about portlet filters. we could develop portlet filter for portlet that would be executed before the portlet is invoked. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877117#3877117 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877117 |
From: bluca <nu...@jb...> - 2005-05-10 08:39:51
|
I develop a new web application with tomcat and jsf. I'm totally new to jboss portal and oracle adf faces. I think your solution is a good solution. Is there some baisc documentation about jboss portal and oracle adf faces integration ? (Thank you and sorry for my english) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877116#3877116 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877116 |
From: gavinc <nu...@jb...> - 2005-05-10 08:32:17
|
Hi, I have a logging filter defined in the web.xml of my portlet whose init method gets called during startup of the portal server. I would then expect to see some debug output from every request made inside my portlet but I don't get anything. Breakpoints inside the doFilter method are not hit either. I have tried the url pattern set to /*, /portal/*, /web-client/* (the name of my EAR file) and /jsp/* (a root folder of my portlet) all to no avail. I'm presuming they are not being hit as the request is initially being processed in the context of portal-core.sar and not my portlet. However, as the filter gets called during startup I would have thought it should be called for every request too. So my question is, is it legal to have servlet filters in a portlet, and if so what url mapping do I need to get them invoked? I'm using a build of the portal server from the source taken in the middle of last week. Any help would be really appreciated as I was hoping to handle my security requirements using filters too! Thanks in advance, Gav View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877115#3877115 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877115 |
From: jim168 <nu...@jb...> - 2005-05-10 07:58:59
|
I installed a new copy of Eclipse 3.1M6 and JBossIDE-1.5M1-jre15-ALL.zip. Then I replace jboss-aspect-library-jdk50.jar with the one in jboss-EJB-3.0_Preview_5.zip. But when I create a new "EJB 3.0 Project" from wizard, it doesn't create the .classpath file. Do I miss something? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877112#3877112 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877112 |
From: ntsankov <nu...@jb...> - 2005-05-10 07:30:49
|
we had to struggle with the same problem, wasn't easy to find the reason... a very nice explanation can be read here: http://www.windowsitpro.com/SQLServer/Article/ArticleID/8412/8412.html View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877111#3877111 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877111 |
From: timfox <nu...@jb...> - 2005-05-10 06:31:41
|
Ovidiu- Great. I'll update. BTW I had some more thoughts yesterday regarding our conversation and how we can tie up asynch. acknowledgements with queue browsing, possible changes to the Channel interface etc. (Tri-state stuff??) I'd try and work through the ideas more while you are on training this week and let's get together as discussed at the end of the week. Cheers Tim View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877108#3877108 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877108 |
From: sherwinds <nu...@jb...> - 2005-05-10 06:27:15
|
check this out: JBossIDE Tutorial 1.4, page 34, section 9.3, start from 3rd paragraph. Verify if you followed this tutorial and notice the 6th paragraph where it says: "The classes must be located under the WEB-INF/classes of the War package. Set the prefix to WEB-INF/classes." You can try to remove the entry on Prefix, it should be blank, and try to run Packaging again and re-deploy your FiboApp.ear and try Fibo again. Hopes this help. Mine is now working after 3 days of almost on the brink of insanity. S My current config: OS: WXP SP4 JBossIDE: JBossIDE-1.5M1-jre15-win32.zip Java: 1.5.0_3 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877107#3877107 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877107 |
From: <ovi...@jb...> - 2005-05-10 05:02:46
|
Tim I've checked in a partial implementation of the asynchronous acknowledgment handling. What Consumer does with the positive acknowledgment it receives is not defined yet .... it will probably just access the acknowledgment store and submit the ack to it. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877105#3877105 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877105 |
From: twundke <nu...@jb...> - 2005-05-10 03:10:27
|
I'm using runtime AOP as a part of JBoss Cache. This is all contained within a standalone application that uses custom class loaders and custom ProtectionDomain objects. The problem that I'm seeing is that AOP-generated classes lose their associated protection domain, which in my case contains various additional fields that my application requires. This problem is easy to verify as AspectManager.transform doesn't pass on the ProtectionDomain object when calling the translate method. The protection domain is simply lost. Would it be possible to assign to the transformed class the same protection domain object as the original class? Thanks. Tim. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877102#3877102 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877102 |