Advertisement

03.21.2008 at 01:18AM PDT, ID: 23259253
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.9

Creating a SOAP request through wsdl

Asked by no158 in SOAP, Programming for ASP.NET, Web Services and WCF

Tags: , , ,

Hello Experts!
I'm a beginner at using web services (started yesterday).

I have a ASP.Net project with a basic website that has some options to select and then calls a web service to get results. I also added a web service class to that project. The basic web service looks like:

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Xml.Linq;

namespace testing
{
    [WebService(Namespace = "http://tempuri.org/")]
    public class webservice1 : System.Web.Services.WebService
    {
        [WebMethod(Description="Testing")]
        public string HelloWorld()
        {
            return "Hello World";
        }
    }
}

I tested this code on the localhost and it works, as you all would probably know.

When I try using the wsdl to generate the proxy code from the command line, it creates the file but there is nothing in it other then the basic comment.

//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:2.0.50727.1433
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

//
// This source code was auto-generated by wsdl, Version=2.0.50727.1432.
//

Nothing else shows up, I figured that since its a basic function call without doing any real work that nothing was generated.

What I'm trying to do is make a SOAP request to a web service on another website and store the xml response in the proper variables. I need some clearing up in this matter, searched around for a while looking for some code snippet that would show me how to send a request to a web service but could not find anything that would suit my needs or I just did not understand what was going on.

Thanks for any help :)
Start Free Trial
[+][-]03.21.2008 at 05:20AM PDT, ID: 21179375

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.21.2008 at 05:41AM PDT, ID: 21179468

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: SOAP, Programming for ASP.NET, Web Services and WCF
Tags: Microsoft, Visual Studio, 2008, website not published
Sign Up Now!
Solution Provided By: Irzana
Participating Experts: 1
Solution Grade: B
 
 
[+][-]03.23.2008 at 10:30PM PDT, ID: 21192072

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628