Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

44
votes
4answers
22k views

Implementing Profile Provider in ASP.NET MVC

For the life of me, I cannot get the SqlProfileProvider to work in an MVC project that I'm working on. The first interesting thing that I realized is that Visual Studio does not automatically ...
26
votes
9answers
5k views

A list of Entity Framework providers for various databases

Which providers are there and your experience using them I would like to know about all possible native .net Framework Entity Framework providers that are out there as well as their limitations ...
11
votes
2answers
1k views

ADO.NET Entity Framework with OLE DB Access Data Source

Has anyone found a way to make the ADO.NET Entity Framework work with OLE DB or ODBC data sources? Specifically, I need to work with an Access database that for various reasons can't be upsized to ...
10
votes
2answers
9k views

How do I run a VBScript in 32-bit mode on a 64-bit machine?

I have a text file that ends with .vbs that I have written the following in: Set Conn = CreateObject("ADODB.Connection") Conn.Provider = "Microsoft.ACE.OLEDB.12.0" Conn.Properties("Data Source") = ...
9
votes
3answers
8k views

ASP.NET Active Directory Membership Provider and SQL Profile Provider

I am currently designing a Membership/Profile scheme for a new project I am working on and I was hoping to get some input from others. The project is a ASP.NET web application and due to the short ...
9
votes
1answer
3k views

How to implement a custom cache provider with ASP.NET MVC

I am migrating a MonoRail application to ASP.NET MVC 1.0. In my original application I wrote a custom cache provider (a distributed cache provider using memcached). In MonoRail this task was very easy ...
9
votes
11answers
2k views

Entity classes decoupled from LINQ to SQL provider for implementing the Repository pattern. How?

I have looked over the Repository pattern and I recognized some ideas that I was using in the past which made me feel well. However now I would like to write an application that would use this ...
7
votes
3answers
703 views

SSL Certificate Error: certificate_unknown

while creating push notification provider for development pr we are facing the below error: I want to what is the wrong with certificate, because I have enabled the push notification then created the ...
7
votes
1answer
238 views

Providing an on-the fly custom db provider for EF

As part of a profiling tool, I have a custom ADO.NET stack that acts as a "decorator" around standard ADO.NET, so it doesn't actually do any work - it just passes on the calls (but with logging, etc). ...
7
votes
4answers
7k views

Does anyone know how to write an Apple Push Notification Provider in C#?

Apple really has bad documentation about how the provider connects and communicates to their service. I am confused about the protocol. If anyone out there could provide a C# sample of how this is ...
6
votes
2answers
928 views

PHP: LightOpenID, how to fetch account data from provider?

I'm having problems with a small OpenID-library called LightOpenID . I can authenticate to almost all providers, but I don't know how to fetch the data from the provider. I only get Array(), eaven ...
6
votes
1answer
230 views

Installing a new Location Provider

There is an entry in 1.5 of the SDK for installLocationProvider. That entry is marked: @hide. I would like to provide an alternate location provider, the why is not important, just the how. Does ...
6
votes
1answer
7k views

android get location from best provider available

I have this code to get the best available provider lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE); locationListener = new MyLocationListener(); Criteria criteria = new ...
6
votes
2answers
10k views

using asp.net membership provider how to check if the user is registered or not?

using asp.net and c# membership provider how to check if the user is registered or not? I want to handle this in code not by using "login status"?
6
votes
8answers
9k views

Weather web service for Europe? [closed]

We are looking for a reliable "current weather" web service for Europe, with city resolution. We only need the current weather. Since it is for a commercial web site, we don't mind paying a ...
5
votes
1answer
84 views

How to delay windows login process till an even from a windows service

The requirement is , autologin has to be configured in WINDOWS7 machine, but this autologin should be in wait (ie, delayed) till another windows service signals to continue the autologin. I used a ...
5
votes
4answers
2k views

Access restriction on sun.security.pkcs11.SunPKCS11

I'm trying to setup a PKCS11 provider for accessing a smartcard. I installed a PKCS11 library on my system and followed the instructions in the Java PKCS#11 Reference Guide. In the reference they ...
5
votes
2answers
623 views

