473,769 Members | 3,823 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

WSDL & .NET Web Service

(Newbie Alert!!) Is there a way to generate a Web Service from a WSDL file?
Or does this not make sense?

--
TFWBWY...A
Nov 23 '05 #1
6 1666
CT
This might help:
http://msdn.microsoft.com/library/de...oolWsdlexe.asp

--
Carsten Thomsen
Communities - http://community.integratedsolutions.dk

"Bryan Dickerson" <tx******@netsc ape.net> wrote in message
news:OT******** ******@TK2MSFTN GP10.phx.gbl...
(Newbie Alert!!) Is there a way to generate a Web Service from a WSDL
file? Or does this not make sense?

--
TFWBWY...A

Nov 23 '05 #2
Thanks! I actually found that about an hour after I posted it, but thanks
anyway!

Next question: I got the generated code, so now, is that my web service
code? I just need to 'debug' and work out the wrinkles from there?

"CT" <ca******@spamm ersgoawayintegr asol.dk> wrote in message
news:us******** ******@TK2MSFTN GP15.phx.gbl...
This might help:
http://msdn.microsoft.com/library/de...oolWsdlexe.asp

--
Carsten Thomsen
Communities - http://community.integratedsolutions.dk

"Bryan Dickerson" <tx******@netsc ape.net> wrote in message
news:OT******** ******@TK2MSFTN GP10.phx.gbl...
(Newbie Alert!!) Is there a way to generate a Web Service from a WSDL
file? Or does this not make sense?

--
TFWBWY...A


Nov 23 '05 #3
CT
The generated code is the proxy used at client-side to access the "real" Web
service on the server. Check out this articles:
http://msdn.microsoft.com/library/de...ebservices.asp

--
Carsten Thomsen
Communities - http://community.integratedsolutions.dk
---------
Voodoo Programming: Things programmers do that they know shouldn't work but
they try anyway, and which sometimes actually work, such as recompiling
everything. (Karl Lehenbauer)
---------
"Bryan Dickerson" <tx******@netsc ape.net> wrote in message
news:uC******** ********@TK2MSF TNGP14.phx.gbl. ..
Thanks! I actually found that about an hour after I posted it, but thanks
anyway!

Next question: I got the generated code, so now, is that my web service
code? I just need to 'debug' and work out the wrinkles from there?

"CT" <ca******@spamm ersgoawayintegr asol.dk> wrote in message
news:us******** ******@TK2MSFTN GP15.phx.gbl...
This might help:
http://msdn.microsoft.com/library/de...oolWsdlexe.asp

--
Carsten Thomsen
Communities - http://community.integratedsolutions.dk

"Bryan Dickerson" <tx******@netsc ape.net> wrote in message
news:OT******** ******@TK2MSFTN GP10.phx.gbl...
(Newbie Alert!!) Is there a way to generate a Web Service from a WSDL
file? Or does this not make sense?

--
TFWBWY...A



Nov 23 '05 #4
I'll remind you of my 'newbie' status before I ask the next 2 questions.

1. What do you mean by "proxy"? Interface? Can you point me to another
example?
2. What do you mean by " 'real' Web service on the server"?

Oh, and thanks for your patience!

"CT" <ca******@spamm ersgoawayintegr asol.dk> wrote in message
news:OS******** ******@TK2MSFTN GP15.phx.gbl...
The generated code is the proxy used at client-side to access the "real"
Web service on the server. Check out this articles:
http://msdn.microsoft.com/library/de...ebservices.asp

--
Carsten Thomsen
Communities - http://community.integratedsolutions.dk
---------
Voodoo Programming: Things programmers do that they know shouldn't work
but they try anyway, and which sometimes actually work, such as
recompiling everything. (Karl Lehenbauer)
---------
"Bryan Dickerson" <tx******@netsc ape.net> wrote in message
news:uC******** ********@TK2MSF TNGP14.phx.gbl. ..
Thanks! I actually found that about an hour after I posted it, but
thanks anyway!

Next question: I got the generated code, so now, is that my web service
code? I just need to 'debug' and work out the wrinkles from there?

"CT" <ca******@spamm ersgoawayintegr asol.dk> wrote in message
news:us******** ******@TK2MSFTN GP15.phx.gbl...
This might help:
http://msdn.microsoft.com/library/de...oolWsdlexe.asp

--
Carsten Thomsen
Communities - http://community.integratedsolutions.dk

