[JBoss-user] [Beginners Corner] - Re: Problem deploying EJB to JBoss

2006-06-27 Thread jaikiran
The log file contains the following statement: anonymous wrote : 2006-06-27 19:52:39,678 DEBUG [org.jboss.deployment.JARDeployer] No xml files found Does your AccountJar.jar contain the ejb-jar.xml and jboss.xml in the META-INF directory? Execute the following command from the command prompt an

[JBoss-user] [JBoss Seam] - Inheritance, Polymorphism, and Butler with no eyebrows.

2006-06-27 Thread dhinojosa
So for latest plea for help, I have a superclass entity (Animal), and two subclass entities (Dog, Cat) and an inheritance problem. The problem I have is in a stateful bean very similar to the example 'Messages' except mine is called "findAnimalLikeNameBean", and it runs queries on generalized a

[JBoss-user] [EJB/JBoss] - Re: Calling EJB Remote Interface

2006-06-27 Thread jaikiran
In the web.xml of your war, have the following entry: | GiveAnyNameByWhichYouWouldLikeToReferTheBeanInYourWebApp | session | packageName.ClassNameOfTheHomeObjectOfTheBeanYouWantToRefer | packageName.ClassNameOfTheRemoteObjectOfTheBeanYouWantToRefer | In the jbo

[JBoss-user] [EJB 3.0] - Re: Dissolving a many to many relationship

2006-06-27 Thread squishy
I think you get the ConcurrentModificationException because you remove objects from the list while you're iterating over it. If you go through the list with a simple for (int i = 0; i < subjects.size(); i++) maybe it will work? View the original post : http://www.jboss.com/index.html?module=b

[JBoss-user] [EJB 3.0] - Re: Problem with delete through helper method in SessionBean

2006-06-27 Thread squishy
if i go through the user's groups and delete the user from them before i delete the user it works fine. Looks like it was repersisted through the cascading.. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953888#3953888 Reply to the post : http://www.jboss.

[JBoss-user] [JBoss Portal] - Re: Crypting problem

2006-06-27 Thread david.c.florin
I have already a huge table with users and there the password is not crypted ,and that table is also used by another program wich don't encrypt password.I whant to use that table for portal users but don't change her structure. If you could you give me an advice , I will apreciate! View

[JBoss-user] [Installation, Configuration & Deployment] - Re: jboss and log4j configuartion

2006-06-27 Thread jaikiran
The contents of the log4j.xml, in your post above, are distorted. Enclose the contents in a code block(using the Code button above) and post it again. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953886#3953886 Reply to the post : http://www.jboss.com/

[JBoss-user] [JNDI/Naming/Network] - Re: How to get all bound objects and their JNDI names of a p

2006-06-27 Thread jaikiran
Have a look at: http://java.sun.com/j2se/1.4.2/docs/api/javax/naming/Context.html#listBindings(java.lang.String) http://java.sun.com/j2se/1.4.2/docs/api/javax/naming/Context.html#list(java.lang.String) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953885#3

[JBoss-user] [Installation, Configuration & Deployment] - Re: Help me in Deploying the Jboss 4.0.4

2006-06-27 Thread jaikiran
anonymous wrote : where to place my application in order to deploy the application Place your application in the %JBOSS_HOME%/server/default/deploy directory. When the server will be started, it will be picked automatically. anonymous wrote : to my surprise i could not find the bin folder How

[JBoss-user] [JBoss Portal] - Re: How to passing session varibles from Portlet to Servlet

2006-06-27 Thread keletappi
Well. I have read the spec many times but I really don't find it neccessary to memorize everything. It is just that it hasn't been really issue for me but I know in some point I need this so I find this information useful - no need to reread it ;) View the original post : http://www.jboss.com/

[JBoss-user] [JNDI/Naming/Network] - Re: How to get all bound objects and their JNDI names of a p

2006-06-27 Thread chvnkishore
Hi, I am not thinking about sub,subsub context's. Only my concentration is upto a particular context. Thanks, Venkat. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953882#3953882 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&

[JBoss-user] [JNDI/Naming/Network] - How to get all bound objects and their JNDI names of a parti

2006-06-27 Thread chvnkishore
Hi, If any one knows about Getting all bound objects and their JNDI names of a particular context , then please let me know. Thanks in Advance, Venkat. [EMAIL PROTECTED] View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953881#3953881 Reply to the post : h

[JBoss-user] [Installation, Configuration & Deployment] - Help me in Deploying the Jboss 4.0.4

2006-06-27 Thread jagadeeshwrites
Hi, I am a newbye to jboss, I would like to work on it, since i am working on an opensource project. i would like to know where to place my application in order to deploy the application. I installed Jboss 4.0.4 on RHEL 4.0, to my surprise i could not find the bin folder, in that case how