When to use a Content Provider

I understand that Content Providers are made to allow publicly sharing data between applications. However, I'm wondering if anyone has thoughts about making a Content Provider to use just within your ...
5
votes
3answers
407 views

ASP.NET MVC custom membership for beginners

I am creating my own website and blog and I want for first time just me in database (my name and password) and maybe later some registration for others but first log in just for me and administration ...
5
votes
1answer
577 views

Has anybody implemented 2 Legged OAuth using DNOA?

I am trying to create an Authentication Module in CSharp where I need to verify the Signature from the request using DotNetOpenAuth(DNOA) Library for 2 Legged OAuth which only has consumer Key and a ...
5
votes
3answers
3k views

VFP .NET OLEdb provider does not work in Win 64-Bits. Help

I wrote a windows service using VB that read some legacy data from Visual Foxpro Databases to be inserted in SQL 2005. The problem is this use to run fine in Windows server 2003 32-Bits, but the ...
4
votes
1answer
419 views

Documentation for creating a Custom Credential Provider in Windows

Where is the documentation on creating a custom Windows Credential Provider located? Everything I've found so far points to the same article on how to make a custom credential provider (MSDN ...
4
votes
1answer
222 views

Nearly all OpenId relying parties reject assertions from my dotNetOpenAuth backed provider

Constructing an OpenId provider, I've run into the curious problem that only Stack Exchange sites will accept it. Discovery works fine, and watching log traffic I'm sending (what to me looks like) a ...
4
votes
1answer
70 views

Performance effects with instances of entities in EntityFramework

