This file contains 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
function redirectPost(url, data) { | |
var form = document.createElement('form'); | |
document.body.appendChild(form); | |
form.method = 'POST'; | |
form.action = url; | |
for (var name in data) { | |
var input = document.createElement('input'); | |
input.type = 'hidden'; | |
input.name = name; | |
input.value = data[name]; |
This file contains 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
Weblogic 11c | |
Add the <enforce-valid-basic-auth-credentials> element to config.xml within the <security-configuration> element. | |
: | |
<enforce-valid-basic-auth-credentials>false</enforce-valid-basic-auth-credentials> | |
</security-configuration> | |
Start or restart all of the servers in the domain. | |
http://blog.avanttic.com/2011/02/16/problema-drivers-jdbc-al-migrar-una-aplicacion-java-1-4-a-1-6-weblogic-11g/ | |
Weblogic 12C |
This file contains 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
<target name="prueba"> | |
<echo>************************* COMENZANDO BUSQUEDA DE COMANDOS NO PERMITIDOS ****************************</echo> | |
<delete file="prohibiciones.found"/> | |
<property name="cabecera" value="ARCHIVO DE ENCONTRADOS"/> | |
<echo file="prohibiciones.found">${cabecera}</echo> | |
<loadfile property="file" srcfile="prohibidos.list"/> | |
<for param="line" list="${file}" delimiter="${line.separator}"> | |
<sequential> | |
<echo>REVISANDO: @{line}</echo> |