"Bryan Dickerson" <tx******@netsc ape.net> wrote in message
news:OT******** ******@TK2MSFTN GP10.phx.gbl...
(Newbie Alert!!) Is there a way to generate a Web Service from a WSDL
file? Or does this not make sense?

--
TFWBWY...A



Nov 23 '05 #5
CT
Bryan,

A proxy is a "copy" of the actual Web service, which I also refer to as the
"real" Web service. Your code talks to the proxy which, in very simple
terms, talks to the Web service. It's a go-between the client and the
server.

--
Carsten Thomsen
Communities - http://community.integratedsolutions.dk
---------
Voodoo Programming: Things programmers do that they know shouldn't work but
they try anyway, and which sometimes actually work, such as recompiling
everything. (Karl Lehenbauer)
---------
"Bryan Dickerson" <tx******@netsc ape.net> wrote in message
news:un******** ******@TK2MSFTN GP10.phx.gbl...
I'll remind you of my 'newbie' status before I ask the next 2 questions.

1. What do you mean by "proxy"? Interface? Can you point me to another
example?
2. What do you mean by " 'real' Web service on the server"?

Oh, and thanks for your patience!

"CT" <ca******@spamm ersgoawayintegr asol.dk> wrote in message
news:OS******** ******@TK2MSFTN GP15.phx.gbl...
The generated code is the proxy used at client-side to access the "real"
Web service on the server. Check out this articles:
http://msdn.microsoft.com/library/de...ebservices.asp

--
Carsten Thomsen
Communities - http://community.integratedsolutions.dk
---------
Voodoo Programming: Things programmers do that they know shouldn't work
but they try anyway, and which sometimes actually work, such as
recompiling everything. (Karl Lehenbauer)
---------
"Bryan Dickerson" <tx******@netsc ape.net> wrote in message
news:uC******** ********@TK2MSF TNGP14.phx.gbl. ..
Thanks! I actually found that about an hour after I posted it, but
thanks anyway!

Next question: I got the generated code, so now, is that my web service
code? I just need to 'debug' and work out the wrinkles from there?

"CT" <ca******@spamm ersgoawayintegr asol.dk> wrote in message
news:us******** ******@TK2MSFTN GP15.phx.gbl...
This might help:
http://msdn.microsoft.com/library/de...oolWsdlexe.asp

--
Carsten Thomsen
Communities - http://community.integratedsolutions.dk

"Bryan Dickerson" <tx******@netsc ape.net> wrote in message
news:OT******** ******@TK2MSFTN GP10.phx.gbl...
> (Newbie Alert!!) Is there a way to generate a Web Service from a WSDL
> file? Or does this not make sense?
>
> --
> TFWBWY...A
>



Nov 23 '05 #6
With all due respect, I guess I'm just not getting the whole picture. Does
the WSDL-generated code represent the way the web service looks to a .Net
program? If so, then how do I use said generated code? Do I just 'flesh
out' the code so that it actually accomplishes what the WSDL says?

"CT" <ca******@spamm ersgoawayintegr asol.dk> wrote in message
news:ud******** *****@TK2MSFTNG P15.phx.gbl...
Bryan,

A proxy is a "copy" of the actual Web service, which I also refer to as
the "real" Web service. Your code talks to the proxy which, in very simple
terms, talks to the Web service. It's a go-between the client and the
server.

--
Carsten Thomsen
Communities - http://community.integratedsolutions.dk
---------
Voodoo Programming: Things programmers do that they know shouldn't work
but they try anyway, and which sometimes actually work, such as
recompiling everything. (Karl Lehenbauer)
---------
"Bryan Dickerson" <tx******@netsc ape.net> wrote in message
news:un******** ******@TK2MSFTN GP10.phx.gbl...
I'll remind you of my 'newbie' status before I ask the next 2 questions.

1. What do you mean by "proxy"? Interface? Can you point me to another
example?
2. What do you mean by " 'real' Web service on the server"?

Oh, and thanks for your patience!

"CT" <ca******@spamm ersgoawayintegr asol.dk> wrote in message
news:OS******** ******@TK2MSFTN GP15.phx.gbl...
The generated code is the proxy used at client-side to access the "real"
Web service on the server. Check out this articles:
http://msdn.microsoft.com/library/de...ebservices.asp

--
Carsten Thomsen
Communities - http://community.integratedsolutions.dk
---------
Voodoo Programming: Things programmers do that they know shouldn't work
but they try anyway, and which sometimes actually work, such as
recompiling everything. (Karl Lehenbauer)
---------
"Bryan Dickerson" <tx******@netsc ape.net> wrote in message
news:uC******** ********@TK2MSF TNGP14.phx.gbl. ..
Thanks! I actually found that about an hour after I posted it, but
thanks anyway!

Next question: I got the generated code, so now, is that my web service
code? I just need to 'debug' and work out the wrinkles from there?

"CT" <ca******@spamm ersgoawayintegr asol.dk> wrote in message
news:us******** ******@TK2MSFTN GP15.phx.gbl...
> This might help:
> http://msdn.microsoft.com/library/de...oolWsdlexe.asp
>
> --
> Carsten Thomsen
> Communities - http://community.integratedsolutions.dk
>
> "Bryan Dickerson" <tx******@netsc ape.net> wrote in message
> news:OT******** ******@TK2MSFTN GP10.phx.gbl...
>> (Newbie Alert!!) Is there a way to generate a Web Service from a WSDL
>> file? Or does this not make sense?
>>
>> --
>> TFWBWY...A
>>
>
>



Nov 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
9904
by: ffhansix | last post by:
Hi, I am having problems with generating a c# proxy class from a IBM websphere WSDL file, when running the wsdl.exe to create the c# proxy file command i recieve an error: Warning: one or more operations were skipped. Warnings were encountered. Review generated source comments for more details.
0
1953
by: Dave | last post by:
Hi, If anyone could help with this, I would greatly appreciate it! I've created my own WSDL file and referenced an XSD file too. I've generated a service side interface using wsdl /server, and created an ASMX file from this. I've then set the Binding for the class and methods and set the Location to my WSDL file. If I put the wsdl:service element in the WSDL file that points to my endpoint, I can go to Add Web Reference and my methods...
2
4199
by: pshvarts | last post by:
(I'm new in SOAP) I get some wsdl file (from apache service ). I tried creating SOAP client with .NET - trying to add Web Reference and get error like: "Custom tool error: Unable to import WebService/Schema. Unable to import binding..." I thought may be wsdl file is not good enough (it was created with qsoap toolkit), so I paste-copy sample from http://www.w3.org/TR/2001/NOTE-wsdl-20010315#_wsdl (will paste below) and receive same error...
0
1691
by: Elhanan | last post by:
hi.. i have a small Web Service which is consumed by dotnet application the webservice is located in 2 places. the first is my local tomcat, and the second is in websphere server. problems is that if i generate a proxy from the wsdl in websphere, i can't get the databean if refer the proxy's url my tomcat's (i simply recive null). this is my tomcats's wsdl:
1
5053
by: Mike Logan | last post by:
I have a schema that defines my messages and objects. I then have a WSDL that defines the web services. I have my sample XSD, sample WSDL, and the code generated from WSDL.exe. In the generated code from WSDL.exe, the "applicationList" object is not a array or "application", which is what it should be, correct? Thanks for the help. <?xml version="1.0" encoding="utf-8" ?> <xs:schema targetNamespace="http://me.com/xml/xsd/AppSec1.xsd"
5
10337
by: Mike Logan | last post by:
I used WSDL.exe to generate a client side web proxy for a web service, called the web service, got the results but an array returned by the web service is not in the results. However if I use "Add Web Reference" for the same service the same function works appropriately. Here is the client proxy generated from WSDL.exe <System.Web.Services.Protocols.SoapDocumentMethodAttribute("capeconnect:AppSec:AppSecPortType#getApplicationUsers",
5
12717
by: ayaz.usman | last post by:
Hi, I've built a web services proxy server, in C# using wsdl.exe, by importing wsdl. Howeever, when I go to : http://localhost/sample.asmx?wsdl, they wsdl there does not match the wsdl I fed into wsdl.exe. Why is this? Is there something I can do to make the input and output wsdl match?
5
4980
by: Nick K. | last post by:
I use wsdl.exe to generate client code to call a web service. The actual web service is generated with the BizTalk Web Services Publishing Wizard. I'm not sure this is particular to the BizTalk code but the calls to web methods pass parameters by ref so that I have to call it like: XmlDocument doc = new XmlDocument(); doc.LoadXml(message);
2
3785
by: Scott Sauyet | last post by:
I'm trying to select a subset of a WSDL document using XSLT and a simple text document describing the high-level elements to include. I have it working fine for selecting the services, bindings, portTypes, and messages to use. But I'm stumped on how to get the xs:simpleType and xs:complexType elements filtered properly. I am not trying to do this in a generic way. The WSDL is generated by a tool in our backend system, and I know a fair...
0
10205
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10035
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9984
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9851
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7401
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5293
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3949
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3556
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2811
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.