Re: Problem in Object transfer back to Client

2010-10-08 Thread Deepal Jayasinghe
The reason is you store the value as a class variable. When you do so (and if you have deploy it on the request scope), every time you invoke the service it creates a new instances, thus it returns null. To solve the problem, you need to deploy the service in a higher level session scope (e.g., so

Re: Problem in Object transfer back to Client

2010-10-08 Thread Meet
Friends, I have found the cause of this problem. The auto genereted service.xml was not having socpe='application' in the paramenter. I dont know whether we can force this or not. But anyways..the issue is resolved. Thanks Regards, Mitesh Meet wrote: > > Hi, > I am struggling to find out the