[jboss-user] [JBoss Seam] - Re: web:character-encoding-filter

2007-08-28 Thread nhpvti
dd_la_frime wrote : I can't override the character encoding of the client and 
the fact that I can't get my well formed html params in GET action.
  | 

According to the reference 
http://docs.jboss.com/seam/1.2.1.GA/reference/en/html_single/ character 
encoding filter anonymous wrote : Sets the character encoding of submitted form 
data.

I suppose that this means POST requests and explanes why this filter doesn't 
work for the POST requests, am I right?

If yes how is it possible to override the character encoding for GET requests?




View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4078859#4078859

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4078859
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: web:character-encoding-filter

2007-06-13 Thread petemuir
It's there in 1.2.1.GA

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4053920#4053920

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4053920
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: web:character-encoding-filter

2007-06-13 Thread dd_la_frime
I don't understand what you're saying.
I'm already using seam 1.2.1 GA.
What I'm saying is that in the components.cml you have to add these lines 
http://jboss.com/products/seam/web http://jboss.com/products/seam/web-1.2.xsd; 
to use the we:character-encoding-filter and this attribute name doesn't exist 
in web-1.2.xsd.
Do I have to change the declaration of the xsd ?

Cheers.

Christophe

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4053929#4053929

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4053929
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: web:character-encoding-filter

2007-06-13 Thread petemuir
It exists in the one I have (but as an element, not an attribute, which is 
correct)

[EMAIL PROTECTED]:~$ cat 
jboss-seam-1.2.1.GA/src/main/org/jboss/seam/web-1.2.xsd 
  | ?xml version=1.0 encoding=UTF-8?
  | xs:schema xmlns:xs=http://www.w3.org/2001/XMLSchema; 
elementFormDefault=qualified
  | targetNamespace=http://jboss.com/products/seam/web; 
xmlns:web=http://jboss.com/products/seam/web;
  | xmlns:components=http://jboss.com/products/seam/components; 
attributeFormDefault=unqualified
  | xs:import namespace=http://jboss.com/products/seam/components; 
schemaLocation=components-1.2.xsd/
  | 
  | ...
  | 
  | xs:element name=character-encoding-filter
  | xs:complexType mixed=true
  | xs:attributeGroup ref=components:attlist.component/
  | xs:attributeGroup ref=web:attlist.filter/
  | xs:attribute name=encoding type=xs:string/
  | xs:attribute name=override-client type=xs:boolean/
  | /xs:complexType
  | /xs:element 
  | 
  | ...
  | /xs:schema

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4053934#4053934

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4053934
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: web:character-encoding-filter

2007-06-13 Thread petemuir
Make sure you have the namespace available - add to the  element

xmlns:core=http://jboss.com/products/seam/core;

and then add configuration as needed - 

web:character-encoding-filter encoding=UTF-16 
  |override-client=true 
  |url-pattern=*.seam/

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4053936#4053936

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4053936
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: web:character-encoding-filter

2007-06-13 Thread petemuir
N.B. This is all in the ref. manual

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4053937#4053937

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4053937
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: web:character-encoding-filter

2007-06-13 Thread dd_la_frime
you must have this one also : xmlns:web=http://jboss.com/products/seam/web;

Anyway it's still not working I can't have my french character [é|à|è|...]

Christophe

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4053940#4053940

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4053940

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: web:character-encoding-filter

2007-06-13 Thread dd_la_frime
Ok me too I've got it in seam sources.
So how did you declare it in the components.xml ? You must not use the http 
one, right ?

Cheers.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4053935#4053935

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4053935
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: web:character-encoding-filter

2007-06-13 Thread petemuir
oops sorry, bad copy and paste ;)  Sorry, I'm no expert on i8ln.  You can check 
whether the seam character encoding filter is running using your debugger...

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4053942#4053942

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4053942
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user