Sign in
Windows Store Developer Solutions
Information + Context = Solution
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
RSS for posts
Atom
RSS for comments
OK
Search
Tags
#WSDevSol
Audio
C#
C++
Certificate
Code signing
Company apps
designer
documentsLibrary
Enterprise
FileOpenPicker
font
MediaElement
Picker
Webview
Windows 8
Windows Azure Mobile Services
Windows Phone 8
Windows Store
Windows Store Application Solutions Developer
Windows Store apps
WindowsStoreApps
WP 8
WSDS
XAML
Archive
Archives
May 2013
(4)
April 2013
(1)
March 2013
(3)
February 2013
(2)
January 2013
(2)
December 2012
(3)
November 2012
(2)
October 2012
(7)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Windows Store Developer Solutions
Dealing with Documents: How (not) to use the documentsLibrary capability in Windows Store apps
Posted
14 days ago
by
Rob Caplan
1
Comments
Many people posting in the forums express confusion over the documentsLibrary capability's " Special Use " categorization. This capability is highly restricted and not intended for general use, and apps which try to use it generally will fail certification...
Windows Store Developer Solutions
Your Windows Phone 7/8 application tests fine, but fails after publishing to Marketplace or after private app distribution
Posted
16 days ago
by
Mark Chamberlain - MSFT
0
Comments
So, you tested your application using the Windows Phone SDK tools. Everything ran flawlessly. You publish your app. You download your published app. Users download your app and report that the app crashes during its splash screen on start-up. What to...
Windows Store Developer Solutions
WebView Magic Tricks: Highlight a Search Term
Posted
17 days ago
by
Matt Small
0
Comments
WebView continues to be a hot topic in the Windows Store Apps forums. The ability to bring in web content and manipulate it as you wish is a strong desire for many developers. With this blog post, I am starting a series of short videos which demonstrates...
Windows Store Developer Solutions
Windows Phone 8: Steps to acquire an Enterprise Mobile Code Signing Certificate required to sign LOB or company apps
Posted
22 days ago
by
RashmiA-MSFT
0
Comments
If you are developing a Windows Phone 8 LOB application to distribute to the users in your company, then the company must acquire an enterprise mobile code signing certificate from Symantec. The company needs this certificate to generate an Application...
Windows Store Developer Solutions
Incremental Loading of Data using Windows Azure Mobile Services
Posted
1 month ago
by
Jeff Sanders
0
Comments
When your data is in the cloud you should only download information that a user is actually looking at. In the case where you have thousands of items and you want to give the ability to scroll through them you should only fetch the data that the user...
Windows Store Developer Solutions
Using WCF classes to consume a WebService using Plain Old XML (POX) in a Windows Store app
Posted
1 month ago
by
Prashant H Phadke
0
Comments
You can leverage WCF functionality from a Windows Store app to call a WebService using Plain Old XML (POX) style of messaging. This blog and the sample included below documents the steps a Windows Store app should perform to consume such a service. The...
Windows Store Developer Solutions
Datagram Socket Communication in Windows Phone 8
Posted
2 months ago
by
Mark Chamberlain - MSFT
2
Comments
New to Windows Phone 8 is the Windows.Networking.Sockets namespace. This namespace is also used in the Windows Store app development environment, which makes it convenient for developers who wish to port networking applications to both targets. Windows...
Windows Store Developer Solutions
Mixed Media – Audio & Video – Windows Store vs. Windows Phone 8
Posted
2 months ago
by
James Dailey - MSFT
1
Comments
As everyone knows, with the release of Windows 8 and Windows Phone 8 we have brought the two platforms closer together than ever before. The keyword here is “closer”. There are still some fairly major implementation and terminology differences...
Windows Store Developer Solutions
Where did all my gestures go?
Posted
3 months ago
by
Rob Caplan
0
Comments
A common problem we’ve seen from customers is how to handle pointer input and manipulations on elements inside of collection controls such as ListViews, GridViews, and FlipViews. The app can get the PointerPressed event on items inside the View, but after...
Windows Store Developer Solutions
How to use HttpClient to post JSON data
Posted
3 months ago
by
Jeff Sanders
2
Comments
This is a common request in forums so I will show you how to use the new HttpClient class and the DataContractJsonSerializer to post JSON data to a web service. Posting serialized JSON objects to web endpoints is a common way to get data over HTTP...
Windows Store Developer Solutions
Registration of the app failed. Another user has already installed a packaged version of this app. An unpackaged version cannot replace this…
Posted
3 months ago
by
Prashant H Phadke
1
Comments
Deployment of a development version of your Windows Store app package through Visual Studio 2012 can sometimes lead to an error that looks like this: Registration of the app failed. Another user has already installed a packaged version of this app...
Windows Store Developer Solutions
Visual Studio 2012 throws an error saying: “Visual Studio encountered an unexpected network error and can’t contact the Microsoft account service” when you try to “Create App Packages…” for the Windows Store.
Posted
4 months ago
by
Prashant H Phadke
2
Comments
You have developed a Windows Store app and are in the process of building your app package and uploading it to the Windows Store using Visual Studio 2012. During this process, Visual Studio should bring up a dialog that lets you sign-in with your Windows...
Windows Store Developer Solutions
Help me! How do I connect to an ASMX web service?
Posted
5 months ago
by
Matt Small
3
Comments
With the rise of mobile applications (Windows Store and Windows Phone Store apps), the need for remote processing and storage has never been greater. The necessarily-small footprint of these apps, the limited storage capacity of the hardware, and the...
Windows Store Developer Solutions
Why can’t I set cookies in WebView when using NavigateToString
Posted
5 months ago
by
Jeff Sanders
0
Comments
The title says it all and we have seen some forum and support cases about this subject. I have a workaround for you though! Background When programming with WebView you can use NavigateToString to populate a HTML and JavaScript and if that JavaScript...
Windows Store Developer Solutions
Skip the path: stick to the StorageFile
Posted
5 months ago
by
Rob Caplan
2
Comments
To build user confidence, a user’s files are protected from arbitrary access by Windows Store apps. This has produced a large number of threads in the Windows Store apps Forums from developers who are used to having full access to the file system and...
Windows Store Developer Solutions
Looking back to understand the future: OpenFileDialog vs. FileOpenPicker
Posted
5 months ago
by
James Dailey - MSFT
1
Comments
Most of us are familiar with the standard .NET OpenFileDialog object. With the introduction of Windows 8 Store apps the OpenFileDialog has gotten a facelift, a simplified API and yet somehow it’s still not quite the same. The new FileOpenPicker...
Windows Store Developer Solutions
The ListingInformation.ProductListings object has a different interface when deployed to the Windows Store
Posted
6 months ago
by
Jeff Sanders
0
Comments
The CurrentAppSimulator class is useful for exploring licensing information for your Windows Store app. Once you are done testing you can change the class name to CurrentApp with confidence that your app will perform correctly when deployed to the...
Windows Store Developer Solutions
Why does the XAML designer report that my custom elements have not been built?
Posted
6 months ago
by
Sagar B. Joshi
1
Comments
Consider a scenario where you've been working on developing business logic for your Windows Store app and you switch to the Visual Studio designer to check a UI element. You may notice the below message in the designer view of some XAML pages: The...
Windows Store Developer Solutions
How to accommodate Authenticating Proxies in .NET
Posted
6 months ago
by
Jeff Sanders
0
Comments
In some environments network administrators have chosen to require users to authenticate through their proxy servers. I will give you a good starting point to code your application to deal with authenticating proxies. You can make the decision...
Windows Store Developer Solutions
About WebView and Fonts...
Posted
7 months ago
by
Matt Small
1
Comments
In my previous blog post, I posted some information about using a font which is included as part of the appx package (point #9) which turned out to be not correct. I took that information from this post on the Windows Store C# forum. Since then, I've...
Windows Store Developer Solutions
Ten Things You Need to Know About WebView
Posted
7 months ago
by
Matt Small
14
Comments
Hi - I am Matt Small, a Sr. Escalation Engineer on the Microsoft Windows Store Developer Solutions team. I have been working on Windows 8 since before the Release Preview, and I have spent many hours working in the Store forums, primarily in the C# forum...
Windows Store Developer Solutions
Consuming a WCF Service from a “Windows Runtime Component” project type is a limited supported scenario particularly with the usage of XmlSerializer.
Posted
7 months ago
by
Prashant H Phadke
0
Comments
Background: Consider the following scenario. You are developing a Windows Store app and need to consume a WCF Service. The most common approach of consuming a WCF service and using the .NET framework is to create a managed Windows Store app based on...
Windows Store Developer Solutions
Walkthrough–Creating an IIS server to use with WNS Push Notifications and Windows Store apps
Posted
7 months ago
by
Jeff Sanders
1
Comments
How can you implement and test WNS push notifications for your Windows Store app and how can you use the Windows 8 push notification service without azure? I was playing with the Push and periodic notifications client-side sample in the Dev Center and...
Windows Store Developer Solutions
Welcome to Windows Store Developer Solutions
Posted
7 months ago
by
Dan Reagan
3
Comments
Welcome to the Windows Store Developer Solutions blog! Why another Windows 8 blog? There is already a ton of great information out there on MSDN Docs , Channel 9 , and even the Windows Store for Developers blog . They provide the information critical...
Page 1 of 1 (24 items)