provider

jboss-esb fs-listener jbm message queue overflow

Hi, We have a jboss esb server which is reading files from the file system in a scheduled way (schedule frequency of 20sec) and convert them into the esb message then we parse the message. There are some other providers/listeners (jms) and services configured on the esb servers. When there is an error in one of the services it effects t...

Recreate "gps" LocationProvider after removal?

Hi. I'm currently having some problem with my application. I accidentally ran the following code: locationManager.removeTestProvider("gps"); And now i obviously can't get a GPS fix in google maps.. have to reboot. But my app need to remove the original GPS provider to create it's own fake one. So im just wondering if it's possible t...

What does a provider class mean in the .NET world ?

There are many classes having this provider suffix. (Data,membership,modelmetadata,...). When should be a class called as a provider class ? ...

How to determine if VFPOLEDB provider is installed/registered?

I need to check in my program if the VFPOLEDB provider is installed/registered? I want to show a message and tell the user to download and install the provider. How do I check it in C#? ...

"Failed to find or load the registered .Net Framework Data Provider" with MySQL + ASP.NET

How do we repair this? This question has been sort of addressed many times around the internet, but it's always a workaround. Always copying the MySql.data.dll into your bin directory, or explicitly stating what version you want. What is the "proper" approach to using DbProvderFactory for MySQL with ASP.NET? I'd like to be able to de...

Authentication using exchange.

Hello, my client has an exchange server and offers free email accounts to his clients and partners. His clients need access to some web applications through login and password and need to be authenticated . i thought about creating a custom asp.net membership provider that hits exchange instead of the regular aspnetdb store. Is there ...

What does Provider mean in asp.net ?

Hi I've got confused . We hear a lot about Provider in ASP.NET . Membership-Provider , Role Provider , XmlDataProvider ,CustomProvider, .... What are those and why we need them in ASP.NET ? ...

Not Getting Profile properties in Code Behind.

I am trying to get Profile properties in the code behind. But I am not getting any intellisence like Profile.Homephone or Profile.CellPhone. When I try Dim memberprofile As ProfileBase = HttpContext.Current.Profile Dim homePhone As String = memberprofile.GetPropertyValue("HomePhone").ToString() I get Data is Null. This method or propert...

The android.provider.Contacts.People is deprecated! Any similar class that I can use to extract the address of the contacts?

How do I extract the address of the contacts stored in the Android emulator? ...

How can you create an instance of the System.Management.Automation.ProviderInfo

I'm starting to create a PowerShell Provider. To start off, I have a class inheriting from NavigationCmdletProvider. There's only one protected constructor and it requires an instance of ProviderInfo. Yes, that's ProviderInfo .ctor requiring instance of ProviderInfo. In creating my first test around this provider, I can't seem to find ...

Providing help documentation in VB.NET?

I have written up troubleshooting documents for my project and would like them included in my program. I remember in VB6 there was a very easy way to do this with a control, where it already has the help document tree set up on the left and you just set it to point to certain files. Does something like this exist for .NET? I am aware of...

How to get the IBM DB2 provider to work with Entity Framework 4.0

Can someone please tell me how to get the DB2 provider to show up in the "Change Data Source" dialog window? Steps: Right-click on the edmx design surface. Select "Update Model from Database" On the Update Wizard, click "New Connection" Next to the "Data source" textbox, click "Change..." In the Change Data Source window, I am only ...

Thumbnail Provider not working

I'm trying to write a Windows Explorer thumbnail handler for our custom file type. I've got this working fine for the preview pane, but am having trouble getting it to work for the thumbnails. Windows doesn't even seem to be trying to call the DllGetClassObject entry point. Before I continue, note that I'm using Windows 7 and unmanage...

ASP.Net SqlWebEventProvider - Raising custom event - Cannot access WebErrorEvent due its protection level

I use SqlWebEventProvider to log the exceptions to sql server, and it works fine. I also want to log custom exceptions to aspnet_WebEvent_Events table programmatically. Similar to - http://fredrik.nsquared2.com/viewpost.aspx?PostID=107&showfeedback=true WebBaseEvent.Raise(new WebErrorEvent("My Error message", null, 5000, e)); I ge...

JFace Providers and MVC/MVP/etc.

Where do the JFace providers belong in an MVP or MVC architecture? Or should Provider pattern be treated as a different way of View-Model separation? If so, is it the same as the ASP.NET Provider pattern? Is there an article on a proper design of JFace applications using Providers? ...

How to localize ASP.Net Memebership provider in WPF application

Hello, We are using ASP.Net Membership provider for user management module in our WPF based application. It seems to be working fine. But now we want to localize our WPF application, and don't know how to do that with respect to the data stored as part of Membership Provider. Is Localization supported by Membership Provider ? Is so, any...

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") = "C:\dummy.accdb" Conn.Properties("Jet OLEDB:Database Password") = "pass" Conn.Open Conn.Close Set Conn = Nothing When I execute this on a W...

How to use the same receiver for different widget

Hi, I wonder if it's possible to use the same provider (receiver) for 2 different widget (different sizes for example) I tried on my Manifest : <receiver android:name=".provider" android:label="@string/app_name_small"> <intent-filter> <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> <...

Separate config file for Providers

Hi, In a small test project, I currently have the provider sections in the web.config. I want to move that to a separate config file, like providers.config. My current provider instantiation code is like: //Get the feature's configuration info ProviderConfiguration pc = (ProviderConfiguration)ConfigurationManager...

android get location from best provider available

Hi, I have this code to get the best available provider lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE); locationListener = new MyLocationListener(); Criteria criteria = new Criteria(); criteria.setAccuracy(Criteria.ACCURACY_FINE); String provider = lm.getBestProvider(criteria, true); Location mostRecentLocati...