BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL

Tamaño: px
Comenzar la demostración a partir de la página:

Download "BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL"

Transcripción

1 BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL LICITACION ABREVIADA POR PONDERACIÓN Nº AV MANUAL DE SERVICIOS DE WEB

2 DOCUMENTATION CUSTOMER SERVICES 1

3 CUSTOMER SERVICES 1. DEPLOYMENT: NAME TYPE FUNCTION Axis2 WAR Web Services Engine customerservice AAR Deployment File 2. COMPONENTS DEFINITION: NAME TYPE FUNCTION customerservice.wsdl WSDL Web Service Description CustomerServiceSkeleton JAVA Class for service impl. EWS000001Message JAVA Message Class. 3. FUNCTIONAL METHODS SUMMARY personalcustomerinquiry: Personal customer inquiry service. Parameters: o <user>- a String data type; sends the user that is soliciting the transaction.. o <customerid>- a String data type; sends the customer identification number. Returns: <PersonalCustMessage> - a data structure containing all the Customer data defined in the WSDL file. Error: <Validation Error> - Error message structure using an exception type errormessage defined in the WSDL file. personalcustomermaintenance: Personal customer maintenance service, it must include the customer number in the message. Parameters: <PersonalCustMessage> - a data structure containing all the customer data defined in the WSDL. Returns: <PersonalCustMessage> - a data structure containing all the customer data defined in the WSDL. Error: <Validation Error> - Error message structure using an exception type errormessage defined in the WSDL file. newpersonalcustomer: Personal customer creation service. The field customer number must be filled with zeros, the response message must return the new generated customer number. 2

4 Parámetros: <PersonalCustMessage> - una estructura de datos compuesta con toda la data de cliente definida en el WSDL. Returns: <PersonalCustMessage> - a data structure containing all the customer data defined in the WSDL. Error: <Validation Error> - Error message structure using an exception type errormessage defined in the WSDL file. The error message is a SOAP message, never the less this message is generated only when an exception is thrown from the published method. This means that in the client side the error message will be obtain in a catch block. Currently the error its being sent in a String with the following form: <error code>-<error description> The error codes correspond to the same codes that are handled in the e-ibs system for form validations. The descriptions of some parameterized fields were added to the message, some of the codes that need description have fixed values, and the details about these values are summarized in the following table: legalstatus Sex relationtype clientstatus clienttype clientclass language taxes FIELD DETAIL 1=Single 2=Married, 3=Divorced, 4=Widow, 5=others M=Male, F=Female 1 Regular Customer 2 Special 3 Employee 4 Functionary 5 Director 6 Relative 7 Affiliated Company 8 Directive Board 9 Corresponsal Bank 1=active, 2=inactive, 3=Black list 1=corporation, 2=personal, 3=others 1= Governmental Entity, 2= Decentralized entity, N=Doesn t Apply s=spanish e=english Fixed values from 1 to 9 or N 4. FUNCIONALIDAD To access the web services functionalities it s required to build a client, starting from the WSDL file attached to this document, the Web Service client in this case will be Ultimus, who will have 3

5 to build the client in their application and who will exchange SOAP messages through http with Datapro s service that is published in the following URL: The WSDL file can be obtain through this URL: Here we present a small example of how to handle SOAP messages: Methods Signature PersonalCustMessage personalcustomerinquiry(string customerid); Where the complex type PersonalCustMessage is defined as PersonalCustMessage { String firstname; String secondname; String phonenumber; all the response fields } Request <?xml version="1.0" encoding="utf-8" standalone="no"?> <SOAP-ENV:Envelope SOAP- ENV:encodingStyle=" xmlns:soap-env=" xmlns:soap-enc=" xmlns:xsi=" xmlns:xsd=" <SOAP-ENV:Body> <ns1:personalcustomerinquiry xmlns:ns1="urn:mysoapservices"> <user xsi:type="xsd:string">bptdatapro</user> <customerid xsi:type="xsd:string"> </customerid> </ns1:personalcustomerinquiry> </SOAP-ENV:Body> </SOAP-ENV:Envelope> Response <?xml version="1.0" encoding="utf-8"?> <SOAP-ENV:Envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap-env=" <SOAP-ENV:Body> <ns1: personalcustomerinquiryresponse xmlns:ns1="urn:mysoapservices" SOAP- ENV:encodingStyle=" 4

6 <return xsi:type="ns1:personalcustmessage"> <firstname xsi:type="xsd:string">bill</firstname> <secondname xsi:type="xsd:string">gate</secondname> <phonenumber xsi:type="xsd:string"> </phonenumber> all the response fields </return> </ns1: personalcustomerinquiryresponse> </SOAP-ENV:Body> </SOAP-ENV:Envelope> With the WSDL file all the necessary elements to create the client to access the service can be generated. The WSDL file is attached below. 5

7 5. ATTACHMENTS: <?xml version="1.0" encoding="utf-8"?> <wsdl:definitions targetnamespace=" xmlns:impl=" xmlns:intf=" xmlns:tns2=" xmlns:wsdl=" xmlns:wsdlsoap=" xmlns:xsd=" <wsdl:types> <schema elementformdefault="qualified" targetnamespace=" xmlns=" xmlns:impl=" xmlns:intf=" xmlns:wsdl=" xmlns:xsd=" <complextype name="personalcustmessage"> <sequence> <element name="user" nillable="true" type="xsd:string"/> <element name="idnumber" nillable="true" type="xsd:string"/> <element name="clienttype" nillable="true" type="xsd:string"/> <element name="idcountry" nillable="true" type="xsd:string"/> <element name="idtype" nillable="true" type="xsd:string"/> <element name="customernumber" nillable="true" type="xsd:string"/> <element name="firstname" nillable="true" type="xsd:string"/> <element name="secondname" nillable="true" type="xsd:string"/> <element name="firstlastname" nillable="true" type="xsd:string"/> <element name="secondlastname" nillable="true" type="xsd:string"/> <element name="marriedname" nillable="true" type="xsd:string"/> <element name="legalname" nillable="true" type="xsd:string"/> <element name="shortname" nillable="true" type="xsd:string"/> <element name="dependents" nillable="true" type="xsd:string"/> <element name="sex" nillable="true" type="xsd:string"/> <element name="legalstatus" nillable="true" type="xsd:string"/> <element name="nacionality" nillable="true" type="xsd:string"/> <element name="street" nillable="true" type="xsd:string"/> <element name="housenumber" nillable="true" type="xsd:string"/> <element name="province" nillable="true" type="xsd:string"/> <element name="distrit" nillable="true" type="xsd:string"/> <element name="correg" nillable="true" type="xsd:string"/> <element name="country" nillable="true" type="xsd:string"/> <element name="pobox" nillable="true" type="xsd:string"/> <element name="zipcode" nillable="true" type="xsd:string"/> <element name=" " nillable="true" type="xsd:string"/> <element name="birthdate" nillable="true" type="xsd:string"/> <element name="firstcontactdate" nillable="true" type="xsd:string"/> <element name="housephonenum" nillable="true" type="xsd:string"/> <element name="officephonenum" nillable="true" type="xsd:string"/> <element name="celularphonenum" nillable="true" type="xsd:string"/> <element name="faxnumber" nillable="true" type="xsd:string"/> <element name="mainofficer" nillable="true" type="xsd:string"/> <element name="secondofficer" nillable="true" type="xsd:string"/> <element name="industrycode" nillable="true" type="xsd:string"/> <element name="businesscode" nillable="true" type="xsd:string"/> 6

8 type="xsd:string"/> <element name="residencycountry" nillable="true" type="xsd:string"/> <element name="relationtype" nillable="true" type="xsd:string"/> <element name="educationlevel" nillable="true" type="xsd:string"/> <element name="profession" nillable="true" type="xsd:string"/> <element name="incomesource" nillable="true" type="xsd:string"/> <element name="risklevel" nillable="true" type="xsd:string"/> <element name="clientstatus" nillable="true" type="xsd:string"/> <element name="clientclass" nillable="true" type="xsd:string"/> <element name="groupnumber" nillable="true" type="xsd:string"/> <element name="language" nillable="true" type="xsd:string"/> <element name="taxes" nillable="true" type="xsd:string"/> <element name="referby" nillable="true" type="xsd:string"/> <element name="referbyn" nillable="true" type="xsd:string"/> <element name="familiarrelationtype" nillable="true" <element name="resident" nillable="true" type="xsd:string"/> <element name="inquirylevel" nillable="true" type="xsd:string"/> <element name="discountcompanyname" nillable="true" type="xsd:string"/> <element name="position" nillable="true" type="xsd:string"/> <element name="employmenttime" nillable="true" type="xsd:string"/> <element name="companytype" nillable="true" type="xsd:string"/> <element name="currentjentrydate" nillable="true" type="xsd:string"/> <element name="previusjentrydate" nillable="true" type="xsd:string"/> <element name="currentincome" nillable="true" type="xsd:string"/> <element name="perrefname1" nillable="true" type="xsd:string"/> <element name="perrefstreet1" nillable="true" type="xsd:string"/> <element name="perrefbuildnum1" nillable="true" type="xsd:string"/> <element name="perrefhousenum1" nillable="true" type="xsd:string"/> <element name="perrefprovince1" nillable="true" type="xsd:string"/> <element name="perrefdistrit1" nillable="true" type="xsd:string"/> <element name="perrefcorreg1" nillable="true" type="xsd:string"/> <element name="perrefcountry1" nillable="true" type="xsd:string"/> <element name="perrefpobox1" nillable="true" type="xsd:string"/> <element name="perrefzipcode1" nillable="true" type="xsd:string"/> <element name="perrefphonenum1" nillable="true" type="xsd:string"/> <element name="perrefname2" nillable="true" type="xsd:string"/> <element name="perrefstreet2" nillable="true" type="xsd:string"/> <element name="perrefbuildnum2" nillable="true" type="xsd:string"/> <element name="perrefhousenum2" nillable="true" type="xsd:string"/> <element name="perrefprovince2" nillable="true" type="xsd:string"/> <element name="perrefdistrit2" nillable="true" type="xsd:string"/> <element name="perrefcorreg2" nillable="true" type="xsd:string"/> <element name="perrefcountry2" nillable="true" type="xsd:string"/> <element name="perrefpobox2" nillable="true" type="xsd:string"/> <element name="perrefzipcode2" nillable="true" type="xsd:string"/> <element name="perrefphonenum2" nillable="true" type="xsd:string"/> <element name="countrydesc" nillable="true" type="xsd:string"/> <element name="idtypedesc" nillable="true" type="xsd:string"/> <element name="provincedesc" nillable="true" type="xsd:string"/> <element name="nacionalitydesc" nillable="true" type="xsd:string"/> <element name="distritdesc" nillable="true" type="xsd:string"/> <element name="corregdesc" nillable="true" type="xsd:string"/> <element name="mainofficerdesc" nillable="true" type="xsd:string"/> <element name="secondofficerdesc" nillable="true" type="xsd:string"/> <element name="industrycodedesc" nillable="true" type="xsd:string"/> 7