[JBoss-user] [JBoss jBPM] - Setting Up JBPM 3.1.1 on JBOSS 4.0.4

2006-06-27 Thread kazam
I finally got JBPM 3.1.1 working on JBoss 4.0.4. It did take some doing and browsing the forum. There were however a few steps missing. Inorder to run JBPM 3.1.1 on top of JBoss 4.0.4 you need to follow the following steps. | 1. The JBoss 4.0.4 uses hibernate 3.2 CR 2. This has ehcache-1.2 by

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - JSTL taglib cannot be resolved by JBoss 3.2.1

2006-06-27 Thread svgray
Hi everyone, I'm having a problem with a JSP page that uses JSTL tags on JBoss 3.2.1 (Tomcat 4.1.24). The error I'm getting is: anonymous wrote : org.apache.jasper.JasperException: This absolute uri http://java.sun.com/jsp/jstl/core) cannot be resolved in either web.xml or the jar files deploy

[JBoss-user] [EJB/JBoss] - Calling EJB Remote Interface

2006-06-27 Thread AshuDagr8
Hi Forum, I am new to Jboss and J2EE so please ignore my ignorance. I have a EAR file containing EJB having a remote interface.Now i have to call this remote interface from another WAR file(this WAR is not contained in the EAR contaning EJB).Both EAR and WAR are deployed on the same JBoss Server

[JBoss-user] [JBossWS] - Re: Servlet regarded as ServiceEndPoint

2006-06-27 Thread gjdegoeij
Heiko, Due to a short holiday of Karl, I will try to provide you with the requested information. The web app war is also wrapped in an EAR. So the deployment descriptors of the EAR file are as follows: application.xml http://java.sun.com/dtd/application_1_3.dtd";> jmapserver-ear

[JBoss-user] [JBossCache] - Re: Weblogic 91 and POJO Cache

2006-06-27 Thread [EMAIL PROTECTED]
Is the TreeCache one also produced the same error as in PojoCache, for the state transfer portion? In additio, what is your initital state transfer timeout setting? E.g., 2 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953874#3953874 Reply to the pos

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Is there a way to prevent JBossMQ from using the jbossmq

2006-06-27 Thread jaikiran
I am not clear on what exactly is your requirement, but the place where the jbossmq security domain is specified is in jbossmq-service.xml file in the %JBOSS_HOME%/server/default/deploy/jms directory. Here's the extract: | | | | | | jbossmq |

[JBoss-user] [Installation, Configuration & Deployment] - Re: jboss and log4j configuartion

2006-06-27 Thread sap_jboss
Here is my log4j.properties - log4j.rootCategory=, A1 log4j.logger.org.apache=FATAL log4j.logger.com.myc.analyst=INFO, A2 log4j.logger.com.myc.analyst.presentation.action=INFO log4j.additivity.com.reconnex.analyst=false log4j.appender.A1=org.apache.log4j.ConsoleAppender log4j.appender.A1.layout=

[JBoss-user] [JBoss jBPM] - task-assign event firing

2006-06-27 Thread smokeman
When using the "group(whatever)" expression for task assignment, my associated task-assign action is not being called. Is this the expected behavior? I apologize if this has been asked before as I did a search but did not find the answer. Also, I did notice that the EVENTTYPE_TASK_ASSIGN event i

[JBoss-user] [JBossCache] - Re: Replicated field values not 'sticking' in clustered POJO

2006-06-27 Thread [EMAIL PROTECTED]
michael, Sorry that it wasn' clear before but I probably know where is the problem. You are doing: | cacheA.putObject("/test", pojoA); // pojo attached on cache A | | cacheB.putObject("/test", pojoB); // pojo attached on cache B as well | | pojoA.setBlah(xx); // will have problem he

[JBoss-user] [JBoss Portal] - Re: How to passing session varibles from Portlet to Servlet

2006-06-27 Thread [EMAIL PROTECTED]
Yes, please read the spec ! All the details are in the section i mentionned and after, i cannot seriously copy and paste the whole spec View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953868#3953868 Reply to the post : http://www.jboss.com/index.html?module=b

[JBoss-user] [JBoss Seam] - Re: SEAM examples not working...Does the installer cache fil

2006-06-27 Thread [EMAIL PROTECTED]
Yes this looks like a CR7 vs CR8 error Make sure to use the JEMS installer: http://sourceforge.net/project/showfiles.php?group_id=22866&package_id=193295&release_id=424215 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953867#3953867 Reply to the post : http

[JBoss-user] [JBoss Portal] - Re: Theme has a global scope

