Click here to Skip to main content
15,883,603 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how can I call data values in web service ,I can only call methods in the web service but not data ,while the data values are public.

I define the service on the client side as :

C#
Webservice1..ServiceClient s = new Serv.ServiceClient();
s.insert_items(int i,string nsme);

// I can't get access to the defined data in the web service


//please help
Posted
Updated 4-Oct-12 16:08pm
v2
Comments
Ashraff Ali Wahab 4-Oct-12 17:50pm    
You can use method to get the variable value.Why you need data memeber directly accessible?
A.Shoman 4-Oct-12 18:00pm    
I saw when you create an empty web service it gives you two demo methods and two demo variable that should be called from their property.which is easier to deal with .
is that means that you can't call data?

1 solution

use Data Contract attribute in WCF
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900