9 <element name="mainofficerdesc" nillable="true" type="xsd:string"/> <element name="secondofficerdesc" nillable="true" type="xsd:string"/> <element name="industrycodedesc" nillable="true" type="xsd:string"/> <element name="bussinescodedesc" nillable="true" type="xsd:string"/> <element name="residencycountrydesc" nillable="true" type="xsd:string"/> <element name="educationleveldsc" nillable="true" type="xsd:string"/> <element name="professiondesc" nillable="true" type="xsd:string"/> <element name="incomesourcedsc" nillable="true" type="xsd:string"/> <element name="riskleveldsc" nillable="true" type="xsd:string"/> <element name="companynamedsc" nillable="true" type="xsd:string"/> <element name="positiondsc" nillable="true" type="xsd:string"/> <element name="perrefprovince1dsc" nillable="true" type="xsd:string"/> <element name="perrefdistrit1dsc" nillable="true" type="xsd:string"/> <element name="perrefcorreg1dsc" nillable="true" type="xsd:string"/> <element name="perrefprovince2dsc" nillable="true" type="xsd:string"/> <element name="perrefdistrit2dsc" nillable="true" type="xsd:string"/> <element name="perrefcorreg2dsc" nillable="true" type="xsd:string"/> <element name="referbydsc" nillable="true" type="xsd:string"/> <element name="companyname" nillable="true" type="xsd:string"/> <element name="companyaddress" nillable="true" type="xsd:string"/> <element name="companyinfo" nillable="true" type="xsd:string"/> </sequence> </complextype> </schema> <schema elementformdefault="qualified" targetnamespace=" xmlns=" xmlns:impl=" xmlns:intf=" xmlns:tns2=" xmlns:wsdl=" xmlns:xsd=" <import namespace=" /> <element name="personalcustomerinquiry"> <complextype> <sequence> <element name="user" nillable="true" type="xsd:string"/> <element name="customerid" nillable="true" type="xsd:string"/> </sequence> </complextype> </element> <element name="personalcustomermaintenance"> <complextype> <sequence> <element name="personalcustomermaintenanceinput" nillable="true" type="tns2:personalcustmessage" /> </sequence> </complextype> </element> <element name="newpersonalcustomer"> <complextype> <sequence> <element name="newpersonalcustomerinput" nillable="true" type="tns2:personalcustmessage" /> </sequence> </complextype> </element> 8

10 <element name="personalcustomerinquiryresponse"> <complextype> <sequence> <element name="personalcustomerinquiryreturn" nillable="true" type="tns2:personalcustmessage" /> </sequence> </complextype> </element> <element name="personalcustomermaintenanceresponse"> <complextype> <sequence> <element name="personalcustomermaintenancereturn" nillable="true" type="tns2:personalcustmessage" /> </sequence> </complextype> </element> <element name="newpersonalcustomerresponse"> <complextype> <sequence> <element name="newpersonalcustomerreturn" nillable="true" type="tns2:personalcustmessage" /> </sequence> </complextype> </element> <element name="errorbean"> <complextype> <sequence> <element name="message" nillable="true" type="xsd:string" /> </sequence> </complextype> </element> </schema> </wsdl:types> <wsdl:message name="personalcustomerinquiryrequest"> <wsdl:part element="impl:personalcustomerinquiry" name="parameters" /> </wsdl:message> <wsdl:message name="personalcustomerinquiryresponse"> <wsdl:part element="impl:personalcustomerinquiryresponse" name="parameters" /> </wsdl:message> <wsdl:message name="personalcustomermaintenancerequest"> <wsdl:part element="impl:personalcustomermaintenance" name="parameters" /> </wsdl:message> <wsdl:message name="personalcustomermaintenanceresponse"> <wsdl:part element="impl:personalcustomermaintenanceresponse" name="parameters" /> </wsdl:message> <wsdl:message name="newpersonalcustomerrequest"> <wsdl:part element="impl:newpersonalcustomer" name="parameters" /> </wsdl:message> 9

11 <wsdl:message name="newpersonalcustomerresponse"> <wsdl:part element="impl:newpersonalcustomerresponse" name="parameters" /> </wsdl:message> <wsdl:message name="errormessage"> <wsdl:part name="validationerror" element="impl:errorbean"> </wsdl:part> </wsdl:message> <wsdl:porttype name="customerservices"> <wsdl:operation name="personalcustomerinquiry"> <wsdl:input message="impl:personalcustomerinquiryrequest" name="personalcustomerinquiryrequest" /> <wsdl:output message="impl:personalcustomerinquiryresponse" name="personalcustomerinquiryresponse" /> <wsdl:fault name="validationerror" message="impl:errormessage" /> </wsdl:operation> <wsdl:operation name="newpersonalcustomer"> <wsdl:input message="impl:newpersonalcustomerrequest" name="newpersonalcustomerrequest" /> <wsdl:output message="impl:newpersonalcustomerresponse" name="newpersonalcustomerresponse" /> <wsdl:fault name="validationerror" message="impl:errormessage" /> </wsdl:operation> <wsdl:operation name="personalcustomermaintenance"> <wsdl:input message="impl:personalcustomermaintenancerequest" name="personalcustomermaintenancerequest" /> <wsdl:output message="impl:personalcustomermaintenanceresponse" name="personalcustomermaintenanceresponse" /> <wsdl:fault name="validationerror" message="impl:errormessage" /> </wsdl:operation> </wsdl:porttype> <wsdl:binding name="customerservicessoapbinding" type="impl:customerservices"> <wsdlsoap:binding style="document" transport=" /> <wsdl:operation name="personalcustomerinquiry"> <wsdlsoap:operation soapaction="" /> <wsdl:input name="personalcustomerinquiryrequest"> <wsdlsoap:body use="literal" /> </wsdl:input> <wsdl:output name="personalcustomerinquiryresponse"> <wsdlsoap:body use="literal" /> </wsdl:output> <wsdl:fault name="validationerror"> <wsdlsoap:fault name="validationerror" use="literal" /> </wsdl:fault> </wsdl:operation> 10

12 <wsdl:operation name="newpersonalcustomer"> <wsdlsoap:operation soapaction="" /> <wsdl:input name="newpersonalcustomerrequest"> <wsdlsoap:body use="literal" /> </wsdl:input> <wsdl:output name="newpersonalcustomerresponse"> <wsdlsoap:body use="literal" /> </wsdl:output> <wsdl:fault name="validationerror"> <wsdlsoap:fault name="validationerror" use="literal" /> </wsdl:fault> </wsdl:operation> <wsdl:operation name="personalcustomermaintenance"> <wsdlsoap:operation soapaction="" /> <wsdl:input name="personalcustomermaintenancerequest"> <wsdlsoap:body use="literal" /> </wsdl:input> <wsdl:output name="personalcustomermaintenanceresponse"> <wsdlsoap:body use="literal" /> </wsdl:output> <wsdl:fault name="validationerror"> <wsdlsoap:fault name="validationerror" use="literal" /> </wsdl:fault> </wsdl:operation> </wsdl:binding> <wsdl:service name="customerservice"> <wsdl:port binding="impl:customerservicessoapbinding" name="customerservices"> <wsdlsoap:address location=" /> </wsdl:port> </wsdl:service> </wsdl:definitions> 11

13 DOCUMENTACION DE ENTREGA SERVICIOS DE CLIENTES 1

14 Revisiones Fecha Versión Descripción Autor 11 de Agosto 1.0 Creación Catalina Sepúlveda 20 de Agosto Inclusión parámetro user en el Catalina Sepúlveda servicio. - Inclusión de detalle de clases. 11 de Septiembre Inclusión de campos descripción. - Descripción detallada de mensajes de error y campos con valores fijos. Catalina Sepúlveda 15 de Septiembre Inclusión de servicio de mantenimiento de clientes. Catalina Sepúlveda 10 de Octubre Inclusión nuevos campos al servicio. Catalina Sepúlveda 27 de Octubre Separación de servicio Nuevo y Mantenimiento. Catalina Sepúlveda 2

15 DOCUMENTACION DE ENTREGA SERVICIOS DE CLIENTES 1. DEPLOYMENT: NOMBRE TIPO FUNCION Axis2 WAR Web Services Engine customerservice AAR Deployment File 2. DEFINICION DE COMPONENTES: NOMBRE TIPO FUNCION customerservice.wsdl WSDL Web Service Description CustomerServiceSkeleton JAVA Class for service impl. EWS000001Message JAVA Message Class. EWS001001Message JAVA Message Class 3. RESUMEN DE METODOS FUNCIONALES personalcustomerinquiry: Servicio de consulta de clientes personales. Parámetros: o <user>- un tipo de dato String; envía el usuario que solicita la transacción. o <customerid>- un tipo de dato String; envía el numero de documento de identificación del cliente. Retorna: <PersonalCustMessage> - una estructura de datos compuesta con toda la data de cliente definida en el WSDL. Error: <Validation Error> - Estructura de mensaje de error usando un tipo de excepción errormessage definido en el WSDL. personalcustomermaintenance: Servicio de mantenimiento de clientes personales, se debe incluir el numero de cliente en el mensaje. Parámetros: <PersonalCustMessage> - una estructura de datos compuesta con toda la data de cliente definida en el WSDL. Retorna: <PersonalCustMessage> - una estructura de datos compuesta con toda la data de cliente definida en el WSDL. Error: <Validation Error> - Estructura de mensaje de error usando un tipo de excepción errormessage definido en el WSDL. newpersonalcustomer: Servicio de creación de cliente personal. El campo numero de cliente se debe enviar en ceros, el mensaje de respuesta debe retornar el nuevo numero de cliente generado. Parámetros: <PersonalCustMessage> - una estructura de datos compuesta con toda la data de cliente definida en el WSDL. 3

16 Retorna: <PersonalCustMessage> - una estructura de datos compuesta con toda la data de cliente definida en el WSDL. Error: <Validation Error> - Estructura de mensaje de error usando un tipo de excepción errormessage definido en el WSDL. El mensaje de error es un mensaje SOAP, sin embargo este mensaje se genera únicamente cuando se arroja una exception desde el método publicado. Esto quiere decir que en el cliente, el mensaje de error va a ser obtenido en un catch. Actualmente esta siendo enviado en un String con la forma: <código de error>-<descripción del error> Los códigos de error corresponden a los mismos códigos que se manejan en el e-ibs para las validaciones de formularios. Se adicionó la descripción de los campos que se parametrizan en tablas, algunos de los códigos corresponden a valores fijos, el detalle de estos valores se detalla en la siguiente tabla: CAMPO DETALLE legalstatus 1=Soltero(a), 2=Casado(a), 3=Divorciado(a), 4=Viudo(a), 5=otros Sex M=Masculino, F=Femenino relationtype 1 Cliente Regular 2 Especial 3 Empleado 4 Funcionario 5 Director 6 Pariente 7 Empresa Afiliada 8 Junta Directiva 8 Banco Corresponsal clientstatus 1=activo, 2=inactivo, 3=Lista negra clienttype 1=corporacion, 2=persona natural, 3=otros clientclass 1=Entidad Gubernamental, 2= ente descentralizado, N=No aplica language s=español e=ingles taxes Valores Fijos de 1 a 9 o N 4. FUNCIONALIDAD Para acceder a la funcionalidad de los web services se requiere construir un cliente partiendo del archivo WSDL que se adjunta en este entregable, el cliente del web service en este caso sería 4

