jueves, 4 de octubre de 2012

Factura Electrónica


(WSAA) Autenticación y Autorización  de WebServices  perteneciente a la AFIP.
(EE) Entes Externos a la AFIP
(CEE) Computador de Entes Externos a la AFIP
(WSN) WebServices de Negocio ofrecidos por la AFIP
(TA) Ticket de Acceso
(TRA) Ticket de Requerimiento de Acceso

El WSAA realiza la verificación del TRA y si el requerimiento es correcto, devuelve un mensaje
que contiene el TA que habilita al CEE a utilizar el WSN solicitado. El TA deberá ser utilizado por el
CEE para acceder al WSN.
http://slproweb.com/products/Win32OpenSSL.html

https://servicios1.afip.gov.ar/test.asp
https://wswhomo.afip.gov.ar/wsfev1/service.asmx

https://wsaahomo.afip.gov.ar/ws/services/LoginCms


https://fwshomo.afip.gov.ar/wsmtxca/services/MTXCAService


http://199.238.156.186/afip/ticketcontent.php
set OPENSSL_CONF=c:\OpenSSL-Win64\bin\openssl.cfg
http://www.afip.gob.ar/ws/WSAA/cert-req-howto.txt
http://www.sistemasagiles.com.ar/trac/wiki/ManualPyAfipWs
http://www.afip.gov.ar/ws/WSAA/AFIP-WS-Arquitectura.pdf
http://www.afip.gob.ar/ws/WSAA/Especificacion_Tecnica_WSAA_1.2.0.pdf
http://www.afip.gob.ar/fe/documentos/manualdesarrolladormtxv0.pdf
http://www.afip.gob.ar/ws/WSFE/WSFE-ManualParaElDesarrollador-090317.pdf
http://www.afip.gob.ar/ws/#WSFE
http://www.afip.gob.ar/ws/WSFE/WSFE-FuncionamientoGeneralDelServicioWeb-090731.pdf
http://www.afip.gob.ar/ws/WSFE/WSFE-GuiaAdicionalParaElProgramador.pdf


miércoles, 3 de octubre de 2012

Java Llamar Garbage Collector


  public void pasarGarbageCollector(){

        Runtime garbage = Runtime.getRuntime();

        System.out.println(“Memoria libre antes de limpieza:”+ garbage.freememory());

        garbage.gc();

      System.out.println(“Memoria libre tras la limpieza: “+ garbage.freememory());

    }

}

martes, 18 de septiembre de 2012

Genexus - Quitar una extensión

Open Knowledge Base:

Knowledge Base at 'C:\' contains items that GeneXus doesn't know how to handle and will therefore be inaccessible.


It is likely that the Knowledge Base has been previously opened with a GeneXus installation which had extensions that are not present in the current one.



delete from Entity where
 EntityTypeId = 
(select EntityTypeId from EntityType where EntityTypeName = 'WebPanelDesigner')

 delete from EntityVersion where EntityTypeId = 
(select EntityTypeId from EntityType where EntityTypeName = 'WebPanelDesigner') 

delete from EntityVersionComposition where ComponentEntityTypeId = 
(select EntityTypeId from EntityType where EntityTypeName = 'WebPanelDesigner') 

delete from EntityVersionComposition where CompoundEntityTypeId = 
(select EntityTypeId from EntityType where EntityTypeName = 'WebPanelDesigner') 

delete from ModelCrossReference where FromEntityTypeId = 
(select EntityTypeId from EntityType where EntityTypeName = 'WebPanelDesigner') 

delete from ModelCrossReference where ToEntityTypeId = 
(select EntityTypeId from EntityType where EntityTypeName = 'WebPanelDesigner') 

delete from ModelEntityHistory where EntityTypeId = 
(select EntityTypeId from EntityType where EntityTypeName = 'WebPanelDesigner') 

delete from ModelEntityOutput where EntityTypeId = 
(select EntityTypeId from EntityType where EntityTypeName = 'WebPanelDesigner') 

delete from ModelEntityProperty where EntityTypeId = 
(select EntityTypeId from EntityType where EntityTypeName = 'WebPanelDesigner') 

delete from ModelEntityToTable where EntityTypeId = 
(select EntityTypeId from EntityType where EntityTypeName = 'WebPanelDesigner') 

delete from ModelEntityVersion where EntityTypeId = 
(select EntityTypeId from EntityType where EntityTypeName = 'WebPanelDesigner')

delete from EntityType where EntityTypeName = 'WebPanelDesigner'

jueves, 30 de agosto de 2012

Genexus Evolution - Imprimir PDF

El procedimiento debe tener:

Rules:
output_file("Miimpresion","pdf");

Main Program: True

Call Protocol: HTTP
Report to: Screen