Hola lista,
He encontrado lo siguiente al intentar subir y descargar un archivo mayor a 2GB asociado a un metadato en geonetwork. 1. En el directorio "temp" de tomcat, allí es donde temporalmente guarda el archivo, para luego transferirlo a "geonetwork/WEB-INF/data/data/metadata_data" 2. Con archivos menores o iguales a 2GB funciona de manera correcta, el problema esta cuando son mayores a 2GB. 3. Estuve verificando y existen unas variables en Tomcat que posiblemente es donde se configura el limite para subir y descargar archivos en Geonetwork: input Input buffer size (in bytes) when reading --> <!-- They should go in the "/WEB-INF/web.xml" file in your application." Tengo que configurarlo en el fichero "web.xml" de Geonetwork, pero cuando voy al archivo no encuentro esta variable para configurar el límite de subida y bajada de archivos. Alguien me podría guiar en el proceso para configurar dicha variable o que más puedo hacer al respecto? NOTA: Para archivos por ejemplo de 2.5GB los he comprimido y divido en partes de 700MB, subo cada parte al metadato de forma correcta, en Geonetwork se encuentra la opción para descargar una por una o descargarlas todas al mismo tiempo, cuando utilizo la opción de descargar en conjunto aparece la excepción: NumberFormatException : For input string: "2184592343" Adjunto capturas de pantalla. <nabble_img src="downloadparts.png" border="0"/> <nabble_img src="downloadparts2.png" border="0"/> <nabble_img src="downloadparts3.png" border="0"/> Saludos |
2015-12-02 14:38 GMT+01:00 cbeltran <[hidden email]>:
> Hola lista, > > He encontrado lo siguiente al intentar subir y descargar un archivo mayor a > 2GB asociado a un metadato en geonetwork. > > 1. En el directorio "temp" de tomcat, allí es donde temporalmente guarda el > archivo, para luego transferirlo a > "geonetwork/WEB-INF/data/data/metadata_data" > > 2. Con archivos menores o iguales a 2GB funciona de manera correcta, el > problema esta cuando son mayores a 2GB. > > 3. Estuve verificando y existen unas variables en Tomcat que posiblemente > es > donde se configura el limite para subir y descargar archivos en Geonetwork: > > input Input buffer size (in bytes) when reading --> > > > <!-- They should go in the "/WEB-INF/web.xml" file in your application." > > Tengo que configurarlo en el fichero "web.xml" de Geonetwork, pero cuando > voy al archivo no encuentro esta variable para configurar el límite de > subida y bajada de archivos. > > Alguien me podría guiar en el proceso para configurar dicha variable o que > más puedo hacer al respecto? > > NOTA: Para archivos por ejemplo de 2.5GB los he comprimido y divido en > partes de 700MB, subo cada parte al metadato de forma correcta, en > Geonetwork se encuentra la opción para descargar una por una o descargarlas > todas al mismo tiempo, cuando utilizo la opción de descargar en conjunto > aparece la excepción: > > NumberFormatException : For input string: "2184592343" > > Adjunto capturas de pantalla. > > <nabble_img src="downloadparts.png" border="0"/> > > <nabble_img src="downloadparts2.png" border="0"/> > > <nabble_img src="downloadparts3.png" border="0"/> > > Saludos Aquí tienes cómo [1]. Por un lado tienes que modificar la configuración del conector en el fichero conf/server.xml de Tomcat y añadir/modificar la propiedad maxPostSize. En el web.xml de la aplicación, añade una sección multiparconfig dentro de la configuración del <servlet> [2]. Por último configura el bean multipartResolver en el archivo services/src/main/resources/config-spring-geonetwork.xml y modifica la propiedad maxUploadSize: <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <property name="maxUploadSize" value="2147483648"/> <!-- 200 GiB --> </bean> [1] http://stackoverflow.com/a/10848475/1140558 [2] https://docs.oracle.com/javaee/7/tutorial/servlets011.htm -- *Vriendelijke groeten / Kind regards,Juan Luis Rodríguez. <http://www.geocat.net/>Veenderweg 136721 WD BennekomThe NetherlandsT: +31 (0)318 416664 <+31318416664> <https://www.facebook.com/geocatbv> <https://twitter.com/geocat_bv> <https://plus.google.com/u/1/+GeocatNetbv/posts>Please consider the environment before printing this email.* ------------------------------------------------------------------------------ Go from Idea to Many App Stores Faster with Intel(R) XDK Give your users amazing mobile app experiences with Intel(R) XDK. Use one codebase in this all-in-one HTML5 development environment. Design, debug & build mobile apps & 2D/3D high-impact games for multiple OSs. http://pubads.g.doubleclick.net/gampad/clk?id=254741911&iu=/4140 _______________________________________________ GeoNetwork-usuarios-es mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/geonetwork-usuarios-es |
Hola Luis,
Muchas gracias por tu respuesta. Cuando me indicas: "En el web.xml de la aplicación, añade una sección multiparconfig dentro de la configuración del <servlet> [2]" Tengo la siguiente pregunta, en cual de los "<servlet>" tengo que añadir el "multipartconfig", puesto que en el "web.xml" de geonetwork hay muchos? O tengo que crear un servlet nuevo? Muchas gracias por tu ayuda. Saludos |
Hola Luis,
Configuré en el fichero web.xml de geonetwork el servlet así: <servlet> <servlet-name>default</servlet-name> <servlet-class> org.apache.catalina.servlets.DefaultServlet </servlet-class> <multipart-config> <location>/tmp</location> <max-file-size>3221225472</max-file-size> <max-request-size>3221225472</max-request-size> <file-size-threshold>0</file-size-threshold> </multipart-config> </servlet> Si está bien configurado??? Las otras configuraciones las hice tal cual como indicaste. Hice la prueba subiendo un archivo de más de 2GB de peso y lo hizo de forma correcta, pero al momento de descargar genera el error que indiqué en una de las capturas de pantalla. Saludos. |
Hola,
habría que configurarlo en el servlet de Spring: <!-- Spring dispatcher servlet --> <servlet> <servlet-name>spring</servlet-name> <servlet-class> jeeves.config.springutil.JeevesDispatcherServlet </servlet-class> <init-param> <param-name>nodeId</param-name> <param-value>web</param-value> </init-param> <load-on-startup>2</load-on-startup> <multipart-config> <location>/tmp</location> <max-file-size>3221225472</max-file-size> <max-request-size>3221225472</max-request-size> <file-size-threshold>0</file-size-threshold> </multipart-config> </servlet> En cuanto a la descarga ¿podrías enviar la traza completa de la excepción y no solo el nombre? 2015-12-02 23:41 GMT+01:00 cbeltran <[hidden email]>: > Hola Luis, > > Configuré en el fichero web.xml de geonetwork el servlet así: > > <servlet> > <servlet-name>default</servlet-name> > <servlet-class> > org.apache.catalina.servlets.DefaultServlet > </servlet-class> > <multipart-config> > <location>/tmp</location> > <max-file-size>3221225472</max-file-size> > <max-request-size>3221225472</max-request-size> > <file-size-threshold>0</file-size-threshold> > </multipart-config> > </servlet> > > Si está bien configurado??? > > Las otras configuraciones las hice tal cual como indicaste. > > Hice la prueba subiendo un archivo de más de 2GB de peso y lo hizo de forma > correcta, pero al momento de descargar genera el error que indiqué en una > de > las capturas de pantalla. > > Saludos. > > > > -- > View this message in context: > http://osgeo-org.1560.x6.nabble.com/Subir-y-Descargar-archivos-mayores-a-2GB-tp5239582p5239726.html > Sent from the GeoNetwork users español mailing list archive at Nabble.com. > > > ------------------------------------------------------------------------------ > Go from Idea to Many App Stores Faster with Intel(R) XDK > Give your users amazing mobile app experiences with Intel(R) XDK. > Use one codebase in this all-in-one HTML5 development environment. > Design, debug & build mobile apps & 2D/3D high-impact games for multiple > OSs. > http://pubads.g.doubleclick.net/gampad/clk?id=254741911&iu=/4140 > _______________________________________________ > GeoNetwork-usuarios-es mailing list > [hidden email] > https://lists.sourceforge.net/lists/listinfo/geonetwork-usuarios-es > -- *Vriendelijke groeten / Kind regards,Juan Luis Rodríguez. <http://www.geocat.net/>Veenderweg 136721 WD BennekomThe NetherlandsT: +31 (0)318 416664 <+31318416664> <https://www.facebook.com/geocatbv> <https://twitter.com/geocat_bv> <https://plus.google.com/u/1/+GeocatNetbv/posts>Please consider the environment before printing this email.* ------------------------------------------------------------------------------ Go from Idea to Many App Stores Faster with Intel(R) XDK Give your users amazing mobile app experiences with Intel(R) XDK. Use one codebase in this all-in-one HTML5 development environment. Design, debug & build mobile apps & 2D/3D high-impact games for multiple OSs. http://pubads.g.doubleclick.net/gampad/clk?id=254741911&iu=/4140 _______________________________________________ GeoNetwork-usuarios-es mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/geonetwork-usuarios-es |
Hola Juan,
Este es el log cuando subo un archivo mayor a 2GB [root@geonetwork logs]# tail -f geonetwork.log 2015-12-03 09:12:50,478 INFO [jeeves.service] - -> dispatch ended for : view 2015-12-03 09:12:57,906 INFO [jeeves.request] - ========================================================== 2015-12-03 09:12:57,906 INFO [jeeves.request] - HTML Request (from 192.168.16.34) : /geonetwork/srv/spa/xml.schema.info 2015-12-03 09:12:57,908 INFO [jeeves.service] - Dispatching : xml.schema.info 2015-12-03 09:12:57,909 INFO [jeeves.service] - -> dispatching to output for : xml.schema.info 2015-12-03 09:12:57,910 INFO [jeeves.service] - -> writing xml for : xml.schema.info 2015-12-03 09:12:57,910 INFO [jeeves.service] - -> output ended for : xml.schema.info 2015-12-03 09:12:57,910 INFO [jeeves.service] - -> dispatch ended for : xml.schema.info 2015-12-03 09:13:07,542 INFO [jeeves.request] - ========================================================== 2015-12-03 09:13:07,542 INFO [jeeves.request] - HTML Request (from 192.168.16.34) : /geonetwork/srv/spa/resource.upload.and.link 2015-12-03 09:15:23,778 INFO [jeeves.service] - Dispatching : resource.upload.and.link 2015-12-03 09:15:23,796 INFO [jeeves.webapp.resource.upload.and.link] - Source : /opt/tomcat/webapps/geonetwork/./data/tmp/REGIONAL_PICACHOS.zip 2015-12-03 09:15:23,806 INFO [jeeves.webapp.resource.upload.and.link] - Destin : /mnt/datosgn/data/metadata_data/00400-00499/484/private/REGIONAL_PICACHOS.zip 2015-12-03 09:15:59,652 INFO [jeeves.webapp.resource.upload.and.link] - UPLOADED:REGIONAL_PICACHOS.zip,484,192.168.16.34,cbeltran 2015-12-03 09:16:00,529 INFO [jeeves.service] - -> dispatching to output for : resource.upload.and.link 2015-12-03 09:16:00,536 INFO [jeeves.service] - -> transforming with stylesheet : /opt/tomcat/webapps/geonetwork/xsl/admin-logo-add.xsl 2015-12-03 09:16:00,552 INFO [jeeves.service] - -> end transformation for : resource.upload.and.link 2015-12-03 09:16:00,552 INFO [jeeves.service] - -> output ended for : resource.upload.and.link 2015-12-03 09:16:00,552 INFO [jeeves.service] - -> dispatch ended for : resource.upload.and.link 2015-12-03 09:16:00,718 INFO [jeeves.request] - ========================================================== 2015-12-03 09:16:00,718 INFO [jeeves.request] - HTML Request (from 192.168.16.34) : /geonetwork/srv/spa/edit 2015-12-03 09:16:00,720 INFO [jeeves.service] - Dispatching : edit 2015-12-03 09:16:00,940 INFO [jeeves.service] - -> dispatching to output for : edit 2015-12-03 09:16:00,969 INFO [jeeves.service] - -> transforming with stylesheet : /opt/tomcat/webapps/geonetwork/xsl/metadata/edit/edit.xsl 2015-12-03 09:16:01,158 INFO [jeeves.service] - -> output ended for : resources.get.archive 2015-12-03 09:16:01,158 INFO [jeeves.service] - -> dispatch ended for : resources.get.archive 2015-12-03 09:16:03,472 INFO [jeeves.service] - -> end transformation for : edit 2015-12-03 09:16:03,473 INFO [jeeves.service] - -> output ended for : edit 2015-12-03 09:16:03,473 INFO [jeeves.service] - -> dispatch ended for : edit 2015-12-03 09:16:03,885 INFO [jeeves.request] - ========================================================== 2015-12-03 09:16:03,885 INFO [jeeves.request] - HTML Request (from 192.168.16.34) : /geonetwork/srv/spa/xml.relation 2015-12-03 09:16:03,885 INFO [jeeves.service] - Dispatching : xml.relation 2015-12-03 09:16:03,965 INFO [jeeves.service] - -> dispatching to output for : xml.relation 2015-12-03 09:16:03,976 INFO [jeeves.service] - -> transforming with stylesheet : /opt/tomcat/webapps/geonetwork/xsl/metadata/relation.xsl 2015-12-03 09:16:04,011 INFO [jeeves.service] - -> end transformation for : xml.relation 2015-12-03 09:16:04,011 INFO [jeeves.service] - -> output ended for : xml.relation 2015-12-03 09:16:04,011 INFO [jeeves.service] - -> dispatch ended for : xml.relation Lo hace bien Cuando intento descargar el archivo subido: 2015-12-03 09:18:25,630 INFO [jeeves.request] - HTML Request (from 192.168.16.34) : /geonetwork/srv/eng/resources.get 2015-12-03 09:18:25,631 INFO [jeeves.service] - Dispatching : resources.get 2015-12-03 09:18:25,638 ERROR [jeeves.service] - Exception when executing service 2015-12-03 09:18:25,638 ERROR [jeeves.service] - (C) Exc : OperationNotAllowedEx : Operation not allowed 2015-12-03 09:20:58,139 INFO [jeeves.request] - HTML Request (from 192.168.16.34) : /geonetwork/srv/eng/resources.get 2015-12-03 09:20:58,139 INFO [jeeves.service] - Dispatching : resources.get 2015-12-03 09:20:58,144 INFO [jeeves.webapp.resources.get] - File is : /mnt/datosgn/data/metadata_data/00400-00499/484/private/REGIONAL_PICACHOS.zip 2015-12-03 09:20:58,282 INFO [jeeves.service] - -> dispatching to output for : resources.get 2015-12-03 09:20:58,283 INFO [jeeves.service] - -> dispatching to error for : resources.get 2015-12-03 09:20:58,318 INFO [jeeves.service] - -> transforming with stylesheet : /opt/tomcat/webapps/geonetwork/xsl/error.xsl 2015-12-03 09:20:58,351 INFO [jeeves.service] - -> end error transformation for : resources.get 2015-12-03 09:20:58,351 INFO [jeeves.service] - -> error ended for : resources.get ![]() Saludos y muchas gracias. |
On Thu, Dec 3, 2015 at 3:19 PM, cbeltran <[hidden email]> wrote:
> 2015-12-03 09:18:25,630 INFO [jeeves.request] - HTML Request (from > 192.168.16.34) : /geonetwork/srv/eng/resources.get > 2015-12-03 09:18:25,631 INFO [jeeves.service] - Dispatching : > resources.get > 2015-12-03 09:18:25,638 ERROR [jeeves.service] - Exception when executing > service > 2015-12-03 09:18:25,638 ERROR [jeeves.service] - (C) Exc : > OperationNotAllowedEx : Operation not allowed > El OperationNotAllowed indica que el usuario que intenta la descarga no tiene permisos para descargar el metadato (¿no ha sido publicado aún?) o estás intentando descargarlo sin hacer login. No es el mismo error que has indicado antes "NumberFormatException". -- *Vriendelijke groeten / Kind regards,Juan Luis Rodríguez. <http://www.geocat.net/>Veenderweg 136721 WD BennekomThe NetherlandsT: +31 (0)318 416664 <+31318416664> <https://www.facebook.com/geocatbv> <https://twitter.com/geocat_bv> <https://plus.google.com/u/1/+GeocatNetbv/posts>Please consider the environment before printing this email.* ------------------------------------------------------------------------------ Go from Idea to Many App Stores Faster with Intel(R) XDK Give your users amazing mobile app experiences with Intel(R) XDK. Use one codebase in this all-in-one HTML5 development environment. Design, debug & build mobile apps & 2D/3D high-impact games for multiple OSs. http://pubads.g.doubleclick.net/gampad/clk?id=254741911&iu=/4140 _______________________________________________ GeoNetwork-usuarios-es mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/geonetwork-usuarios-es |
Hola Juan,
Mira, sucede algo. 1. Si yo ingreso al geonetwork a través de la dirección IP que tiene asignado el servidor donde se encuentra funcionando, puedo subir archivos de más de 2GB, hice la prueba sin modificar e insertar las líneas que me indicaste al inicio de este post, solo modifiqué la siguiente variable en el fichero config.xml de geonetwok. <general> <profiles>user-profiles.xml</profiles> <maxUploadSize>3000</maxUploadSize> --> Esta variable <uploadDir>./data/tmp</uploadDir> <debug>true</debug> </general> Efectivamente subió sin problemas. 2015-12-03 11:12:15,359 INFO [jeeves.webapp.resource.upload.and.link] - Source : /opt/tomcat/webapps/geonetwork/./data/tmp/REGIONAL_PICACHOS.zip 2015-12-03 11:12:15,359 INFO [jeeves.webapp.resource.upload.and.link] - Destin : /mnt/datosgn/data/metadata_data/00400-00499/484/private/REGIONAL_PICACHOS.zip 2015-12-03 11:12:55,923 INFO [jeeves.webapp.resource.upload.and.link] - UPLOADED:REGIONAL_PICACHOS.zip,484,192.168.16.34,cbeltran El archivo pesa aprox. 2,8GB NOTA: Con esta IP solo puedo ingresar a nivel interno. Pero si esta misma operación la hago con el subdominio (salida a la web) que tiene asignado: http://geonetwork.humboldt.org.co/ Nisiquiera intenta subir el archivo, cuando agrego el recurso al metadato se refresca la página automáticamente pero no lo adjunta, esta es la traza: 015-12-03 11:07:06,951 INFO [jeeves.request] - HTML Request (from 192.168.16.34) : /geonetwork/srv/spa/resource.upload.and.link 2015-12-03 11:07:06,951 INFO [jeeves.service] - Dispatching : resource.upload.and.link 2015-12-03 11:07:06,952 ERROR [jeeves.service] - Exception when executing service 2015-12-03 11:07:06,952 ERROR [jeeves.service] - (C) Exc : java.lang.Exception: Request must contain a UUID (uuid) or an ID (id) 2015-12-03 11:07:06,953 INFO [jeeves.service] - -> dispatching to error for : resource.upload.and.link 2015-12-03 11:07:06,994 INFO [jeeves.service] - -> transforming with stylesheet : /opt/tomcat/webapps/geonetwork/xsl/error-modal.xsl 2015-12-03 11:07:07,033 INFO [jeeves.service] - -> end error transformation for : resource.upload.and.link 2015-12-03 11:07:07,033 INFO [jeeves.service] - -> error ended for : resource.upload.and.link 2015-12-03 11:07:07,051 INFO [jeeves.request] - ========================================================== 2015-12-03 11:07:07,051 INFO [jeeves.request] - HTML Request (from 192.168.16.34) : /geonetwork/srv/spa/edit 2015-12-03 11:07:07,053 INFO [jeeves.service] - Dispatching : edit 2015-12-03 11:07:07,257 INFO [jeeves.service] - -> dispatching to output for : edit 2015-12-03 11:07:07,287 INFO [jeeves.service] - -> transforming with stylesheet : /opt/tomcat/webapps/geonetwork/xsl/metadata/edit/edit.xsl 2015-12-03 11:07:09,258 INFO [jeeves.service] - -> end transformation for : edit 2015-12-03 11:07:09,259 INFO [jeeves.service] - -> output ended for : edit 2015-12-03 11:07:09,259 INFO [jeeves.service] - -> dispatch ended for : edit 2015-12-03 11:07:09,651 INFO [jeeves.request] - ========================================================== 2015-12-03 11:07:09,651 INFO [jeeves.request] - HTML Request (from 192.168.16.34) : /geonetwork/srv/spa/xml.relation 2015-12-03 11:07:09,651 INFO [jeeves.service] - Dispatching : xml.relation 2015-12-03 11:07:09,703 INFO [jeeves.service] - -> dispatching to output for : xml.relation 2015-12-03 11:07:09,958 INFO [jeeves] - Overrides being applied to configuration file: .*/WEB-INF/config-gui.xml 2015-12-03 11:07:09,958 INFO [jeeves] - Replacing attribute widget of node client 2015-12-03 11:07:09,958 INFO [jeeves] - Replacing attribute url of node client 2015-12-03 11:07:09,959 INFO [jeeves] - Replacing attribute parameters of node client 2015-12-03 11:07:09,959 INFO [jeeves] - Replacing attribute createParameter of node client 2015-12-03 11:07:09,959 INFO [jeeves] - Replacing attribute stateId of node client 2015-12-03 11:07:09,959 INFO [jeeves.service] - -> transforming with stylesheet : /opt/tomcat/webapps/geonetwork/xsl/metadata/relation.xsl 2015-12-03 11:07:10,004 INFO [jeeves.service] - -> end transformation for : xml.relation 2015-12-03 11:07:10,004 INFO [jeeves.service] - -> output ended for : xml.relation 2015-12-03 11:07:10,004 INFO [jeeves.service] - -> dispatch ended for : xml.relation 2015-12-03 11:07:11,051 INFO [jeeves.request] - ========================================================== 2015-12-03 11:07:11,052 INFO [jeeves.request] - HTML Request (from 192.168.16.34) : /geonetwork/srv/spa/xml.schema.info 2015-12-03 11:07:11,053 INFO [jeeves.service] - Dispatching : xml.schema.info 2015-12-03 11:07:11,055 INFO [jeeves.service] - -> dispatching to output for : xml.schema.info 2015-12-03 11:07:11,055 INFO [jeeves.service] - -> writing xml for : xml.schema.info 2015-12-03 11:07:11,056 INFO [jeeves.service] - -> output ended for : xml.schema.info 2015-12-03 11:07:11,056 INFO [jeeves.service] - -> dispatch ended for : xml.schema.info 2. Luego de haber subido el archivo a través de la IP, le otorgo los privilegios a mi usuario para que pueda descargar el archivo adjunto a ese metadato en cuestión, pero genera el error: a nivel gráfico: THE REQUESTED OPERATION COULD NOT BE PERFORMED. NumberFormatException : For input string: "2835039203" y la traza en el log: 2015-12-03 11:16:20,256 INFO [jeeves.request] - HTML Request (from 192.168.16.34) : /geonetwork/srv/eng/resources.get 2015-12-03 11:16:20,257 INFO [jeeves.service] - Dispatching : resources.get 2015-12-03 11:16:20,262 INFO [jeeves.webapp.resources.get] - File is : /mnt/datosgn/data/metadata_data/00400-00499/484/private/REGIONAL_PICACHOS.zip 2015-12-03 11:16:20,420 INFO [jeeves.service] - -> dispatching to output for : resources.get 2015-12-03 11:16:20,422 INFO [jeeves.service] - -> dispatching to error for : resources.get 2015-12-03 11:16:20,454 INFO [jeeves.service] - -> transforming with stylesheet : /opt/tomcat/webapps/geonetwork/xsl/error.xsl 2015-12-03 11:16:20,491 INFO [jeeves.service] - -> end error transformation for : resources.get 2015-12-03 11:16:20,491 INFO [jeeves.service] - -> error ended for : resources.get y si lo intento a través del subdominio: genera lo mismo: 2015-12-03 11:17:49,296 INFO [jeeves.request] - HTML Request (from 192.168.16.34) : /geonetwork/srv/eng/resources.get 2015-12-03 11:17:49,296 INFO [jeeves.service] - Dispatching : resources.get 2015-12-03 11:17:49,301 INFO [jeeves.webapp.resources.get] - File is : /mnt/datosgn/data/metadata_data/00400-00499/484/private/REGIONAL_PICACHOS.zip 2015-12-03 11:17:49,451 INFO [jeeves.service] - -> dispatching to output for : resources.get 2015-12-03 11:17:49,452 INFO [jeeves.service] - -> dispatching to error for : resources.get 2015-12-03 11:17:49,484 INFO [jeeves.service] - -> transforming with stylesheet : /opt/tomcat/webapps/geonetwork/xsl/error.xsl 2015-12-03 11:17:49,519 INFO [jeeves.service] - -> end error transformation for : resources.get 2015-12-03 11:17:49,520 INFO [jeeves.service] - -> error ended for : resources.get Entonces no sé que ocurre, porque a subida si funciona pero solo si lo hago a través de la IP pero no a través de la salida web. Pero en ambos la descarga no funciona. Saludos. |
Free forum by Nabble | Edit this page |