17 Ultimus, quienes en su aplicación construirán el cliente del servicio e intercambiarán mensajes SOAP por HTTP con el servicio de Datapro que se encuentra publicado en el siguiente URL: Se puede obtener el WSDL a través del URL: A continuación presentamos un pequeño ejemplo del manejo de los mensajes SOAP: Firma del Metodo PersonalCustMessage personalcustomerinquiry(string customerid); Donde el tipo complejo PersonalCustMessage es definido como PersonalCustMessage { String firstname; String secondname; String phonenumber; todos los campos de respuesta } Request <?xml version="1.0" encoding="utf-8" standalone="no"?> <SOAP-ENV:Envelope SOAP- ENV:encodingStyle=" xmlns:soap-env=" xmlns:soap-enc=" xmlns:xsi=" xmlns:xsd=" <SOAP-ENV:Body> <ns1:personalcustomerinquiry xmlns:ns1="urn:mysoapservices"> <user xsi:type="xsd:string">bptdatapro</user> <customerid xsi:type="xsd:string"> </customerid> </ns1:personalcustomerinquiry> </SOAP-ENV:Body> </SOAP-ENV:Envelope> Response <?xml version="1.0" encoding="utf-8"?> <SOAP-ENV:Envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap-env=" <SOAP-ENV:Body> <ns1: personalcustomerinquiryresponse xmlns:ns1="urn:mysoapservices" SOAP- ENV:encodingStyle=" 5

18 <return xsi:type="ns1:personalcustmessage"> <firstname xsi:type="xsd:string">bill</firstname> <secondname xsi:type="xsd:string">gate</secondname> <phonenumber xsi:type="xsd:string"> </phonenumber> Todos los campos de respuesta </return> </ns1: personalcustomerinquiryresponse> </SOAP-ENV:Body> </SOAP-ENV:Envelope> Con el archivo WSDL se pueden generar los elementos necesarios en el cliente para acceder el servicio. 5. ANEXOS <?xml version="1.0" encoding="utf-8"?> <wsdl:definitions targetnamespace=" xmlns:impl=" xmlns:intf=" xmlns:tns2=" xmlns:wsdl=" xmlns:wsdlsoap=" xmlns:xsd=" <wsdl:types> <schema elementformdefault="qualified" targetnamespace=" xmlns=" xmlns:impl=" xmlns:intf=" xmlns:wsdl=" xmlns:xsd=" <complextype name="personalcustmessage"> <sequence> <element name="user" nillable="true" type="xsd:string"/> <element name="idnumber" nillable="true" type="xsd:string"/> <element name="clienttype" nillable="true" type="xsd:string"/> <element name="idcountry" nillable="true" type="xsd:string"/> <element name="idtype" nillable="true" type="xsd:string"/> <element name="customernumber" nillable="true" type="xsd:string"/> <element name="firstname" nillable="true" type="xsd:string"/> <element name="secondname" nillable="true" type="xsd:string"/> <element name="firstlastname" nillable="true" type="xsd:string"/> <element name="secondlastname" nillable="true" type="xsd:string"/> <element name="marriedname" nillable="true" type="xsd:string"/> <element name="legalname" nillable="true" type="xsd:string"/> <element name="shortname" nillable="true" type="xsd:string"/> <element name="dependents" nillable="true" type="xsd:string"/> <element name="sex" nillable="true" type="xsd:string"/> <element name="legalstatus" nillable="true" type="xsd:string"/> <element name="nacionality" nillable="true" type="xsd:string"/> <element name="street" nillable="true" type="xsd:string"/> <element name="housenumber" nillable="true" type="xsd:string"/> <element name="province" nillable="true" type="xsd:string"/> <element name="distrit" nillable="true" type="xsd:string"/> <element name="correg" nillable="true" type="xsd:string"/> <element name="country" nillable="true" type="xsd:string"/> <element name="pobox" nillable="true" type="xsd:string"/> <element name="zipcode" nillable="true" type="xsd:string"/> <element name=" " nillable="true" type="xsd:string"/> 6 <element name="birthdate" nillable="true" type="xsd:string"/> <element name="firstcontactdate" nillable="true" type="xsd:string"/> <element name="housephonenum" nillable="true" type="xsd:string"/>

19 type="xsd:string"/> <element name="residencycountry" nillable="true" type="xsd:string"/> <element name="relationtype" nillable="true" type="xsd:string"/> <element name="educationlevel" nillable="true" type="xsd:string"/> <element name="profession" nillable="true" type="xsd:string"/> <element name="incomesource" nillable="true" type="xsd:string"/> <element name="risklevel" nillable="true" type="xsd:string"/> <element name="clientstatus" nillable="true" type="xsd:string"/> <element name="clientclass" nillable="true" type="xsd:string"/> <element name="groupnumber" nillable="true" type="xsd:string"/> <element name="language" nillable="true" type="xsd:string"/> <element name="taxes" nillable="true" type="xsd:string"/> <element name="referby" nillable="true" type="xsd:string"/> <element name="referbyn" nillable="true" type="xsd:string"/> <element name="familiarrelationtype" nillable="true" <element name="resident" nillable="true" type="xsd:string"/> <element name="inquirylevel" nillable="true" type="xsd:string"/> <element name="discountcompanyname" nillable="true" type="xsd:string"/> <element name="position" nillable="true" type="xsd:string"/> <element name="employmenttime" nillable="true" type="xsd:string"/> <element name="companytype" nillable="true" type="xsd:string"/> <element name="currentjentrydate" nillable="true" type="xsd:string"/> <element name="previusjentrydate" nillable="true" type="xsd:string"/> <element name="currentincome" nillable="true" type="xsd:string"/> <element name="perrefname1" nillable="true" type="xsd:string"/> <element name="perrefstreet1" nillable="true" type="xsd:string"/> <element name="perrefbuildnum1" nillable="true" type="xsd:string"/> <element name="perrefhousenum1" nillable="true" type="xsd:string"/> <element name="perrefprovince1" nillable="true" type="xsd:string"/> <element name="perrefdistrit1" nillable="true" type="xsd:string"/> <element name="perrefcorreg1" nillable="true" type="xsd:string"/> <element name="perrefcountry1" nillable="true" type="xsd:string"/> <element name="perrefpobox1" nillable="true" type="xsd:string"/> <element name="perrefzipcode1" nillable="true" type="xsd:string"/> <element name="perrefphonenum1" nillable="true" type="xsd:string"/> <element name="perrefname2" nillable="true" type="xsd:string"/> <element name="perrefstreet2" nillable="true" type="xsd:string"/> <element name="perrefbuildnum2" nillable="true" type="xsd:string"/> <element name="perrefhousenum2" nillable="true" type="xsd:string"/> <element name="perrefprovince2" nillable="true" type="xsd:string"/> <element name="perrefdistrit2" nillable="true" type="xsd:string"/> <element name="perrefcorreg2" nillable="true" type="xsd:string"/> <element name="perrefcountry2" nillable="true" type="xsd:string"/> <element name="perrefpobox2" nillable="true" type="xsd:string"/> <element name="perrefzipcode2" nillable="true" type="xsd:string"/> <element name="perrefphonenum2" nillable="true" type="xsd:string"/> <element name="countrydesc" nillable="true" type="xsd:string"/> <element name="idtypedesc" nillable="true" type="xsd:string"/> <element name="provincedesc" nillable="true" type="xsd:string"/> <element name="nacionalitydesc" nillable="true" type="xsd:string"/> <element name="distritdesc" nillable="true" type="xsd:string"/> <element name="corregdesc" nillable="true" type="xsd:string"/> <element name="mainofficerdesc" nillable="true" type="xsd:string"/> <element name="secondofficerdesc" nillable="true" type="xsd:string"/> <element name="industrycodedesc" nillable="true" type="xsd:string"/> 7

20 <element name="mainofficerdesc" nillable="true" type="xsd:string"/> <element name="secondofficerdesc" nillable="true" type="xsd:string"/> <element name="industrycodedesc" nillable="true" type="xsd:string"/> <element name="bussinescodedesc" nillable="true" type="xsd:string"/> <element name="residencycountrydesc" nillable="true" type="xsd:string"/> <element name="educationleveldsc" nillable="true" type="xsd:string"/> <element name="professiondesc" nillable="true" type="xsd:string"/> <element name="incomesourcedsc" nillable="true" type="xsd:string"/> <element name="riskleveldsc" nillable="true" type="xsd:string"/> <element name="companynamedsc" nillable="true" type="xsd:string"/> <element name="positiondsc" nillable="true" type="xsd:string"/> <element name="perrefprovince1dsc" nillable="true" type="xsd:string"/> <element name="perrefdistrit1dsc" nillable="true" type="xsd:string"/> <element name="perrefcorreg1dsc" nillable="true" type="xsd:string"/> <element name="perrefprovince2dsc" nillable="true" type="xsd:string"/> <element name="perrefdistrit2dsc" nillable="true" type="xsd:string"/> <element name="perrefcorreg2dsc" nillable="true" type="xsd:string"/> <element name="referbydsc" nillable="true" type="xsd:string"/> <element name="companyname" nillable="true" type="xsd:string"/> <element name="companyaddress" nillable="true" type="xsd:string"/> <element name="companyinfo" nillable="true" type="xsd:string"/> </sequence> </complextype> </schema> <schema elementformdefault="qualified" targetnamespace=" xmlns=" xmlns:impl=" xmlns:intf=" xmlns:tns2=" xmlns:wsdl=" xmlns:xsd=" <import namespace=" /> <element name="personalcustomerinquiry"> <complextype> <sequence> <element name="user" nillable="true" type="xsd:string"/> <element name="customerid" nillable="true" type="xsd:string"/> </sequence> </complextype> </element> <element name="personalcustomermaintenance"> <complextype> <sequence> <element name="personalcustomermaintenanceinput" nillable="true" type="tns2:personalcustmessage" /> </sequence> </complextype> </element> <element name="newpersonalcustomer"> <complextype> <sequence> <element name="newpersonalcustomerinput" nillable="true" type="tns2:personalcustmessage" /> </sequence> </complextype> </element> 8

21 <element name="personalcustomerinquiryresponse"> <complextype> <sequence> <element name="personalcustomerinquiryreturn" nillable="true" type="tns2:personalcustmessage" /> </sequence> </complextype> </element> <element name="personalcustomermaintenanceresponse"> <complextype> <sequence> <element name="personalcustomermaintenancereturn" nillable="true" type="tns2:personalcustmessage" /> </sequence> </complextype> </element> <element name="newpersonalcustomerresponse"> <complextype> <sequence> <element name="newpersonalcustomerreturn" nillable="true" type="tns2:personalcustmessage" /> </sequence> </complextype> </element> <element name="errorbean"> <complextype> <sequence> <element name="message" nillable="true" type="xsd:string" /> </sequence> </complextype> </element> </schema> </wsdl:types> <wsdl:message name="personalcustomerinquiryrequest"> <wsdl:part element="impl:personalcustomerinquiry" name="parameters" /> </wsdl:message> <wsdl:message name="personalcustomerinquiryresponse"> <wsdl:part element="impl:personalcustomerinquiryresponse" name="parameters" /> </wsdl:message> <wsdl:message name="personalcustomermaintenancerequest"> <wsdl:part element="impl:personalcustomermaintenance" name="parameters" /> </wsdl:message> <wsdl:message name="personalcustomermaintenanceresponse"> <wsdl:part element="impl:personalcustomermaintenanceresponse" name="parameters" /> </wsdl:message> <wsdl:message name="newpersonalcustomerrequest"> <wsdl:part element="impl:newpersonalcustomer" name="parameters" /> </wsdl:message> 9

