.Net Micro Framework and Web Services - web-services

I want to connect from a .Net Micro Framework application to an existing web service hosted in WCF on a Windows Service / IIS. Is this possible and could someone please point me in the right direction with regard to the documentation on how to do this?
Thanks

Maybe this articles can help you
"Implementing Web Services on Your Devices" (.Net Micro):
http://msdn.microsoft.com/en-us/library/hh423016.aspx
"Connected Devices Using the .NET Micro
Framework": http://msdn.microsoft.com/en-us/magazine/gg232761.aspx

Related

Is it good approach to develop a web services in CQ itself?

I need to develop a web services and it needs to be hosted in Adobe CQ. I knew that CQ consume web services from other systems. We will need to create a OSGI bundle for this. I heard that Adobe not recommended to develop web services in CQ. Is it good approach to develop a web services in CQ itself? What happens if we host it in CQ?
Please share your feedback.
Thanks,

Difference between a WCF service and a ASP.NET web service.?

What's the basic difference beween a WCF service and an ASP.NET web service? How is a WCF service much more advantageous over a web service? And what should be the basis to decide which one should be used in a particular scenario?
Try out this MSDN
This is wonderful briefing from microsoft.

Where do I start making a web service for wp7 to windows azure db

I'm writing an app which I need to store user details, location and connections in azure db but have no experience with cloud storage. I have created my azure database but not sure how to communicate with the wp7 app. Any thoughts on where to start with the web service,
Thanks, MH
The following may point you in the right direction "Using Windows Phone with Windows Azure
" :-
http://msdn.microsoft.com/en-us/library/windowsazure/hh689721(v=vs.103).aspx
http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/08/31/building-windows-phone-applications-using-windows-azure.aspx
As to windows phone azure project, do you mean Windows Azure Toolkit for Windows Phone? This toolkit is optional. It may help us in some cases, especially if we want to integrate with ACS. But a web service will be enough if all we need is to bring data to the phone.
Best Regards,
Ming Xu.
To add to Paul’s suggestions, the recommended architecture is: Hosting a service in Windows Azure (such as WCF Data Services). The service will talk to SQL Azure (if you use SQL Azure as the database). Client devices, such as Windows Phone, iPhone, Andriod, a web browser, and so on, will communicate with the service. If you use WCF Data Services, you can expose the data to clients via the OData protocol, which is supported by multiple devices. To get started with WCF Data Services, I would like to suggest you to check http://msdn.microsoft.com/en-us/library/cc668796.aspx. To learn how to consume OData in Windows Phone, please refer to http://blogs.msdn.com/b/phaniraj/archive/2010/03/19/developing-a-windows-phone-7-application-that-consumes-odata.aspx.
Best Regards,
Ming Xu.

Call web services from IIS it works slowly

I'm developing asp.net mvc web application that calls third party web services.
I'm not sure about web services but looks like that they are java web services. They work perfect when I call them from windows console application or run my site under asp.net development server. But when I host my site under IIS 7.5 (I check it under Windows 7 32x and Windows Web Server 64x) performance is degraded in 10 time.
Could anybody suggest me with settings which I should check or anything else?
The best idea that I have, it is using Reversed Proxy for matching data that pass.
I've tired to use Fiddler 2 in this way. But what a pity I have trouble because web services are hosted via https.
Somebody has idea how to solve this?

Asp.net web services videos or tutorials

I am developing an asp.net web services.
I am new to asp.net but I want to make a web service in .net 3.5.
I want some video tutorial or step by step tutorial that can show me how to develop , test and then publish the web service to use it in another application.
OK- look into WCF. Here is Microsoft's getting started guide. Do not use ASMX Web services- they are now regarded as legacy.
What sort of other applications are you referring about? More detail on those might get a more in depth answer.
This is a good one: http://www.w3schools.com/webservices/default.asp
www.asp.net should be your starting point.
http://www.asp.net/learn/ has tons of videos. On http://www.asp.net/learn/3.5-videos/, video #13 is about "Creating and Using an AJAX-enabled Web Service in a Web Site".