Update pdb file for debugging with Visual Studio 2008 in library type project V.B .Net

18 05 2009

Hi,  the issue fixed of the day…

After build my project, I saw that pdb file for some dll were no update. After see the several IDE windows properties for the project and solution, I didn’t found where change this (despite that for some other solution it works well). So, I asked to my friend Pablo, and he told me that check and change these lines on vbproj file like is show below.

DebugSymbols:True
DebugType:Full

After this, pdf file were update with debug information in order to allow me debug my windows process in which I am working.

Regards,
Álvaro





First version of WeTwoo now “On Air”

6 05 2009
WeTwoo on air

WeTwoo on Air

With several months delayed, we are launched a first beta version of WeTwoo.com (We-Two-o) which for the moment has few features available which are day to day improving …  May be you are asking, What hell is wetwoo?. WeTwoo is a facebook application which attempt to be a place to know information about  you friends that have some type of relationship. The current functionality are:

  • Know the status of relationship of all your friends. For this, you can see a pie-chat which show the distribution of relationship of your friends.
  • Show a List, in one place, the friends that have some type of relationship that is showed on facebook.
  • Make comments about the relation of your friends. Click on the name of you friend on the “Friends in Couple” page and the comment will appear on the wall of your friend.
  • Make comments about the application and these will be show on the wall of your friends.
  • Invite to friend to join wetwoo. In this way, the list of friends listed on “Friends in couple” will grow because only is show the couple that are accepted the application.
  • Available on English and Spanish (Español)

Other features that we hope add:

  • Save and help to remember the anniversary of couple to friends.
  • Save the comments that are done for some couples.
  • Suggest possibles couples as “Couple-friends”.

The application is developed using Ubuntu, Python, Django, Apache, Lighttpd, and PostgreSQL with the help of some libraries as MatPlotLib for graphs and PyFacebook which allow access to Facebook API.
I hope write more on the next months about technical issues to share this process with you.

Before end, I would like to invite to join to the site and make any comments or suggestion about it and help to spread with your contacts.

Best regards,

Álvaro





The database principal owns a schema in the database, and cannot be dropped.

5 05 2009

The database principal owns a schema in the database, and cannot be dropped.The database principal owns a schema in the database, and cannot be dropped.

The database principal owns a schema in the database, and cannot be dropped.

Hi everyone,

Another problem arise while I tried to restore a backup of some database and try to remove the user ASPNET. After ‘googlear’ I found with the entry of blog of Kaushal where explain how to solve this issue.

After fix it,  other error message was show which doesn’t allow me delete an user of database (ASPNET), the message was similar to previous. This was: The database principal owns a database role and cannot be dropped.

To fix the last error, I follow the same steps which I used to previous error, but I look for Roles instead of Schemas, and then I changed the owner from ASPNET to dbo

Regards,

Álvaro





aspnet_wp.exe could not be launched because the username and/or password supplied in the processModel section of the config file are invalid.

20 04 2009

Hi, Today I found this error message “aspnet_wp.exe could not be launched because the username and/or password supplied in the processModel section of the config file are invalid.” in Event Viewer after change the pass for ASPNET user. To fix it, I changed:

<processModel autoConfig=”true”/> by

<processModel username=”SYSTEM”/>

in machine.conf (D:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG)

Like is state in blog of Balaji Ramesh

My machine is Microsoft Windows XP, with Framework 3.5 installed

Regards