22 <wsdl:message name="newpersonalcustomerresponse"> <wsdl:part element="impl:newpersonalcustomerresponse" name="parameters" /> </wsdl:message> <wsdl:message name="errormessage"> <wsdl:part name="validationerror" element="impl:errorbean"> </wsdl:part> </wsdl:message> <wsdl:porttype name="customerservices"> <wsdl:operation name="personalcustomerinquiry"> <wsdl:input message="impl:personalcustomerinquiryrequest" name="personalcustomerinquiryrequest" /> <wsdl:output message="impl:personalcustomerinquiryresponse" name="personalcustomerinquiryresponse" /> <wsdl:fault name="validationerror" message="impl:errormessage" /> </wsdl:operation> <wsdl:operation name="newpersonalcustomer"> <wsdl:input message="impl:newpersonalcustomerrequest" name="newpersonalcustomerrequest" /> <wsdl:output message="impl:newpersonalcustomerresponse" name="newpersonalcustomerresponse" /> <wsdl:fault name="validationerror" message="impl:errormessage" /> </wsdl:operation> <wsdl:operation name="personalcustomermaintenance"> <wsdl:input message="impl:personalcustomermaintenancerequest" name="personalcustomermaintenancerequest" /> <wsdl:output message="impl:personalcustomermaintenanceresponse" name="personalcustomermaintenanceresponse" /> <wsdl:fault name="validationerror" message="impl:errormessage" /> </wsdl:operation> </wsdl:porttype> <wsdl:binding name="customerservicessoapbinding" type="impl:customerservices"> <wsdlsoap:binding style="document" transport=" /> <wsdl:operation name="personalcustomerinquiry"> <wsdlsoap:operation soapaction="" /> <wsdl:input name="personalcustomerinquiryrequest"> <wsdlsoap:body use="literal" /> </wsdl:input> <wsdl:output name="personalcustomerinquiryresponse"> <wsdlsoap:body use="literal" /> </wsdl:output> <wsdl:fault name="validationerror"> <wsdlsoap:fault name="validationerror" use="literal" /> </wsdl:fault> </wsdl:operation> 10

23 <wsdl:operation name="newpersonalcustomer"> <wsdlsoap:operation soapaction="" /> <wsdl:input name="newpersonalcustomerrequest"> <wsdlsoap:body use="literal" /> </wsdl:input> <wsdl:output name="newpersonalcustomerresponse"> <wsdlsoap:body use="literal" /> </wsdl:output> <wsdl:fault name="validationerror"> <wsdlsoap:fault name="validationerror" use="literal" /> </wsdl:fault> </wsdl:operation> <wsdl:operation name="personalcustomermaintenance"> <wsdlsoap:operation soapaction="" /> <wsdl:input name="personalcustomermaintenancerequest"> <wsdlsoap:body use="literal" /> </wsdl:input> <wsdl:output name="personalcustomermaintenanceresponse"> <wsdlsoap:body use="literal" /> </wsdl:output> <wsdl:fault name="validationerror"> <wsdlsoap:fault name="validationerror" use="literal" /> </wsdl:fault> </wsdl:operation> </wsdl:binding> <wsdl:service name="customerservice"> <wsdl:port binding="impl:customerservicessoapbinding" name="customerservices"> <wsdlsoap:address location=" /> </wsdl:port> </wsdl:service> </wsdl:definitions> 11

24 DOCUMENTACION SERVICIOS DE PAGOS DE TARJETAS DE CREDITO 1

25 Revisiones Fecha Versión Descripción Autor 20 Abril Creación de Documentación Catalina Sepúlveda 2

26 DOCUMENTACION SERVICIOS DE PAGOS CON TARJETAS DE CREDITO 1. DEFINICION DE COMPONENTES: NOMBRE TIPO FUNCION CreditCardPayment.wsdl WSDL Web Service Description 2. RESUMEN DE METODOS FUNCIONALES getvalidaccountavailable: Servicio de consulta te cuenta disponible para pago. Parámetros: o < ACCOUNT> - String. Número de Cuenta. o <CREDITCARD>- String. Número de Tarjeta de Crédito o <REFERENCE> - String. Referencia del Pago o <AMOUNT> - String. Monto del Pago Retorna: o < ERRORCODE> - String. Retorna un código de error si existe error, retorna 0 si no hay error. o <ERRORDSC>- String. Descripción del error si existe error. o <REFERENCE> - String. Referencia del Pago aplicado, si hubo error retorna 0. setcreditcardpayment: Servicio de creación del pago sobre la tarjeta. Parámetros: o < ACCOUNT> - String. Número de Cuenta. o <CREDITCARD>- String. Número de Tarjeta de Crédito o <REFERENCE> - String. Referencia del Pago o <AMOUNT> - String. Monto del Pago Retorna: o < ERRORCODE> - String. Retorna un código de error si existe error, retorna 0 si no hay error. o <ERRORDSC>- String. Descripción del error si existe error. o <REFERENCE> - String. Referencia del Pago aplicado, si hubo error retorna 0. 3

27 3. FUNCIONALIDAD Para acceder a la funcionalidad de los web services se requiere construir un cliente partiendo del archivo WSDL que se adjunta en este entregable, el cliente del web service en este caso sería Ultimus, quienes en su aplicación construirán el cliente del servicio e intercambiarán mensajes SOAP por HTTP con el servicio de Datapro que se encuentra publicado en el siguiente URL: Se puede obtener el WSDL a través del URL: A continuación presentamos un pequeño ejemplo del manejo de los mensajes SOAP: Firma del Metodo PersonalCustMessage personalcustomerinquiry(string customerid); Donde el tipo complejo PersonalCustMessage es definido como PersonalCustMessage { String firstname; String secondname; String phonenumber; todos los campos de respuesta } Request <?xml version="1.0" encoding="utf-8" standalone="no"?> <SOAP-ENV:Envelope SOAP- ENV:encodingStyle=" xmlns:soap-env=" xmlns:soap-enc=" xmlns:xsi=" xmlns:xsd=" <SOAP-ENV:Body> <ns1:personalcustomerinquiry xmlns:ns1="urn:mysoapservices"> <user xsi:type="xsd:string">bptdatapro</user> <customerid xsi:type="xsd:string"> </customerid> </ns1:personalcustomerinquiry> </SOAP-ENV:Body> </SOAP-ENV:Envelope> Response <?xml version="1.0" encoding="utf-8"?> <SOAP-ENV:Envelope xmlns:xsi=" 4

28 xmlns:xsd=" xmlns:soap-env=" <SOAP-ENV:Body> <ns1: personalcustomerinquiryresponse xmlns:ns1="urn:mysoapservices" SOAP- ENV:encodingStyle=" <return xsi:type="ns1:personalcustmessage"> <firstname xsi:type="xsd:string">bill</firstname> <secondname xsi:type="xsd:string">gate</secondname> <phonenumber xsi:type="xsd:string"> </phonenumber> Todos los campos de respuesta </return> </ns1: personalcustomerinquiryresponse> </SOAP-ENV:Body> </SOAP-ENV:Envelope> Con el archivo WSDL se pueden generar los elementos necesarios en el cliente para acceder el servicio. 5

29 DOCUMENTACION DE ENTREGA SERVICIOS DE CUENTAS 1

30 Revisiones Fecha Versión Descripción Autor 31 de Octubre 1.0 Creación Catalina Sepúlveda 2

31 DOCUMENTACION DE ENTREGA SERVICIOS DE CUENTAS 1. DEPLOYMENT: NOMBRE TIPO FUNCION Axis2 WAR Web Services Engine accountservice AAR Deployment File 2. DEFINICION DE COMPONENTES: NOMBRE TIPO FUNCION accountservice.wsdl WSDL Web Service Description AccountServiceSkeleton JAVA Class for service impl. EWS002001Message JAVA Message Class. 3. RESUMEN DE METODOS FUNCIONALES newaccount: Servicio de creación de cuenta corriente. Parámetros: <AccountsMessage>- una estructura de datos compuesta con toda la data de cuenta definida en el WSDL. Retorna: <AccountsMessage> - una estructura de datos compuesta con toda la data de cuenta definida en el WSDL. Error: <Validation Error> - Estructura de mensaje de error usando un tipo de excepción errormessage definido en el WSDL. El mensaje de error es un mensaje SOAP, sin embargo este mensaje se genera únicamente cuando se arroja una exception desde el método publicado. Esto quiere decir que en el cliente, el mensaje de error va a ser obtenido en un catch. Actualmente esta siendo enviado en un String con la forma: <código de error>-<descripción del error> Los códigos de error corresponden a los mismos códigos que se manejan en el e-ibs para las validaciones de formularios. NOMBRE DEL CAMPO taxeswitholdingflag VALORES 1 =Retención sobre Intereses ISR 2=Cobre del IVA 3 = IVA mas ISR 4 = IVA solo en Comisiones 5= IVA solo en Intereses 6 = Debito Bancario IDB 7 = IDB mas ISR 8 = IDB mas IVA 9 = Todo tipo de Impuesto 3

32 servicechargesflag overdraftschargesflag overdraftfrecuency accountstatementtype checkingchargesflag interestpaymentflag mailingaddress N = No calcula Impuestos F = Cobro del FECI Y/N Y/N "D" =Diario "W" =Semanal "B" =Quincenal "M" selected=mensual "Q" =Trimestral "P" =Personal "C" =Corporativa "N" =Ninguna Y/N Y/N Y/N 4. FUNCIONALIDAD Para acceder a la funcionalidad de los web services se requiere construir un cliente partiendo del archivo WSDL que se adjunta en este entregable, el cliente del web service en este caso sería Ultimus, quienes en su aplicación construirán el cliente del servicio e intercambiarán mensajes SOAP por HTTP con el servicio de Datapro que se encuentra publicado en el siguiente URL: Se puede obtener el WSDL a través del URL: A continuación presentamos un pequeño ejemplo del manejo de los mensajes SOAP: Firma del Metodo PersonalCustMessage personalcustomerinquiry(string customerid); Donde el tipo complejo PersonalCustMessage es definido como PersonalCustMessage { String firstname; String secondname; String phonenumber; todos los campos de respuesta } Request <?xml version="1.0" encoding="utf-8" standalone="no"?> <SOAP-ENV:Envelope SOAP- ENV:encodingStyle=" xmlns:soap-env=" 4

33 xmlns:soap-enc=" xmlns:xsi=" xmlns:xsd=" <SOAP-ENV:Body> <ns1:personalcustomerinquiry xmlns:ns1="urn:mysoapservices"> <user xsi:type="xsd:string">bptdatapro</user> <customerid xsi:type="xsd:string"> </customerid> </ns1:personalcustomerinquiry> </SOAP-ENV:Body> </SOAP-ENV:Envelope> Response <?xml version="1.0" encoding="utf-8"?> <SOAP-ENV:Envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap-env=" <SOAP-ENV:Body> <ns1: personalcustomerinquiryresponse xmlns:ns1="urn:mysoapservices" SOAP- ENV:encodingStyle=" <return xsi:type="ns1:personalcustmessage"> <firstname xsi:type="xsd:string">bill</firstname> <secondname xsi:type="xsd:string">gate</secondname> <phonenumber xsi:type="xsd:string"> </phonenumber> Todos los campos de respuesta </return> </ns1: personalcustomerinquiryresponse> </SOAP-ENV:Body> </SOAP-ENV:Envelope> Con el archivo WSDL se pueden generar los elementos necesarios en el cliente para acceder el servicio. 5. ANEXOS <?xml version="1.0" encoding="utf-8"?> <wsdl:definitions targetnamespace=" xmlns:impl=" xmlns:intf=" xmlns:tns2=" xmlns:wsdl=" xmlns:wsdlsoap=" xmlns:xsd=" <wsdl:types> <schema elementformdefault="qualified" targetnamespace=" xmlns=" xmlns:impl=" xmlns:intf=" xmlns:wsdl=" xmlns:xsd=" <complextype name="accountsmessage"> <sequence> 5

