Hi

As Arul said, 2.2-SNAPSHOT supports jax-rs 1.0 api so FormParams can be
used. 

I'm not certain that FormParams is what you need for your scenario - as
far as I understand it's mostly an alternative to using a
MultivaluedMap.
But if you do submit data from an html form then with 2.1.2 you just
might want to do:

@Post
@ConsumeMime(MediaType.APPLICATION_FORM_URLENCODED)
public void someMethod(MultivaluedMap) {}  

Another option is to use multiparts - currently you'd need to use
InputStream and proceed from there :
   
@Post
public void someMethod(InputStream) {}

In 2.2 we'll try to offer a better support for dealing with attachments,
DataSource will most likely be supported at the least.

Cheers, Sergey

-----Original Message-----
From: kpalania [mailto:[email protected]] 
Sent: 31 December 2008 04:35
To: [email protected]
Subject: FormParam support and usage..


I am using CXF-2.1.2 and I don't believe this has support for @FormParam
since it uses jsr-311*.jar version 0.8 (as opposed to 0.10). I have a
need
to POST a large piece of content (over 4K) via the RESTful Services and
I
believe I would need to use the FormParam. First of all, is that right?
Where can I get the extension JAR and could someone also give me a
sample
Client call?
-- 
View this message in context:
http://www.nabble.com/FormParam-support-and-usage..-tp21227224p21227224.
html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to