[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-21 Thread EverlastX1
Finally ! I found out the the bean behaved "Stateless" although I did annotate it as Stateful, no wonder it didn't work, I just found it out by coincidence. After changing it from conversation scope to the Session scope it suddenly worked like a charm ! The Conversation was over for seam afte

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-21 Thread EverlastX1
Finally ! I found out the the bean behaved "Stateless" although I did annotate it as Stateful, no wonder it didn't work, I just found it out by coincidence. After changing it from conversation scope to the Session scope it suddenly worked like a charm ! For Seam the Conversation was over after

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-21 Thread EverlastX1
Thank you, Did try it but without any changes If s:link is used function gets called with the null parameter with h:commandLink function is not called at all. | | http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> | http://www.w3.org/1999/xhtml"; | xmlns:s="ht

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-20 Thread EverlastX1
thx for this hint. "You must ensure that the parameters are available not only when the page is rendered, but also when it is sub- mittedIf the arguments can not be resolved when the page is submitted the action method will be called with null arguments" --> Stateful bean, right? I did read th

[jboss-user] [JBoss Seam] - Re: s:link + method parameter

2008-01-16 Thread EverlastX1
I have the same problem like you http://www.jboss.com/index.html?module=bb&op=viewtopic&t=127673 I am also still looking for a solution. the weired thing about it is that the same code did work with seam 1.2.1 but not with 2.0.0GA This can be maybe a bug, but I am not sure. View the origi

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-15 Thread EverlastX1
what reasons are responsible that a value of a var is not passed to the bean? "#{searcher.searchByCreator(var)}" // var is not empty but it is in the bean View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4120195#4120195 Reply to the post : http://www.jboss.com/

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-15 Thread EverlastX1
a note if I put a constant as a param in JSF like this then my bean function SearchBean.searchByCreator(String c){} is called with the value 'test String' the variable c is always empty !!! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4120110#4120110 Rep

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-15 Thread EverlastX1
no docResult.doc.creator is an array of String In the second dataTable I loop thou the array and bind each array element to the var "c" and the elements of docResult.doc.getCreator() are instanceof Strings | | |

[jboss-user] [JBoss Seam] - expression language empty parameter

2008-01-15 Thread EverlastX1
hello, I have a strange problem with the seam EL that I didn't had with version 1.2.1 GA . Now I moved from 1.2.1 to 2.0.0GA. The problem is that if I pass a parameter like #{searcher.searchByCreator(c)} the function is getting called in my bean searchBean.searchByCreator(String creator) but th

[jboss-user] [JBossWS] - Re: charset problem with jbossws 2.0.2 and .net clients

2008-01-07 Thread EverlastX1
What is in general the best solution, best practice to overcome such issues? Always enable -Dfile.encoding=UTF-8 option if possible? then why is it not the enabled by standard? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117564#4117564 Reply to the post

[jboss-user] [JBossWS] - Re: charset problem with jbossws 2.0.2 and .net clients

2008-01-07 Thread EverlastX1
I think I can't use the -Dfile.encoding=UTF-8 option because the 3rd party modules I am using don't work anymore if this option is on. Am I right if I say that normally the conversation should be done automatically upon receive of the elements? it is working in the forward direction .NET (lat

[jboss-user] [JBossWS] - Re: charset problem with jbossws 2.0.2 and .net clients

2008-01-06 Thread EverlastX1
This is the debug message of the response of the Test(String ping) function from the jboss logs. The interesting thing about it is that at the point were the logs were created the values are encoded already in utf-8. So the second encoding step is happening somewhere further beyond this point.

[jboss-user] [JBossWS] - charset problem with jbossws 2.0.2 and .net clients

2008-01-05 Thread EverlastX1
Good evening ladies and gentleman, I am struggling sending special character like the German üö from the .net client to the jboss server. I have the following reproducible scenario: jboss 4.22 jbossws 2.0.2GA .Net Client .net is pinging the following String to jboss: ""from .NET with ü -- ö""

[jboss-user] [JBoss Seam] - use of Browser back Button gives me afterwords wrong results

2007-07-16 Thread EverlastX1
The Problem is like this: I get a result List lets say with 5 Documents about Seam. Each one with a creator. If I now click on one of the creator in this seam list I get a result list with all documents by this creator. So far this is working fine. But !!! if I use the browser Back Button I get

[jboss-user] [JBoss Seam] - Re: Redirection to a static URI

2007-07-16 Thread EverlastX1
Found out that all is fine in my code. But due browser security restrictions its prohibited to call from a web site file://* the browser isn't allowing this. IE and Firefox but i think the others as well. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=406445

[jboss-user] [JBoss Seam] - Redirection to a static URI

2007-07-10 Thread EverlastX1
Hi i would like to redirect from my application to static content. but before I do this I need log some stuff so I call an action method and as a result of this action method the request should be redirected | | | facesContext.getExternalContext().redirect("http://www.google.com";);