Questions tagged [profiles]
202 questions
2
votes
2 answers
Configure Outlook Mail Settings Programmatically?
Was wondering if there was a simple way to add and configure a POP3 server to Outlook's mail server settings programmatically?
Searching Google seems to yield results that tell me I have to reverse-engineer the gobbledygook stored under…

Tom Corelis
- 4,990
- 11
- 35
- 48
2
votes
1 answer
Maven Resource Filtering Breaking Downloads
I have a Maven/Java application. Part of the application allows you to download some documents. Here is the project setup.
+src
+main
+resources
+downloads
MyDocument.docx
…

Snowy Coder Girl
- 5,408
- 10
- 41
- 72
2
votes
0 answers
Spring - PropertyPlaceholderConfigurer
I am trying to implement an application for different profiles using Spring 3 but i am not sure how it develop using Spring 3. I have couple of confusions
When you develop application using PropertyPlaceholderConfigurer, then how do you create…

user1030128
- 411
- 9
- 23
2
votes
0 answers
Unable to use different certificates in a single firefox profile
I have two certificates to open two different websites. I have two firefox profiles to access them. Why is it not possible to access them together in a single firefox profile by importing both the certificates together?

user1835554
- 21
- 1
1
vote
1 answer
How can I retrieve the Windows profiles directory path remotely?
I'm trying to retrieve the path of the profiles directory across various versions of Windows. In older versions that might be [drive]:\Documents and Settings, on newer ones it's [drive]:\Users. There are several ways to do this locally without a…

ShiggityShiggityShwa
- 194
- 9
1
vote
1 answer
getString from a few SharedPreferences file and create listView
First - sorry for my english;) I'am writing profile manager for Android and i want getString from a few SharedPreferences file and create listView. It's part of my code:
private static final String PN = "profile_name";
private EditTextPreference…

user1211477
- 13
- 1
- 4
1
vote
2 answers
ASP.Net MVC & Memberships
I would really appreciate some feedback on what I am trying to achieve:
The problem:
I would like to authorize a user of my application to a single action on the controller. For e.g.: a user can perform the "save" action on my controller class if…

Sunny
- 6,286
- 2
- 25
- 27
1
vote
1 answer
Using DataContext Type in Web.Config Profile Properties
Hoping someone has an idea on how to use a type from my linq-to-sql datacontext as the type attribute in my web.config providers property.

localman
- 497
- 4
- 14
1
vote
2 answers
'System.Web.Security.SqlMembershipProvider' requires a database schema compatible with schema version '1'
I want to use profiles and was able to use aspent_regsql -A p to install the tables. I can see them throughout SQL management studio.
I'm actually using SQLExpress 2005, and my dbo.aspnet_SchemaVersions is populated. Does anybody know what could be…
None
1
vote
0 answers
DSACryptoProvider fails with mandatory or temporary profiles
The following code fails when the user is logged on under a mandatory or temporary profile.
private static bool VerifySignature(byte[] signature, byte[] data) {
DSACryptoServiceProvider verifier = new DSACryptoServiceProvider();
…

axeman
- 505
- 1
- 5
- 18
1
vote
1 answer
Maven - Calling a module from Parent POM based on the profile
I have a module which is supposed to produce two artifacts (war's). The only difference between the two WAR's is the web.xml being used.
I did this with the help of Maven Profiles...
com
…

Arpit
- 6,212
- 8
- 38
- 69
1
vote
0 answers
Multiple profiles in Chrome: Syncing between macs? + Safari? + Alternative?
I work with multiple ppl, and have each person set up with their own profile in my Chrome browser.
In short they all have diffrent (etc. social)-profiles on all kind of diffrent websites that i have to manage, lets say facebook, google+ and so on.…

denblaakop
- 25
- 5
1
vote
0 answers
Use jpa and mongo repositories based on @profiles in Spring Boot MVC application
I am very new to spring and mongo db.Please suggest the way for my problem: I have this web app written in Spring boot and it mainly uses JPA for database. I have a multiple entity and then I have multiple repositories that extends JPARepository…

Anuj
- 327
- 1
- 2
- 14
1
vote
3 answers
Spring Boot - Autowire component using different profiles
I have a component EmbeddedRedis that depends on a configuration object RedisConfig parsed from the application's property file. There are different property files, corresponding to the possible application profiles that can be run. Thus, when run…

twiechert
- 83
- 1
- 7
1
vote
1 answer
PHP User Profile System
I am looking for some suggestions for creating a User Profile System. I have just finished a user management application with the usual controls like Login, Registration, Password Reset, Admin section for managing user accounts etc. The one thing…
anon445699