This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input { | |
padding: 5px; | |
width: 90%; | |
} | |
div { | |
padding: 5px; | |
width: 100%; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
textarea { | |
padding: 5px; | |
width: 90%; | |
height: 200px; | |
} | |
div { | |
padding: 5px; | |
width: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input { | |
padding: 5px; | |
width: 90%; | |
} | |
#n, #m { | |
width: 40% | |
} | |
div { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<applet id="appletTabletas" code="es.ieci.ecm.econtrato.applet.TelefonicaApplet.class" archive="http://192.168.1.100:7001/econtrato-webapp/applet/tabletas.jar" width="100%" height="100%"> | |
<param name="USE_AJAX" value="si"/> | |
<param name="IMG_APPL_KEY" value="si"/> | |
<param name="JAR_CACHE_LOCATION" value="jar:http://http://192.168.1.100:8080/econtrato-webapp/applet/econtrato-applet-firma-1.0.jar!/"/> | |
<param name="TABLET_MODE_KEY" value="FIRMA"> | |
<param name="MESSAGE_KEY0" value="DEMO CORREOS"/> | |
<param name="MESSAGE_KEY1" value="DEMO CORREOS"/> | |
<param name="MESSAGE_KEY2" value=""/> | |
<param name="DOCUMENT_KEY0" value="1.-nombreDocumento"/> | |
<param name="SIGNER_KEY" value="Nombre Apellido1 Apellido2"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<object code="es.ieci.ecm.econtrato.applet.TelefonicaApplet" codeType="application/java" width="100%" height="100%" id="appletTabletas" archive=""> | |
<param name="codebase" value="http://http://192.168.1.100:8080/econtrato-webapp/applet/"/> | |
<param name="USE_AJAX" value="si"/> | |
<param name="IMG_APPL_KEY" value="si"/> | |
<param name="JAR_CACHE_LOCATION" value="jar:http://http://192.168.1.100:8080/econtrato-webapp/applet/econtrato-applet-firma-1.0.jar!/"/> | |
<param name="TABLET_MODE_KEY" value="FIRMA"/> | |
<param name="MESSAGE_KEY0" value="DEMO CORREOS"/> | |
<param name="MESSAGE_KEY1" value="DEMO CORREOS"/> | |
<param name="MESSAGE_KEY2" value=""/> | |
<param name="DOCUMENT_KEY0" value="1.-nombreDocumento"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java.lang.ExceptionInInitializerError | |
at org.codehaus.jettison.mapped.MappedXMLOutputFactory.<init>(MappedXMLOutputFactory.java:32) | |
at com.thoughtworks.xstream.io.json.JettisonMappedXmlDriver.<init>(JettisonMappedXmlDriver.java:36) | |
at mx.iecisa.econtrato.applet.wacom.stu530.App.screenshot(App.java:467) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) | |
at java.lang.reflect.Method.invoke(Unknown Source) | |
at sun.plugin.javascript.Trampoline.invoke(Unknown Source) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ mvn archetype:generate -DarchetypeGroupId=org.codehaus.mojo.archetypes -DarchetypeArtifactId=ejb-javaee7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ mvn archetype:generate -DarchetypeArtifactId=jersey-quickstart-webapp -DarchetypeGroupId=org.glassfish.jersey.archetypes -DarchetypeVersion=2.19 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd $GLASSFISH_HOME/domains/$YOUR_DOMAIN/lib | |
$ wget https://jdbc.postgresql.org/download/postgresql-9.4-1201.jdbc41.jar | |
$ $GLASSFISH_HOME/bin/asadmin stop-domain | |
$ $GLASSFISH_HOME/bin/asadmin start-domain |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for i in $( ls *.csv ); do iconv -f ISO-8859-1 -t UTF-8 $i > ${i:0:$((${#i}-3))}utf8.csv; done |
OlderNewer