User Eddie - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T07:13:27Zhttp://stackoverflow.com/feeds/user/118089http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1908936/roles-getrolesforuser-calls-default-role-provider-only0Roles.GetRolesForUser calls default role provider only?Eddie2009-12-15T17:08:46Z2009-12-15T18:01:26Z
<p>I'm using multiple role providers, the standard SQL provider plus a custom one. Inside Global.asax - RoleManager_GetRoles I create a RolePrincipal for users that should use my custom provider with the provider name set to my custom provider, and let other users be handled as normal.</p>
<p>This almost works, asp.net allows access to pages protected via the web.config and calls my provider to get the list of roles. However, when I call Roles.GetRolesForUser() inside my code it only seems to invoke the default role provider, not my custom provider. If I set my custom provider to be the default, then it is invoked, but only it is ever invoked.</p>
<p>I've worked around it by instead enumerating the role providers and calling GetRolesForUser() on the provider with a matching name to the RolePrincipal, but it seems to me that Roles.GetRolesForUser() should be doing that by default.</p>
<p>Am I missing something? Thanks.</p>
http://stackoverflow.com/questions/1378161/iphone-database-load/1378962#13789620Answer by Eddie for iPhone database loadEddie2009-09-04T12:36:04Z2009-09-04T12:36:04Z<p>I agree with not loading that much data at once, also I would look at optimizing your db, adding indexes, etc. Are you searching the in-memory version of the data or querying the db? I would do the later, but would make sure that query is efficient.</p>
http://stackoverflow.com/questions/1305225/best-way-to-serialize-a-nsdata-into-an-hexadeximal-string/1305740#13057400Answer by Eddie for Best way to serialize a NSData into an hexadeximal stringEddie2009-08-20T12:10:57Z2009-08-20T12:10:57Z<p>[deviceToken description]</p>
<p>you'll need to remove the spaces.</p>
<p>Personally I base64 encode the deviceToken, but it's a matter of taste.</p>
http://stackoverflow.com/questions/1276090/registering-for-apple-push-notification-how-do-i-pass-the-devtoken-with-http/1278761#12787612Answer by Eddie for Registering for Apple Push notification - how do I pass the DevToken with HTTP?Eddie2009-08-14T16:13:05Z2009-08-14T16:13:05Z<p>I haven't tried it out yet, but my first guess would be to look at Base64 encoding the binary array into a 7-bit clean string that can be passed as a query parameter on your request.</p>
<p>You could also POST the data to a URL instead, but I would think encoding it would be easier.</p>
http://stackoverflow.com/questions/47941/invalid-iphone-application-binary/956502#9565021Answer by Eddie for Invalid iPhone Application BinaryEddie2009-06-05T15:28:43Z2009-06-05T15:28:43Z<p>I had the same issue and solved it this way:</p>
<p>The property certificates were installed on my development machine and mobileprovision.embedded was included in the distribution archive. After an hour or so of Googling and digging I found the source the error. Inside Xcode I had copied the Release configuration and created a new Distribution configuration and then changed the signing identity to my distribution certificate. However, even though it was updated in the GUI the project file was not updated correctly.</p>
<p>If you come across the same error, look in your [ProjectName].xcodeproj directory for the project.pbxproj file and open it in your favorite editor. Look for the Distribution section. My broken one looked like this:</p>
<pre><code>C384C90C0F9939FA00E76E41 /* Distribution */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
CODE_SIGN_ENTITLEMENTS = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]” = “iPhone Distribution: Edward McCreary”;
GCC_C_LANGUAGE_STANDARD = c99;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO;
“PROVISIONING_PROFILE[sdk=iphoneos*]” = “F00D3778-32B2-4550-9FCE-1A4090344400″;
SDKROOT = iphoneos2.2.1;
};
name = Distribution;
};
C384C90D0F9939FA00E76E41 /* Distribution */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CODE_SIGN_IDENTITY = “iPhone Developer: Edward McCreary”;
“CODE_SIGN_IDENTITY[sdk=iphoneos*]” = “iPhone Developer: Edward McCreary”;
COPY_PHASE_STRIP = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = GenPass_Prefix.pch;
INFOPLIST_FILE = Info.plist;
PRODUCT_NAME = GenPass;
PROVISIONING_PROFILE = “DB12BCA7-FE72-42CA-9C2B-612F76619788″;
“PROVISIONING_PROFILE[sdk=iphoneos*]” = “DB12BCA7-FE72-42CA-9C2B-612F76619788″;
};
name = Distribution;
};
</code></pre>
<p>You can see the signing identity and provisioning profile are incorrect in the second section. Edit it to match the first section, rebuild, and you should be good to go. The final one looked like this:</p>
<pre><code>C384C90C0F9939FA00E76E41 /* Distribution */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
CODE_SIGN_ENTITLEMENTS = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]” = “iPhone Distribution: Edward McCreary”;
GCC_C_LANGUAGE_STANDARD = c99;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO;
“PROVISIONING_PROFILE[sdk=iphoneos*]” = “F00D3778-32B2-4550-9FCE-1A4090344400″;
SDKROOT = iphoneos2.2.1;
};
name = Distribution;
};
C384C90D0F9939FA00E76E41 /* Distribution */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CODE_SIGN_IDENTITY = “iPhone Distribution: Edward McCreary”;
“CODE_SIGN_IDENTITY[sdk=iphoneos*]” = “iPhone Distribution: Edward McCreary”;
COPY_PHASE_STRIP = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = GenPass_Prefix.pch;
INFOPLIST_FILE = Info.plist;
PRODUCT_NAME = GenPass;
PROVISIONING_PROFILE = “F00D3778-32B2-4550-9FCE-1A4090344400″;
“PROVISIONING_PROFILE[sdk=iphoneos*]” = “F00D3778-32B2-4550-9FCE-1A4090344400″;
};
name = Distribution;
};
</code></pre>
<p>guids changed to protect the innocent</p>
http://stackoverflow.com/questions/1908936/roles-getrolesforuser-calls-default-role-provider-only/1909200#1909200Comment by Eddie on Roles.GetRolesForUser calls default role provider only?Eddie2009-12-15T18:07:05Z2009-12-15T18:07:05ZThat makes sense and matches the behavior I'm seeing. Unfortunately I'm dealing with a large amount of pre-existing code that uses Roles.GetRolesForUser().
Time for a re-factoring I guess. Thanks.