2006-06-27 Thread keletappi
I would call this one bug too. In all other portals theme is always personal if user is allowed to change it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953866#3953866 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=

[JBoss-user] [JBoss Portal] - Problem with Forums portlets

2006-06-27 Thread keletappi
I again tested Forums portlet because I want to get rid of separate forum site in our webpage. It seems that now I can actually run it and everything goes quite smootlhy - except that there seems to be serious encoding problems with scandinavian characters like ä , ö and å that blocks my plans.

[JBoss-user] [EJB 3.0] - Re: Dissolving a many to many relationship

2006-06-27 Thread chrismalan
To further clarify, the following two SQL queries do what I want done: "delete from STUDENT_SUBJECT;" and "delete from STUDENT_CLASS;" The second one is not mentioned in the post, but if I can get one to work, so will the other. There is a method that removes any number of stidents (comma separate

[JBoss-user] [JBoss Portal] - Re: How to passing session varibles from Portlet to Servlet

2006-06-27 Thread keletappi
anonymous wrote : | Attributes stored in the PORTLET_SCOPE are not protected from other web components of the portlet application. | It says that attributes in PORTLET_SCOPE are not protected from other web components of portlet application. But does it really say how these attributes are

[JBoss-user] [JNDI/Naming/Network] - Calling EJB Remote Interface from Outside EAR Application

2006-06-27 Thread AshuDagr8
Hi Forum, I am new to Jboss and J2EE so please ignore my ignorance. I have a EAR file containing EJB having a remote interface.Now i have to call this remote interface from another WAR file(this WAR is not contained in the EAR contaning EJB).Both EAR and WAR are deployed on the same JBoss Server

[JBoss-user] [JBoss Seam] - Problems with the Seam Tools integrated in the JBoss IDE 1.6

2006-06-27 Thread Seto
I tried to use the Seam Tools in the JBoss IDE to create a simple CRUD Seam application. I found that the code it generated import javax.ejb.Interceptors, but I only found that only javax.interceptor.Interceptors can be found in the package in ejb3.deployer. Is it a need for me to wait for the n

[JBoss-user] [Installation, Configuration & Deployment] - Re: Log4j and JBoss web app

2006-06-27 Thread ddieterle
In case anyone was interested I found some example code in the attachments at the bottom of the page here: http://wiki.jboss.org/wiki/Wiki.jsp?page=Logging Did not see it earlier today, but it is there now. Dave (logging newbie) View the original post : http://www.jboss.com/index.html?mo

[JBoss-user] [Security & JAAS/JBoss] - JBOSS vulnerable to Port Scan?

2006-06-27 Thread tonyLeung
Hi All, Is there anyone tried to scan their server with port scan while JBOSS is running on the server? I've tried this and port scan make JBOSS shut down automatically at the server with log like this : 2006-06-20 09:05:30,453 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localho

[JBoss-user] [JNDI/Naming/Network] - Re: Basics: binding object instance/factory to JNDI name

2006-06-27 Thread Gunark
For anyone interested, the answer turned out to be manual JNDI binding via JMX service MBeans. Basically I have a JMX MBean that manually binds the object I needed bound to JNDI in its create() method. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953858#39

[JBoss-user] [JBoss Seam] - Re: Seam Remoting

2006-06-27 Thread sbryzak2
I've modified BeanWrapper to look for the field in the bean's superclasses. It would be great if you could test this for me, I don't have anything set up right now to test this and don't have time right now to write something. Please let me know if there's any problems. View the original post

[JBoss-user] [JBossCache] - Re: Replicated field values not 'sticking' in clustered POJO

2006-06-27 Thread [EMAIL PROTECTED]
No worries about long posts if the problem is complex :-) I was just too lazy to read all the details. I'm not sure if this was just a typo in the forum post, but in what you posted the variable you assign when you call getObject() is not the one you are using in your assertions. "cachedPojoA

[JBoss-user] [JBoss Seam] - Re: issue with readme.txt for several examples

2006-06-27 Thread dbatcn
P.S. The problem described in the other topic was figured out - description is posted there. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953855#3953855 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953855 Using To

[JBoss-user] [JBoss Seam] - Re: running Eclipse TestNG plugin on a Seam project

2006-06-27 Thread dbatcn
Mystery solved: The "resource" directory in my project was entered into the project's classpath as a "class folder" in the "Libraries" tab of the "Java Build Path" property for the project. I moved it to being a source folder and it worked. Voila. View the original post : http://www.jboss.com

[JBoss-user] [JBoss Portal] - Re: Jboss 2.4 and portlet-instances.xml

2006-06-27 Thread [EMAIL PROTECTED]
Actually it'll be re-introduced in 2.4... :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953852#3953852 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953852 Using Tomcat but need to do more? Need to support web ser

