Showing posts with label tutorials. Show all posts
Showing posts with label tutorials. 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

Thursday, March 22, 2012

Web Service Tutorial with Real Example

Hi.

Is there a place where I can learn about web services using ASP 2.0? Most of the .NET web services tutorials that I was able to find seem to only cover ASP 1.1

Any web service tutorial with some functional example will be really helpful.

Thanks.

http://quickstart.developerfusion.co.uk/quickstart/webservices/

http://msdn2.microsoft.com/en-us/library/aa479043.aspx


Hallo

I suggest a good starting point would be taking a look at the following websites:

http://www.webservicex.net/WCF/default.aspx

http://www.webservicelist.com/

Hope this helps!



I found Philip Miseldine's article "Use Amazon Web Services in ASP.NET" - www.sitepoint.com/article/amazon-web-services-asp-net , simple, interesting & practical. It shows how you can consume Amazon's E-Commerce Service(ECS) to query their catalog with Visual Web Developer 2005 Express.

Web Service tutorial

Please introduce web service tutorials.

www.w3schools.com/webservices/default.asp

I learnt web service first from this tutorial. Hope it can help you too.


Hi,

here are some links to useful webservice tutorials

http://quickstarts.asp.net/QuickStartv20/webservices/

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

http://www.paragoncorporation.com/ArticleDetail.aspx?ArticleID=13

http://www.w3schools.com/webservices/default.asp

HTH


Hi,

This is a complete series about web service

http://aspnet.4guysfromrolla.com/articles/100803-1.aspx

Here are also some more examples

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.asp

Web services

I just installed VS.net and I am trying my hands on some tutorials. I typed the code to create a web service. when I try to open the .asmx file in a browser to display the service. The browser tries to download the file instead. Can you please help.

Do I have to configure anything in the IIS or run any other service.

I have also tried adding a web reference to another applcation but when I put address

http://Mathservice/Mathservice.asmx

I get a message "no web services available"What happens if, in VS.Net, you hit F5? That should launch your web browser & list all of the methods of your web service
I get the message

"Unable to start debugging on the server. The server does not supprot debugging etc.
You have IIS installed?
I do have IIS installed and running
Well, you've reached the limit of my experience with web services I'm afraid. You searched MSDN?

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/