SOAP for Windows Phone - silverlight

can anyone guide me how to build a SOAP service and hosting it in a server and calling back it in to a windows phone application

Maybe this can be helpful to you.

There are plenty of resources on MSDN about consuming Web Services (and REST Services as well) on Windows Phone. You can find some of them here:
http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh487167%28v=vs.92%29.aspx
http://msdn.microsoft.com/en-us/library/cc197958%28VS.95%29.aspx
http://hadyelsahar.wordpress.com/2011/10/08/webservices-in-wp7/
And a complete video tutorial at:
http://msdn.microsoft.com/en-us/gg241261.aspx
Hope, these links will help.
Mayur Tendulkar

Related

Microsoft MAUI : What is the best practice using Azure SQL in MAUI APP

I want to connect my Azure SQL (or external database) to my Microsoft MAUI App.
What is the best practice to achieve that?
I got an excellent response from Microsoft. I have been advised to use a web API that the client application interacts with. I have been advised to check the example of The .NET Podcasts application.
.NET Podcasts application in Github
Feel free to share If you have additional solutions
Try this way round:
For more info:
https://devblogs.microsoft.com/dotnet/introducing-dotnet-maui-one-codebase-many-platforms/
https://devblogs.microsoft.com/azure-sql/planning-new-scenarios-and-use-cases-for-azure-sql-database-local-development-experience/

Using Google Analytics from a .NET desktop application

Is it possible to send "PageViews" and record activity using the official Google API for C#? for instance, if i want to track page views for my wpf/winforms desktop app. ?
Where can i find some oficial examples?
I've just downloaded "Garlic" and tried the sample app and it works a treat!
https://github.com/dustyburwell/garlic
Disclaimer: I am the author for Gappalytics
I think one missing here is Gappalytics for code/UI event tracking, it is a very simple library which unlocks you a full potential of Google analytics.
It works better than mentioned before lib's because it can persist uniqueness of a user this way your data will not be skewed.
Google just released the Windows SDK for Google Analytics. It works with UWP, Xamarin, Windows Forms, and WPF.
The official announcement was made at the most recent Windows Developer Day on Feb 8th, 2017.
Here are some options, none perfect though. Google has an iOS and android SDK. Why not a Windows SDK???
Garlic
Ga.net
Server Side Google Analytics

login and register screen in silverlight using wcf web service

i have implemented an application using silverlight mvvm and prism, mef, wcf services, now my requirement is how to use wcf web services to create login and register screen to redirect into application . Please suggest a good approach to do this task
Advance thanks
That is not really a technical question. It is more of an "How do I create my app" type of question. That being said, I would try looking at the demo applications on silverlight.net and see if you can find something close to what you are looking for there. Those usually come with full source code.

Send status to Facebook from Windows phone 7 silverlight application. What do I need?

How do I perform this?
I'm making a funny little notepad application where you should be able to send your notes to your Facebook account, as a status.
My question more directly is: Where do I find code so I login to "Facebook-write status page"?
And how do I implement it in this silverlight application? Can I use html/Javascript for this maybe?
There is a project at http://facebooksdk.codeplex.com/ which lots of people have used to integrate Facebook functionality into their Windows Phone 7 apps.
You don't need to use javascript or html for this.
Facebook has an API that you can use by sending web requests from your application to facebooks servers. The process is not straight forward, so you should check out the documentation here: https://developers.facebook.com/search?q=API
There is an open source C# based API available here: https://developers.facebook.com/blog/post/395 It may be easier to use than doing web requests yourself.

C# Silverlight RIA Services Authentication - Step By Step How-To?

The Scenario
I have been following Brad Abrams Silverlight With Ria Tutorials In order to build a web-based application. I have implemented my own custom version of the application that is built throughout the tutorials and am hoping to add in some authentication to it.
The Problem
I have followed this tutorial also by Brad Abrams on Authentication which was totally useless. I have also looked at multiple other tutorials on Silverlight Authentication but they too are very ambiguous in assuming knowledge etc. (I have never implemented website authentication ever before).
The Question
Does anyone have (or could you write one) a step-by-step guide for total dummies to implementing Silverlight with RIA Services Authentication? It can be totally basic, I just need to be able to define two users (an admin and a guest) and have the site only be accessible to these two accounts.
Help greatly appreciated.
Making RIA Services to work with authentication can be just using standard forms auth or windows authentication. Its just code. If you don't know how to get Forms Auth or Windows Auth working with ASP.NET, that's where i'd start.
Brad Abrams has a blog post up now further explaining authentication.
Brad Abrams

Resources