[JBoss-user] [JBoss Seam] - issue with readme.txt for several examples

2006-06-27 Thread dbatcn
In trying to solved the problem described at http://www.jboss.com/index.html?module=bb&op=viewtopic&t=85465 from first principles (still unsolved BTW), I tried to follow the readme.txt instructions for running the registration example TestNG Eclipse plugin: anonymous wrote : Running the TestNG

[JBoss-user] [Installation, Configuration & Deployment] - Re: Jboss works sloppy!!! java.io.EOFException: Unexpected e

2006-06-27 Thread PeterJ
How big is your war file? How long does it take to deploy? The reason that I ask is that if it takes a while to copy the file, then JBoss could attempt to deploy it before the copy is complete, which could result in the error message you are seeing. An alternative would be to copy the war fil

[JBoss-user] [JBoss Seam] - Re: SEAM examples not working...Does the installer cache fil

2006-06-27 Thread c_eric_ray
I'm pretty sure this is a RC7 vs RC8 thing... here's the error i get from jboss Caused by: java.lang.NoSuchMethodError: javax.interceptor.InvocationContext.getTarget()Ljava/lang/Object; | at org.jboss.seam.ejb.SeamInterceptor.aroundInvoke(SeamInterceptor.java:37) | at sun.reflect.Na

[JBoss-user] [Installation, Configuration & Deployment] - How do i use XDoclet with JSP instead of servlets in NetBean

2006-06-27 Thread afshad
The following example shows how to get started using XDoclet to generate the descriptors for servlets: http://www.netbeans.org/kb/41/j2ee-server-integration.html This is their servlet annotation: * @web.servlet name="Compute" * display-name="Computation Servlet" *

[JBoss-user] [Installation, Configuration & Deployment] - Jboss works sloppy!!! java.io.EOFException: Unexpected end o

