• 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

REST client with POST verb - some help needed

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

I am trying to write a REST client with POST/PUT verbs. The server is an Axis2 system using wsdl 2.0. The wsdl2 is the following:


The client uses Jersey jars. The interesting line to call the service is the following:



where the User class defined as



I am working with eclipse and using TCP Monitor to trace the request/response communication exchange. The request is absolutely correct:



But unfortunately the server at the addUser entrypoint get an empty User object:



What is my mistake? What should I change and where?

(An additional info: the login (with Axis2 server and Jersey-base client with GET verb) works properly!)

Thanks in advance

Andras
reply
    Bookmark Topic Watch Topic
  • New Topic