What behavior should I use for a provider pattern with entity framework? public class TestProvider : IDisposable { public Entities entities = new Entities(); public IEnumerable<Tag> ...
4
votes
1answer
448 views

Using OAuth as Rails webapp API authentication?

I'm attempting to build up an API around a fairly simple concept: a User has many Locations. The locations have CRUD operations exposed via JSON and XML. There is no HTML view to this web service. ...
4
votes
2answers
4k views

ASP.NET SQL Profile Provider - Does the ProfileBase.Create() method hit DB?

I am working with the SQLMemebershipProvider and using Profiles. I have a custom class called UserProfile that inherits from the ProfileBase class and I use this to set custom properties like ...
3
votes
1answer
679 views

Content Provider and Content Observer Example?

I am new to Android development and playing with content providers and content observers. However I am having trouble finding examples online. I have been playing and reading about this but have ...
3
votes
4answers
103 views

Is there a practical way to determine which JCE crypto providers are in use?

We have configured a Java product to use only FIPS-validated RSA JCE crypto providers. However, the product won't work when only the RSA libraries are listed in java.security. Therefore, something is ...
3
votes
1answer
221 views

asp.net Active directory membership Provider

I need to use the AD Membership provider for authentication and Authorization for a project. I however do not have access to a domain controller. Is there any way I can simulate either a domain ...
3
votes
1answer
85 views

Guice ThrowingProvider problem

According to the ThrowingProvider documentation of Guice I have the following interface: public interface IConfigurableProvider<T> extends ThrowingProvider<T, ConfigException> {} I have ...
3
votes
1answer
140 views

How is the Java Service Provide API supposed to work?

It seems like everybody has had an unpleasant brush with the Java Service Provider, that thing you can do with a file named like META-INF/services/com.example.Interface, but that nobody uses except ...
3
votes
1answer
240 views

How do you integrate custom providers into the Microsoft Web Deployment Tool?

I am trying to extend the Microsoft Web Deployment tool and MSDeploy with a custom provider because I want to run custom tasks on the destination deployment machine as part of the process. The general ...
3
votes
2answers
904 views

ASP.NET MVC 2 and SQL Table Profile Provider

I'm trying to add the sample table profile provider from http://www.asp.net/downloads/sandbox/table-profile-provider-samples to a new MVC 2 site. After a bit of research and fiddling around, I've ...
3
votes
2answers
127 views

Creating a Linq->HQL provider

I have a client application that connects to a server. The server uses hibernate for persistence and querying so it has a set of annotated hibernate objects for persistence. The client sends HQL ...
3
votes
1answer
84 views

Which provider should I select to connect to Excel version 11 through AdoConnection?

I need to connect to Excel table through TADOConnection, and I don't know what to write into the ConnectionString property. For Excel Version 8 I use Jet, for 12 I use ACE, what about 11? And how ...
3
votes
4answers
1k views

How to sign a custom JCE security provider

Sun's PKCS11 JCE security provider is lacking some functionality we need. So I wrote an enhanced version of it using the original sources. Unfortunately the JCE infrastructure rejects the new ...
3
votes
2answers
2k views

ASP.NET MVC 2 - Implementing custom Metadata and Validator Providers

With the preview 2 release of ASP.NET MVC 2, we now have base classes to implement our own custom providers for metadata and validation. Specifically, with ModelMetadataProvider and ...
3
votes
6answers
13k views

Help trying to use Apple Push Notification Service through Java

Am trying to implement a Java program which sends an Apple Push Notification to an iPhone client app... Found the following library: Java APNs Provider code: Created the following code (from ...
3
votes
3answers
5k views

ASP.NET: How to create a connection from a web.config ConnectionString?

How do you construct a DbConnection based on a provider name? Sample provider names System.Data.SqlClient System.Data.OleDb System.Data.Odbc FirebirdSql.Data.FirebirdClient i have connection ...
3
votes
3answers
1k views

How to choose an Oracle provider for .Net application?

I am trying to figure out what is the best way to connect an (existing) ASP.Net application to an Oracle database to read its dictionary information. There are simply too many possibilities: MS ...
3
votes
3answers
919 views

How do I get the _count in my content provider?

What should I do to get my content provider to return the _count column with the count of records? The documentation says it is automatic, but maybe it's only taking about some built-in content ...
3
votes
1answer
578 views

Is there any way to use XmlSiteMapProvider within WinForm/Console/VSTest application?

I wonder whether there is a workaround for using the standard XmlSiteMapProvider within a non asp.net application, like WinForm/Console or, in my case, VS Unit Test one. The following code fails, ...
2
votes
1answer
52 views

Can I switch out .Net cache provider through configuration

Is there a way in .Net to switch out the Cache provider just like I would a membership provider, or role provider? I would like to keep the code untouched but switch to using a distributed cache like ...
2
votes
1answer
43 views

URL Provider- Websphere-Not able to read property file through java

I am trying to configure URL provider on Webspehere. I am following the stepsprovided at the IBM Website: 1) Configure URL provider in websphere admin 2) Updated web.xml 3) Updated ibm-web-bnd.xm ...
2
votes
2answers
90 views

DB2 .NET Provider Advice

We have an AS400 that we need to communicate with using our .NET applications. We currently develop web applications running on Windows 2003/2008 and have to run the AS400 client install to load the ...
2
votes
1answer
93 views

Android - content provider, where are files stored?

The documentation says "However, if you have a large amount of binary data to add, such as a photograph or a complete song, put a content: URI for the data in the table and call ...
2
votes
2answers
312 views

Android - sqlite content providers and multithreading

I'm a little confused about content providers. If I have multiple activities in my application do they each get their own instance of the content provider? it's just essentially a class/interface? In ...
2
votes
2answers
186 views

Android widget requires back twice

I made a very simple widget that when pressed launches an activity but for some reason when i press back the activity closes and i see the home screen but it is completely unresponsive until i press ...
2
votes
1answer
84 views

asp.net sitemap class to use another provider rather than default in web.config

I have this configuration in my web.config. <siteMap defaultProvider="Provider1" enabled="true"> <providers> <add name="Provider1" siteMapFile="Web.sitemap" ...
2
votes
0answers
320 views

when to specify providerName=“System.Data.SqlClient” in a connection string

I had an issue with a windows service running under [NT AUTHORITY\LOCAL SYSTEM] whereby the service could not connect to a database. Login failed for user 'NT AUTHORITY\LOCAL SERVICE'. Reason: ...

1 2 3 4 5 6