[jboss-user] [JBoss jBPM] - Re: smtp server configuration

2007-10-24 Thread dleerob
Just to finalize this thread According to your other thread http://www.jboss.com/index.html?module=bbop=viewtopict=121966 you have sorted out your problem. For those of you wondering, the 2nd post in this thread should work :) View the original post :

[jboss-user] [JBossWS] - Re: Exception while deploying the webservice using jax-ws

2007-10-24 Thread [EMAIL PROTECTED]
Could you please post the code where you're using the XmlAccessorType annotation? I mean, are you using this @XmlAccessorType(XmlAccessType.FIELD) or something different? (like an array of AccessType.FIELD) You might also start from the classes generated by wsconsume. View the original post :

[jboss-user] [JBossWS] - Re: nor any of its super class is known...

2007-10-24 Thread [EMAIL PROTECTED]
Could you please post the source code of your jaxb annotated classes? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098137#4098137 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098137

[jboss-user] [JBoss Seam] - @In gets not injected thou it exists

2007-10-24 Thread axismundi
in one particular case the @In annotation is not working here. | @Stateful | @Name(shopTree) | @Scope(ScopeType.SESSION) | public class ShopTreeBean implements ShopTree { | @In | private ApplicationUser applicationUser; -- ALWAYS NULL | I have verified that

[jboss-user] [JBossWS] - Re: Deployed service statistics

2007-10-24 Thread [EMAIL PROTECTED]
Hi abdujaparov, what Oskar is telling you is that instead of using JMX to access the managed endpoint MBean, you might leverage our spi to get the metrics you're looking for. As a matter of fact, once you get the org.jboss.wsf.spi.deployment.Endpoint with the code Okar gave you, you can do

[jboss-user] [JBossWS] - Re: JBoss and Apache Axis compatibility

2007-10-24 Thread [EMAIL PROTECTED]
You may have compatibility issues if your axis ws uses rpc/encoded style, since jbossws does not support it because WS-I Basic Profile disallowed it. Rpc/literal and document/literal instead are supported by JBossWS. Take a look at

[jboss-user] [JBoss Seam] - cancelling a hibernate query via another thread

2007-10-24 Thread rlao
Sometimes a query request submit via ajax4jsf takes a long time that we want to provide a facility for the user to cancel the request (by calling cancelQuery() on the hibernate session). The query request comes into a session object (POJO) and the cancel request also comes into the same

[jboss-user] [Microcontainer] - Re: cleartext password in jboss-beans.xml

2007-10-24 Thread rlao
Thank you for your reply. What I ended doing is to create a subclass of microcontainer and handle the password myself. That seems to work. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098146#4098146 Reply to the post :

[jboss-user] [JBossWS] - Re: web service not found

2007-10-24 Thread [EMAIL PROTECTED]
Did jboss deploy your package once you dropped it in the deploy dir? (btw, is it a war?) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098145#4098145 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098145

[jboss-user] [JBossWS] - Re: org.jboss.ws.WSException: Cannot find java method

2007-10-24 Thread [EMAIL PROTECTED]
Yes, that could be the problem.Generally speaking, In future I would also suggest you to evaluate switching to JAX-WS. Bye View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098147#4098147 Reply to the post :

[jboss-user] [JBoss Seam] - JMS Messaging

2007-10-24 Thread gemel
Hallo, I need an advice about JMS Messaging. I have to make a choice between JMS Messaging and a4j:push to refresh my GUI when an alarm occurs in my system. Which of these two solutions is the best? If I choose to implement the JMS Messaging solution of Seam Remoting, I'd like to know if the

[jboss-user] [EJB/JBoss] - Re: org.jboss.tm.JBossTransactionRolledbackException

2007-10-24 Thread typo_user
Its, ok. my problem was in the DB who was incorrupted. I added the missing data, and it's ok. Thank's. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098149#4098149 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098149

[jboss-user] [JBossWS] - Re: Multiple SOAP attachments via MTOM document/literal?

2007-10-24 Thread [EMAIL PROTECTED]
It never happened to me to try with multiple attachments, however I think it should be doable. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098150#4098150 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098150

[jboss-user] [JBoss Seam] - Help Ajax4jsf 1.1.1, Seam 1.2.1GA Setup

2007-10-24 Thread terryb
Having problem configuring ajax 1.1.1 and richfaces 3.0.1 with seam 1.2.1. I have seam-gen generated app with facelets and RHDS beta2 set up, with JBoss 4.2.2. When I use something like a4j .. or rich:... they just get ignored; no error but just not processed. But when I use a: ... and f: ...

[jboss-user] [JBoss Seam] - identiy.login called twice

2007-10-24 Thread vwiencek
Hi, I've implemented the suggested authentication method. I've an authenticator seam component handling business logic for authentification. But when I use facesMessages inside authenticate() method (called by identity.login I guess), my message is rendered twice. Is that normal ? Thanks

[jboss-user] [JBossWS] - Re: Newbie with JbossWS

2007-10-24 Thread [EMAIL PROTECTED]
As you can see here http://docs.jboss.com/seam/2.0.0.CR2/reference/en/html/webservices.html, Seam allows you to add a JAX-WS handler to the invocation chain so that you can work on its conversations through ws request. This means you have to use JAX-WS webservices; WSTools does not support

[jboss-user] [JBoss Seam] - Problems using Authenticator.authenticate()

2007-10-24 Thread appendix
Hi! I'd like to use Seam's simplified security mode with the build in identity and a custom authenticator class. I've initialized the security context in components.xml: anonymous wrote : | security:identity authenticate-method=#{authenticator.authenticate} / | Added the authenticator

[jboss-user] [JBoss Seam] - Hello World and i18n issues

2007-10-24 Thread emiperez
Hello World! I'm begining to use Seam for some Web Applications I want to develop, and I have some questions about i18n: a) I want to have 2 message bundle levels. 1.- The first one is a general bundle for all applications (I would use the default messages bundle). 2.- An application

[jboss-user] [JBoss jBPM] - Re: org.jbpm.graph.def.DelegationException in JBPM-BPEL

2007-10-24 Thread agusgr
Hi I think that your problem is that you have to add the URL of the service that you invoke in the bpel-application.xml file. For example, I use 2 services in my bpel process and my bpel-application.xml is like this: ?xml version=1.0 encoding=UTF-8? | bpelApplication name=procesoLocalizacion

[jboss-user] [JBoss Seam] - Re: Problems using Authenticator.authenticate()

2007-10-24 Thread yilmaz_
it seems problem is abou this method can you show the code dbAccess.authenticate(...) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098161#4098161 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098161

[jboss-user] [JBoss Seam] - Hibernate can not execute query

2007-10-24 Thread vwiencek
Hi, is there a way to prevent an ajax request to call a method too much times ? Indeed, I have an inputText with a search string and an ajax support calling a query() method on blur event. The problem occurs when the database contains too much data, and the query method is called too many

[jboss-user] [Microcontainer] - Re: cleartext password in jboss-beans.xml

2007-10-24 Thread alesj
rlao wrote : | What I ended doing is to create a subclass of microcontainer and handle the password myself. Subclass of Microcontainer? Can you share some more details? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098158#4098158 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Problem with ajax4jsf resources with WebSphere v6.1.0.9

2007-10-24 Thread dmitriy.lapko
Be aware that this will work only in Web Application Sphere 6.1.0.7 and higher. For older versions you need to install the patch. By the way, at least this patch doesn't need Update Installer (75 MB)- you have just update one class in one jar. View the original post :

[jboss-user] [JBoss Seam] - Re: @In gets not injected thou it exists

2007-10-24 Thread yilmaz_
private ApplicationUser this must be interface and applicationUser this must be component name @Name( applicationUser ) alsa you can use @In(create=true) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098157#4098157 Reply to the post :

[jboss-user] [Beginners Corner] - JBoss Startup - Log4JService

2007-10-24 Thread Matty_R
I am trying to run a JBoss server and am getting the following error on start up. I'm very new to JBoss / Java so this error does not really mean much to me, so any help would be greatly appreciated. I've also included the Log4J attribute from the JBoss-Service.xml file below incase that

[jboss-user] [JBoss jBPM] - Re: Communication between JBoss jBPM application and a web a

2007-10-24 Thread kamleshkr
I understood a bit about how to call the process from a servlet. But in order to run this piece of code how should I integrate my jbpm application which is in eclipse workspace into my web-application ? Please tell me the steps. . View the original post :

[jboss-user] [JBossCache] - Jboss cache 1.4.1 region monitoring

2007-10-24 Thread loumaus
Im looking for a way to monitor each region of my cache. Is there any tool or any help available on howto grab the dediacted information out of the cache ??? Jboss Cache 2.0 supports this feature but this is no solution for us as we are using the 4.2.0 enterprise release. thanks and

[jboss-user] [JBoss Seam] - Re: @In gets not injected thou it exists

2007-10-24 Thread axismundi
thanks for your input. the component declaration surely doesn't need to be an interface. I added @Name(applicationUser) to my ApplicationUser class, but still it is not being injected. And anyway, the component applicationUser IS in fact existing in the Seam session-ctx (according to Seam

[jboss-user] [JBoss jBPM] - Re: Does [jbpm-bpel-1.1.Beta3] support BPEL2.0

2007-10-24 Thread cocogg
I have get a answer, [jbpm-bpel-1.1.Beta3] didn't support BPEL2.0(final),but support bpel2.0(draft) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098173#4098173 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098173

[jboss-user] [JNDI/Naming/Network] - ClassCastException on PortableRemoteObject.narrow(object, He

2007-10-24 Thread lavkul
posted Sunday, October 21, 2007 11:47 PM I have created an EJB module and a web module. When I try to run EJB from a servlet I get ClassCastException. I do not know why? I am using myEclipse

[jboss-user] [JBoss jBPM] - jbpm-bpel-1.1.Beta3 + oracle10g

2007-10-24 Thread cocogg
hi, I have no problem on run jbpm-bpel-1.1.Beta3's sample(hello) with default db, but I want use Oracle db, I change the hibernate.cfg.xml and jbpm-bpel-ds.xml, when I deploy the jpbm-bpel.sar ,I get a exception.I confused whether I made a mistake, or jbpm-bpel-1.1.Beta3 didn't support other

[jboss-user] [JBossWS] - Re: nor any of its super class is known...

2007-10-24 Thread nickarls
I have an interface | @Remote | @WebService | public interface ServerInterface { | ... and an implementation | @Stateless | @WebService | @WebContext(contextRoot=/services) | @EndpointConfig(configName=Standard WSSecurity Endpoint) | @Name(serverWebService) | public class

[jboss-user] [JBoss Seam] - related to import.sql in seam

2007-10-24 Thread su5491
Hi i m using seam for development it is very new for me . here in this an import.sql file is kept in the classpath after deployment it gose in to deployed jar file by which we can perform some sql operation on the time of loading of application but it is not working any body can help me

[jboss-user] [JBoss Seam] - Re: Help Ajax4jsf 1.1.1, Seam 1.2.1GA Setup

2007-10-24 Thread tamerg
For richfaces 3.0.1 namespaces xmlns:a4j=https://ajax4jsf.dev.java.net/ajax; xmlns:rich=http://richfaces.ajax4jsf.org/rich; replace your namespace with these View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098186#4098186 Reply to the post :

[jboss-user] [JNDI/Naming/Network] - Re: ClassCastException on PortableRemoteObject.narrow(object

2007-10-24 Thread jaikiran
Have a look at http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassCastExceptions specifically the jmx-console method mentioned there View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098185#4098185 Reply to the post :

[jboss-user] [JBoss Messaging] - Does JBossMessaging imposes Message Order?

2007-10-24 Thread mskonda
Tim/Team I have a business requirement to preserve the order of messages posted on a topic. AFAIK, JMS doesn't define the message ordering. However, few providers went a mile ahead and implemented message ordering above the spec. How about JBM? If I use 1.2.0, can I get the Message order by

[jboss-user] [JBoss jBPM] - EJB Invocation from jBPM

2007-10-24 Thread jayzaw
Hi, in our framework, stateless session EJBs expose the services. I would like to know if and how I can invoke them from jBPM. Kind regards, Jay View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098188#4098188 Reply to the post :

[jboss-user] [JBoss Seam] - Re: @In gets not injected thou it exists

2007-10-24 Thread axismundi
a few debug lines before the error occurs, Seam logs DEBUG [org.jboss.seam.Component] trying to inject with hierarchical context search: applicationUser | DEBUG [org.jboss.seam.contexts.Contexts] found in session context: applicationUser Unfortunely the message doesn't refer to the

[jboss-user] [Security JAAS/JBoss] - Problem securing NamingService, InvokerAdaptorService on 4.2

2007-10-24 Thread kasimier
I really tried everything and earned just kidding. Please can anyone help ?? I tried to secure NamingService with AuthenticationInterceptor and UsersRolesLoginModule as described in docs and wiki (including JRMPProxyFactory config for NamingService). It has no effect at all. Then I tried to

[jboss-user] [JBoss Seam] - Re: jboss-seam-remoting 2.0.0.CR2 for Maven

2007-10-24 Thread [EMAIL PROTECTED]
Yes, confusingingly seam CR2 depends on el CR1 :( We'll fix this for CR3. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098194#4098194 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098194

[jboss-user] [JNDI/Naming/Network] - Re: ClassCastException on PortableRemoteObject.narrow(object

2007-10-24 Thread lavkul
I have seen this link but I could not understand how to fix the problem. Can you please give me any idea about how JNDI lookup's are resolved in JBoss. I am able to lookup EJB in a web module but I can not narrow the lookup object to Home interface. -Lave View the original post :

[jboss-user] [Messaging, JMS JBossMQ] - Re: maxMessages

2007-10-24 Thread Renen
Hi Adrian, thanks for taking the time to reply. I have been chasing ill defined deadlines and wanted to make sure that I answered coherently rather than just shooting my mouth off. I have re-run my experiments. I'd ignore MaxMessages (leave it a 1). If you don't set this message, the

[jboss-user] [JBoss jBPM] - Re: smtp server configuration

2007-10-24 Thread vishal423
ya its right...it works... but is not any other way to do this ;) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098197#4098197 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098197

[jboss-user] [JBoss Seam] - Re: jboss-seam-remoting 2.0.0.CR2 for Maven

2007-10-24 Thread [EMAIL PROTECTED]
Actually probably for the GA. We'll give el it's own release cycle soon probably. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098198#4098198 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098198

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Refering to a datasource wih its ENC name

2007-10-24 Thread MarcusDidiusFalco
OK found out the error myself: jboss.xml should be ?xml version=1.0 encoding=UTF-8? | jboss | enterprise-beans | session | ejb-nameTestBean/ejb-name | resource-ref |

[jboss-user] [JBoss Seam] - Re: @In gets not injected thou it exists

2007-10-24 Thread nickarls
Could there be a non-required outjection somewhere that could overwrite it before the call? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098200#4098200 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098200

[jboss-user] [JBoss Seam] - Re: T or F? - s:link/ in dataTable must use @DataModel or

2007-10-24 Thread [EMAIL PROTECTED]
Restful = page parameters. This would always be my approach assuming you don't mind passing the object's identifier to the client. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098204#4098204 Reply to the post :

[jboss-user] [JBoss Seam] - Re: @DataModelSelection and selectOneItem?

2007-10-24 Thread [EMAIL PROTECTED]
This is what a converter is for. Then you can use object setters/getters: public Product getProduct() { |return product; | } | | public void setProduct(Produce product) { |this.product = product; | } View the original post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Refering to a datasource wih its ENC name

2007-10-24 Thread MarcusDidiusFalco
Hallo! I have a datsource datasources | local-tx-datasource | jndi-nameFencingDS/jndi-name | connection-urljdbc:mysql://localhost:3306/fencing/connection-url | . | /local-tx-datasource | /datasources deployed. Using the JMX console it shows up in the JNDI

[jboss-user] [JBoss jBPM] - Re: Error generate-service

2007-10-24 Thread ZazzaZ
Hi, I got the same error on another project. I found that namespace xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://schemas.xmlsoap.org/ws/2003/03/business-process/ http://schemas.xmlsoap.org/ws/2003/03/business-process/; is vital and moreover that

[jboss-user] [JBoss Seam] - Re: injecting async method seams to fail ? Thanks

2007-10-24 Thread dreuzel
Thanks , of coarse ... It runs now View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098207#4098207 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098207 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: Help Ajax4jsf 1.1.1, Seam 1.2.1GA Setup

2007-10-24 Thread terryb
Thanks Tamerg, I sorted it out. The following is correct. xmlns:a4j=http://richfaces.org/a4j; xmlns:rich=http://richfaces.org/rich; The other way, is apparently older way but still supported. My problem was something to do with jars. I downloaded richfaces 3.1.1 and included three jars that

[jboss-user] [JBoss Seam] - Re: I stucked:CVS 07072007:IllegalStateException at startup

2007-10-24 Thread [EMAIL PROTECTED]
Unfortunately the real error is being masked, you'll need to debug, catch the IllegalStateException, and see what message key is being requested. http://jira.jboss.com/jira/browse/JBSEAM-2150 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098210#4098210 Reply

[jboss-user] [JBoss Seam] - jBPM, action in a start-statestart-task and injection

2007-10-24 Thread ChristopheA
I have a jBPM process, with actions fired from various nodes (to send notification emails). My backing bean is a SFSB, that retrieve business process variables by injection. The problem is that injection is working well from every action method cal, EXCEPT when action method is called from

[jboss-user] [JBoss Seam] - Re: How to exclude specific exceptions from logging

2007-10-24 Thread [EMAIL PROTECTED]
Or http://jira.jboss.com/jira/browse/JBSEAM-2071 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098213#4098213 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098213 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Method expressions being mistaken for value

2007-10-24 Thread [EMAIL PROTECTED]
Please file a jira issue for this with details on how to replicate. I think we can do better than we currently are... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098214#4098214 Reply to the post :

[jboss-user] [EJB/JBoss] - Can server recognize disconnection between clients and serve

2007-10-24 Thread changemylife
Hi all! I use jboss-4.0.5.GA and EJB3.0. My client is standard alone. I use DatabaseLoginModule to authenticate a particular client. When the client login success, I can get some informations such as username and role. Can the server maintain connection between clients and

[jboss-user] [JBoss Seam] - Re: Facelets variable injection?

2007-10-24 Thread [EMAIL PROTECTED]
No. You should not inject render time variables into your backing beans. Just do #{my:compare(var1, var2)} - this is all in the facelets documentation. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098216#4098216 Reply to the post :

[jboss-user] [JBoss Seam] - Re: h:commandButton not working on RichFaces tab

2007-10-24 Thread [EMAIL PROTECTED]
Post this on the RF forum, I don't think it has anything to do with Seam. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098217#4098217 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098217

[jboss-user] [JBoss Seam] - Re: the method invoked twice, when render the page once!

2007-10-24 Thread [EMAIL PROTECTED]
Try h:selectOneMenu id=principalId value=#{activityList.principalId} onchange=javascript:document.getElementById('weekActivity').submit(); | f:selectItems value=#{usersByManager}/ | /h:selectOneMenu View the original post :

[jboss-user] [JBoss Seam] - Re: Entity relation deleated

2007-10-24 Thread [EMAIL PROTECTED]
In this case hibernate manages the join table, leave it to it. Or ask on the hibernate forums, as this is design-of-hibernate question/ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098223#4098223 Reply to the post :

[jboss-user] [JBoss Seam] - Re: @In gets not injected thou it exists

2007-10-24 Thread axismundi
nickarls wrote : Could there be a non-required outjection somewhere that could overwrite it before the call? The applicationUser is @Out-jected only once, that is in the authenticator class, which has EVENT-scope and should not be called. @Name(authenticator) | @Scope(ScopeType.EVENT) |

[jboss-user] [JBoss Seam] - Jboss Seam 2.0 CR2 offline install

2007-10-24 Thread vijayamaladoss
Is there any way I can install Seam 2.0 cr2 off line. We are behind a proxy and we don't have permission to disable it. Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098228#4098228 Reply to the post :

[jboss-user] [JBoss Seam] - Re: @In gets not injected thou it exists

2007-10-24 Thread nickarls
Can you access the correct instance with Contexts.lookupInStatefulContexts(...)? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098230#4098230 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098230

[jboss-user] [JNDI/Naming/Network] - Re: ClassCastException on PortableRemoteObject.narrow(object

2007-10-24 Thread jaikiran
lavkul, Are the home/local/remote interfaces of the bean present in the web as well as the ejb module? If yes, then remove those interfaces from the web module. Having it in 2 places results in this classloading issue. View the original post :

[jboss-user] [JBoss Seam] - Long vs long for ID and InvalidStateException

2007-10-24 Thread damianharvey
I have a table with an auto-incrementing ID with a datatype of BIGINT(20). When SeamGen using 2.0.0.CR2 generates this entity it gives the ID a datatype of Long. When I try to persist an instance of this entity I get an InvalidStateException. If I change the entity setting the datatype of

[jboss-user] [JBoss jBPM] - Re: Error generate-service

2007-10-24 Thread agusgr
Please, post the code or a fragment Agus View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098235#4098235 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098235 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Hello World and i18n issues

2007-10-24 Thread [EMAIL PROTECTED]
a) components.xml belongs in WEB-INF, messages_XX.properties on the classpath (e.g. in WEB-ING/classes) - so just make sure your bundle is in WEB-INF/classes b) As you say, a JDK issue, you can't alter this in Seam afaik. You'll need to raise a issue with Sun I expect. View the original post :

[jboss-user] [JBoss Seam] - Re: Hibernate can not execute query

2007-10-24 Thread [EMAIL PROTECTED]
You can put a queue and delay on the ajax request, and you can use concurrent request timeouts on conversation scoped components in Seam. Seam 2.0.0.CR2 docs contain some information on concurrent access to conversation scoped components. View the original post :

[jboss-user] [JBoss Seam] - Re: related to import.sql in seam

2007-10-24 Thread [EMAIL PROTECTED]
It should go into the root of the EAR where hibernate will pick it up as long as you are using hbm2ddl in create or create-drop I think. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098238#4098238 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Jboss Seam 2.0 CR2 offline install

2007-10-24 Thread [EMAIL PROTECTED]
You can try a nightly snapshot instead: http://hudson.qa.jboss.com/hudson/job/JBossSeam/lastSuccessfulBuild/artifact/jboss-seam/dist/jboss-seam-2.0.0-SNAPSHOT.zip as this shouldn't require net access to run seam-gen. (Post back if it does). Or, apply this patch to CR2: Index: build.xml |

[jboss-user] [Beginners Corner] - Re: JBoss Startup - Log4JService

2007-10-24 Thread jaikiran
Which version of JBoss and which version of Java? And if there is any other exception stacktrace then please post that too. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098241#4098241 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Communication between JBoss jBPM application and a web a

2007-10-24 Thread kamleshkr
Where is the jbpm-console source code. I have the jbpm-console.war, but after unzipping it i find no *.jsf files in it View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098242#4098242 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Problems using Authenticator.authenticate()

2007-10-24 Thread appendix
Hi! Thank you for your response! As I mentioned only textual to spare the reader some extra code quotations, the dbAccess.athenticate(...) methode is executing a native SQL query through the injected EntityManager (@PersistenceContext private EntityManager em;): | ..snip - just

[jboss-user] [JBoss Tools (users)] - Any maven-ish directory support planned? Team Web-Developmen

2007-10-24 Thread -Arthur-
Hi, jboss tools in the current release feels very great. In the next two weeks we are going to start developing a new web platform. It would be great to have the facelets/jsf/ features of jboss tools for the view. Is it possible to develop a complete application with jboss tools within a

[jboss-user] [JBoss Seam] - Application path

2007-10-24 Thread kauefelipe
I´m trying to save one file in my app. I do this: How can i get the real | File arq = new File(test.txt); | FileWriter writer; | try { | writer = new FileWriter(arq, true); | PrintWriter saida = new PrintWriter(writer, true); | saida.println(texto); |

[jboss-user] [JBoss Seam] - Hibernate in Weblogic10 : class not found exception

2007-10-24 Thread kumanan_jboss
Hi All, I am using JPA/Hibernate in Weblogic 10. While running the application, I am getting the following exception. Can someone help on this. Exception caught is : java.lang.IllegalArgumentException : org.hibernate.QueryException : ClassNotFoundException : org.hibernate.hql.ast.HqlToken

[jboss-user] [EJB 3.0] - Calling a local 2.x stateless session bean from a remote ejb

2007-10-24 Thread zagarol
Hi, I am currently tinkering with upgrading an existing system to use EJB3 so we can take advantage of the new interceptors in EJB 3. The code which currently exists uses a remote session facade which then delegates off to local session(s) for doing the work. Our first task is to replace the

[jboss-user] [JBossWS] - Basic Authentication with WSSecureEndpoint on JBoss 4.2.2GA

2007-10-24 Thread ejb3workshop
I want to use Username Tokens to authenticate with a webservice provided by a Session Bean as shows: @Stateless | @WebService | @EndpointConfig(configName=Standard WSSecurity Endpoint) | @SecurityDomain(java:/jaas/THZone) | @RolesAllowed(friend) |

[jboss-user] [Beginners Corner] - Re: JBoss Startup - Log4JService

2007-10-24 Thread Matty_R
It's old versions jboss-3.0.1_tomcat-4.0.4 and Java 1.3.0_03. The other 2 errors in the log file are:- 12:21:55,229 INFO [ServiceConfigurator] Problem configuring service jboss.system:type=Log4jService,service=Logging org.jboss.deployment.DeploymentException: No property editor for attribute:

[jboss-user] [JBossWS] - Re: WSSecurity Username token

2007-10-24 Thread ejb3workshop
Did you ever this the resolved. I am having the same problem using JBoss 4.2.2 wich included a new build of JBossWS. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098254#4098254 Reply to the post :

[jboss-user] [Beginners Corner] - Re: JBoss Startup - Log4JService

2007-10-24 Thread jaikiran
anonymous wrote : It's old versions jboss-3.0.1_tomcat-4.0.4 and Java 1.3.0_03 Any reason why you would want to use these old versions of the software? The latest available version of JBoss is 4.2.1 which can be used with JDK5. View the original post :

[jboss-user] [JBoss Seam] - Re: Problems using Authenticator.authenticate()

2007-10-24 Thread [EMAIL PROTECTED]
There is no garuntee on how many times the authenticate method will be called. Are you sure that no persistence exceptions have been thrown causing the transaction to be in an invalid state? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098257#4098257 Reply

[jboss-user] [JBoss Seam] - Re: Long vs long for ID and InvalidStateException

2007-10-24 Thread [EMAIL PROTECTED]
Whats the stack trace (coming from hibernate or seam?) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098256#4098256 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098256 ___

[jboss-user] [JBoss Seam] - Re: Application path

2007-10-24 Thread [EMAIL PROTECTED]
Get a URL handle on a file you know the location of e.g. application.xml and construct an absolute path from that. Btw I wouldn't store files inside your ear if I were you, what happens when you deploy the ear non-exploded? View the original post :

[jboss-user] [JBoss Seam] - Re: Upgrade CR1 to CR2

2007-10-24 Thread HerrE
Ok, i found the solution. It was a little bit tricky because i used a development pc without network connection and had to excange data on an usb stick. 1. download jboss-seam-2.0.0.CR2.zip and extract it 2. open a command prompt and change to the jboss-seam-2.0.0.CR2 directory 3. type ant

[jboss-user] [JBossCache] - Howto clear EJB3EntityTreeCache?

2007-10-24 Thread aitasa
Hi, We are using entity cache in our application. Is there a way to clear cached entities via jmx-console (Jboss AS 4.0.5)? If so how it can be done? r Ami View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098262#4098262 Reply to the post :

[jboss-user] [JBoss Seam] - encode URLs

2007-10-24 Thread rajesh2win
How to encode my Urls always..in Seam..i want to encode all URLs for all the requests.. Is there any Build in Filter for this kind of problem..? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098263#4098263 Reply to the post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Refering to a datasource wih its ENC name

2007-10-24 Thread MarcusDidiusFalco
Ok the Bean is now deployed, but it seems I can get a connection from the datasource, but somehow I cannot work with it: ctx = new InitialContext(); | DataSource ds = (DataSource) ctx.lookup(java:/comp/env/jdbc/FencingDS); | System.out.println(ds.toString()); | Connection con =

[jboss-user] [JBoss Seam] - Re: Jboss Seam 2.0 CR2 offline install

2007-10-24 Thread HerrE
Hi, if you mean seam-gen, you can install it on an internet pc as i did and copy the generated web application on a usb stick to your development pc. I've installed jdk, jboss, ant and seam on an internet pc and created a empty web application:

[jboss-user] [JBoss jBPM] - Re: Communication between JBoss jBPM application and a web a

2007-10-24 Thread kamleshkr
Sorry by *.jsf files i mean the source code of the class file to which the *.jsf files are mapped in web.xml View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098253#4098253 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Problem with mobilepages

2007-10-24 Thread mikko_lehtinen
I suppose Sun's JSF doesn't properly support mobile rendering. I had the same problem with fresh Seam-Gen project. Visiting home.seam gives the same exception. Maybe this one could be helpful: http://weblogs.java.net/blog/rogerk/archive/2007/06/mobilefaces_mob.html View the original post :

[jboss-user] [Beginners Corner] - Re: JBoss Startup - Log4JService

2007-10-24 Thread Matty_R
It just comes down to cost of upgrade / retesting all of the different apps hosted on the server... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098268#4098268 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098268

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: JBoss 4.2.1 and Oracle 11g DataBase

2007-10-24 Thread georges.goebel
I have the same problem with JBoss 4.2.2 :-( View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098270#4098270 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098270 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Long vs long for ID and InvalidStateException

2007-10-24 Thread damianharvey
From Hibernate. I'm using MySQL. Cheers, Damian. | | javax.el.ELException: org.hibernate.validator.InvalidStateException: validation failed for: com.locuslive.odyssey.entity.OneTimeReference | at org.jboss.el.util.ReflectionUtil.invokeMethod(ReflectionUtil.java:332) | at

[jboss-user] [JBoss/Spring Integration] - Jboss + Spring + Hibernate + jboss + testNG + java.lang.Ill

2007-10-24 Thread Chandu_Coool123
Hello, I am new to spring (Plz help me). I have an working application with Spring,hibernate,Jboss and webservices. Also posted on Spring Forum (waiting for reply) My requirement is to write test cases using TestNg. I have multiple session factories in my configuraiton file and using

[jboss-user] [JBossCache] - PojoCache : deciding when the replication is done ?

2007-10-24 Thread jjoannes
Hi, We want to put in a Pojo Cache objects whose attributes change very often. In order to reduce replication overhead we would like to allow replication only on some particular object state (stable ones). Is there a way to do that ? Thanks View the original post :

[jboss-user] [Beginners Corner] - Re: JBoss Startup - Log4JService

2007-10-24 Thread jaikiran
Matty_R wrote : It just comes down to cost of upgrade / retesting all of the different apps hosted on the server... | | Fair enough. I dont have that version installed on my test system. The oldest that i have is 3.2.7. I looked at the jboss-service.xml file and it mentions: !--

[jboss-user] [Beginners Corner] - Seam Text: linebreaks in .properties file

2007-10-24 Thread mars1412
How do I write Seam-Text that includes linebreaks into a .properties file? e.g. the seam-text source code is: The other guy said: | | Nyeah nyeah-nee | /nyeah/ nyeah! | will render as: | p | The other guy said: | /p | qNyeah nyeah-nee | inyeah/i nyeah!/q | the question

[jboss-user] [JBoss jBPM] - Re: Communication between JBoss jBPM application and a web a

2007-10-24 Thread dleerob
This thread can help you get the source code: http://www.jboss.com/index.html?module=bbop=viewtopict=114954 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098276#4098276 Reply to the post :

  1   2   3   4   >