Blog de algunos tips de programación que seran útiles a la hora de hacer un sistema y que pueden ser olvidados por los desarrolladores.
Bienvenidos
L1f3 15 a D@nc3 Flo0r
martes, 22 de marzo de 2011
AnkhSVN - Subversion Plug-in para visual studio
Yo lo utilizo y a la verdad que me ha dado excelentes resultados.
Para descargar: http://ankhsvn.open.collab.net/
El test Joel. 12 pasos para programar mejor
The Joel Test: 12 Steps to Better Code
- Do you use source control?
- Can you make a build in one step?
- Do you make daily builds?
- Do you have a bug database?
- Do you fix bugs before writing new code?
- Do you have an up-to-date schedule?
- Do you have a spec?
- Do programmers have quiet working conditions?
- Do you use the best tools money can buy?
- Do you have testers?
- Do new candidates write code during their interview?
- Do you do hallway usability testing?
domingo, 13 de marzo de 2011
No se ven los reportes (Reportviewer) en el site publicado
Error: An error occurred during local report processing.The definition of the report 'Main Report' is invalid.The report definition is not valid. Details: Data at the root level is invalid. Line 1, position 1.
Este error me lo presentaba cuando publicaba un site en el servidor web.
Para corregir esto debes hacer lo siguiente:
1. Subir los dll de reportviewer al servidor ya que estos no están nativos dentro del framework o si es posible instalar reportviewer en el servidor
a. Microsoft.ReportViewer.Common.dll
b. Microsoft.ReportViewer.ProcessingObjectModel.dll
c. Microsoft.ReportViewer.WebForms.dll
RECUERDA QUE DEBEN SER LOS DE LA VERSION QUE ESTES UTILIZANDO (8 SI ES VS 2005 Y 9 SI ES CON VS 2008)
2. Volver a subir los archivos rldc ya que aveces se corrompen en la publicación
3. Si es necesario agregar esto al web.config dentro de system.webserver
<handlers>
<add name="ReportViewerWebControl" verb="*"
path="Reserved.ReportViewerWebControl.axd"
type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
resourceType="Unspecified" />
handlers>