Click here to Skip to main content
Click here to Skip to main content

Generate .NET 2.0 C# proxy file from a JBOSS Web Service

By , 13 Jun 2007
 

Screenshot - screenshot.jpg

Introduction

I had a problem when converting my application from VS2003 to VS 2005: Failed to update the Web Service - got an error indicating bad schema format.

Background

This class provides a solution for the .NET 2.0 WSDL - JBOSS problem: When converting a web project from .NET 1.1 to .NET 2.0 and trying to update a Web Service that is connected to a WSDL on a JBOSS service, an error is raised. This util uses WSDL.exe of .NET 1.1 to generate and update the proxy class file.

Using the Code

Execute the application, enter the parameters as described, and click "Execute". The result is a new C# proxy class file, in the destination folder that you entered before execution.

The following code shows how to use WSDL.exe as an external util:

//Declare and instantiate a new process component.
System.Diagnostics.Process process1;
process1 = new System.Diagnostics.Process();
try
{
    //Do not receive an event when the process exits.
    process1.EnableRaisingEvents = false;
    process1.StartInfo.FileName = "wsdl.exe";
    process1.StartInfo.WorkingDirectory = wsdlCommandPath;
    process1.StartInfo.Arguments = "/n:" + nameSpace + @" /out:" + 
                                   generatedFileName+ " " + wsdlFilePath;

    process1.StartInfo.UseShellExecute = false;
    process1.StartInfo.RedirectStandardError = true;
    process1.StartInfo.RedirectStandardOutput = true;

    process1.Start();
    string output = process1.StandardOutput.ReadToEnd();
    txtOutput.Text = output;

    string outputErr = process1.StandardError.ReadToEnd();
    if (outputErr != "") 
    txtError.Text = outputErr;

}
finally
{
    process1.Close();
}

Points of Interest

I can't help wonder why Microsoft can't make the conversion go smoothly. Why?

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Tohar
Web Developer
Israel Israel
Member
My name is Tohar Trabinovitch. I am 32 years old. I am a Software Engineer, graduated on 2002. My expertise is in GUI / Web applications. I am developing in the following technologies for the last 7 years: Web applications using ASP, PHP, JS, AJAX (and before it called AJAX), and .NET (1.1 / 2.0) using C# language (Smart Client / web Services).

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralGreat idea. Respect.memberMichael Lvov13 Jun '07 - 1:40 
Rose | [Rose]
GeneralUseful utilitymemberAvner Raz13 Jun '07 - 1:26 
Very good and useful utility
 
CTO Software development

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 13 Jun 2007
Article Copyright 2007 by Tohar
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid