Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

I'm going to need to create an application that can log onto an XML webservice (not sure if it's .net or not yet) and send verification and receive one or more datatables in XML.

 

I'm just stuck at how to practice. I don't have a web service personally.

 

Does anyone know of site with XML WebServices to practice off of?

Posted

Thanks for the link PD.

 

My visual studio doesn't have any links to web services when it starts up that I've seen. I'll look out for that when I start up next time.

 

I normally get a list of all the Visual Studio articles from the VS website. Maybe it's on there somewhere.

 

at least I have some to play with :)

 

thank you.

Posted
When I open VS' date=' I get a start page, I know there is an option to turn it off, but it has 3 tabs. The 2nd tab is "Online Resources", and the 2nd to bottom item is "XML Web services" where you can search for web services.[/quote']

I don't know what visual studio version he is in, but it sounds like you are in 2003... If he is in 2005, it doesn't have those tabs. It just has article listings and recent projects and stuff on the start page.

Posted
I don't know what visual studio version he is in' date=' but it sounds like you are in 2003... If he is in 2005, it doesn't have those tabs. It just has article listings and recent projects and stuff on the start page.[/quote']

 

Yeah, I have 2005. It has recent projects and then it downloads a list of recent featured articles from MSDN.

  • 2 weeks later...
Posted
Whats the diff between a .net web service and non-.net ws?

Your talking about the source is .net?

 

Really, there is no difference between the two. A true Web Service is implemented with XML -- more specifically with SOAP.

 

The ".NET Web Service" is essentially a layer that sits on top of this and allows you to interact with the Web Service in a more natural, programmer-friendly manner. There is no need to do the low-level XML stuff.

 

The .NET SDK has a "wsdl.exe" tool that will generate a proxy class for you. You simply need to feed in the url of the WSDL file, which any Web Service should provide. The WSDL is just an XML file that defines the data to be exchanged over the Web Service. The WSDL file itself adheres to a schema defined for SOAP. This is essentially the same thing that happens when you choose "Add Web Reference" in Visual Studio.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...