Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
TDD for a Shopping Website LiveProject
this week in the
Testing
forum!
leo karlsson
Greenhorn
+ Follow
2
Posts
1
Threads
0
Cows
since Jul 27, 2011
Merit Badge info
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
Ranch Hand Scavenger Hunt
Number Posts (2/100)
Number Threads Started (1/100)
Number Cows Received (0/5)
Number Likes Received (0/10)
Number Likes Granted (0/20)
Set bumper stickers in profile (0/3)
Report a post to the moderators (0/1)
Edit a wiki page (0/1)
Create a post with an image (0/2)
Greenhorn Scavenger Hunt
First Post
Number Posts (2/10)
Number Threads Started (1/10)
Number Likes Received (0/3)
Number Likes Granted (0/3)
Set bumper stickers in profile (0/1)
Set signature in profile
Search for a post/thread (0/3)
Set a watch on a thread
Save thread as a bookmark
Create a post with an image (0/1)
Recent posts by leo karlsson
@WebParam with complex type
Thank you for your help
I did annoted my Person class as :
@XmlRootElement @XmlAccessorType(XmlAccessType.FIELD) public class Person{ private String name; private int age; ... }
Is that what you meant?
show more
10 years ago
Web Services
@WebParam with complex type
Hi,
I have a web-service method with a complex type parameter
@WebMethod public void printResult(@WebParam(name = "person") Person person)
in the request soap message i get :
<log:printResult> <!--Optional:--> <person/> </log:printResult>
while I want to get this result :
<log:printResult> <!--Optional:--> <person> <name></name> <age></age> </person> </log:printResult>
assuming
public class Person{ private String name; private int age; ... }
Is that possible
Thanks in advance
show more
10 years ago
Web Services