Documentación de Procedimientos Almacenados

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
/*
Descripción: Procedimiento que muestra la lista de procesos de cargas
configurados en el sistema. Este procedimiento se conecta además a la
base de soex para obtener la lista de las campañas.
---------------------------------------------------------------------
Autor:    Motivo:     Fecha:          Control de cambio:
ATM       Crea         11-05-2009    Se crea el procedimiento almacenado
*/
ALTER PROCEDURE [dbo].[SEL_PROCESOS]
@CODIGO INT = NULL,
@CONTRATO INT = NULL,
@CAMPANA INT = NULL
AS
Posted in Uncategorized by ATM. No Comments

Ejecutar formulario de prueba de Weservices desde un server remoto

ASP.NET’s default mode is not to allow you access to the web service test forms from remote machines. Loading your ASMX page from a remote machine will produce the following text under the Test section: “The test form is only available for requests from the local machine“. I was able to get around this by placing the following in the Web.Config under the System.Web section:

<webServices>
  <protocols>
    <add name="HttpPost" />
    <add name="HttpGet" />
   </protocols>
</webServices>

Fuente: http://weblogs.asp.net/markbrown/archive/2004/05/18/134212.aspx

Functiones de Formato de Fechas en VB.NET

The DateTime type can be formatted with a string pattern in the VB.NET language. Conceptually, this is simple, but in practice there are some details you must account for if you want a functional program. As shown in this article, formatting your DateTime as a string is straightforward with an understanding of the syntax.

Read the rest of Functiones de Formato de Fechas en VB.NET »

Posted in Desarrollo by ATM. No Comments

Mantener la Session en aplicaciones .NET

Para poder controlar el estado de la sesion es necesario habilitar el servicio “ASP.NET State Service” que por omision se instala por el Framework 2.0 pero se inicia en forma manual.
Read the rest of Mantener la Session en aplicaciones .NET »

Posted in Uncategorized by ATM. No Comments

Habilitar el IIS 7 en Vista para trabajar con Visual Studio

Para poder trabajar con IIS y Visual Studio, primero se deben habilitar algunas caracteristicas en Windows Vista y solo así se podra tener acceso al IIS.

Read the rest of Habilitar el IIS 7 en Vista para trabajar con Visual Studio »

Tags: , , ,
Posted in Visual Studio by ATM. No Comments

Soex implementa sistema de gestión desarrollado por Bullnet

Soex, unas de las empresas emergentes en el area de call center, ha adquirido una solución integral para la administración de su plataforma de llamados y servicios telefonicos ofrecidos a diversos clientes del area de retail, bancos e instituciones privadas.

Read the rest of Soex implementa sistema de gestión desarrollado por Bullnet »