[jboss-user] [EJB 3.0] - Can I access ejb3.0 via corba?

2007-12-19 Thread zgmming
hello,I want to access my ejb3 through corba,how should I do? Please give me an examlpe,and tell me the step to use corba acess ejb3 component. Thanks a lot! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114519#4114519 Reply to the post : http://www.jboss.c

[jboss-user] [JBossWS] - Re: How to write Jboss Web Service Client for JBoss 4.0.4 GA

2007-12-19 Thread techie_techie
I did look at the mentioned link but it does not clearly indicate the steps. Give that the first time I am writing the client, Would appreciate if there is any step by step guide to create the client? TIA... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114

[jboss-user] [Remoting] - Re: JBREM-786:

2007-12-19 Thread [EMAIL PROTECTED]
Hi James, Thanks for sticking around, and thanks for the elucidation. Yes. I get it. I'll do it. Yes. "Molly Bloom" wrote : | yes I said yes I will Yes. | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114508#4114508 Reply to the post : http://ww

[jboss-user] [JBossWS] - Re: Exception while running JbossWS service client

2007-12-19 Thread techie_techie
I created the client artifects from the wsdl. The error was i guess due to since client\jbossall-client.jar was not included in the classpath. I modifed the batch file and it worked fine. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114506#4114506 Reply

[jboss-user] [JBoss Portal] - Re: JBoss Portal 2.6.3 released

2007-12-19 Thread guyb
Thank you Wesley View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114504#4114504 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114504 ___ jboss-user mailing list jboss-user@lis

[jboss-user] [JBoss Messaging] - Re: how to send message to remote server with http

2007-12-19 Thread libinggang
"ataylor" wrote : You need to configure jBoss Remoting. theres an example under docs/examples/http. thanks! is docs/examples/http the same as jboss-messaging-1.4.0.SP3/examples/http? I can run that example successfully,but the access to jndi in that example is not over http,and i tried change

[jboss-user] [JBoss Getting Started Documentation] - Todo Example Application ("jsfejb3.ear") Broken in Safari

2007-12-19 Thread morgalah
Hi all, I downloaded and installed the JBoss 4.2.2.GA.zip. I followed the instructions starting from http://labs.jboss.com/file-access/default/members/jbossas/freezone/docs/Getting_Started_Guide/beta422/html/About_the_Example_Applications.html , including downloading the examples from http:/

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: CMT doesn't rollback

