// Soportar HTTPS ServicePointManager.Expect100Continue = true; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Ssl3;
lunes, 25 de julio de 2022
The underlying connection was closed: Could not establish secure channel for SSL/TLS.
jueves, 30 de julio de 2020
ASP Classic Ver todas variables de servidor
For Each var In Request.ServerVariables Response.Write var & " = " & Request.ServerVariables(var) Next
viernes, 10 de julio de 2020
Diferencia entre CMS y Constructores de sitios web
- Su capacidad para ser usados en una gran variedad de tipos de sitios web.
- Gran cantidad de temas visuales o la capacidad para modificarlos o generar el suyo propio.
- Multitud de complementos que ya están desarrollados, eliminando el trabajo y el coste de desarrollar dichos complementos.
- Propiedad única del sitio, el código el nuestro y tenemos la capacidad de modificarlo.
- Tenemos la responsabilidad del mantenimiento, es decir actualizar nuestro sitios web y mantener la seguridad.
- Exige quizá un mayor nivel de conocimientos, en desarrollo web.
- Facilidad de uso
- Rápida configuración, suele estar desarrollados para que se muy fácil su modificación, ya que están enfocados el usuario final.
- Despreocupación sobre el mantenimiento y la seguridad del sitios ya que esta responsabilidad recaerá sobre el constructor del sitios web.
- El costo suele ser quizá más bajo y se paga mensualmente
- El nivel de personalización no esta alta como el CMS.
- Tienen menos capacidad de adaptación para todas las necesidades del sitios web, ejemplo para temas de posicionamientos podríamos estar limitados al contenido que podemos modificar.
- Migración de nuestro sitio web, a la hora de cambiar de hosting no podremos realizar esta tarea de forma tan sencilla que un CMS ya que el código lo tendrá el constructor del sitio web.
- Pertenencia del sitio web, nunca seremos dueño del sitio web, ya que estamos usando su herramienta, y una vez dejemos de pagar, perderemos nuestro sitio web.
Códigos de respuesta de estado de HTTP
100 Continue. El cliente puede continuar realizando su petición.
101 Switching Protocols. El servidor acepta la petición de cambio de protocolo.
102 Processing. El servidor está procesando la petición del navegador pero todavía no ha terminado.
103 (Checkpoint). se reanuda la petición POST o PUT que fue interrumpida previamente.
200 OK. Petición finalizada con éxito.
201 Created. La petición se ha completado y se ha creado un nuevo recurso.
202 Aceptada. La petición se está procesando la petición. Ha sido aceptada, pero está pendiente de respuesta.
200 OK. Petición finalizada con éxito.
201 Created. La petición se ha completado y se ha creado un nuevo recurso.
202 Aceptada. La petición se está procesando la petición. Ha sido aceptada, pero está pendiente de respuesta.
400 Bad Request. El servidor no puede o no va a procesar la petición por un error de sintaxis del cliente.
401 Unauthorized. La petición requiere una autentificación y ha fallado o todavía no se ha facilitado.
403 Forbidden. Petición con acceso denegado.
404 Not Found. Petición no encontrada.
500 Internal Server Error. Error inesperado en el servidor.
501 Not Implemented. El servidor o no reconoce el método de petición.
502 Bad Gateway. El server actuaba como proxy o Gateway y recibió una respuesta inválida del servidor upstream.
503 Service Unavailable. El servidor está actualmente no disponible, ya sea por mantenimiento o por sobrecarga
lunes, 27 de abril de 2020
Visual Studio 2003 .NET Panel con Scroll solo vertical o horizontal
System.Windows.Forms.Panel
” pero añadiendo
nuevas funcionalidades y propiedades.using System; namespace CustomAutoScrollPanel { using System; using System.Windows.Forms; using System.Runtime.InteropServices ; ////// Description résumée de ScrollablePanel. /// public class ScrollablePanel: System.Windows.Forms.Panel { #region Delegates & events public event System.Windows.Forms.ScrollEventHandler ScrollHorizontal; public event System.Windows.Forms.ScrollEventHandler ScrollVertical; public event System.Windows.Forms.MouseEventHandler ScrollMouseWheel; #endregion #region Const private const int SB_LINEUP = 0; private const int SB_LINEDOWN = 1; private const int SB_PAGEUP = 2; private const int SB_PAGEDOWN = 3; private const int SB_THUMBPOSITION = 4; private const int SB_THUMBTRACK = 5; private const int SB_TOP = 6; private const int SB_BOTTOM = 7; private const int SB_ENDSCROLL = 8; private const int WM_HSCROLL = 0x114; private const int WM_VSCROLL = 0x115; private const int WM_MOUSEWHEEL = 0x020A; private const int WM_NCCALCSIZE =0x0083; private const int WM_PAINT =0x000F; private const int WM_SIZE =0x0005; private const uint SB_HORZ = 0; private const uint SB_VERT = 1; private const uint SB_CTL = 2; private const uint SB_BOTH = 3; private const uint ESB_DISABLE_BOTH = 0x3; private const uint ESB_ENABLE_BOTH = 0x0; private const int MK_LBUTTON = 0x01; private const int MK_RBUTTON = 0x02; private const int MK_SHIFT = 0x04; private const int MK_CONTROL = 0x08; private const int MK_MBUTTON = 0x10; private const int MK_XBUTTON1 = 0x0020; private const int MK_XBUTTON2 = 0x0040; #endregion #region Vars private bool enableAutoHorizontal = true; private bool enableAutoVertical = true; private bool visibleAutoHorizontal = true; private bool visibleAutoVertical = true; private int autoScrollHorizontalMinimum = 0; private int autoScrollHorizontalMaximum = 100; private int autoScrollVerticalMinimum = 0; private int autoScrollVerticalMaximum = 100; #endregion #region Constructor public ScrollablePanel() { this.Click += new EventHandler(ScrollablePanel_Click); this.AutoScroll = true; } #endregion #region Properties public int AutoScrollHPos { get { return GetScrollPos(this.Handle, (int)SB_HORZ); } set { SetScrollPos(this.Handle, (int)SB_HORZ, value, true); } } public int AutoScrollVPos { get { return GetScrollPos(this.Handle, (int)SB_VERT); } set { SetScrollPos(this.Handle, (int)SB_VERT, value, true); } } public int AutoScrollHorizontalMinimum { get { return this.autoScrollHorizontalMinimum; } set { this.autoScrollHorizontalMinimum = value; SetScrollRange(this.Handle, (int)SB_HORZ, autoScrollHorizontalMinimum, autoScrollHorizontalMaximum, true); } } public int AutoScrollHorizontalMaximum { get { return this.autoScrollHorizontalMaximum; } set { this.autoScrollHorizontalMaximum = value; SetScrollRange(this.Handle, (int)SB_HORZ, autoScrollHorizontalMinimum, autoScrollHorizontalMaximum, true); } } public int AutoScrollVerticalMinimum { get { return this.autoScrollVerticalMinimum; } set { this.autoScrollVerticalMinimum = value; SetScrollRange(this.Handle, (int)SB_VERT, autoScrollHorizontalMinimum, autoScrollHorizontalMaximum, true); } } public int AutoScrollVerticalMaximum { get { return this.autoScrollVerticalMaximum; } set { this.autoScrollVerticalMaximum = value; SetScrollRange(this.Handle, (int)SB_VERT, autoScrollHorizontalMinimum, autoScrollHorizontalMaximum, true); } } public bool EnableAutoScrollHorizontal { get { return this.enableAutoHorizontal; } set { this.enableAutoHorizontal = value; if (value) EnableScrollBar(this.Handle, SB_HORZ, ESB_ENABLE_BOTH); else EnableScrollBar(this.Handle, SB_HORZ, ESB_DISABLE_BOTH); } } public bool EnableAutoScrollVertical { get { return this.enableAutoVertical; } set { this.enableAutoVertical = value; if (value) EnableScrollBar(this.Handle, SB_VERT, ESB_ENABLE_BOTH); else EnableScrollBar(this.Handle, SB_VERT, ESB_DISABLE_BOTH); } } public bool VisibleAutoScrollHorizontal { get { return this.visibleAutoHorizontal; } set { this.visibleAutoHorizontal = value; ShowScrollBar(this.Handle, (int)SB_HORZ, value); } } public bool VisibleAutoScrollVertical { get { return this.visibleAutoVertical; } set { this.visibleAutoVertical = value; ShowScrollBar(this.Handle, (int)SB_VERT, value); } } #endregion #region ScrollEventType to SB_* messages and SB_* messages to ScrollEventType private int getSBFromScrollEventType(ScrollEventType type) { int res = -1; switch (type) { case ScrollEventType.SmallDecrement: res = SB_LINEUP; break; case ScrollEventType.SmallIncrement: res = SB_LINEDOWN; break; case ScrollEventType.LargeDecrement: res = SB_PAGEUP; break; case ScrollEventType.LargeIncrement: res = SB_PAGEDOWN; break; case ScrollEventType.ThumbTrack: res = SB_THUMBTRACK; break; case ScrollEventType.First: res = SB_TOP; break; case ScrollEventType.Last: res = SB_BOTTOM; break; case ScrollEventType.ThumbPosition: res = SB_THUMBPOSITION; break; case ScrollEventType.EndScroll: res = SB_ENDSCROLL; break; default: break; } return res; } private ScrollEventType getScrollEventType(System.IntPtr wParam) { ScrollEventType res = 0; switch (LoWord((int)wParam)) { case SB_LINEUP: res = ScrollEventType.SmallDecrement; break; case SB_LINEDOWN: res = ScrollEventType.SmallIncrement; break; case SB_PAGEUP: res = ScrollEventType.LargeDecrement; break; case SB_PAGEDOWN: res = ScrollEventType.LargeIncrement; break; case SB_THUMBTRACK: res = ScrollEventType.ThumbTrack; break; case SB_TOP: res = ScrollEventType.First; break; case SB_BOTTOM: res = ScrollEventType.Last; break; case SB_THUMBPOSITION: res = ScrollEventType.ThumbPosition; break; case SB_ENDSCROLL: res = ScrollEventType.EndScroll; break; default: res = ScrollEventType.EndScroll; break; } return res; } #endregion #region WndProd override protected override void WndProc(ref Message msg) { base.WndProc(ref msg); if (msg.HWnd != this.Handle) return; switch (msg.Msg) { case WM_MOUSEWHEEL: if (!this.VisibleAutoScrollVertical) return; try { int zDelta = HiWord((int)msg.WParam); int y = HiWord((int)msg.LParam); int x = LoWord((int)msg.LParam); System.Windows.Forms.MouseButtons butt; switch (LoWord((int)msg.WParam)) { case MK_LBUTTON: butt = System.Windows.Forms.MouseButtons.Left; break; case MK_MBUTTON: butt = System.Windows.Forms.MouseButtons.Middle; break; case MK_RBUTTON: butt = System.Windows.Forms.MouseButtons.Right; break; case MK_XBUTTON1: butt = System.Windows.Forms.MouseButtons.XButton1; break; case MK_XBUTTON2: butt = System.Windows.Forms.MouseButtons.XButton2; break; default: butt = System.Windows.Forms.MouseButtons.None; break; } System.Windows.Forms.MouseEventArgs arg0 = new System.Windows.Forms.MouseEventArgs(butt, 1, x, y, zDelta); this.ScrollMouseWheel(this, arg0); } catch (Exception) { } break; case WM_VSCROLL: try { ScrollEventType type = getScrollEventType(msg.WParam); ScrollEventArgs arg = new ScrollEventArgs(type, GetScrollPos(this.Handle, (int)SB_VERT)); this.ScrollVertical(this, arg); } catch (Exception) { } break; case WM_HSCROLL: try { ScrollEventType type = getScrollEventType(msg.WParam); ScrollEventArgs arg = new ScrollEventArgs(type, GetScrollPos(this.Handle, (int)SB_HORZ)); this.ScrollHorizontal(this, arg); } catch (Exception) { } break; default: break; } } #endregion #region Perform Manuel scrolling public void performScrollHorizontal(ScrollEventType type) { int param = getSBFromScrollEventType(type); if (param == -1) return; SendMessage(this.Handle, (uint)WM_HSCROLL, (System.UIntPtr)param, (System.IntPtr)0); } public void performScrollVertical(ScrollEventType type) { int param = getSBFromScrollEventType(type); if (param == -1) return; SendMessage(this.Handle, (uint)WM_VSCROLL, (System.UIntPtr)param, (System.IntPtr)0); } #endregion #region Panel Got focus private void ScrollablePanel_Click(object sender, EventArgs e) { this.Focus(); } #endregion #region API32 functions [DllImport("user32.dll", CharSet=CharSet.Auto)] static public extern int GetSystemMetrics(int code); [DllImport("user32.dll")] static public extern bool EnableScrollBar(System.IntPtr hWnd, uint wSBflags, uint wArrows); //[DllImport("user32.dll")] //static public extern bool GetScrollInfo(System.IntPtr hwnd, int fnBar, LPSCROLLINFO lpsi); [DllImport("user32.dll")] static public extern int SetScrollRange(System.IntPtr hWnd, int nBar, int nMinPos, int nMaxPos, bool bRedraw); [DllImport("user32.dll")] static public extern int SetScrollPos(System.IntPtr hWnd, int nBar, int nPos, bool bRedraw); [DllImport("user32.dll")] static public extern int GetScrollPos(System.IntPtr hWnd, int nBar); /* public struct LPSCROLLINFO { uint cbSize; uint fMask; int nMin; int nMax; uint nPage; int nPos; int nTrackPos; } */ [DllImport("user32.dll")] static public extern bool ShowScrollBar(System.IntPtr hWnd, int wBar, bool bShow); [DllImport("user32.dll")] static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, UIntPtr wParam, IntPtr lParam); [DllImport("user32.dll")] static extern int HIWORD(System.IntPtr wParam); static int MakeLong(int LoWord, int HiWord) { return (HiWord << 16) | (LoWord & 0xffff); } static IntPtr MakeLParam(int LoWord, int HiWord) { return (IntPtr) ((HiWord << 16) | (LoWord & 0xffff)); } static int HiWord(int number) { if ((number & 0x80000000) == 0x80000000) return (number >> 16); else return (number >> 16) & 0xffff ; } static int LoWord(int number) { return number & 0xffff; } #endregion } }
- Modificamos el tipo de nuestro panel por el nuevo tipo
// Cambio su tipo //private System.Windows.Forms.Panel panel1; private CustomAutoScrollPanel.ScrollablePanel panel1;
- Modificamos al InitializeComponent que donde se inicializa el objeto, ya que ahora es de otro tipo.
private void InitializeComponent() { this.panel1 = new CustomAutoScrollPanel.ScrollablePanel();
- Modificar el constructor de nuestro formulario.
public Form1() { // // Necesario para admitir el Diseñador de Windows Forms // InitializeComponent(); // // TODO: agregar código de constructor después de llamar a InitializeComponent // this.panel1.AutoScroll = true; this.panel1.EnableAutoScrollHorizontal = false; this.panel1.VisibleAutoScrollHorizontal = false; this.panel1.EnableAutoScrollVertical = true; this.panel1.VisibleAutoScrollVertical = true; }
sábado, 18 de abril de 2020
AJAX en Java mediante JSP y Servlet
Descargar código: aqui
Ejemplo funcionando:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>Ejemplo AJAX en Java Insertar Usuario
public class Usuario { private String nombre; private String correo; private String telefono; // Constructores public Usuario(){ } public Usuario(String nombre, String correo, String telefono) { super(); this.nombre = nombre; this.correo = correo; this.telefono = telefono; } // Propiedades public String getNombre() { return this.nombre; } public void setNombre(String nombre) { this.nombre = nombre; } public String getCorreo() { return this.correo; } public void setCorreo(String correo) { this.correo = correo; } public String getTelefono() { return this.telefono; } public void setTelefono(String telefono) { this.telefono = telefono; } }
Paso 4: Crear nuestro Servlet y definir la acción.
Ejemplo AJAX index.html index.htm index.jsp default.html default.htm default.jsp ActionServlet ActionServlet ActionServlet /
lunes, 13 de abril de 2020
Error al Abrir proyectos de Visual Studio 2003 .NET en IIS7
Solución:
- Abrir el “panel de control”
- Activar o desactivar las características de Windows.”
- Habilitar “Compatibilidad con la administración de IIS 6”
- Abrir consola de Windows
- Cambiar al siguiente directorio “c:\Windows\MIcrosoft.net\Framework\v1.1.4322”
- Ejecutar comando "aspnet_regiis -ir"
- Crear un nuevo "Application Pools" en mi caso lo he llamado "ASP.NET 1.1" que está configurado como “Classic". Importante si nuestro máquina es de 64bit tendremos que habilitar la opción "Enable32BitAppOnWin64" a “true”.
- Abre el administrador de IIS.
- Seleccionar sobre el nombre tu equipo
- Doble clic en “Restricciones ISAPI y CGI”
- Seleccione ASP.NET v1.1
- Haga clic en Permitir en la sección Acciones en la esquina superior derecha.