34 <element name="user" nillable="true" type="xsd:string"/> <element name="accountnumber" nillable="true" type="xsd:string"/> <element name="customernumber" nillable="true" type="xsd:string"/> <element name="customerid" nillable="true" type="xsd:string"/> <element name="productcode" nillable="true" type="xsd:string"/> <element name="bank" nillable="true" type="xsd:string"/> <element name="currency" nillable="true" type="xsd:string"/> <element name="branch" nillable="true" type="xsd:string"/> <element name="glaccount" nillable="true" type="xsd:string"/> <element name="customername" nillable="true" type="xsd:string"/> <element name="accounttype" nillable="true" type="xsd:string"/> <element name="accounttypedesc" nillable="true" type="xsd:string"/> <element name="productcodedesc" nillable="true" type="xsd:string"/> <element name="appcode" nillable="true" type="xsd:string"/> <element name="officialcode" nillable="true" type="xsd:string"/> <element name="costcenter" nillable="true" type="xsd:string"/> <element name="openingdate" nillable="true" type="xsd:string"/> <element name="tarifftable" nillable="true" type="xsd:string"/> <element name="usercode1" nillable="true" type="xsd:string"/> <element name="usercode2" nillable="true" type="xsd:string"/> <element name="usercode3" nillable="true" type="xsd:string"/> <element name="usercode4" nillable="true" type="xsd:string"/> <element name="taxeswitholdingflag" nillable="true" type="xsd:string"/> <element name="checkingtype" nillable="true" type="xsd:string"/> <element name="minimumcheckingstock" nillable="true" type="xsd:string"/> <element name="servicechargesflag" nillable="true" type="xsd:string"/> <element name="overdraftschargesflag" nillable="true" type="xsd:string"/> <element name="overdraftamountused" nillable="true" type="xsd:string"/> <element name="overdraftfrecuency" nillable="true" type="xsd:string"/> <element name="chargespaymentday" nillable="true" type="xsd:string"/> <element name="accountstatementretentionflag" nillable="true" type="xsd:string"/> <element name="accountstatementfrecuency" nillable="true" type="xsd:string"/> <element name="accountstatementprintingday" nillable="true" type="xsd:string"/> <element name="accountstatementtype" nillable="true" type="xsd:string"/> <element name="consolidatedstatementflag" nillable="true" type="xsd:string"/> <element name="dailystatementaccountvia" nillable="true" type="xsd:string"/> <element name="clientlinmultiuse" nillable="true" type="xsd:string"/> <element name="clientlinnumber" nillable="true" type="xsd:string"/> <element name="sendingchannel" nillable="true" type="xsd:string"/> <element name="personalizationcheck1" nillable="true" type="xsd:string"/> <element name="personalizationcheck2" nillable="true" type="xsd:string"/> <element name="checkingchargesflag" nillable="true" type="xsd:string"/> <element name="checkingchargesrestriction" nillable="true" type="xsd:string"/> <element name="interestpaymentflag" nillable="true" type="xsd:string"/> <element name="accountstatus" nillable="true" type="xsd:string"/> <element name="mailingaddress" nillable="true" type="xsd:string"/> <element name="creditlinenumber" nillable="true" type="xsd:string"/> <element name="creditlinetype" nillable="true" type="xsd:string"/> </sequence> </complextype> </schema> <schema elementformdefault="qualified" targetnamespace=" xmlns=" xmlns:impl=" xmlns:intf=" xmlns:tns2=" xmlns:wsdl=" xmlns:xsd=" 6

BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL

BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL LICITACION ABREVIADA POR PONDERACIÓN Nº 2010-7-01-0-08-AV-000001 MANUAL DE INTERFASES TABLA DE CONTENIDOS INTRODUCCIÓN

Más detalles

MANUAL EASYCHAIR. A) Ingresar su nombre de usuario y password, si ya tiene una cuenta registrada Ó

MANUAL EASYCHAIR. A) Ingresar su nombre de usuario y password, si ya tiene una cuenta registrada Ó MANUAL EASYCHAIR La URL para enviar su propuesta a la convocatoria es: https://easychair.org/conferences/?conf=genconciencia2015 Donde aparece la siguiente pantalla: Se encuentran dos opciones: A) Ingresar

Más detalles

Este proyecto tiene como finalidad la creación de una aplicación para la gestión y explotación de los teléfonos de los empleados de una gran compañía.

Este proyecto tiene como finalidad la creación de una aplicación para la gestión y explotación de los teléfonos de los empleados de una gran compañía. SISTEMA DE GESTIÓN DE MÓVILES Autor: Holgado Oca, Luis Miguel. Director: Mañueco, MªLuisa. Entidad Colaboradora: Eli & Lilly Company. RESUMEN DEL PROYECTO Este proyecto tiene como finalidad la creación

Más detalles

Orden de domiciliación o mandato para adeudos directos SEPA. Esquemas Básico y B2B

Orden de domiciliación o mandato para adeudos directos SEPA. Esquemas Básico y B2B Orden de domiciliación o mandato para adeudos directos SEPA. Esquemas Básico y B2B serie normas y procedimientos bancarios Nº 50 Abril 2013 INDICE I. Introducción... 1 II. Orden de domiciliación o mandato

Más detalles

Sistemas de impresión y tamaños mínimos Printing Systems and minimum sizes

Sistemas de impresión y tamaños mínimos Printing Systems and minimum sizes Sistemas de impresión y tamaños mínimos Printing Systems and minimum sizes Para la reproducción del Logotipo, deberán seguirse los lineamientos que se presentan a continuación y que servirán como guía

Más detalles

Sistema basado en firma digital para enviar datos por Internet de forma segura mediante un navegador.

Sistema basado en firma digital para enviar datos por Internet de forma segura mediante un navegador. Sistema basado en firma digital para enviar datos por Internet de forma segura mediante un navegador. Autor: David de la Fuente González Directores: Rafael Palacios, Javier Jarauta. Este proyecto consiste

Más detalles

Manual de Desarrollador Externo

Manual de Desarrollador Externo Manual de Desarrollador Externo Consulta de Estado DTE OI2004_CEDTE_MDE_1.10 Oficina Internet Subdirección Informática Servicio Impuestos Internos Fecha:22/12/2010 INDICE CONTROL DE VERSIONES... 3 INTRODUCCIÓN...

Más detalles

Chattanooga Motors - Solicitud de Credito

Chattanooga Motors - Solicitud de Credito Chattanooga Motors - Solicitud de Credito Completa o llena la solicitud y regresala en persona o por fax. sotros mantenemos tus datos en confidencialidad. Completar una aplicacion para el comprador y otra

Más detalles

LAC-2009-09 Modificación 2.3.3.3. DIRECT ALLOCATIONS TO ISPs DISTRIBUCIONES INICIALES A ISPs

LAC-2009-09 Modificación 2.3.3.3. DIRECT ALLOCATIONS TO ISPs DISTRIBUCIONES INICIALES A ISPs LAC-2009-09 Modificación 2.3.3.3 DIRECT ALLOCATIONS TO ISPs DISTRIBUCIONES INICIALES A ISPs Current Policy 2.3.3.3. Direct Allocations to Internet Service Providers LACNIC may grant this type of allocation

Más detalles

INSTRUCTIONS FOR COMPLETING THE UA_SGE_FT_03_FI_IE FORM REGARDING NATURAL PERSONS DATA FOR THE UA SUPPLIERS DATABASE

INSTRUCTIONS FOR COMPLETING THE UA_SGE_FT_03_FI_IE FORM REGARDING NATURAL PERSONS DATA FOR THE UA SUPPLIERS DATABASE INSTRUCTIONS FOR COMPLETING THE UA_SGE_FT_03_FI_IE FORM REGARDING NATURAL PERSONS DATA FOR THE UA SUPPLIERS DATABASE This form is for use by both Spanish and foreign natural persons. Due to the new requirements

Más detalles

SIVEGAM Sistema de verificación del gasto mensual Protocolo SIVEGAM. Superintendencia de Seguridad Social. Versión 1.0

SIVEGAM Sistema de verificación del gasto mensual Protocolo SIVEGAM. Superintendencia de Seguridad Social. Versión 1.0 SIVEGAM Sistema de verificación del gasto mensual Protocolo SIVEGAM Versión 1.0 Fecha 14/01/2013 Control de Cambios Fecha Versión Versión Autor del Cambio Descripción 14-01-2012 1.0 Rodrigo Álvarez Liberación

Más detalles

Puede pagar facturas y gastos periódicos como el alquiler, el gas, la electricidad, el agua y el teléfono y también otros gastos del hogar.

Puede pagar facturas y gastos periódicos como el alquiler, el gas, la electricidad, el agua y el teléfono y también otros gastos del hogar. SPANISH Centrepay Qué es Centrepay? Centrepay es la manera sencilla de pagar sus facturas y gastos. Centrepay es un servicio de pago de facturas voluntario y gratuito para clientes de Centrelink. Utilice

Más detalles

Guía de migración a firma HMAC SHA256 Conexión por Redirección

Guía de migración a firma HMAC SHA256 Conexión por Redirección Guía de migración a firma HMAC SHA256 Conexión por Versión: 1.7 Versión: 1.7 i Autorizaciones y control de versión Versión Fecha Afecta Breve descripción del cambio 1.0 06/10/2015 Versión inicial del documento

Más detalles

WEB SERVICES. Manual técnico para desarrollador

WEB SERVICES. Manual técnico para desarrollador WEB SERVICES Manual técnico para desarrollador 1. Introducción Este Manual considera servir de guía para un desarrollo que deba integrarse con el Web Service que el Banco Central de Chile provee para

Más detalles

Steps to Understand Your Child s Behavior. Customizing the Flyer

Steps to Understand Your Child s Behavior. Customizing the Flyer Steps to Understand Your Child s Behavior Customizing the Flyer Hello! Here is the PDF Form Template for use in advertising Steps to Understanding Your Child s Behavior (HDS Behavior Level 1B). Because

Más detalles

LAC-2009-09 Modificación 2.3.3.3. DIRECT ALLOCATIONS TO ISPs DISTRIBUCIONES DIRECTAS A ISPs

LAC-2009-09 Modificación 2.3.3.3. DIRECT ALLOCATIONS TO ISPs DISTRIBUCIONES DIRECTAS A ISPs LAC-2009-09 Modificación 2.3.3.3 DIRECT ALLOCATIONS TO ISPs DISTRIBUCIONES DIRECTAS A ISPs Current Policy Política Actual 2.3.3.3. Direct Allocations to Internet Service Providers LACNIC may grant this

Más detalles

OJO: Todos los formularios deberán llenarse en inglés. De lo contrario, no se le permitirá presentar sus documentos ante la Secretaría del Tribunal.

