• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

@FormParam with CXF 2.2

 
Ranch Hand
Posts: 228
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I am using CXF 2.2 for implementing restful services. I have a post method in the service
Ex:
@POST
@Path("/login")
public boolean login(@FormParam("userName") String userName,
@FormParam("password") String password )

I am not able to get the form param values in the service class there are always null. Does CXF 2.2 support @FromParam? If yes, is there any configuration to make it to work?

I am using apache commons http client to test my service:
Ex:
PostMethod post = new PostMethod("http://localhost:8080/rest/login");
post.addParameter("userName", "testuser");
post.addParameter("password", "testpassword");

HttpClient httpclient = new HttpClient();
int result = httpclient.executeMethod(post);

Could any one suggest me where am i doing wrong?

Thanks,
 
Saathvik Reddy
Ranch Hand
Posts: 228
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I realized i made a silly mistake. It works now.

Thanks,
 
Tomorrow is the first day of the new metric calendar. Comfort me tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic