using Google.GData.Apps;
AppsService service = new AppsService(domain, userName, password);
I am using google APi and i came across a Class AppsService which have parameters domain,username and password..Since i am working locally my domain name is "localhost" and password and username is empty ...Am i right with this or am i making a ...
In my ASP.NET MVC application I have a custom cache provider inherited from base OutputCacheProvider class. Is there any way to get output cache profile for current request in my provider?
...
Hi ~
I could connect to two devices from Android based cell phone simultaneously using SPP, but once I turn on the inputstream (like socket.getInputStream()), one of them will return 0 in the stream, that is, no data available on the stream.
For example, thread A(thA) and thread B(thB) connected to device A(devA) and device B(devB) res...
I am using drupal databas ein one of my application. Drupal profile saves date in following format:
a:3:{s:5:"month";s:1:"2";s:3:"day";s:2:"18";s:4:"year";s:4:"1995";}
I can read this with data reader but how to convert in a proper display like DD/MM/YYYY or YYYY/MM/DD
...
Suppose you have a profile for an application. This profile stores some data specifically about one user. You can persist the details of the profile and pull them back each run.
Does a profile make a good candidate for the State pattern? If not, is there a good heuristic to model this sort of functionality?
...
Next to your normal user table "user"(user_id/user_email/user_pwd/etc), what is the best way to go to story profile information.
Would one just add fields to the user table like "user"(user_id/user_email/user_pwd/user_firstname/user_lastname/user_views/etc)
or create another table called "profiles"(profile_id/user_id/user_firstname/use...
I would like to improve the performance of a Python script and have been using cProfile to generate a performance report:
python -m cProfile -o chrX.prof ./bgchr.py ...args...
I opened this chrX.prof file with Python's pstats and printed out the statistics:
Python 2.7 (r27:82500, Oct 5 2010, 00:24:22)
[GCC 4.1.2 20080704 (Red Hat 4...
Hi all,
On my current project we are using the active directory as a user repository and using AzMan as the application authorization store. Both of these are cover with the Membership and the Roles providers (plus the AzMan for operations authorization).
The only thing missing is getting detailed info about the logged user. I could us...
Given that a user has made a purchase in our online store through payments pro (using API) - how, the next time the user comes to make a purchase, can we display to the user a credit card of theirs to choose from for the new purchase? This would be instead of making them provide the credit card details again. Once the user selects the cr...
We want to try to prevent using a mySite and just use the profile of SharePoint 2010. However, we want the user to store bookmarks (or links)- does this mean they need to have a mySite? Is this possible with just a profile?
...
Seems like a pretty common use case for developers, but there is no setting for this?
...
I just discovered ASP.net uses its own profile system to register users and there seems to be a lot of features available as bonus with it (such as secure authentication). However it seems rather specific to have such a feature for a general purpose development environment and things which work in the background the way the profiles syst...
Is there a tool that allows me to profile the memory usage for my Windows Mobile Application.
My app has a section of code that is right up against the limit of the total memory. I have tried to setup my code so that the references to large objects go out of scope before new references are needed.
But I need a way to see if it is work...
I use the default ASP.NET Profile Provider which lets me define user properties in web.config.
I now no longer want to use one of these user properties. I want to delete all traces of it.
I can remove the property from the list of properties in web.config however, I suspect, the stored values for this property will still be held in the...
I am using ASP.NET MVC 3. I am using what essentially came with for free in the Visual Studio project template for an MVC project with the "Internet Application" option. Basically this brings in Forms authentication and provides some basic elements to manage user login and stuff.
I am also using the web profiles stuff with this to store...