2006-06-27 Thread theRealEstate
Everytime i deploy a WAR to JBoss 4.0.4 (using the MyEclipseIDE) i get a weird ZLIB EOF error. I am using this combination of Software for a very long time and never had this kind of error before! What can be the reason for such a senseless error message :( a bug maybe? 00:29:45,593 ERROR [T

[JBoss-user] [JBoss jBPM] - Create ProcessDefinition by API code using an AssignmentHand

2006-06-27 Thread marcolinoas
Hi, I need to create process definitions 'on the fly', so I'm trying to use the Jbpm API to create a processDefinition object. All the things works, but I don't know why the AssignmentHandler doesn't work (the method assign never is called). My code looks like this: TaskNode taskNode = new T

[JBoss-user] [JBoss Seam] - SEAM examples not working...Does the installer cache files s

2006-06-27 Thread c_eric_ray
I think i have a cached version of EJB3-RC7 and I guess i need RC8 for seam examples to work. Any idea if my theory is true and if so, where do I find the cached files to delete them. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953843#3953843 Reply to the

[JBoss-user] [JBoss Messaging] - Re: Installing jboss-messaging-1.0.0.GA in *all* config

2006-06-27 Thread rcjboss
Thanks for the information and I appreciate your valuble quick response. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953842#3953842 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953842 Using Tomcat but need to do m

[JBoss-user] [JBoss Seam] - Re: Seam 1.0.1 GA Examples don't work

2006-06-27 Thread c_eric_ray
I get the same exact error and i've installed jboss twice using the installer with the ejb 3.0 option. btw, is there anything specific to installing seam or do the apps just include a seam library when deployed to any given appserver? View the original post : http://www.jboss.com/index.html?m

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - SSL not with localhost

2006-06-27 Thread jukcoder
Hi, I am hosting my portal on jboss and I need to configure SSL for remote users. I've changed localhost to my domain name, changed the SSL tomcat https connector to 443 , open 443 port on the firewall--with no luck This is my server.xml Connector port="80" address="${jboss.bind.address

[JBoss-user] [JBoss Seam] - Cannot configure datasource

2006-06-27 Thread urswag
I try to make my own seam ear file. Now I have this problem. Can someone tell me what the configuration problem is? anonymous wrote : | 22:41:49,000 INFO [EARDeployer] Init J2EE application: file:/C:/Programme/JBoss/server/default/deploy/ramschladen.ear | 22:41:49,859 INFO [Ejb3Annotation

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Sybase IDENTITY primary key autogeneration workaround

2006-06-27 Thread eschulma
I hope this helps someone, because it was very painful for me to figure out. Sybase provides an IDENTITY column which is very useful for autogenerating primary keys for entity beans. However, if version 6.05 of jConnect (the standard Sybase driver) is used -- jConn3.jar -- with com.sybase.jdbc

[JBoss-user] [JBossCache] - Re: Replicated field values not 'sticking' in clustered POJO

2006-06-27 Thread mbenner
Hi Brian, Thanks for your response (and sorry for the verboseness of the previous posts). =) I'm actually getting the object from the cache each time using the getObject() call. // Put object in CacheA and then replace it in CacheB | MerchantDailyAccount pojoA = new MerchantDailyAccount(1)

[JBoss-user] [JBoss Portal] - Re: Cannot Render: Object Not Found

2006-06-27 Thread barddzen
Ok, here ya go: ***portlet.xml | | | http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"; version="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd http://java.sun.com/xml/ns/portlet/portlet-app_1

[JBoss-user] [JBoss Seam] - Re: help with Maven 2 and SeamTest (part 2)

2006-06-27 Thread bsmithjj
Ugh! disregard the @Temporal error message - I remember how I fixed it - I had to move the @Temporal annotation to be in front of the field declaration instead of the getters for the temporal fields. Anyways - still looking for people to share their knowledge on getting Maven 2 to run SeamTest

[JBoss-user] [JBoss Seam] - Re: help with Maven 2 and SeamTest (part 2)

2006-06-27 Thread bsmithjj
In my components.xml file, I changed from the EJB component to the Microcontainer component... Now I am getting the following exception: | 16:23:09,077 DEBUG org.jboss.kernel.KernelFactory.(assembleNewKernel:86) - Starting JBoss Kernel construction... | 16:23:09,202 DEBUG org.jboss.

[JBoss-user] [JBoss Seam] - Re: running Eclipse TestNG plugin on a Seam project

2006-06-27 Thread dbatcn
Anybody got any ideas? Adding to components.xml doesn't seem to change anything. If I create a META-INF/orm.xml file (which the correctly functioning ant version doesn't have) with the following contents: http://java.sun.com/xml/ns/persistence/orm"; | xmlns:xsi="http://www.w3.org/2001/X

[JBoss-user] [JBossCache] - Re: Replicated field values not 'sticking' in clustered POJO

2006-06-27 Thread [EMAIL PROTECTED]
I'm late to this thread, so please forgive if I miss something stated earlier in all of the above :-) First, the "Suppressing invocation" message is completely normal. The cache itself (as opposed to the interceptor stack) doesn't actually do anything on a commit() call, so the CallInterceptor

[JBoss-user] [Beginners Corner] - Problem deploying EJB to JBoss

2006-06-27 Thread Chris Miles
I have a test jar which I downloaded which when placed in the deploy directory echos the following onto the console: 20:21:14,574 INFO [EjbModule] Deploying TesterBean 20:21:15,265 INFO [ProxyFactory] Bound EJB Home 'TesterBean' to jndi 'test/Tester' 20:21:15,495 INFO [EJBDeployer] Deployed:

[JBoss-user] [JBoss Portal] - Re: JBoss AS 4.04.GA and Portal 2.2.1 deployment

2006-06-27 Thread [EMAIL PROTECTED]
Mysql Version? If its mysql5.0, look in the wiki for the fix. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953820#3953820 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953820 Using Tomcat but need to do more? Need t

[JBoss-user] [JBoss Portal] - Re: JBoss AS 4.04.GA and Portal 2.2.1 deployment

2006-06-27 Thread [EMAIL PROTECTED]
I downloaded portal 2.2.1 sp2. I am still having the same problem on mysql. Is there anything else I need to do ? Thanks, Gowri View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953819#3953819 Reply to the post : http://www.jboss.com/index.html?module=bb&op=po

[JBoss-user] [JBoss Messaging] - Re: 1.0.x compatibility poll

2006-06-27 Thread [EMAIL PROTECTED]
In JBossSerialization, I have StringUtil that deals with Big Strings directly. Basically I always print a boolean in front of the string statying when the String is Big (needs a long to describe the size) or if a short (64K) is enough to describe its size. If you need to deal with something aro

[JBoss-user] [Beginners Corner] - Trouble whith twiddle, using ckeck_jbossjmx ( jBoss check pl

2006-06-27 Thread SBZ
Hello everyone I am a newb in jBoss, so i will try explain my trouble. And please, take easy whith me. I am not a deployer, i am a monitoring analist ;) i tryng to monitoring some MNeans, whith the jBoss nagios plugin, and it is ok. But one specific jBoss, i cant do it. Frist, i look at the sc

[JBoss-user] [JBossWS] - 4.0.2 WS4EE: How to ignore untrusted certs

2006-06-27 Thread acxsjones
I have a web gui that needs to talk to an untrusted webservice. The nodes behind this server could change. So I need a way to ignore self signed, untrusted, certs. I used wscompile to gend the client stubs and I am using ws4ee on the client. The way to do this in JWSDP is to register your o

[JBoss-user] [JBoss Portal] - Re: Jboss Portal 2.2.1 SP1 clustering errors

2006-06-27 Thread [EMAIL PROTECTED]
The issue should be fixed in cvs for 2.4. However, you should try the install you have, in non-clustered mode. It may not be a clustering issue at all, and could simply be Oracle9 not liking the CMS hibernate stuff. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopi

[JBoss-user] [JBoss Seam] - help with Maven 2 and SeamTest (part 2)

2006-06-27 Thread bsmithjj
Hello, I have had some success in getting SeamTest tests to run under maven 2. However, now, when SeamTest tries to load the JBoss Microcontainer, it complains that it cannot find embedded-jboss-beans.xml. Here is the exception: | 14:41:36,499 DEBUG org.jboss.seam.Component.(debug:84) - in

[JBoss-user] [JBoss Portal] - Re: Jboss 2.4 and portlet-instances.xml

2006-06-27 Thread [EMAIL PROTECTED]
"Silicio" wrote : | I didn't know about reintegrating use of portlet-instances.xml file for JBoss 2.4 version. I can't find the documentation on site. I haven't documented it yet. ;-) We will be re-introducing portlet-instances.xml in 2.6. What you are seeing in the WARN message, is essentia

[JBoss-user] [JBoss Portal] - Re: Cannot Render: Object Not Found

2006-06-27 Thread [EMAIL PROTECTED]
Post the jboss portal descriptors, so we can have a look. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953810#3953810 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953810 Using Tomcat but need to do more? Need to su

[JBoss-user] [JBoss Portal] - Re: Crypting problem

2006-06-27 Thread [EMAIL PROTECTED]
The code expects encryption. Why would you not want that? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953809#3953809 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953809 Using Tomcat but need to do more? Need to su

[JBoss-user] [JBoss Portal] - Re: FYI: log4j in portlet WAR

2006-06-27 Thread [EMAIL PROTECTED]
Not a portal issue. Perhaps post in one of the JBoss AS forums? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953808#3953808 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953808 Using Tomcat but need to do more? Need

[JBoss-user] [Security & JAAS/JBoss] - JBAS-1477: Pass in the security-domain name to the login mod

2006-06-27 Thread j2ee_junkie
This thread refers to task http://jira.jboss.com/jira/browse/JBAS-1477. This simple task is to allow a login module to know what application-policy (i.e. security-domain) it is a member of. This is useful to diagnose configuration problems that default to "other" security domain. However, ther

[JBoss-user] [Beginners Corner] - Re: EJB3Trail fails to start in 4.0.4GA

2006-06-27 Thread zradick
Sorry, looks like I just needed a more up-to-date JVM. I switched to 1.5.0_07 and everything seem to be working correctly now. It might not hurt to mention that older versions of 1.5.0 are not compatible with EJB3, but hopefully most people will figure it out fairly easily. View the original

[JBoss-user] [JBoss Messaging] - 1.0.x compatibility poll (Repost)

2006-06-27 Thread [EMAIL PROTECTED]
The work around for the JDK 1.4 64K UTF String bug in (http://jira.jboss.org/jira/browse/JBMESSAGING-411) has the potential to partially break compatibility with previous Messaging releases. The built-in versioning mechanism allows us to maintain compatibility, if we choose so, on the expense

[JBoss-user] [JBossCache] - Re: Replicated field values not 'sticking' in clustered POJO

2006-06-27 Thread mbenner
So, I tried what you suggested, and here's what I see in the logs. In particular, I'm seeing a message on Server B (the server replicated to) that says: Suppressing invocation of method commit(GlobalTransaction:<192.168.1.174:33972>:1) on cache. Could this be the problem, and if so, what co

[JBoss-user] [JBoss Messaging] - 1.0.x compatibility poll

2006-06-27 Thread [EMAIL PROTECTED]
The work around for the JDK 1.4 64K UTF String bug in (http://jira.jboss.org/jira/browse/JBMESSAGING-411) has the potential to partially break compatibility with previous Messaging releases. The built-in versioning mechanism allows us to maintain compatibility, if we choose so, on the expense

[JBoss-user] [Beginners Corner] - How to setp JVM

2006-06-27 Thread chwang
Hi, Folks, I saw someone set up JVM lin Jboss like this: -server -XX:NewSize=356m -XX:SurvivorRatio=16 -XX:MaxNewSize=356m -Xms400m -Xmx400m where to set up above? But I only know I can set JVM in run.bat set JAVA_OPTS=%JAVA_OPTS% -Xms128m -Xmx812m I don't where to set heap size in Jboos, pl

[JBoss-user] [Beginners Corner] - EJB3Trail fails to start in 4.0.4GA

2006-06-27 Thread zradick
I have just installed the JBoss 4.0.4GA AS with the EJB3 option and have been trying to deploy the beginning trail associated with it. Everything seems to be starting correctly, I can see the EJB3 MBean in the JMX console and there are no startup errors. However, when I drop the EJB3Trail.ear

[JBoss-user] [JBoss Seam] - Updating pages with seam remoting

2006-06-27 Thread JavierFigueroa
Someone know how to update a datatable with information provenientes of an invocation Ajax? Regard!! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953796#3953796 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953796

[JBoss-user] [JBoss Messaging] - Re: Installing jboss-messaging-1.0.0.GA in *all* config

2006-06-27 Thread [EMAIL PROTECTED]
You can use clustering for other components than messaging, and still run the messaging server on a cluster node (but only one). This is how you do it: 1. Start from an original "all" configuration. 2. cd all 3. rm -r deploy-hasingleton/jms 4. rename "all" to "default" 5. run ant -f release-adm

[JBoss-user] [JBoss Seam] - Re: Seam Remoting

2006-06-27 Thread JavierFigueroa
I again ! I have detected a new mistake, seam remoting. The method unmarshall in BeamWrapper cannot find the inherited fields when classes exist with ancestors Obviously this mistake relates to the mistake that nofique before Regards!! View the original post : http://www.jboss.com/index.ht

[JBoss-user] [JBoss Messaging] - Re: WAN

2006-06-27 Thread xenomino
Ok timefox, remember JINI? A user (call him user A), would ask server A for a .jar file. Server A would look to see if he had it. If not, server A would ask Servers B, C, D ... Z for the .jar file. The server who had that .jar file would send it to server A. Server A would cache it, and send

[JBoss-user] [JBoss Seam] - Re: I got a mind boggler for all of you......What do you do

2006-06-27 Thread dinaddan
Try using @Roles annotation. See http://docs.jboss.com/seam/1.0.1.GA/reference/en/html/annotations.html Regards Dinaddan View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953791#3953791 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&m

[JBoss-user] [Security & JAAS/JBoss] - Re: Problem with security and Seam

2006-06-27 Thread j2ee_junkie
Roby, anonymous wrote : | Why the web layer can't see credentials and principals (the security domain is the same)? | Because you have not logged into a security domain (i.e. a JBoss SecurityManger.) By creating your own LoginContext, and calling login() yourself, you have by passed JB

[JBoss-user] [Clustering/JBoss] - Re: How to cluster a web component (a servlet application)?

2006-06-27 Thread chwang
Hi, Brain, I see, Thank you very much. Best Regards, Chwang View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953786#3953786 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953786 Using Tomcat but need to do more? Nee

[JBoss-user] [Clustering/JBoss] - Re: How to cluster a web component (a servlet application)?

2006-06-27 Thread [EMAIL PROTECTED]
Lets say the client sends the request and starts polling every 15 seconds. Then the server producing the report dies. What do you want to happen? Client connects to another server *which picks up the report creation where the first one left off*? Probably not possible, but if it is and you w

[JBoss-user] [JBossWS] - Re: JSR-181 EJB Endpoint with BASIC Authentication

2006-06-27 Thread hkalkhoff
Installation of jbossws-1.0.1 on jbossas-4.0.4.GA resolved my issue: http://wiki.jboss.org/wiki/Wiki.jsp?page=JBWS101Install View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953781#3953781 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting

[JBoss-user] [Security & JAAS/JBoss] - Problem with security and Seam

2006-06-27 Thread gekorob
Hi all, I have a problem with security authentication using Jaas and Seam. What I'd like to do is to authenticate a user programmatically from a Stateless Bean acting as a Seam component named "login" | public String login() { | SecurityAssociationHandler handler = new SecurityAssociati

[JBoss-user] [JBoss Seam] - Re: Stateful behaviour jPDL [Back button error!]

2006-06-27 Thread [EMAIL PROTECTED]
Yes there is a bug that you found on the DVDdemo store, please report it on Jira. It seems related on back button when a conversation ends on a stateful session bean. There is no back="enabled" in that example, so if a user click on back and try to ship again, it should bring the user to the pa

[JBoss-user] [JBoss jBPM] - Re: State events fire order

2006-06-27 Thread cpob
Sorry, I forgot to post my log: 12:46:16,671 DEBUG [GraphElement] event 'before-signal' on 'StartState(start)' for 'Token(/)' | 12:46:16,671 DEBUG [GraphElement] event 'node-leave' on 'StartState(start)' for'Token(/)' | 12:46:16,671 DEBUG [GraphElement] event 'transition' on 'Transition(to

[JBoss-user] [JBoss jBPM] - Re: State events fire order

2006-06-27 Thread cpob
I got a different order. You have to have a BEFORE SIGNAL, before you can even leave the node, then you leave the node, then you enter the NEXT NODE,a nd then it's the after signal. Below is the processdefinition.xml I used | | | | | | |

[JBoss-user] [JBoss Seam] - Re: Stateful behaviour jPDL [Back button error!]

2006-06-27 Thread SimonBB
But whats about the other problem DVD-Store back-end (also a bug)? e.g. on your demo-website: http://dvdstore.demo.jboss.com -Do an order with e.g. user1 -Go to the back-end -choose order-management3 -assign an open order - click ship - enter a tracking number and click ship and after that cl

[JBoss-user] [Messaging, JMS & JBossMQ] - Is there a way to prevent JBossMQ from using the jbossmq jaa

2006-06-27 Thread DrPizza
Hi, It uses the jbossmq domain by default, which we do not really want it to do. The jboss.xml of the MDBs themselves names a different security-domain, and we define a SecurityManager using this security-domain which our Queues use. However, on deploying the application an attempt is made to

[JBoss-user] [Clustering/JBoss] - Re: How to cluster a web component (a servlet application)?

2006-06-27 Thread chwang
Hi, Brian, Thank you very mcuh for your replying. I think I don't need to maintain the seesion state. the client send a request to report servlet, the servet will generate a sessionID being save in a hastable, and send ID back to the client. then Every 15 seconds, the client will send a requ

[JBoss-user] [JBoss Portal] - Re: Jboss Portal 2.2.1 SP1 clustering errors

2006-06-27 Thread koti123456
Thank you very much for a quick response !! Can you please let me know steps to de-activate cms service have a quick question In which version of cms clustering issue is fixed ?? Thanks Again View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953773#3953773

[JBoss-user] [JBoss Seam] - Re: NPE when redeploying app

2006-06-27 Thread [EMAIL PROTECTED]
I just comitted a fix for this. It should be working in MyFaces 1.1.4. Stan View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953772#3953772 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953772 Using Tomcat but need to

[JBoss-user] [Security & JAAS/JBoss] - Re: XMLLoginConfig not picking up my application-policy

2006-06-27 Thread david.l.small
Actually, it gets even weirder. It is true that you need to remove "java:/jaas/" in jboss.xml 's security-domain element. But that same prefix must be present in the jboss-web.xml 's security-domain element otherwise the web authentication doesn't work. View the original post : http://www.jbos

[JBoss-user] [JBossWS] - Re: README - 1.0.1 Installation Workaround

2006-06-27 Thread acxjbertr
Do you have an ETA for the release that will address this problem? Thanks for your hard work! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953770#3953770 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953770 Using

[JBoss-user] [JBoss Messaging] - Re: JDBC persistence configuration examples?

2006-06-27 Thread [EMAIL PROTECTED]
Thanks a lot. Please feel free to post your document here http://www.jboss.com/wiki/Wiki.jsp?page=JBossMessaging View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953769#3953769 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply

[JBoss-user] [EJB/JBoss] - EJB access through RMI/HTTPS: is it possible ?

2006-06-27 Thread baptiste
Hi all, For some reason my client wants me to check that it's possible to access session EJBs deployed on a JBoss appserver (4.0.*) through RMI/HTTPS. What I already know: - EJB access through RMI/HTTP -> OK - JNDI/HTTPS -> OK - EJB access through RMI/SSL (JSSE) -> OK However, I searched the JB

[JBoss-user] [JBoss Portal] - Re: Jboss Portal 2.2.1 SP1 clustering errors

2006-06-27 Thread [EMAIL PROTECTED]
As mentioned in the docs, CMS is not reliably clustered in 2.2.1. We recommend that you de-activate the CMS service if you intend to use Portal in a clustered environment. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953764#3953764 Reply to the post : ht

[JBoss-user] [Clustering/JBoss] - Re: How to cluster a web component (a servlet application)?

2006-06-27 Thread [EMAIL PROTECTED]
Whether you need the "cache stuff" depends on whether your 1) servlet application maintains session state between requests and 2) you care about failover, i.e. is it important that the session state be there if the client fails over. Re: UrlConnection.connect, if you cluster the servlet app, yo

[JBoss-user] [Clustering/JBoss] - How to cluster a web component (a servlet application)?

2006-06-27 Thread chwang
Hi, Folks, I have a web report service application, which is a servlet application, accepting the requests from the other applications ( using UrlConnection.connect() ) to generate report. This web component has no EJB. I am going to cluster the servlet application. Because it can only handle 1

  1   2   3   >