i am building a web service in java and my client is .net for example my table contains String "name",String "surname", and Integer "id" and i want to send all of them my question is, which type should the method return?
+1
A:
If I understand your question correctly, it would be some custom type like:
class Person {
String name;
String surname;
Integer id;
// constructor etc.
}
Fabian Steeg
2010-06-02 21:55:26
thanx it worked.
Sedat
2010-06-15 19:45:44