472,958 Members | 2,072 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,958 software developers and data experts.

Can a webservice method return more than field value?

I have a SQL stored procedure for adding a new record in a transactions
table. It also has two return values: CounterID and IDKey.

I want to create a webservice that accepts the 10 input parameters and
returns the two return values.

My C# programmer here says that webservice methods can only return 1 value
per method. Is that right? Though I haven't ever created a webservice, I
would have thought that a method could return a whole lot of field values.

TIA
Jul 2 '08 #1
4 7081
jm
On Jul 2, 6:23*pm, "Jonathan" <n...@none.comwrote:
I have a SQL stored procedure for adding a new record in a transactions
table. It also has two return values: CounterID and IDKey.

I want to create a webservice that accepts the 10 input parameters and
returns the two return values.

My C# programmer here says that webservice methods can only return 1 value
per method. Is that right? Though I haven't ever created a webservice, I
would have thought that a method could return a whole lot of field values.

TIA
I'm still learning, but...It does but in the format of choice. For
example, you can return complex datatypes in JSON format from
webservices with the [ScriptService] attribute.
Jul 2 '08 #2
Hi Jonathan,

As for returning multiple values in webservce webmethod, I think you can
consider the following two approaches:

1. You can define a custom class type which contains multiple member field
to hold the values you want to return. And in your webservice webmethod,
you return the custom class object instead of individual primitive types.
e.g.

[WebMethod]
public MyType helloWorld()
{
MyType mt = new MyType();
mt.field1 = xx;
mt.field2 = yy;

return mt;
}

http://www.crazysalsadancer.com/2007...-from-web-serv
ice.html

2. You can also use "by ref" parameter to define webmethod
parameters(which can also return to the calling client).

For example, the following webmethod return a string value, and also define
a integer paramete as "by reference" that can return value to client.

[WebMethod]
public string WSMethod(string name, ref int status)
{
status = 3;
return "result";
}

At client side, you can call the webservice method and get the two value
returned( the string return value and the integer parameter):

====================
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim status As Integer
Dim ws As New WSREF.WebService
Dim ret As String = ws.WSMethod("steven", status)

MessageBox.Show("result: " & ret & ", status: " & status)

End Sub

======================

Hope this helps.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>From: "Jonathan" <no**@none.com>
Subject: Can a webservice method return more than field value?
Date: Thu, 3 Jul 2008 10:23:10 +1200
>
I have a SQL stored procedure for adding a new record in a transactions
table. It also has two return values: CounterID and IDKey.

I want to create a webservice that accepts the 10 input parameters and
returns the two return values.

My C# programmer here says that webservice methods can only return 1 value
per method. Is that right? Though I haven't ever created a webservice, I
would have thought that a method could return a whole lot of field values.

TIA
Jul 3 '08 #3
On Jul 2, 6:23*pm, "Jonathan" <n...@none.comwrote:
I have a SQL stored procedure for adding a new record in a transactions
table. It also has two return values: CounterID and IDKey.

I want to create a webservice that accepts the 10 input parameters and
returns the two return values.

My C# programmer here says that webservice methods can only return 1 value
per method. Is that right? Though I haven't ever created a webservice, I
would have thought that a method could return a whole lot of field values..

TIA
you can always return 1 value -XML string - that would include all the
returning data ....
more at http://www.siccolo.com/articles.asp
Jul 6 '08 #4
Hi Jonathan,

Have you got any progress on this or does the information in my last reply
help you?

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>Date: Thu, 03 Jul 2008 03:16:03 GMT
Subject: RE: Can a webservice method return more than field value?
>
Hi Jonathan,

As for returning multiple values in webservce webmethod, I think you can
consider the following two approaches:

1. You can define a custom class type which contains multiple member field
to hold the values you want to return. And in your webservice webmethod,
you return the custom class object instead of individual primitive types.
e.g.

[WebMethod]
public MyType helloWorld()
{
MyType mt = new MyType();
mt.field1 = xx;
mt.field2 = yy;

return mt;
}

http://www.crazysalsadancer.com/2007...s-from-web-ser
v
>ice.html

2. You can also use "by ref" parameter to define webmethod
parameters(which can also return to the calling client).

For example, the following webmethod return a string value, and also
define
>a integer paramete as "by reference" that can return value to client.

[WebMethod]
public string WSMethod(string name, ref int status)
{
status = 3;
return "result";
}

At client side, you can call the webservice method and get the two value
returned( the string return value and the integer parameter):

====================
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim status As Integer
Dim ws As New WSREF.WebService
Dim ret As String = ws.WSMethod("steven", status)

MessageBox.Show("result: " & ret & ", status: " & status)

Jul 9 '08 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
by: Jose Fernandez | last post by:
Hello. I'm building a web service and I get this error. NEWS.News.CoverNews(string)': not all code paths return a value This is the WebMethod public SqlDataReader CoverNews(string Sport)...
7
by: stephan querengaesser | last post by:
hi ng, i try to invoke a webservice-method with an filter-object, that contains value types. if i donīt want to filter the return value of the method, i have to pass a new instance of the...
18
by: JohnR | last post by:
From reading the documentation, this should be a relatively easy thing. I have an arraylist of custom class instances which I want to search with an"indexof" where I'm passing an instance if the...
1
by: jens Jensen | last post by:
Hello , i'm calling a webservice generated with oracle webservice java tools. I'm not able to add a web reference to a .net client the usual way with visual studio 2005. I was therefore...
5
by: David++ | last post by:
Hi folks, I would be interested to hear peoples views on whether or not 'pass by reference' is allowed when using a Web Service method. The thing that troubles me about pass-by-reference into...
2
by: Jannicke | last post by:
Hi. I have a project that contains a webservice. To test my webservice I have another class in the same project. In the project I have added a webreference to my webservice. In my class file i call...
0
by: TraceyAnnison | last post by:
I wonder if you can help me - I'm new to this, and working in a project that has already been configured to work with Axis. We have a Java project built with the Spring framework, in order to...
1
by: =?Utf-8?B?d2R1ZGVr?= | last post by:
I have a web service hosting a WCF library, which works fine but produced a strange signature when interacting with vs 2005/2.0 clients. My method takes 3 strings and returns a bool as below. ...
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.