[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[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, Web Services and WCF, Programming for ASP.NET

Tags: Microsoft, Visual Studio, 2008, website not published

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 :)
 
Related Solutions
 
Loading Advertisement...
 
[+][-]03/21/08 05:20 AM, ID: 21179375Expert Comment

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 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/21/08 05:41 AM, ID: 21179468Accepted Solution

View this solution now by starting your 30-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, Web Services and WCF, Programming for ASP.NET
Tags: Microsoft, Visual Studio, 2008, website not published
Sign Up Now!
Solution Provided By: Irzana
Participating Experts: 1
Solution Grade: B
 
[+][-]03/23/08 10:30 PM, ID: 21192072Author Comment

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 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091021-EE-VQP-81 / EE_QW_2_20070628