I have a project with spring and maven. I found that using profiles, maven could change the properties of the data source. But what if in production the datasource is with a lookup like this, how to do the profiles for this: one with a basic datasource and the other a jee lookup.
<jee:jndi-lookup id="dataSourcejndi" jndi-name="jdbc/BGG...
After setting user profile pictures (and user information pictures) for all our sharepoint users (images are kept in a list in one of the site collections), we configured user profiles so that users can update their picture at any moment.
The problem is, when the user uploads a picture, it is automatically placed in their Shared Picture...
hi,
I have a List<> as part of a users profile stroed in the web.config like so
<properties>
<clear/>
<add name="EditorUploads"
type="System.Collections.Generic.List`1[[System.String]]"/>
</properties>
Although this code works, I don't know why. I can't find any documentation on what the `1 means anywhe...
I figured the PropertyValuesString was for the value part of what is usually the Key-Value pair of these types of object. But then where does the PropertyValuesBinary field come in if you've already put the value into the PropertyValuesString?
Both fields are non-nullable so I need something to put in each. What's the difference betwee...
Most sites that have some sort of user profile will either do something like this:
profile.php?u=123445
or else:
profile.php?u=jason.Davis
So I am curious, would it be slower to use a name to lookup a profile with php/mysql vs. using a number to look up a profile record?
...
Problem:
Logon and load profile via LoadUserProfile API for a roaming user is not creating proper profile. This only happens under Windows 2008 (UAC off and on). Login using standard windows logon works correctly and same code works correctly on Windows 2003.
Logs:
http://drop.io/6t2b3f3
ETL of user profile service created via com...
I'm getting started with django and I'd like to extend the basic django.contrib.auth.models.User class to create my own site profile(s). Here is described how to do it, got that.
As far as I've understood it, you can only specify a single class as AUTH_PROFILE_MODULE in your settings.py.
Now, if I create an extension class of my profil...
Hi.
I am attempting to design a custom profile class that allows me to access the aspnet tables in addition to my custom tables (all in the same DB).
I have been following two online examples that describe how to wire up a custom profile class. In this example, I am asked to inherit from ProfileProvider
How To Implement A Custom Pro...
What are possible causes of the following maven warning:
Overriding profile: 'null' (source: pom) with new instance from source: pom
I've tried commenting out my entire default profile as the warning mentions "profile", but that didn't help. I've also tried commenting out my reporting options and the warning still shows up.
I've r...
A few of my users have problems starting up my Java application on Windows XP and 7. I cannot reproduce the bug on my systems.
On Mac, the next step would be to ask them to send their system profile to me by going to Apple Menu > About This Mac > More Info and then saving the system profile.
Is there an equivalent on Windows? I would l...
Hello,
I'm trying to export a profile from WAS 6.1 so that I can give it to other members of my team with all of the JNDI and Shared Library configurations in place. I've flowed a few IBM tutorials on this like http://www-01.ibm.com/support/docview.wss?uid=swg21322309 (technically that is more a bug fix, but there is a similar page). I'v...
We have a "corporate directory" website that displays some contact information about our employees. Among other things like displaying data from Active Directory, it also displays a picture, which can be retrieve via a URL of the format http://[CorpDir]/PersonPhoto.aspx?email=[UserEmail]
I'm now looking for a way to use these pictures a...
I'm trying to get a detailed list (containing name, size, and last modified) of all user profile on a local machine. I can find the information by going to Computer->Properties->Advanced->(user profiles)Settings and i'm trying to find a way to pull in that information into my c# program. Thanks for the help!
...
<profile>
<id>test</id>
<activation>
<property>
<name>environment</name>
<value>linux-host</value>
</property>
</activation>
</profile>
How can I reference "linux-host" inside the profile?
...
I have a jpeg. Its color profile is sRGB, of course. I load it into "image" and call
cvCvtColor(image, gray, CV_BGR2GRAY);
to convert it to grayscale. When I step into that routine in the debugger, I find it multiplying pixels by these values:
#define cscGr_32f 0.299f
#define cscGg_32f 0.587f
#define cscGb_32f 0.114f
Waaaai...
I have a multimodule Maven2 project which builds a web application. The application is connected to a backend server and a DB. There are several server instances deployed in our environment, and there are also multiple backend and DB instances for development, UAT, production, etc. So practically, each application configuration needs the...
Hi.
I have recently installed the aspnetdb and have been customizing
it for the purposes of my application design. I have extended the ASPNET
providers as part of my class design: MyMembershipProvider, MyProfileProvider,
and MyRoleProvider. Everything works well there.
Now, per the requierments of my system, I need to add custom dat...
Hello,
I already use django-registration : you can register with an email verification, you can reset password with an email confirmation but there is no way to change user's email with an email verification.
Do you know a django application which gives the ability to change user's email address by sending to the new address a verifica...
I'm looking for a way to create meta-profiles that just activate sub-profiles in Maven. Let's take a very concrete example. I have the following profiles:
"server-jboss"
"server-tomcat"
"database-hsql"
"database-oracle"
To build the project, you have to choose one profile for the server and one for the database. I want to create two ...
Hi,
Im developoing an app for the iPhone where users can chat using their facebook account info.
in this case: the facebook username & profile image. my question is How can I share the users profile picture in the chat box so that people can see each others avatars?
the pictures must be online somewhere? how to get to that url?
I sho...