Showing posts with label links. Show all posts
Showing posts with label links. Show all posts

Wednesday, March 28, 2012

Web Service

Hi everyone,

I am looking for good Web Service in C# or VB.NET tutorials. If you know the good links. Then please let me know. Thanks.

May

It depends on what you really need...For a basic understanding try these...

www.codeproject.com/cs/webservices/myservice.asp

http://www.codeguru.com/Csharp/Csharp/cs_webservices/tutorials/article.php/c5477

Hope this helps...


http://samples.gotdotnet.com/quickstart/aspplus/doc/wsbehavior.aspx


Hi,

here are some good articles,

http://aspnet.4guysfromrolla.com/articles/062602-1.aspxhttp://www.codeproject.com/cs/webservices/myservice.asp http://articles.techrepublic.com.com/5100-3513_11-5643603.htmlhttp://www.aspfree.com/c/a/ASP/Consuming-a-WSDL-Webservice-from-ASP/http://www.codeproject.com/soap/ConsumWebServicefromASP.asphttp://aspnet.4guysfromrolla.com/articles/100803-1.aspx

Monday, March 12, 2012

Web Services Examples?

Does anybody have any links to some good web service examples/tutorials, specifically for .NET 2.0?Anybody?
:cry: All the examples I can find look liek they are for .NET 1.0, as when I create a project in 1.1 or 2.0 I don't get the same files created, and it doesn't seem to work as directed. Any help would be great.
They're pretty much the same. You should be able to get the same results. How about... you post your code and what you're trying to do and we'll try to fix it.
They're pretty much the same. You should be able to get the same results. How about... you post your code and what you're trying to do and we'll try to fix it.

Huh, it really seems to be different (or I don't know what the hell I'm doing). Mostly my problem seems(ed) to be on the client side. The examples I read said that adding a web reference would create a Reference.vb class that would expose the web service functions so I could call them from the client. That class never seemed to get created, so I found finally an example of creating a proxy class from the command line and then just including it in the client...not sure if that's how I should be doing it though.
Do the functions you want exposed have a WebMethod attribute?

<WebMethod())> _
Public Function ProcessFulfillment(ByVal objCustomer As Vision.Customer.Customer, ByVal objOrderDetail As Vision.Order.OrderDetail) As ProcessResult

End Function
http://www.devarticles.com/c/a/Visual-Basic/Developing-an-XML-Web-Service-Using-Visual-Studio-2005/