Thanks I hadnt thought of it like that,
Main Topics
Browse All TopicsHi, I'm using asp.net and vb.net. I have just written my first web service and I've run into a few problems. The service itself receives a string (a personal ID number) and searches an SQL database for a match and then displays the person's information that matches the string. Here's what I have...
Dim Connection As String = "Data Source=.\SQLEXPRESS;Attach
Dim ConnA As New Data.SqlClient.SqlConnecti
ConnA.Open()
Dim SQLC As String = "SELECT * FROM Personal WHERE PNum = '" & StringNum & "'"
Dim dataAdap As New Data.SqlClient.SqlDataAdap
Dim dataset As New Data.DataSet
da.Fill(ds, "Personal")
ConnA.Close()
Dim MyObject As Object
MyObject = dataset
Return MyObject
I have added the service to my site project as a reference and I have a textbox to enter the string and a button to call the service. The problem is with the web service I think, I can only return a string when I wish to return an object with results in it. When I run it and enter info in the textbox and click the button it tells me I need to pass a string not an object. Can someone give me some advice and help me solve this?
Any help would be great, thanks.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: McExpPosted on 2008-04-02 at 14:06:57ID: 21267544
Assuming your Web service needs to only return one result you can return a Structure otherwise youi will need an array of structures, see below for an example
Select allOpen in new window