473,387 Members | 1,542 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 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 7117
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. ...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.