OJO: Todos los formularios deberán llenarse en inglés. De lo contrario, no se le permitirá presentar sus documentos ante la Secretaría del Tribunal. OJO: Todos los formularios deberán llenarse en inglés. De lo contrario, no se le permitirá presentar sus documentos ante la Secretaría del Tribunal. For Clerk s Use Only (Para uso de la Secretaria solamente)

Más detalles

Servicios pensados para optimizar los procesos de comunicación de voz y SMS.

Servicios pensados para optimizar los procesos de comunicación de voz y SMS. Checker de teléfono Servicios pensados para optimizar los procesos de comunicación de voz y SMS. Aspectos generales Basados en una aplicación de la tecnología ENUM. La ENUM API permite acceder a los servicios

Más detalles

Agustiniano Ciudad Salitre School Computer Science Support Guide - 2015 Second grade First term

Agustiniano Ciudad Salitre School Computer Science Support Guide - 2015 Second grade First term Agustiniano Ciudad Salitre School Computer Science Support Guide - 2015 Second grade First term UNIDAD TEMATICA: INTERFAZ DE WINDOWS LOGRO: Reconoce la interfaz de Windows para ubicar y acceder a los programas,

Más detalles

Los bloques DLL (Figura A.1) externos permiten al usuario escribir su propio código y

Los bloques DLL (Figura A.1) externos permiten al usuario escribir su propio código y Apéndice A Bloques DLL Los bloques DLL (Figura A.1) externos permiten al usuario escribir su propio código y programarlo en lenguaje C, compilarlo dentro de un archivo DLL usando el Microsoft C/C++ o el

Más detalles

TITLE VI COMPLAINT FORM

TITLE VI COMPLAINT FORM [CITY SEAL/EMBLEM] The Capital City of the Palm Beaches TITLE VI COMPLAINT FORM Title VI of the 1964 Civil Rights Act requires that "No person in the United States shall, on the ground of race, color or

Más detalles

TITLE VI COMPLAINT FORM

TITLE VI COMPLAINT FORM TITLE VI COMPLAINT FORM Before filling out this form, please read the Arcata and Mad River Transit System Title VI Complaint Procedures located on our website or by visiting our office. The following information

Más detalles

Plataforma Integrada de Servicios Electrónicos del Estado Especificaciones del WSDL

Plataforma Integrada de Servicios Electrónicos del Estado Especificaciones del WSDL Plataforma Integrada de Servicios Electrónicos del Estado Especificaciones del WSDL

Más detalles

Departamento de Informática Tributaria Subdirección General de Aplicaciones de Aduanas e II.EE. C/ Santa María Magdalena 16, 28016 Madrid

Departamento de Informática Tributaria Subdirección General de Aplicaciones de Aduanas e II.EE. C/ Santa María Magdalena 16, 28016 Madrid C/ Santa María Magdalena 16, 28016 Madrid Componente ADEDINET Autor: S.G.A.A. Fecha: 21/05/2010 Versión: 2.3 Revisiones Edi. Rev. Fecha Descripción A(*) Páginas 0 1 20/05/01 Versión inicial A Todas 1 0

Más detalles

OSCILLATION 512 (LM 3R)

OSCILLATION 512 (LM 3R) Application Note The following application note allows to locate the LM series devices (LM3E, LM3R, LM4 and LM5) within network and check its connection information: Name, MAC, dynamic IP address and static

Más detalles

BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL

BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL LICITACION ABREVIADA POR PONDERACIÓN Nº 2010-7-01-0-08-AV-000001 MANUAL DE CHEQUES OFICIALES TABLA DE CONTENIDO I.

Más detalles

Contenido REQUISITOS PARA OFERTA PROVENIENTE DEL EXTERIOR... 1 REQUIREMENTS FOR INTERNATIONAL PURCHASES... 4

Contenido REQUISITOS PARA OFERTA PROVENIENTE DEL EXTERIOR... 1 REQUIREMENTS FOR INTERNATIONAL PURCHASES... 4 Contenido REQUISITOS PARA OFERTA PROVENIENTE DEL EXTERIOR... 1 REQUIREMENTS FOR INTERNATIONAL PURCHASES... 4 REQUISITOS PARA OFERTA PROVENIENTE DEL EXTERIOR La Pro forma inicial que proviene del proveedor

Más detalles

Creating your Single Sign-On Account for the PowerSchool Parent Portal

Creating your Single Sign-On Account for the PowerSchool Parent Portal Creating your Single Sign-On Account for the PowerSchool Parent Portal Welcome to the Parent Single Sign-On. What does that mean? Parent Single Sign-On offers a number of benefits, including access to

Más detalles

MANUAL TECNICO API SMS-HTTP

MANUAL TECNICO API SMS-HTTP El presente documento tiene como objetivo describir la API HTTP para el envío de mensajes SMS Versión 3.1 MANUAL TECNICO API SMS-HTTP Estrategia de utilización CONTENIDO 1 INTRODUCCION... 2 2 FORMATO SMS

Más detalles

PRINTING INSTRUCTIONS

PRINTING INSTRUCTIONS PRINTING INSTRUCTIONS 1. Print the Petition form on 8½ X 11inch paper. 2. The second page (instructions for circulator) must be copied on the reverse side of the petition Instructions to print the PDF

Más detalles

Kuapay, Inc. Seminario Internacional Modernización de los medios de pago en Chile

Kuapay, Inc. Seminario Internacional Modernización de los medios de pago en Chile Kuapay, Inc. Seminario Internacional Modernización de los medios de pago en Chile Our value proposition Kuapay s motto and mission Convert electronic transactions into a commodity Easy Cheap!!! Accessible

Más detalles

Nueva confirmación de pedido de compra con cambios: proveedor ES

Nueva confirmación de pedido de compra con cambios: proveedor ES Ayuda de trabajo Nueva confirmación de pedido de compra con cambios: proveedor ES Step 1. This Supplier portal activity lists the steps necessary for confirming a new purchase order with changes on price,

Más detalles

Guía de referencia rápida / Quick reference guide Visor de Noticias Slider / NCS News Slider for SharePoint

Guía de referencia rápida / Quick reference guide Visor de Noticias Slider / NCS News Slider for SharePoint Guía de referencia rápida / Quick reference guide Visor de Noticias Slider / NCS News Slider for SharePoint Contenido ESPAÑOL... 3 Términos de Uso... 3 Soporte... 3 Look de la Aplicación... 3 Requisitos

Más detalles

MANUAL DE RECONCILIACION BANCARIA

MANUAL DE RECONCILIACION BANCARIA BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL LICITACION ABREVIADA POR PONDERACIÓN Nº 2010-7-01-0-08-AV-000001 MANUAL DE RECONCILIACION BANCARIA TABLA DE CONTENIDO

Más detalles

Especificación de API SMS ITD Chile

Especificación de API SMS ITD Chile Especificación de API SMS ITD Chile Versión 1.8 Fecha: 20/03/15 Autor: ITD Chile Contenido API SOAP:... 3 URL Archivo WSDL:... 3 Método para obtener créditos disponibles:... 3 Método para leer mensajes

Más detalles

MANUAL DE CUENTAS DE AHORROS

MANUAL DE CUENTAS DE AHORROS BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL LICITACION ABREVIADA POR PONDERACIÓN Nº 2010-7-01-0-08-AV-000001 MANUAL DE CUENTAS DE AHORROS TABLA DE CONTENIDO

Más detalles

KMR SCA-05 Mounting Instructions Instrucción de Montaje Instruções de Montagem 0899.4897

KMR SCA-05 Mounting Instructions Instrucción de Montaje Instruções de Montagem 0899.4897 0899.4897 KMR SCA-05 Mounting Instructions Instrucción de Montaje Instruções de Montagem 0899.4897 KMR SCA-05 Mounting Instructions Instrucción de Montaje Instruções de Montagem The KMR SCA-05 kit is a

Más detalles

Servicios Web para el control de publicación de anuncios de notificación en el Tablón Edictal Único

Servicios Web para el control de publicación de anuncios de notificación en el Tablón Edictal Único Servicios Web para el control de publicación de anuncios de notificación en el Tablón Edictal Único 1 CONTROL DE CAMBIOS Versión Cambios realizados 1.0 Versión inicial 1.1 Se incluyen las direcciones IP

Más detalles

Especificación Web Services API TWOWAYSMS v1.0. Fecha publicación: 01/02/2008 Intelligent Bussines Communications S.L.

Especificación Web Services API TWOWAYSMS v1.0. Fecha publicación: 01/02/2008 Intelligent Bussines Communications S.L. Especificación Web Services API TWOWAYSMS v1.0 Fecha publicación: 01/02/2008 Intelligent Bussines Communications S.L. Contenido Introducción...3 Especificación de la erfaz...3 URL de acceso a la erfaz...3

Más detalles

CREAR UNA CUENTA DE HOSTING GRATUITA EN UN SERVIDOR WEB HTML Y ACCEDER VÍA PANEL DE ADMINISTRACIÓN CPANEL. (CU00729B)

CREAR UNA CUENTA DE HOSTING GRATUITA EN UN SERVIDOR WEB HTML Y ACCEDER VÍA PANEL DE ADMINISTRACIÓN CPANEL. (CU00729B) APRENDERAPROGRAMAR.COM CREAR UNA CUENTA DE HOSTING GRATUITA EN UN SERVIDOR WEB HTML Y ACCEDER VÍA PANEL DE ADMINISTRACIÓN CPANEL. (CU00729B) Sección: Cursos Categoría: Tutorial básico del programador web:

Más detalles

Título del Proyecto: Sistema Web de gestión de facturas electrónicas.

Título del Proyecto: Sistema Web de gestión de facturas electrónicas. Resumen Título del Proyecto: Sistema Web de gestión de facturas electrónicas. Autor: Jose Luis Saenz Soria. Director: Manuel Rojas Guerrero. Resumen En la última década se han producido muchos avances

Más detalles

Save Money 2-up Single Doorhanger Set OH payday advance edition, 4 different doorhangers, Spanish

Save Money 2-up Single Doorhanger Set OH payday advance edition, 4 different doorhangers, Spanish Save Money 2-up Single Doorhanger Set OH payday advance edition, 4 different doorhangers, Spanish PACKAGE CONTENTS How to Customize 4-color doorhanger, Editable PDF (50% OFF first loan) 1-color (black)

Más detalles

BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL

BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL LICITACION ABREVIADA POR PONDERACIÓN Nº 2010-7-01-0-08-AV-000001 MANUAL DE TARJETAS DE DEBITO TABLA DE CONTENIDOS

Más detalles

BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL

BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL LICITACION ABREVIADA POR PONDERACIÓN Nº 2010-7-01-0-08-AV-000001 MANUAL DE CARTAS DE CREDITO TABLA OF CONTENIDO I.

Más detalles

Get an early start. Read this first. Use these Back-to-School flyers to reach parents early in the school year.

Get an early start. Read this first. Use these Back-to-School flyers to reach parents early in the school year. Get an early start. Read this first. Use these Back-to-School flyers to reach parents early in the school year. Choose your favorite style, complete the form, then make enough copies to distribute them

Más detalles

Summer Reading Program. June 1st - August 10th, 2015

Summer Reading Program. June 1st - August 10th, 2015 June 1st - August 10th, 2015 Dear Educator, Attached you will find three flyer templates. You can use any of these templates to share your Group Number (GN) with your group participants. 1. 2. 3. The first

