You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
(1159) |
Apr
(2137) |
May
(2414) |
Jun
(3068) |
Jul
(2160) |
Aug
(1232) |
Sep
(881) |
Oct
(682) |
Nov
(577) |
Dec
(311) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(619) |
Feb
(563) |
Mar
(594) |
Apr
(694) |
May
(1004) |
Jun
(2251) |
Jul
(1258) |
Aug
(1309) |
Sep
(1246) |
Oct
(1084) |
Nov
(934) |
Dec
(823) |
2003 |
Jan
(1102) |
Feb
(1115) |
Mar
(1138) |
Apr
(1369) |
May
(1356) |
Jun
(1119) |
Jul
(1074) |
Aug
(1062) |
Sep
(918) |
Oct
(834) |
Nov
(707) |
Dec
(716) |
2004 |
Jan
(571) |
Feb
(2397) |
Mar
(3637) |
Apr
(3718) |
May
(3095) |
Jun
(3054) |
Jul
(2532) |
Aug
(2092) |
Sep
(2217) |
Oct
(2336) |
Nov
(2406) |
Dec
(2315) |
2005 |
Jan
(2624) |
Feb
(2540) |
Mar
(2489) |
Apr
(2549) |
May
(2468) |
Jun
(2531) |
Jul
(2500) |
Aug
(2422) |
Sep
(2124) |
Oct
(2692) |
Nov
(2487) |
Dec
(4165) |
2006 |
Jan
(4721) |
Feb
(5016) |
Mar
(5630) |
Apr
(4747) |
May
(6193) |
Jun
(5074) |
Jul
(1734) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: heapifyman <do-...@jb...> - 2006-07-10 12:45:02
|
Hello. How do I make a lookup of a JSR 181 web service endpoint deployed on JBoss from a simple Java Client? I followed the instructions of the JbossWS user guide on how to code the endpoint and got it deployed. But since there's no example of a JSR181 client, I'm stuck at how to code the client correctly. Whenever I try the lookup, I get a NameNotFoungException. Any hints (to further information) are appreciated. Thanks in advance, Philip View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956568#3956568 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956568 |
From: bfo81 <do-...@jb...> - 2006-07-10 12:43:35
|
Well, I tried running some Seam examples. I proceeded like suggested in the getting started section (http://labs.jboss.com/portal/jbossseam/gettingstarted/index.html). But it didn't work out that easy, cause I'm running from one error into the other. After installing JBoss 4.0.4 AS via the JEMS installer (jems-installer-1.2.0-BETA.jar) with EJB3 profile I deployed some of the Seam 1.0.1 (fetched via CVS) examples (namely booking and blog - each one individually). But after starting the AS I get an exception and deployment fails: java.lang.NoClassDefFoundError: Lorg/jboss/ejb3/embedded/EJB3StandaloneDeployer; So I put jboss-ejb3-all.jar (8.019 KBytes for comparison) from EJB3.0 RC8 into $JBOSS_HOME/server/default/lib (as recommended here by Gavin: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=85604). Well, now there's a new very nice exception: java.lang.NoSuchMethodError: org.jboss.resource.adapter.jdbc.local.LocalManagedConnectionFactory.getValidateOnMatch()Z This one occurs 18 times in the logfile. And I found no solution for that, so I decided to ignore it for now. However, another Exception told me there's no embedded-jboss-beans.xml. So I copied it from the Seam directory embedded-ejb/conf to $JBOSS_HOME/server/default/conf. After restarting the AS there's a new Exception: java.lang.RuntimeException: org.jboss.xb.binding.JBossXBException: Failed to parse source file: file:/C:/Programme/jboss-4.0.4.GA/server/default/conf/embedded-jboss-beans.xml@5,45 | ... | Caused by java.lang.NullPointerException | at org.jboss.kernel.plugins.deployment.xml.BeanSchemaBinding.configureValueBindings(BeanSchemaBinding.java:1158) Well, the embedded-jboss-beans.xml looks like this (where *** shows 5,45, the position where the error occured) <?xml version="1.0" encoding="UTF-8"?> | | <deployment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | xsi:schemaLocation="urn:jboss:bean-deployer bean-deployer_1_0.xsd" | xmlns="urn:jboss:bean-deployer">*** | <bean name="Naming" class="org.jnp.server.SingletonNamingServer"/> | | ... And this is where I'm stuck. Well, maybe I overlooked something in my procedure, and I must confess I'm not a JBoss AS expert... but I think this shouldn't be necessary just to get some Seam examples to work. Maybe someone could tell me what's wrong. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956552#3956552 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956552 |
From: <soh...@jb...> - 2006-07-10 12:39:45
|
Jochen- With your custom Authenticator approach, did you try doing a browser redirect that sends back the same exact request information back maybe minus the deviceid information, once the authentication is successfull and the user's identity is sucessfully established within the Authenticator? I am thinking once the user's identity is established in the container, re-sending the browser request should not break your servlet anymore with streaming issues View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956567#3956567 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956567 |
From: Becka <do-...@jb...> - 2006-07-10 12:33:59
|
i found a page in the wiki regarding to vHosts http://wiki.jboss.org/wiki/Wiki.jsp?page=VirtualHosts but this won't tells me how to deploy a DataSource for each vHost View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956566#3956566 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956566 |
From: kukeltje <do-...@jb...> - 2006-07-10 12:14:41
|
you can find most of the information in the docs, wiki and by looking at the code View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956559#3956559 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956559 |
From: <soh...@jb...> - 2006-07-10 12:13:01
|
wussykye- Try accessing your cert file using a full system path to your cacert file within your EJB to make sure this is not an issue with locating the cacert file. Also, did you try getting an input stream to the cert file in your EJB and make sure the file is actually being located and read. AFAIK, JBoss does not specifically block access to any crypto related files Thanks Sohil View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956558#3956558 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956558 |
From: Becka <do-...@jb...> - 2006-07-10 12:10:23
|
how can i deploy the instances or what have i to deploy? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956557#3956557 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956557 |
From: SchlauFuchs <do-...@jb...> - 2006-07-10 12:07:59
|
Did you edit the application.xml in your ear file? | <module> | <connector>JcaAdapter.rar</connector> | </module> | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956555#3956555 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956555 |
From: squishy <do-...@jb...> - 2006-07-10 12:06:14
|
I have a user with id 1 and name "A" and a group with id 24 and name "B". They're in a relationship with an entry in the Join-table. Then i update "A" by doing | User u = new User(); | u.setId(1); | u.setName("Z"); | manager.merge(u); | and after that the entry in the join-table is gone. I can change the group like this without destroying the relationship, though. fundamental mistake on my side? :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956554#3956554 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956554 |
From: bfo81 <do-...@jb...> - 2006-07-10 12:05:24
|
PS: The Seam Hibernate demo works great. So EJB3 is the scapegoat. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956553#3956553 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956553 |
From: epbernard <do-...@jb...> - 2006-07-10 11:34:30
|
change the java command line and add -Dhibernate.bytecode.provider cglib View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956551#3956551 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956551 |
From: kukeltje <do-...@jb...> - 2006-07-10 11:28:54
|
deploy multiple jbpm instances, each with it's own config and pointing to a certain datasource View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956550#3956550 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956550 |
From: epbernard <do-...@jb...> - 2006-07-10 11:25:54
|
remove @TransactionManagement(value = TransactionManagementType.BEAN) in most case you don't want to handle tx management yourself View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956549#3956549 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956549 |
From: epbernard <do-...@jb...> - 2006-07-10 11:24:07
|
you don't give enough information. But hibernate does not destroy relationships :-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956548#3956548 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956548 |
From: balamg <do-...@jb...> - 2006-07-10 11:17:17
|
i would assume that when a method annotated with @Remove @Destroy is executed (SFSB), the persistent context is flushed and changes commited to the DB when this method is invoked ? i dont see the modifications to the entity beans being commited to the DB after the execution of the above annotated method. is anything missing ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956547#3956547 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956547 |
From: albertorugnone <do-...@jb...> - 2006-07-10 10:52:55
|
Hi there, i'm new in jboss use. I have develop an eda platform based on jms in jboss. I need to count a message jms that there are in the topics. How can i do it?? Please Help Me. It's very importante Thank you! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956545#3956545 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956545 |
From: bambata <do-...@jb...> - 2006-07-10 10:38:46
|
So, in case of a stateless Bean Seam uses for Injection via @In a common JNDI-lookup to the containers registry(ENC) ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956544#3956544 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956544 |
From: ben_ben <do-...@jb...> - 2006-07-10 10:37:34
|
Think we've solved it. JBoss wasn't being shutdown properly and possibly holding on to things it shouldn't have done. From a clean start everything looks ok. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956543#3956543 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956543 |
From: mp123 <do-...@jb...> - 2006-07-10 10:33:09
|
Hello GeckoAfrica, Thank you so much for your information. It is very much useful. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956542#3956542 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956542 |
From: raghum <do-...@jb...> - 2006-07-10 10:31:00
|
Hi I need to create/destroy topics/queues on the fly in JVM. Is there a way I can access the admin interface (as Java interfaces/classes) where I can do these operations. Thanks Raghu View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956541#3956541 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956541 |
From: yjusot <do-...@jb...> - 2006-07-10 10:12:41
|
Thanks for the infos. I will tried right now! Yv View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956540#3956540 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956540 |
From: Becka <do-...@jb...> - 2006-07-10 10:12:17
|
i need the same configuration. we want to host our jBPM Application on one of our Servers. Every vHost should have it own DataSource. Is there any possibility to realize that? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956539#3956539 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956539 |
From: visolvejboss <do-...@jb...> - 2006-07-10 10:04:50
|
Hello, In JBoss Guide 4.0.3, at page number 84, In section, 2.4.2.6. Hot Deployment of Components, the URLDeploymentScanner Said that, anonymous wrote : | ? Filter: The class name of a java.io.FileFilter implementation that is used to filter the contents of scanned | directories. Any file not accepted by this filter will not be deployed. The default is | org.jboss.deployment.scanner.DeploymentFilter which is an implementation that rejects the following | patterns: | "#*", "%*", ",*", ".*", "_$*", "*#", "*$", "*%", "*.BAK", "*.old", "*.orig", "*.rej", "*.bak", "*.sh", "*,v", | "*~", ".make.state", ".nse_depinfo", "CVS", "CVS.admin", "RCS", "RCSLOG", "SCCS", "TAGS", "core", "tags" | Note that, it contains the "core" folder name. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956538#3956538 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956538 |
From: tobad <do-...@jb...> - 2006-07-10 10:01:10
|
Hi I've been using Seam for a while now. I'm currently using 1.0.1 GA with the embedded container in Tomcat. Right now I have one page with several datatables on it. When a user clicks on a selection on the first table the other two are updated. This is currently done via a normal HTTP request but I would like to do this with Ajax4JSF or smiliar instead. The problem is that when I use Ajax4JSF I get a PropertyNotFoundException even though it worked with a normal s:link. I read Michael Yuan's blog about problems when having an ejb3 jar but I'm not quite sure if it applies here (I got one general.jar with all ejb's including session beans and then views etc in the war). The Exception | javax.el.PropertyNotFoundException: Bean: $Proxy158, property: getCategoryDetails | at com.sun.facelets.el.LegacyELContext$LegacyELResolver.getValue(LegacyELContext.java:146) | at com.sun.el.parser.AstValue.getValue(AstValue.java:117) | at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192) | at com.sun.facelets.el.ELText$ELTextVariable.toString(ELText.java:174) | at com.sun.facelets.el.ELText$ELTextComposite.toString(ELText.java:115) | at com.sun.facelets.compiler.CommentInstruction.write(CommentInstruction.java:38) | at com.sun.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:39) | at org.apache.myfaces.shared_impl.renderkit.RendererUtils.renderChild(RendererUtils.java:433) | at org.apache.myfaces.shared_impl.renderkit.RendererUtils.renderChildren(RendererUtils.java:419) | at org.apache.myfaces.shared_impl.renderkit.RendererUtils.renderChild(RendererUtils.java:440) | at org.apache.myfaces.shared_impl.renderkit.html.HtmlTableRendererBase.renderColumnBody(HtmlTableRendererBase.java:212) | at org.apache.myfaces.shared_impl.renderkit.html.HtmlTableRendererBase.encodeColumnChild(HtmlTableRendererBase.java:181) | at org.apache.myfaces.shared_impl.renderkit.html.HtmlTableRendererBase.encodeInnerHtml(HtmlTableRendererBase.java:167) | at org.apache.myfaces.shared_impl.renderkit.html.HtmlTableRendererBase.encodeChildren(HtmlTableRendererBase.java:100) | at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:524) | at com.sun.facelets.tag.jsf.ComponentSupport.encodeRecursive(ComponentSupport.java:234) | at com.sun.facelets.tag.jsf.ComponentSupport.encodeRecursive(ComponentSupport.java:239) | at com.sun.facelets.tag.jsf.ComponentSupport.encodeRecursive(ComponentSupport.java:239) | at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:554) | at org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:100) | at org.jboss.seam.jsf.SeamViewHandler.renderView(SeamViewHandler.java:59) | at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:384) | The HTML | <h:form> | <h:dataTable var="cat" | value="#{categoryList}" rendered="#{categoryList.rowCount>0}" | styleClass="datatable" | headerClass="" | rowClasses="" | columnClasses="" | > | <h:column> | <f:facet name="header"> | <h:outputText value="Name"/> | </f:facet> | <!--s:link view-id="../category/overview.html" action="#{listCategoryAction.getCategoryDetails}" value="#{cat.name}"/--> | <a4j:commandLink value="#{cat.name}" action="#{listCategoryAction.getCategoryDetails}" reRender="childTable" /> | </h:column> | </h:dataTable> | </h:form> | | <h:form> | <h:dataTable var="cp" | value="#{childList}" rendered="#{not empty childList}" | styleClass="datatable" | headerClass="" | rowClasses="" | columnClasses="" | id="childTable" | > | ..... | </h:dataTable > | </h:form> View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956537#3956537 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956537 |
From: <kab...@jb...> - 2006-07-10 10:00:11
|
You still need to prepare the joinpoints. The reason the introduced methods get intercepted is that when weaving in the introductions we weave in hooks for aop simpilar to AOP. This should have read: anonymous wrote : | BTW I want to make AOP 2 use JDK 5 and use JBoss Retro to be able to support JDK 1.4. This means that the annotation compiler will be retired. | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956536#3956536 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956536 |