2007-12-19 Thread jaikiran
Try this | try{ | School sc1 = new School("first"); | em.persist(sc1); | if(i == 1) throw new Exception(); | School sc2 = new School("second"); | em.persist(sc2); | }catch(Exception e){ | | System.out.printl

[jboss-user] [EJB/JBoss] - What happened for a Service Bean in multi-threading?

2007-12-19 Thread chenww
I used JBoss extension Service Bean as a singelton control. However, it does not prevent concurrency to call this service Bean. Multi-threadings could call the API in this service Bean at the same time. Seems container control on the bean pool is not effective for service Bean. Is this true? If

[jboss-user] [JBoss Seam] - Re: Injected Logger is null on tomcat, seam 1.2

2007-12-19 Thread tiwaryamit
Thanks pete. I try that tonite. U r great help :-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114497#4114497 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114497 ___ jbos

[jboss-user] [JBoss Seam] - Re: Test database with Seam2, Maven and TestNG?

2007-12-19 Thread andrew.rw.robinson
I got it working, but it was a configuration pain. For those that read this post here is a very quick howto: | * create src/main/conf - this will be files that are added to the war but not added to target/classes on build (and therefore will not interfere with testing) | * move src/main/

[jboss-user] [JBoss Seam] - How to uses DateTimeConverter in .page.xml parameter?

2007-12-19 Thread terryb
I am in a process of upgrading to Seam 2GA; and getting this error I wasn't getting with Seam 1.2.1GA. I have date/time fields on xhtml form; for which I set default values in page action. I am getting attached errors which appears to be related to date value conversion when writing to bean pro

[jboss-user] [JBoss Seam] - Re: org.jboss.remoting.transport.jnp.TransportClientFactory

2007-12-19 Thread piotr.porzucek
Thanks for the answer. I've downgraded to 2.0.0.GA. However, I'm still facing some problems - I moved to this thread http://www.jboss.com/index.html?module=bb&op=viewtopic&t=126274 Regards, Piotr View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114494#411449

[jboss-user] [Javassist user questions] - Find and replace synchronized blocks with JA 3.4?

2007-12-19 Thread PaulKeeble
I have been using the ExprEditor class along with #instrument to enhance byte code, but I am having a little trouble with detecting synchronised blocks. What I want to do is put a method call in place of the beginning and replace the end of the block with a different method call and remove the s

[jboss-user] [JBoss Seam] - Re: Integration test - PROVIDER_URL not provided in jndi.pr

2007-12-19 Thread piotr.porzucek
I've downgraded to 2.0.0.GA. However now I'm getting this exception: | ERROR [org.jboss.kernel.plugins.dependency.AbstractKernelController] Error installing to Described: name=ServerConfig state=PreInstall | java.lang.NoClassDefFoundError: Lorg/jboss/system/server/BaseServerConfig; |

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - CMT doesn't rollback

2007-12-19 Thread su27
My application is using Jboss 4.2.1, EJB3(stateless session bean), EntityManager, Hibernate and Postgresql. it doesn't rollback. ds.xml | | PGDS/JTA | jdbc:postgresql://localhost:5432/postgres | org.postgresql.Driver | xx | yy | | PostgreSQL 8.0

[jboss-user] [JBoss Seam] - Re: Exception

2007-12-19 Thread damnh
My problem is resolved. Thanks Pete View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114488#4114488 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114488 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: Same element ID in many forms on the page

2007-12-19 Thread vanyatka
Here it is. Also, when more then one element in the list the suggestionBox stops working. | | | Id | #{card.id} | |

[jboss-user] [JBoss Seam] - Re: jboss seam project deploy error

2007-12-19 Thread myfuture1
sorry,i made a mistake,there isn't exist $JBOSS_HOME/server/default/deploy/lib directory; it should be $JBOSS_HOME/server/default/lib directory; i am sure that i copyed the sqlserver jdbc driver to $JBOSS_HOME/server/default/lib directory; then get the error info; what should i do? View t

[jboss-user] [JBossWS] - Dealing with multple client jaxws implementations

2007-12-19 Thread halr66
We are deploying multiple generated soap clients, including a JBossWS generated client, an Axis generated client, and an XFire client. The first two run fine on top of the native JBossWS 2.0.1 stack, unfortunately the XFire client (for reasons I won't go into now) is not portable. Therefore, we'

[jboss-user] [JBoss Seam] - Re: using raiseTimedEvent / TimerSchedule

2007-12-19 Thread JakeC
I've been using a variation of this in Seam 1.1.5.GA where my Asynchronous method returns javax.ejb.Timer, and I declare "@In Timer timer;" in my class, so I can cancel the Timer if I need to. However, in Seam 2.0.1.CR1, as soon as I declare "@In Timer timer;" in my class, Events.instance().rai

[jboss-user] [JBoss Seam] - Re: Transactional Method Flush

2007-12-19 Thread DiegoCoronel
yeah, i tried that, it works, but im looking for something like when my method finish without exception the flush occurs automatic... is there any way ? because i dont want to add in all my facade methos em.flush. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&

[jboss-user] [JBoss Seam] - Re: problems with seam 2.0.0GA and custom validation message

2007-12-19 Thread kosl
Thank you very much for the reply! Regards, karol View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114479#4114479 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114479 ___ jbo

[jboss-user] [JBoss Seam] - problems with hibernate custom validators

2007-12-19 Thread kosl
Dear all, I'm trying to write a custom validator as described http://www.hibernate.org/hib_docs/validator/reference/en/html/validator-defineconstraints.html#validator-defineconstraints-own The validator is intended for use with new users registering and he has to check whether the login given b

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Startup hangs on Log4jService$URLWatchTimerTask

2007-12-19 Thread tresspicher
Well, I was right, it definitely was a newbie mistake. I'm working on an existing project and somebody changed a few things while I wasn't looking. Basically, the logging to STDOUT of the server startup console is being redirected to log/server.log after the point I indicated in my post and the

[jboss-user] [Security & JAAS/JBoss] - Re: Custom principal in Web application

2007-12-19 Thread brent.atkinson
I am actually struggling with this issue in 4.0.5GA. What is interesting is that the wiki article for using custom principals doesn't say that the custom principal will be used as the caller principal if you simply supply the class name via the module-option. I have stepped through a login sess

[jboss-user] [JBoss Seam] - Re: getAsObject not being called - why?

2007-12-19 Thread X490812
Thanks you for the reply Pete - How would I debug this? The scenario is that on render of my xhtml, it renders correctly - the basedonhottask is checked or not checked depending on whether basedonhottask is 0 or 1. On submit of the form after changing the checkbos for basedonhottask, it goes rig

[jboss-user] [JBoss Seam] - Re: SelectItems and cache

2007-12-19 Thread jacob.orshalick
Thanks Pete, I will keep an eye on CVS ;) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114469#4114469 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114469 ___ jboss-user ma

[jboss-user] [JBoss Seam] - Re: getAsObject not being called - why?

2007-12-19 Thread [EMAIL PROTECTED]
Normally this sequence of events means you have some other problem prior to it converting it back to an Object. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114462#4114462 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[jboss-user] [JBoss Seam] - Re: seam events

2007-12-19 Thread [EMAIL PROTECTED]
No, you should use the Seam contexts to pass variables. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114461#4114461 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114461 ___

[jboss-user] [JBoss jBPM] - Re: Jboss jBPM/jBoss ESB link

2007-12-19 Thread kukeltje
h in that case might I suggest this one, one of my favourites and as with beer, do *not* go for the Dutch Fryske Hynder. Millstone van Zuidam is better, but I did not nose it yet... next week. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114460#4114460

[jboss-user] [JBoss Seam] - Re: Transactional Method Flush

2007-12-19 Thread [EMAIL PROTECTED]
em.flush() View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114459#4114459 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114459 ___ jboss-user mailing list jboss-user@lists.jbo

[jboss-user] [JBoss Seam] - Re: error message & trinidad

2007-12-19 Thread [EMAIL PROTECTED]
Use your debugger to find out why a ModelValidator isn't being attached to the input control (it should be) by putting a breakpoint in ValidateAllRendererBase.doEncodeChildren View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114458#4114458 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Problem upgrading to Seam 2.0.1.CR1

2007-12-19 Thread [EMAIL PROTECTED]
Is that the first exception you see? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114457#4114457 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114457 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: Suggestion for Seam Release packaging

2007-12-19 Thread [EMAIL PROTECTED]
The library management system changed completely in 2.0.0.GA to use maven. The JBoss maven repository has a policy of never deleting old releases, and we make sure all dependencies of Seam are deployed to the maven2 repo - so you should always be able to grab the necessary jars. We don't plan t

[jboss-user] [JBoss Seam] - Re: Integration test - PROVIDER_URL not provided in jndi.pr

2007-12-19 Thread [EMAIL PROTECTED]
Use 2.0.0.GA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114455#4114455 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114455 ___ jboss-user mailing list jboss-user@lists.j

[jboss-user] [JBoss Seam] - Re: Scope of EntityManager

2007-12-19 Thread [EMAIL PROTECTED]
We fixed this for RichFaces 3.1.2.GA and later IIRC. 3.1.3 is definitely ok :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114454#4114454 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114454

[jboss-user] [JBoss Seam] - Re: AuthorizationException question

2007-12-19 Thread [EMAIL PROTECTED]
Listen for the org.jboss.seam.security.notAuthorized event http://docs.jboss.org/seam/2.0.1.CR1/reference/en/html/security.html#d0e7997 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114453#4114453 Reply to the post : http://www.jboss.com/index.html?module=

[jboss-user] [JBoss Seam] - Re: org.jboss.remoting.transport.jnp.TransportClientFactory

2007-12-19 Thread [EMAIL PROTECTED]
Try with 2.0.0.GA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114452#4114452 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114452 ___ jboss-user mailing list jboss-user@li

[jboss-user] [JBoss Seam] - Re: Access exception stacktrace from error page

2007-12-19 Thread [EMAIL PROTECTED]
It's there as #{org.jboss.seam.handledException} View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114450#4114450 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114450 ___ jboss-

[jboss-user] [JBoss jBPM] - Re: Changing the id of a processDefinition or of a instance?

2007-12-19 Thread [EMAIL PROTECTED]
Nope, the problem is that you forgot to deploy the process definition before creating a process instance: jbpmContext.deployProcessDefinition(pd). See the examples in the user guide. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114451#4114451 Reply to the p

[jboss-user] [JBoss Portal] - Re: Adding jmx options to the JAVA_OPTS gives NPE when start

2007-12-19 Thread viggo.navarsete
Is this a candidate for a jira issue? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114448#4114448 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114448 ___ jboss-user mailin

[jboss-user] [JBoss Seam] - getAsObject not being called - why?

2007-12-19 Thread X490812
here is the converter: @Name("tst") | @Scope(ScopeType.APPLICATION) | @org.jboss.seam.annotations.faces.Converter(id="tst") | public class Tst implements Converter { | | public Object getAsObject(FacesContext arg0, UIComponent arg1, String arg2) { | int i = 0; |

[jboss-user] [JBoss Seam] - Re: using two @Factory methods with two EntityManager object

2007-12-19 Thread [EMAIL PROTECTED]
I meant to do with XA datasources or with @PersistenceContext - SMPCs still use this stuff underneath. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114447#4114447 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114447

[jboss-user] [JBoss Portal] - Re: JBoss Portal 2.6.3 released

2007-12-19 Thread viggo.navarsete
Wesley, thanks for valuable input, and quick response:) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=411#411 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=411 __

[jboss-user] [JBoss Portal] - Re: JBoss Portal 2.6.3 download

2007-12-19 Thread wesleyhales
Richfaces bridge is the only 301 bridge... see my response to your other post here: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=125942 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114442#4114442 Reply to the post : http://www.jboss.com/index.h

[jboss-user] [JBoss Portal] - Re: JBoss Portal 2.6.3 released

2007-12-19 Thread wesleyhales
RichFaces released the bridge(Richfaces only) with 3.1.3 this week. We are working on adding Seam portlet functionality to that same bridge now. We leveraged the Myfaces/Oracle 301 impl. and followed the spec while adding our enhancements for RF and Seam. The only thing that remains is code chan

[jboss-user] [JBoss jBPM] - Re: BPEL Problem: Fault Handler

2007-12-19 Thread [EMAIL PROTECTED]
Hi Agus, Your fault message appears corrupted. I'm looking for a subelement in . Is that the actual message? If not, can you repost it? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114436#4114436 Reply to the post : http://www.jboss.com/index.html?module

[jboss-user] [JBoss Portal] - Re: JBoss Portal 2.6.3 download

2007-12-19 Thread viggo.navarsete
Hi Thomas! I know you are a clever guy with lot's of inside information about JBoss, so please enlighten me if you can: I've posted comments on several threads about a JSR-301 portlet bridge implementation that JBoss "some project" is implementing. As far as I understand, the JBoss Portal guys

[jboss-user] [JBoss Portal] - Re: JBoss Portal 2.6.3 released

2007-12-19 Thread viggo.navarsete
Wwesley Hales: I'm a bit confused about this JSR-301 portlet bridge. Do the portal team implement one bridge, and the Richfaces project another one? Please look at my post here to understand why I'm confused. Which one should I preferably use? View the original post : http://www.jboss.com/index

[jboss-user] [Messaging, JMS & JBossMQ] - Changing Dead Letter Queue for specific queues

2007-12-19 Thread tnine
I'm attempting to create a program that allows support staff to work a queue that has all the failed messages from a specific input queue. This is basically due to integration issues, and this will allow us to correct messages that are not correctly sent to us, and notify the sending party. Is

[jboss-user] [JBoss Seam] - Re: using two @Factory methods with two EntityManager object

2007-12-19 Thread asookazian
How will they tell me to use/configure SMPC, afaik it's specific to SEAM... Are there any example apps in the Seam distro that uses SMPC? I would hope so. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114431#4114431 Reply to the post : http://www.jbos

[jboss-user] [JBoss Seam] - Re: seam-gen : reverse DB : many-to-many convention ?

2007-12-19 Thread [EMAIL PROTECTED]
When I say doesn't support, perhaps what I mean is "isn't garunteed to do it correctly". I believe it works fine in Hibernate Tools (the reveng from db part) but not in generating the UI as atao says. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114428#4114

[jboss-user] [JBoss Seam] - Re: jbpm, AssignmentHandler and bijection

2007-12-19 Thread [EMAIL PROTECTED]
Use assignment via EL with Seam, not AssignmentHandlers View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114430#4114430 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114430 ___

[jboss-user] [JBoss Seam] - Re: Injected Logger is null on tomcat, seam 1.2

2007-12-19 Thread [EMAIL PROTECTED]
The logger is used in the jpa example which deploys to plain tomcat. Take a look at it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114427#4114427 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114427 __

[jboss-user] [JBoss Seam] - Re: using two @Factory methods with two EntityManager object

2007-12-19 Thread [EMAIL PROTECTED]
You should ask these questions on the hibernate or EJB3 forums as you will probably get a better answer there. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114426#4114426 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p

[jboss-user] [JBoss Seam] - Re: redirect based on roles

2007-12-19 Thread [EMAIL PROTECTED]
Can you use your debugger to see what roles the user has when the s:hasRole check is run? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114425#4114425 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114425

[jboss-user] [JBoss Seam] - Re: Same element ID in many forms on the page

2007-12-19 Thread [EMAIL PROTECTED]
Can we see an example of it inside the iterator? i.e. post the xhtml including the iterator View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114423#4114423 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114423 __

[jboss-user] [JBoss Seam] - Re: using two @Factory methods with two EntityManager object

2007-12-19 Thread asookazian
I have successfully used two EntityManager objects pointed to two different DB's. In the case of transaction propagation via one SFSB method calling another one (in my case in the same SFSB), an XA datasource may be required to ensure the distributed transaction is supported. Gavin's suggest

[jboss-user] [JBoss Seam] - seam events

2007-12-19 Thread skanky78
hi, i'm having problems with seam events definied in components.xml. if a certain events occurs a method with a string as an argument shall be called. example: | | | | | | | @Name("example") | public class Example { | public void saySomething() {

[jboss-user] [JBoss Seam] - Re: Search entity doesn't need to be validated

2007-12-19 Thread [EMAIL PROTECTED]
"jazir1979" wrote : From my understanding, you need s:validate to trigger hibernate validator at the JSF level. Otherwise, the validations only trigger when you try to persist an entity? I could be wrong, however. No, you are completely correct. Don't use s:validate/s:validateAll in your sear

[jboss-user] [JBossWS] - Re: JBossWS Tools Overview (wstools, wsprovide, wsconsume)

2007-12-19 Thread jsolderitsch
I meant to post the following topic: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=126300 to this thread as a reply. Instead it wound up as a separate topic in JBossWS. Looking for advice and pointers. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&

[jboss-user] [JBossWS] - Relationship between wsconsume and wsimport

2007-12-19 Thread jsolderitsch
I saw some previous postings on wsimport and I do not see any mention in this thread about wsimport -- only wsconsume. Is this the JBoss final name for the wsdl consumption tooling capability? I am asking because I want to employ maven for web service generation and there is a plugin that inclu

[jboss-user] [JBoss Seam] - Re: Exception

2007-12-19 Thread [EMAIL PROTECTED]
Try putting @BypassInterceptors on your @Remove method rms.csvListAction. Please don't bump. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114418#4114418 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114418

[jboss-user] [JBoss Seam] - Re: Datasource problem with seam and jbpm

2007-12-19 Thread [EMAIL PROTECTED]
Post the exception stack trace. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114414#4114414 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114414 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - End conversation and h:message

2007-12-19 Thread DiegoCoronel
Hi, im trying to show a message in my xhtml. | | http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> | http://www.w3.org/1999/xhtml"; | xmlns:s="http://jboss.com/products/seam/taglib"; | xmlns:ui="http://java.sun.com/jsf/facelets"; |

[jboss-user] [JBoss Seam] - Re: Problem with manual flush mode for managed persistence c

2007-12-19 Thread [EMAIL PROTECTED]
You would set up multiple entity manager components in components.xml like | | | @In EntityManager entityManager1; | @In EntityManager entityManager2; View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114416#4114416 Reply to the post : http://www.

[jboss-user] [JBoss Seam] - Re: SelectItems and cache

2007-12-19 Thread [EMAIL PROTECTED]
Jacob, yes, I would use JBoss Cache. I have to make some changes to Seam UI to get this to work I think, and will update the docs when done :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114413#4114413 Reply to the post : http://www.jboss.com/index.html?m

[jboss-user] [JBoss Seam] - Re: using two @Factory methods with two EntityManager object

2007-12-19 Thread [EMAIL PROTECTED]
Try using two SMPCs, this should work (I'm no EJB3 expert, so not sure why it doesn't work with two entity managers injected using @PersistenceContext, maybe ask on the EJB3 forum). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114412#4114412 Reply to the p

[jboss-user] [JBoss Tools (users)] - Re: First steps with Seam using JBoss tools

2007-12-19 Thread [EMAIL PROTECTED]
What is the underlying exception ? The original cause ? note: we had to fix bugs in seam-gen for 1.2.1 to have it work correctly not sure if this is one of them; those bugfixes are in the 1.2.1_AP branch of seam. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=

[jboss-user] [JBoss Tools (users)] - Re: Connecting to Oracle (Driver Class is empty)

2007-12-19 Thread [EMAIL PROTECTED]
That message occurs if the connection profile is not returning the proper generic properties for us to get the connection class/driver class etc. Did you use the Generic connection profile ? Please report the spelling error in jira. View the original post : http://www.jboss.com/index.html?modu

[jboss-user] [EJB/JBoss] - Re: Are Stateless Session EJB Thread-safe

2007-12-19 Thread [EMAIL PROTECTED]
The best thing to do is to make a testcase and see what happens. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114409#4114409 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114409 __

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Startup hangs on Log4jService$URLWatchTimerTask

2007-12-19 Thread tresspicher
Hi all, When I start up my server, it gets this far: | = | | JBoss Bootstrap Environment | | JBOSS_HOME: /usr/local/jboss-4.2.0.GA | | JAVA: /usr/java/bin/java | | JAVA_OPTS: -Dprogram.name=run.

[jboss-user] [EJB/JBoss] - Re: Are Stateless Session EJB Thread-safe

2007-12-19 Thread khanna111
If there are more than one threads from a single client, can they access the same SLSB simultaneously? If so, what exception would be thrown? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114405#4114405 Reply to the post : http://www.jboss.com/index.

[jboss-user] [JBoss Seam] - Re: Redirect and GET parameters

2007-12-19 Thread skanky78
hi, try the following in your pages.xml | | | | | | | | | | cheers, sven View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114404#4114404 Reply to the post : http://www.jboss.com/index.html?modul

[jboss-user] [JBoss Seam] - Re: Security: Better support for single sign on?!

2007-12-19 Thread sweetlandj
I have a slightly different solution that avoids the need to add action parameters to pages. Basically I extended Identity and overrode the isLoggedIn method. Here is some code that will implement a trivial and unsecure SSO across many co-located applications simply by passing the username and

[jboss-user] [Installation, Configuration & DEPLOYMENT] - UNC file path is not accesible

2007-12-19 Thread jprakash76
Hi all I am using JBOSS-4.0.5.GA, In my web deployment descriptor, I define a remote system directory using UNC Path. I am file not found exception. java.io.FileNotFoundException: \\4csdc01\home\JayaprakashK\iWarrantyCPTAssets\InfraFile\maps\BusinessPartnerMap.xml at org.jboss.net.prot

[jboss-user] [JBoss Seam] - Re: Redirect and GET parameters

2007-12-19 Thread alllle
"[EMAIL PROTECTED]" wrote : The page param should allow you to do this. | Could you elaborate it a little bit more? As described in the previous posts in this thread, the default behavior does not append "articleId=xx" to the URL redirected. what do I need to change to have the "articleId=xx"

[jboss-user] [JBoss Tools (users)] - Re: First steps with Seam using JBoss tools

2007-12-19 Thread amitev
What is the root cause. Is it java.lang.NoClassDefFoundError: javax/el/ELException | com.sun.facelets.tag.AbstractTagLibrary.addTagHandler(AbstractTagLibrary.java:469) | com.sun.facelets.tag.jstl.core.JstlCoreLibrary.(JstlCoreLibrary.java:32) | com.sun.facelets.tag

[jboss-user] [JBoss/Spring Integration] - Re: Deploying multiple XML files as a single SpringApplicati

2007-12-19 Thread alesj
Use our Microcontainer, which is a full blown state machine, so it doesn't really matter in which order you deploy your beans. And you can split the beans definitions in as fine grained files as you like. http://labs.jboss.com/jbossmc And you can already deploy existing Spring beans .xml files wit

[jboss-user] [JBoss Seam] - Re: A customer JSF tag to display Graphics2D in Seam PDF out

2007-12-19 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBSEAM-2414 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114390#4114390 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114390 ___ jboss-use

[jboss-user] [JBoss/Spring Integration] - Re: Deploying multiple XML files as a single SpringApplicati

2007-12-19 Thread acricken
It's often useful to break beans out into separate XML files for legibility, as well as making it easier to swap certain portions for different configurations or environments. While this may speak to an over-reliance on Spring for DI, I still find it useful. When doing this, it's desirable to

[jboss-user] [JBoss Seam] - Re: Seam in Real World: Made with Seam

2007-12-19 Thread monkeyden
"[EMAIL PROTECTED]" wrote : Guys don't get too upset. User's can change the extension used in URL mappings to *anything they like*. And I know that plenty of folks here use other URL mappings than *.seam. No doubt, I don't see why you wouldn't change it. We deployed a very high profile real es

[jboss-user] [JBossWS] - Re: Web Service Response encoding problem

2007-12-19 Thread AndersM
Well. Sometimes you just don't seem to be able to beat the system. :-( I actually got them right once when I previewed. "üåäöÜÅÄÖ" "üåäöÜÅÄÖ" "üåäöÜÅÄÖ" View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114386#4114386 Reply to the

[jboss-user] [JBossWS] - Re: Web Service Response encoding problem

2007-12-19 Thread AndersM
Of course neither one showed up OK. I'll make one last effort and disable HTML in this post. Hopefully this will look OK: "üåäöÜÅÄÖ" or this: "üåäöÜÅÄÖ" /Anders View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114385#4114385 Reply to the post : http:/

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Localhost/IP Address issue

2007-12-19 Thread PeterJ
When running netstat, always provide the -ab option - it lists all ports opened and the app the opened them. But based on the netstat output you posted, it looks like the app server is still binding to localhost, and not 0.0.0.0. Please post the first 20 or so lines when you start the app serve

[jboss-user] [JBossWS] - Web Service Response encoding problem

2007-12-19 Thread AndersM
Hi, I'm having problem with the encoding of java.lang.String in my Web Service response. Seems like a String in a complex data structure will be returned as ISO-8859-1 instead of UTF-8. If the WebMethod only returns a String it will be interpreted correctly as UTF-8. Very odd. I've written a s

[jboss-user] [Beginners Corner] - Re: jboss AS, jboss Web and php

2007-12-19 Thread PeterJ
The error message is written in Unixese. In Windows, the missing file is php5servlet.dll, and it should be in the bin/native directory. When you unpack the zip download http://labs.jboss.com/jbossweb/downloads/php/, copy the file from the PHP/bin directory to bin.native. View the original post

[jboss-user] [JBoss Seam] - Re: Seam Example + Local Database

2007-12-19 Thread tynor
By default, JBoss only binds to localhost (127.0.0.1). To get it to listen to the external address, invoke the run.sh or run.bat script with the -b option: ./run.sh -b 0.0.0.0 See http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossRunParameters View the original post : http://www.jboss.com/in

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: migration from jboss-4.0.5.GA to jboss-4.2.1.GA

2007-12-19 Thread [EMAIL PROTECTED]
Seam 2.0 requires JSF 1.2. So that's why you get the "no grammar found" error with JSF 1.1. The faces-config.xml in Seam 2.0 is using http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd, which JSF 1.1 does not understand. I don't know if Seam 2.0 is known to work with MyFaces 1.2 or not

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Unwaring web app - leaves some files in the war

2007-12-19 Thread PeterJ
I tried something. Instead of exploded directories, I packaged the war into a file, and the ear into a file. Now I am seeing the same results you are seeing. I though you stated that you were using exploded directories? Here is my directory/file structure (starting with the deploy directory): d

[jboss-user] [JBoss Seam] - Re: Seam Example + Local Database

2007-12-19 Thread [EMAIL PROTECTED]
That seems more basic than what I was talking about :) Can you ping the IP address? Other than that I'm not sure - from this info you are not even getting to JBoss. It does not think anything is even there. Try http://10.0.0.188:8080 - what do you see? View the original post : http://www.j

[jboss-user] [JBoss Portal] - Re: JBoss Portal 2.6.3 released

2007-12-19 Thread viggo.navarsete
When will the bridge (I guess your talking about the JSR-301 portlet bridge implementation?) be finalized? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114372#4114372 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=411

[jboss-user] [JBoss Seam] - Transactional Method Flush

2007-12-19 Thread DiegoCoronel
Hey, how can i make a method flush when it runs with success. I have managed Bean | @Name("cadastroFornecedoresBean") | @Scope(ScopeType.SESSION) | public class CadastroFornecedoresBean { | @In(create = true, value = "#{almoxarifadoFacade}") | private IAlmoxarifadoFacade almoxa

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Unwaring web app - leaves some files in the war

2007-12-19 Thread PeterJ
I also placed my class in a jar file in the web-inf/lib directory, and I am calling it from a jsp. So as far as I can tell I have the same setup that you have. Yet there must be something different because I am not seeing what you are seeing. For example, here are the contents of my work/jboss.

[jboss-user] [JBoss Seam] - Re: Seam Example + Local Database

2007-12-19 Thread vikramchhetryy
for database connectivity I didnt get an error because i didnt make any changes in any xml file because i dont know where to start with. http://10.0.0.188:8080/seam-registration/ error: Unable to connect Firefox can't establish a connection to the server at 10.0.0.188:8080. View the origina

[jboss-user] [JBoss Seam] - Seam PDF with content-disposition=attachment - is it possibl

2007-12-19 Thread ASavitsky
Currently, when I generate PDFs using Seam PDF, they either a) open in the same browser window by default, or b) open in a new window, if I use s:link with target="_blank". What I'm missing (compared to the old way of generating PDFs using Jasper - not that I miss Jasper by any amount) is the ab

[jboss-user] [JBoss Seam] - Re: Seam Example + Local Database

2007-12-19 Thread [EMAIL PROTECTED]
We need more info on the error you are seeings. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114362#4114362 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114362 ___ jboss-u

[jboss-user] [JBossWS] - Re: JBoss Hanging on start up during Web Service ServletCont

2007-12-19 Thread hopkinst
Here is the web.xml that contains the listener. | http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd";> | SSDIWeb | | | com.ctc.s

[jboss-user] [JBoss Seam] - Re: Seam Example + Local Database

2007-12-19 Thread vikramchhetryy
Hi Jay How are you? Actually I dont know what to change, i didn't try changing any thing. Do you have any idea about localhost problem? Thanks Jay View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114360#4114360 Reply to the post : http://www.jboss.com/index.h

  1   2   3   >