- Connect to Wallix X2Go .
- Connect to server via ssh
# ssh -t [userName]@server
curl --request POST \ | |
--url https://pruebas-ticketbai.araba.eus/TicketBAI/v1/facturas/ \ | |
--header 'Content-Type: application/xml;charset=UTF-8' \ | |
--data '<?xml version="1.0" encoding="UTF-8" standalone="no"?><ns3:TicketBai xmlns:ns3="urn:ticketbai:emision" xmlns:ns2="http://www.w3.org/2000/09/xmldsig#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2001/XMLSchema ticketbai.xsd"> | |
<Cabecera> | |
<IDVersionTBAI>1.2</IDVersionTBAI> | |
</Cabecera> | |
<Sujetos> | |
<Emisor> | |
<NIF>B62933593</NIF> |
class LinkedListNode { | |
constructor(public value: any, public next: object){} | |
} | |
class LinkedList { | |
public head: LinkedListNode | any; | |
public tail: LinkedListNode | any; | |
public length: number; | |
constructor(value: any) { | |
this.head = new LinkedListNode(value, null); |
/****************************************************************************** | |
* Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * | |
* This program is free software, you can redistribute it and/or modify it * | |
* under the terms version 2 of the GNU General Public License as published * | |
* by the Free Software Foundation. This program is distributed in the hope * | |
* that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * | |
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * | |
* See the GNU General Public License for more details. * | |
* You should have received a copy of the GNU General Public License along * | |
* with this program, if not, write to the Free Software Foundation, Inc., * |