Más detalles

ACLARACIÓN. Estimado Cliente:

ACLARACIÓN. Estimado Cliente: ACLARACIÓN Estimado Cliente: A través del servicio Per Web, se registra un alto volumen de pagos para la compañía CLARO. En muchas ocasiones, el número de cuenta se ingresa incorrectamente provocando que

Más detalles

Creación de plugins para Apache Cordova. Parte JavaScript. Javier de Silóniz Sandino

Creación de plugins para Apache Cordova. Parte JavaScript. Javier de Silóniz Sandino Diciembre 2013 Javier de Silóniz Sandino Especialista ios en atsistemas Un plugin es especialmente útil cuando necesitamos acceder a características internas del hardware del dispositivo móvil. Creación

Más detalles

Configuration Token Delayed Authentication

Configuration Token Delayed Authentication En el presente artículo, se describen y exploran múltiples métodos de autenticación en DHCP como antesala al trabajo desarrollado, una implementación de DHCP con autenticación. También en este trabajo

Más detalles

Welcome to the CU at School Savings Program!

Welcome to the CU at School Savings Program! Welcome to the CU at School Savings Program! Thank you for your interest in Yolo Federal Credit Union s CU at School savings program. This packet of information has everything you need to sign your child

Más detalles

myappgen Usted Construye la aplicación mientras la ejecuta http://www.myappgen.com info@myappgen.com

myappgen Usted Construye la aplicación mientras la ejecuta http://www.myappgen.com info@myappgen.com myappgen Usted Construye la aplicación mientras la ejecuta http://www.myappgen.com info@myappgen.com Tutorial 8 - Process En este tutorial le mostraremos como utilizar el modelo de programa del tipo Process,

Más detalles

Condiciones y Reglas de la presentación de Declaración Sumaria de Salida (EXS)

Condiciones y Reglas de la presentación de Declaración Sumaria de Salida (EXS) C/ Santa María Magdalena 16, 28016 Madrid ECS Sistema de Control de Exportaciones Condiciones y Reglas de la presentación de Declaración Sumaria de Salida (EXS) Autor: S.G.A.A Fecha: 06/06/2011 Versión:

Más detalles

MWEB 2007 Acceso Dinámico a Servicios de una Infraestructura Web desde Teléfonos Móviles

MWEB 2007 Acceso Dinámico a Servicios de una Infraestructura Web desde Teléfonos Móviles MWEB 2007 Acceso Dinámico a Servicios de una Infraestructura Web desde Teléfonos Móviles Elena Sánchez Nielsen Sandra Martín Ruiz Jorge Rodríguez Pedrianes UNIVERSIDAD DE LA LAGUNA CONTENIDO DE LA PRESENTACIÓN

Más detalles

Validación de un XML

Validación de un XML Validación de un XML 32 Introducción Se dice que un XML está bien formado cuando esta escrito sintácticamente de forma correcta Como se puede validar sintácticamente un XML? Document Type Definition (DTD)

Más detalles

Vermont Mini-Lessons: Leaving A Voicemail

Vermont Mini-Lessons: Leaving A Voicemail Vermont Mini-Lessons: Leaving A Voicemail Leaving a Voice Mail Message Learning Objective 1) When to leave a message 2) How to leave a message Materials: 1) Voice Mail Template blanks & samples 2) Phone

Más detalles

Modulo osc2psdc. 1. English Documentation (Ingles) 2. Documentación en Español (Spanish) 1. English Documentation (Ingles) Introduction.

Modulo osc2psdc. 1. English Documentation (Ingles) 2. Documentación en Español (Spanish) 1. English Documentation (Ingles) Introduction. Modulo osc2psdc Version 1.3 Carlos Perez Fernandez Soporte 1. English Documentation (Ingles) 2. Documentación en Español (Spanish) 1. English Documentation

Más detalles

Imprimir PDF en WebDynpro para JAVA sin utilizar Interactive Forms en llamadas RFC.

Imprimir PDF en WebDynpro para JAVA sin utilizar Interactive Forms en llamadas RFC. Imprimir PDF en WebDynpro para JAVA sin utilizar Interactive Forms en llamadas RFC. Se puede imprimir un pdf utilizando una llamada RFC el cual entregará el pdf vía una variable binaria. Entonces si en

Más detalles

Sistema!de!iluminación!de!un!longboard!

Sistema!de!iluminación!de!un!longboard! Sistemadeiluminacióndeunlongboard RESUMEN JuanJacoboMonteroMuñoz GradoenIngenieríaelectromecánica,electrónicaindustrial DoblediplomaconSupélecParís. Este proyecto ha sido desarrollado en París, en la Ecole

Más detalles

KeyMaker, Token Security System, Rel 1.16

KeyMaker, Token Security System, Rel 1.16 Who we are KeyMaker, Token Security System, Rel 1.16 GTI es una empresa estadounidense de amplia experiencia y trayectoria en actividades empresariales, con mas de 20 años en el campo de la tecnología

Más detalles

www.deltadentalins.com/language_survey.html

www.deltadentalins.com/language_survey.html Survey Code: Survey 1 February 6, 2008 Dear Delta Dental Enrollee: Recent changes in California law will require that all health care plans provide language assistance to their plan enrollees beginning

Más detalles

Plataforma CGN. Comunicaciones con terceros. Fecha del Documento 07/10/2008 Versión 0.2

Plataforma CGN. Comunicaciones con terceros. Fecha del Documento 07/10/2008 Versión 0.2 Plataforma CGN Comunicaciones con terceros Fecha del Documento 07/10/2008 Versión 0.2 1 Tabla de Contenido Plataforma CGN 1 1 Tabla de Contenido 1 2 Histórico de Revisiones 2 3 Introducción 3 3.1 Objetivos.

Más detalles

ATLAS MANUAL DE USUARIO DEL INSTALADOR INNO SETUP 5 Versión 1.0 UNIDAD DE ARQUITECTURA DE SOFTWARE DE APLICACIONES

ATLAS MANUAL DE USUARIO DEL INSTALADOR INNO SETUP 5 Versión 1.0 UNIDAD DE ARQUITECTURA DE SOFTWARE DE APLICACIONES ATLAS MANUAL DE USUARIO DEL INSTALADOR INNO SETUP 5 Versión 1.0 UNIDAD DE ARQUITECTURA DE SOFTWARE DE APLICACIONES Hoja de Control Título MANUAL DE USO DEL INSTALADOR INNO SETUP 5 Documento de Referencia

Más detalles

HTTP Introducción. Redes de Datos Ing. Marcelo Utard / Ing. Pablo Ronco FACULTAD DE INGENIERIA UNIVERSIDAD DE BUENOS AIRES

HTTP Introducción. Redes de Datos Ing. Marcelo Utard / Ing. Pablo Ronco FACULTAD DE INGENIERIA UNIVERSIDAD DE BUENOS AIRES Introducción Protocolo de capa de aplicación utilizado para la transferencia de Recursos u objetos. Opera sobre TCP típicamente en el puerto 80 Simple Stateless Genérico Utiliza las extenciones MIME. Transporte

Más detalles

BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL

BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL LICITACION ABREVIADA POR PONDERACIÓN Nº 2010-7-01-0-08-AV-000001 MANUAL DE LINEAS DE CREDITO TABLA DE CONTENIDO INTRODUCCIÓN

Más detalles

DNA. Cliente WSAA Especificaciones Técnicas. Versión <1.4>

DNA. Cliente WSAA Especificaciones Técnicas. Versión <1.4> DNA Cliente WSAA Especificaciones Técnicas Versión Revisiones Fecha Versión Descripción Autor 29/OCT/2007 1.0 Elaboración inicial Marcelo Alvarez 12/MAY/2008 1.1 Corrección en la sección 4.1 Marcelo

Más detalles

Documentación. EDI WebService Compradores. Guía de Integración de Sistemas para el comprador

Documentación. EDI WebService Compradores. Guía de Integración de Sistemas para el comprador Documentación EDI WebService Compradores Proyecto: Guía de Integración de Sistemas para el comprador Preparado para: Bionexo Internacional Preparado por: Saincler Silva Fecha Creación: 21 de Julio de 2009

Más detalles

CREAR UNA CUENTA DE HOSTING GRATUITA EN UN SERVIDOR PHP Y ACCEDER VÍA CPANEL Y VÍA FTP. (CU00813B)

CREAR UNA CUENTA DE HOSTING GRATUITA EN UN SERVIDOR PHP Y ACCEDER VÍA CPANEL Y VÍA FTP. (CU00813B) APRENDERAPROGRAMAR.COM CREAR UNA CUENTA DE HOSTING GRATUITA EN UN SERVIDOR PHP Y ACCEDER VÍA CPANEL Y VÍA FTP. (CU00813B) Sección: Cursos Categoría: Tutorial básico del programador web: PHP desde cero

Más detalles

Modificación de la ENS acorde con la KEL 28

Modificación de la ENS acorde con la KEL 28 Modificación de la ENS acorde con la KEL 28 Se va a modificar la Declaración Sumaria de Entrada para ajustarse a las modificaciones de la nueva KEL 28. La aplicación de las nuevas reglas será obligatoria

Más detalles

BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL

BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL BANCO NACIONAL DE PANAMÁ, BANCO DE DESARROLLO AGROPECUARIO Y BANCO HIPOTECARIO NACIONAL LICITACION ABREVIADA POR PONDERACIÓN Nº 2010-7-01-0-08-AV-000001 MANUAL DE PRODUCTOS TABLA DE CONTENIDO PRODUCTOS

Más detalles

CONTROLADORA PARA PIXELS CONPIX

CONTROLADORA PARA PIXELS CONPIX The LedEdit Software Instructions 1, Install the software to PC and open English version: When we installed The LedEdit Software, on the desktop we can see following icon: Please Double-click it, then

Más detalles

En primera instancia Estos son los pasos para descargar LV.

En primera instancia Estos son los pasos para descargar LV. Bueno Jóvenes este tutorial tiene como objetivo guiarlos en el proceso de descargar, instalar y parchear (crackear) LabVIEW para trabajar sin problemas en nuestro proyecto de diseño. En primera instancia

Más detalles

Manual del Servicio Web. Afilnet.com. Afilnet. Servicios de Telecomunicaciones SMS

Manual del Servicio Web. Afilnet.com. Afilnet. Servicios de Telecomunicaciones SMS Manual del Servicio Web Afilnet.com Afilnet Servicios de Telecomunicaciones SMS 0. Prefacio. Registro como Cliente Para Registrarse como cliente, debe pulsar en Registrarme, una vez hecho esto le aparecerá

Más detalles

Objetos Distribuidos - Componentes. Middleware

Objetos Distribuidos - Componentes. Middleware Objetos Distribuidos - Componentes Middleware Middleware Component Oriented Development Arquitecturas 3 Tier Middleware es el software que: conecta y comunica los componentes de una aplicacion distribuida

Más detalles

Adeudos Directos SEPA

Adeudos Directos SEPA Adeudos Directos SEPA Qué es SEPA? La Zona Única de Pagos en Euros (Single Euro Payments Area, SEPA) es un proyecto para la creación de un sistema común de medios de pago europeo. Le permitirá realizar

Más detalles

Servicios Web. Andrés Pastorini. TRIA Tecnólogo Informático

