Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • driver-postgres
2 results

README.md

Blame
  • Noticreo

    Configuración del servidor MiNube

    WebService SOAP

    Stackoverflow

    Se configuró WildFly en el servidor de MiNube para que utilice el host del servidor (noticreo.tk), sobre HTTPS. Se agregó la siguiente configuración al archivo standalone.xml:

    <subsystem xmlns="urn:jboss:domain:webservices:2.0" statistics-enabled="${wildfly.webservices.statistics-enabled:${wildfly.statistics-enabled:false}}">
        <wsdl-host>noticreo.tk</wsdl-host>
        <wsdl-port>80</wsdl-port>
        <wsdl-secure-port>443</wsdl-secure-port>
        <wsdl-uri-scheme>https</wsdl-uri-scheme>
        
        <!-- ... -->
        <!-- otras configuraciones ya existentes en la definicion del subsystem -->
        <!-- ... -->
    </subsystem>

    Corrección de codificacion (UTF-8)

    1. Ingresar al server de MiNube mediante ssh

    2. Ejecutar: sudo dpkg-reconfigure locales, buscar es_UY.UTF-8 y seleccionarlo

    3. Ejecutar: sudo locale-gen es_UY.utf8

    4. Ejecutar: sudo update-locale LC_ALL=es_UY.UTF8

    5. Reiniciar: sudo reboot