Tagged Questions

4
votes
3answers
139 views

How can I convert existing users into a OpenID

Would this be a smart thing to do? I don't want to alienate my users, but having multiple ways to sign in to the site kind of defeats the purpose of having an OpenID implementation. This isn't a …
1
vote
1answer
142 views

Python with Netbeans 6.5

Can you give me some links or explain how to configure an existing python project onto Netbeans? I'm trying it these days and it continues to crash also code navigation doesn't work well and I've …
0
votes
0answers
9 views

3rd Party Server -> 3rd Party API (unmanaged c++) -> Managed Wrapper -> Database : Can Linq help me simplify my code?

I maintain a fairly complex infrastructure consisting of a number of setups like the following: 3rd party application server with its built-in database 3rd party unmanaged c++ API library which …
0
votes
1answer
107 views

Fluent Nhibernate over legacy database in oracle

Hello , I am trying to connect to the existing db in oracle with fluentmapping . I got Mapping over CUstomer public CustomerMapping() { Not.LazyLoad(); Id(x => …
-1
votes
1answer
9 views

MVVM Sliverlight - can not assign existing control to a property of collection of custom elements in XAML.

I have a class public class Item { public string A { get; set; } public Control B { get; set; } } I'm using MVVM with Silverlight. I have a custom view that is inherited …