Servicios Web. Andrés Pastorini. TRIA Tecnólogo Informático Andrés Pastorini TRIA Tecnólogo Informático Un servicio web expone un conjunto de servicios para ser consumidos a través de la red. En otras palabras, un servicio web especifica un conjunto de operación(funciones

Más detalles

Sección Tutoriales en PDF. Hosting COMO Y POR QUÉ TENER UNA IP PRIVADA EN GVO

Sección Tutoriales en PDF. Hosting COMO Y POR QUÉ TENER UNA IP PRIVADA EN GVO Sección Tutoriales en PDF Hosting COMO Y POR QUÉ TENER UNA IP PRIVADA EN GVO Qué es una IP IP = Internet Protocol En términos sencillos IP es una dirección con que en la web (www) se identifica a cada

Más detalles

Capítulo 17: Manejo de Mail en PHP

Capítulo 17: Manejo de Mail en PHP Capítulo 7: Manejo de Mail en PHP Conexión a un server IMAP o POP3: mail_handler=imap_open(string_mbox,user,password); Donde mbox es de la forma: {IP:PORT}MailBox Ejemplos: $mail=imap_open( {90.90.90.90:3}INBOX,

Más detalles

Cómo comprar en la tienda en línea de UDP y cómo inscribirse a los módulos UDP

Cómo comprar en la tienda en línea de UDP y cómo inscribirse a los módulos UDP Cómo comprar en la tienda en línea de UDP y cómo inscribirse a los módulos UDP Sistema de registro y pago Este sistema está dividido en dos etapas diferentes*. Por favor, haga clic en la liga de la etapa

Más detalles

EN / ES Airtribune Live tracking Instructions

EN / ES Airtribune Live tracking Instructions Airtribune Live tracking Instructions 1. Activate the desired service plan: Personal GSM live tracking with pilots devices Personal GSM & satellite tracking GSM tracking with rented of own tracker set.

Más detalles

WbS Web Services. Roberto Gómez Cárdenas rogomez@itesm.mx http://homepage.cem.itesm.mx/rogomez. Web Services

WbS Web Services. Roberto Gómez Cárdenas rogomez@itesm.mx http://homepage.cem.itesm.mx/rogomez. Web Services WbS Web Services Roberto Gómez Cárdenas rogomez@itesm.mx http://homepage.cem.itesm.mx/rogomez mx/rogomez Lámina 1 Web Services Servicios web. Interfaz red a una aplicación basada en tecnologías internet

Más detalles

Manual de usuario. Descripción del servicio de envío de mensajes

Manual de usuario. Descripción del servicio de envío de mensajes GUIA DE CONEXIÓN CON CENTRAL VIA WEB SERVICES 2010 INDICE 1. Introducción 1.1 Objetivo del documento 1.2 Variables de entorno 2. Descripción del servicio 2.1 Aspectos comunes de todos los servicios. 2.2

Más detalles

2 DATOS DE LA EMPRESA O PROFESIONAL / COMPANY OR PROFESSIONAL'S DETAILS. Dirección de correo electrónico: Telephone number. Electronic address

2 DATOS DE LA EMPRESA O PROFESIONAL / COMPANY OR PROFESSIONAL'S DETAILS. Dirección de correo electrónico: Telephone number. Electronic address Sevilla, 27 de marzo 2008 BOJA núm. 60 Página núm. 13 ANEXO I. MODELO DE HOJAS DE QUEJAS Y RECLAMACIONES. ANVERSO JUNTA DE ANDALUCIA CONSEJERÍA DE GOBERNACIÓN HOJA DE QUEJAS Y RECLAMACIONES / COMPLAINTS

Más detalles

Diseño y Administración de Redes de Computadoras

Diseño y Administración de Redes de Computadoras Diseño y Administración de Redes de Computadoras Direccionamiento con clase IPv4 Oscar Alvarado Nava oan@correo.azc.uam.mx Departamento de Electrónica División de Ciencias Básicas e Ingeniería Universidad

Más detalles

Portal para Padres CPS - Parent Portal. Walter L. Newberry Math & Science Academy Linda Foley-Acevedo, Principal Ed Collins, Asst.

Portal para Padres CPS - Parent Portal. Walter L. Newberry Math & Science Academy Linda Foley-Acevedo, Principal Ed Collins, Asst. Portal para Padres CPS - Parent Portal Walter L. Newberry Math & Science Academy Linda Foley-Acevedo, Principal Ed Collins, Asst. Principal (773) 534-8000 Formando su cuenta - Setting up your account Oprima

Más detalles

Voter Information Guide and Sample Ballot

Voter Information Guide and Sample Ballot Voter Information Guide and Sample Ballot Special Election San Bernardino Mountains Community Hospital District Tuesday, June 4, 2013 Elections Office of the Registrar of Voters 777 East Rialto Ave. San

Más detalles

INFORMACIÓN TÉCNICA SOBRE COMERCIO ELECTRÓNICO SEGURO VISA- PASARELA

INFORMACIÓN TÉCNICA SOBRE COMERCIO ELECTRÓNICO SEGURO VISA- PASARELA INFORMACIÓN TÉCNICA SOBRE COMERCIO ELECTRÓNICO SEGURO VISA- PASARELA Página 1 de 9 Contenido...1 1. INTEGRACIÓN...3. 1.1. EQUERIMIENTOS PARA EL FLUJO DE AUTENTI CACIÓN...3 1.2. INFORMACIÓN ENVIADA DESDE

Más detalles

MANUAL DE USUARIO. DESCRIPCION DEL USO DEL SERVICIO POR WEB SERVICE DOCUMENTACION TECNICA PARA EL CONSUMO DE WEB SERVICE 2015

MANUAL DE USUARIO. DESCRIPCION DEL USO DEL SERVICIO POR WEB SERVICE DOCUMENTACION TECNICA PARA EL CONSUMO DE WEB SERVICE 2015 DOCUMENTACION TECNICA PARA EL CONSUMO DE WEB SERVICE 2015 Mensajesmasivos.co es una plataforma para el envío de notificaciones a celulares vía mensajería corta SMS con soporte para Comcel, Movistar, Tigo

Más detalles

Manual de usuario de Banca por Internet Factura Digital

Manual de usuario de Banca por Internet Factura Digital Este manual sobre de la Banca por Internet de ABN AMRO describe cómo ha de darse de alta para Digital Invoice, ver, modificar y pagar las facturas digitales y darse de baja para Digital Invoice. Índice

Más detalles

XML para FP : Introducción

XML para FP : Introducción Supongamos que tenemos una tienda de pinturas, en la cual, mediante un software nos vamos en cargar de almacenar (sin valernos de un gestor de base datos) la información referente a los pedidos que se

Más detalles

IVU 2015 Instrucciones para los clientes de CDI

IVU 2015 Instrucciones para los clientes de CDI A partir del 1 de julio de 2015 el IVU subió a 10.50%. Los proyectos de construcción que existían previo al 1 de julio de 2015 continuarán pagando el 6.00% hasta que se completen. Además a partir del 1

Más detalles

FAMILY INDEPENDENCE ADMINISTRATION Seth W. Diamond, Executive Deputy Commissioner

FAMILY INDEPENDENCE ADMINISTRATION Seth W. Diamond, Executive Deputy Commissioner FAMILY INDEPENDENCE ADMINISTRATION Seth W. Diamond, Executive Deputy Commissioner James K. Whelan, Deputy Commissioner Policy, Procedures, and Training Lisa C. Fitzpatrick, Assistant Deputy Commissioner

Más detalles

Guía de integración para negocios

Guía de integración para negocios Guía de integración para negocios Versión 1.3 Marzo 2014 2013 MYMOID Página 1 de 10 Tabla de contenidos Tabla de contenidos...2 1.Introducción...3 2.Pasos para la integración...3 2.1.Paso 0: Preparación

Más detalles

Manual del Servicio Web. Afilnet.com. Afilnet. Servicios de Telecomunicaciones SMS

Manual del Servicio Web. Afilnet.com. Afilnet. Servicios de Telecomunicaciones SMS Manual del Servicio Web Afilnet.com Afilnet Servicios de Telecomunicaciones SMS 0. Prefacio. Registro como Cliente Para Registrarse como cliente, debe pulsar en Registrarme, una vez hecho esto le aparecerá

Más detalles

Connecting Cloudino Connector to FIWARE IoT

Connecting Cloudino Connector to FIWARE IoT Hoja 1 DE 9 Connecting Cloudino Connector to FIWARE IoT 1. What is FIWARE IoT FIWARE is an open software ecosystem provided by the FIWARE Community (htttp://www.fiware.org). FIWARE exposes to developers

Más detalles

GLOSARIO. Arquitectura: Funcionamiento, estructura y diseño de una plataforma de desarrollo.

GLOSARIO. Arquitectura: Funcionamiento, estructura y diseño de una plataforma de desarrollo. GLOSARIO Actor: Un actor es un usuario del sistema. Esto incluye usuarios humanos y otros sistemas computacionales. Un actor usa un Caso de Uso para ejecutar una porción de trabajo de valor para el negocio.

Más detalles

UNIVERSIDAD GABRIELA MISTRAL Departamento de Relaciones Internacionales. Formulario de Postulación (Aplication For Admission/Exchange Student)

UNIVERSIDAD GABRIELA MISTRAL Departamento de Relaciones Internacionales. Formulario de Postulación (Aplication For Admission/Exchange Student) Personal Data Nombre/First Name Apellidos/Last Name Dirección/Permanent Address Numbers/Street Ciudad City/Province País Country Teléfono Local Phone Number (with area codes) E-mail Fecha de Nacimiento

Más detalles

Student Violence, Bullying, Intimidation, Harassment

Student Violence, Bullying, Intimidation, Harassment Case 4:74-cv-00090-DCB Document 1690-6 Filed 10/01/14 Page 159 of 229 Student Violence, Bullying, Intimidation, Harassment COMPLAINT FORM (To be filed with any School District employee who will forward

Más detalles

PROCEDIMIENTO PARA LA ADMISIÓN DE ESTUDIANTES DE INTERCAMBIO EN LA UNIVERSIDAD EUROPEA 2015/16

PROCEDIMIENTO PARA LA ADMISIÓN DE ESTUDIANTES DE INTERCAMBIO EN LA UNIVERSIDAD EUROPEA 2015/16 *English text below PROCEDIMIENTO PARA LA ADMISIÓN DE ESTUDIANTES DE INTERCAMBIO EN LA UNIVERSIDAD EUROPEA 2015/16 El presente procedimiento describe los pasos a seguir para solicitar la admisión como

Más detalles

Tutorial: Python + Soap Web Service. Daniel Montenegro Cordero

Tutorial: Python + Soap Web Service. Daniel Montenegro Cordero Tutorial: Python + Soap Web Service Daniel Montenegro Cordero Python - Lenguaje de programación interpretado. - Filosofia código legible. - Permite programación orientada a objetos, imperativa y funcional.

Más detalles

Guía del usuario de KIP sobre el estado de la impresora Instalación y guía del usuario de KIP sobre el estado de la impresora

Guía del usuario de KIP sobre el estado de la impresora Instalación y guía del usuario de KIP sobre el estado de la impresora Instalación y guía del usuario de KIP sobre el estado de la impresora - 1 - Contenido 1 Introducción... 3 2 Instalación y configuración... 4 3 Funcionalidad del estado de la impresora KIP... 6 4 Uso del

Más detalles