java.lang.IllegalArgumentException: Invalid character found in the request target.

2,553 views
Skip to first unread message

Xin Jie Zhang

unread,
Nov 28, 2016, 9:04:04 AM11/28/16
to xnat_discussion
Hello, Please find below my log :

I'm using xnat 1.7, with the xnat war put as ROOT.rar
cp /home/ccsb/Documents/doc/xnat-web-1.7.0.war /opt/tomcat/webapps/ROOT.war

and run below the code :
# -*- coding: utf-8 -*-
"""
Created on Tue Nov 22 19:42:52 2016

@author: xinjie
"""

import glob
import os
import pyxnat
import os.path
import time

from pyxnat import Interface
xnat = Interface(server="http://10.141.208.250:8080",user='admin',password='admin',cachedir='/tmp')
#theProject = xnat.select.project('ZXJ1121_Test_OnSetAge')
project_name ='ZXJ1128_Test_Demo3'
theProject = xnat.select.project(project_name)
if(not theProject.exists()):
    theProject.create()
subject_pyxnat2016=xnat.select.project(project_name).subject('pyxnat2016')
if(not subject_pyxnat2016.exists()):
    subject_pyxnat2016.create()

experiment = subject_pyxnat2016.experiment('pyxnat101')
#adding experiments='xnat:datatype' allows you to specify the object type during creation.
#for mrSessionData this could be left blank as that's the default,I put it in for demostration purposes.
if(not experiment.exists()):
    experiment.create(experiments='xnat:mrSessionData')
experiment.attrs.mset({
'xnat:mrSessionData/fieldstrength': '3.0',
'xnat:mrSessionData/coil': 'head',
'xnat:mrSessionData/marker': "right"
})

scan = experiment.scan('ScanOne')
if(not scan.exists()):
    scan.create(scans='xnat:mrScanData')

scan.attrs.mset({
'xnat:mrScanData/parameters/imageType' : 'myType',
'xnat:mrScanData/series_description': 'The description goeshere',
'xnat:mrScanData/quality' : 'good'
})

dicom_resource = scan.resource('DICOM')

dicom_resource.put_dir("K:\\Linux\\sample\\sample4\\")

the_files = dicom_resource.files()
for f in the_files:
    print f

seems there is something wrong with the setting of the initial pipeline engine .

How to fix this error please ? Thanks a lot .

Nov 28, 2016 9:55:44 PM org.apache.coyote.http11.AbstractHttp11Processor process
INFO: Error parsing HTTP request header
 Note: further occurrences of HTTP header parsing errors will be logged at DEBUG level.
java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986
    at org.apache.coyote.http11.InternalInputBuffer.parseRequestLine(InternalInputBuffer.java:189)
    at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1000)
    at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:637)
    at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:318)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    at java.lang.Thread.run(Thread.java:745)

22.zip

Xin Jie Zhang

unread,
Dec 14, 2016, 1:28:00 AM12/14/16
to xnat_discussion
 Dear Xnat support team.
Today I upgrade the Xnat from 1.7 to 1.7.1 and seems this error msg still exists . Can anyone help to investigate it ?
Seems the pipeline runs OK,and I got the mail from pipeline . from the log file ,seems there is no error either .
However the snapshots are not created .

Pipeline log :

DEBUG main org.nrg.pipeline.client.CommandLineArguments - Pipeline executed with command line: -config /home/xnat/data/xnat/pipeline/pipeline.config -log /home/xnat/data/xnat/pipeline/log4j.properties -catalogPath /home/xnat/data/xnat/pipeline/catalog -pipeline xnat_tools/AutoRun.xml -id XNAT_E00075 -host http://10.141.208.250:8080 -u 35a82749-272d-4587-a10c-e4e7e201263b -pwd XXXXXXXXX -dataType xnat:mrSessionData -label Normal_1212_40020 -supressNotification -project data_full_1207_Test -notify admini...@xnat.org -notify zhang...@lsccm.com -parameter xnat_project=data_full_1207_Test -parameter userfullname=A.Admin -parameter supressEmail=false -parameter useremail=admini...@xnat.org -parameter session=XNAT_E00075 -parameter xnatserver=XNAT -parameter mailhost=localhost -parameter sessionType=xnat:mrSessionData -parameter adminemail=zhang...@lsccm.com -parameter sessionLabel=Normal_1212_40020 -workFlowPrimaryKey 139939
DEBUG main org.nrg.pipeline.utils.PipelineProperties - Initializing the pipeline properties from the specified properties object
DEBUG main org.nrg.pipeline.utils.PipelineProperties - Setting admin email to: zhang...@lsccm.com
DEBUG main org.nrg.pipeline.utils.PipelineProperties - Setting email ID to: zhang...@lsccm.com
DEBUG main org.nrg.pipeline.utils.PipelineProperties - Setting SMTP host to: smtp.qq.com
DEBUG main org.nrg.pipeline.utils.PipelineProperties - Setting REST mail host to: http://10.141.208.250:8080/data/services/mail/send
DEBUG main httpclient.wire.header - >> "GET /data/services/workflows/workflowid/139939 HTTP/1.1[\r][\n]"
DEBUG main httpclient.wire.header - >> "User-Agent: Noelios-Restlet-Engine/1.1.rc1[\r][\n]"
DEBUG main httpclient.wire.header - >> "Cookie: JSESSIONID=A116572AEAE931EFEA00B74B8840C579[\r][\n]"
DEBUG main httpclient.wire.header - >> "Accept: */*[\r][\n]"
DEBUG main httpclient.wire.header - >> "Host: 10.141.208.250:8080[\r][\n]"
DEBUG main httpclient.wire.header - >> "[\r][\n]"
DEBUG main httpclient.wire.header - << "HTTP/1.1 200 OK[\r][\n]"
DEBUG main httpclient.wire.header - << "HTTP/1.1 200 OK[\r][\n]"
DEBUG main httpclient.wire.header - << "Cache-Control: no-cache, no-store, max-age=0, must-revalidate[\r][\n]"
DEBUG main httpclient.wire.header - << "Pragma: no-cache[\r][\n]"
DEBUG main httpclient.wire.header - << "Expires: 0[\r][\n]"
DEBUG main httpclient.wire.header - << "X-XSS-Protection: 1; mode=block[\r][\n]"
DEBUG main httpclient.wire.header - << "X-Frame-Options: SAMEORIGIN[\r][\n]"
DEBUG main httpclient.wire.header - << "X-Content-Type-Options: nosniff[\r][\n]"
DEBUG main httpclient.wire.header - << "Set-Cookie: SESSION_EXPIRATION_TIME="1481690312332,900000"; Version=1; Path=/[\r][\n]"
DEBUG main httpclient.wire.header - << "Date: Wed, 14 Dec 2016 04:38:32 GMT[\r][\n]"
DEBUG main httpclient.wire.header - << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
DEBUG main httpclient.wire.header - << "Accept-Ranges: bytes[\r][\n]"
DEBUG main httpclient.wire.header - << "Server: Noelios-Restlet-Engine/1.1.10[\r][\n]"
DEBUG main httpclient.wire.header - << "Content-Type: text/xml[\r][\n]"
DEBUG main httpclient.wire.header - << "Transfer-Encoding: chunked[\r][\n]"
DEBUG main httpclient.wire.header - << "[\r][\n]"
DEBUG main httpclient.wire.content - << "6"
DEBUG main httpclient.wire.content - << "4"
DEBUG main httpclient.wire.content - << "0"
DEBUG main httpclient.wire.content - << "[\r]"
DEBUG main httpclient.wire.content - << "[\n]"
DEBUG main httpclient.wire.content - << "<"
DEBUG main httpclient.wire.content - << "?xml version="1.0" encoding="UTF-8" standalone="yes"?>[\n]"
DEBUG main httpclient.wire.content - << "<wrk:Workflow type="PROCESS" category="DATA" data_type="xnat:mrSessionData" ID="XNAT_E00075" ExternalID="data_full_1207_Test" status="Queued" pipeline_name="xnat_tools/AutoRun.xml" launch_time="2016-12-14T12:38:31" xmlns:arc="http://nrg.wustl.edu/arc" xmlns:val="http://nrg.wustl.edu/val" xmlns:pipe="http://nrg.wustl.edu/pipe" xmlns:wrk="http://nrg.wustl.edu/workflow" xmlns:scr="http://nrg.wustl.edu/scr" xmlns:xdat="http://nrg.wustl.edu/security" xmlns:cat="http://nrg.wustl.edu/catalog" xmlns:prov="http://www.nbirn.net/prov" xmlns:xnat="http://nrg.wustl.edu/xnat" xmlns:xnat_a="http://nrg.wustl.edu/xnat_assessments" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://nrg.wustl.edu/workflow http://10.141.208.250:8080/schemas/workflow.xsd http://nrg.wustl.edu/catalog http://10.141.208.250:8080/schemas/catalog.xsd http://nrg.wustl.edu/pipe http://10.141.208.250:8080/schemas/repository.xsd http://nrg.wustl.edu/scr http://10.141.208.250:8080/schemas/screeningAssessment.xsd http://nrg.wustl.edu/arc http://10.141.208.250:8080/schemas/project.xsd http://nrg.wustl.edu/val http://10.141.208.250:8080/schemas/protocolValidation.xsd http://nrg.wustl.edu/xnat http://10.141.208.250:8080/schemas/xnat.xsd http://nrg.wustl.edu/xnat_assessments http://10.141.208.250:8080/schemas/assessments.xsd http://www.nbirn.net/prov http://10.141.208.250:8080/schemas/birnprov.xsd http://nrg.wustl.edu/security http://10.141.208.250:8080/schemas/security.xsd">[\n]"
DEBUG main httpclient.wire.content - << "<!--hidden_fields[wrk_workflowData_id="139939"]-->[\n]"
DEBUG main httpclient.wire.content - << "</wrk:Workflow>"
DEBUG main httpclient.wire.content - << "[\r]"
DEBUG main httpclient.wire.content - << "[\n]"
DEBUG main httpclient.wire.content - << "1"
DEBUG main httpclient.wire.content - << "[\r]"
DEBUG main httpclient.wire.content - << "[\n]"
DEBUG main httpclient.wire.content - << "[\n]"
DEBUG main httpclient.wire.content - << "[\r]"
DEBUG main httpclient.wire.content - << "[\n]"
DEBUG main httpclient.wire.content - << "0"
DEBUG main httpclient.wire.content - << "[\r]"
DEBUG main httpclient.wire.content - << "[\n]"
DEBUG main httpclient.wire.content - << "[\r]"
DEBUG main httpclient.wire.content - << "[\n]"
DEBUG main httpclient.wire.header - << "[\r][\n]"
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre ^if (boolean(/Pipeline/parameters/parameter[name='aliasHost']/values/unique)) then /Pipeline/parameters/parameter[name='aliasHost']/values/unique/text() else /Pipeline/parameters/parameter[name='host']/values/unique/text()^ [http://10.141.208.250:8080/]
DEBUG main httpclient.wire.header - >> "GET /REST/projects/data_full_1207_Test/archive_spec HTTP/1.1[\r][\n]"
DEBUG main httpclient.wire.header - >> "User-Agent: Noelios-Restlet-Engine/1.1.rc1[\r][\n]"
DEBUG main httpclient.wire.header - >> "Cookie: JSESSIONID=A116572AEAE931EFEA00B74B8840C579[\r][\n]"
DEBUG main httpclient.wire.header - >> "Accept: */*[\r][\n]"
DEBUG main httpclient.wire.header - >> "Host: 10.141.208.250:8080[\r][\n]"
DEBUG main httpclient.wire.header - >> "[\r][\n]"
DEBUG main httpclient.wire.header - << "HTTP/1.1 200 OK[\r][\n]"
DEBUG main httpclient.wire.header - << "HTTP/1.1 200 OK[\r][\n]"
DEBUG main httpclient.wire.header - << "Cache-Control: no-cache, no-store, max-age=0, must-revalidate[\r][\n]"
DEBUG main httpclient.wire.header - << "Pragma: no-cache[\r][\n]"
DEBUG main httpclient.wire.header - << "Expires: 0[\r][\n]"
DEBUG main httpclient.wire.header - << "X-XSS-Protection: 1; mode=block[\r][\n]"
DEBUG main httpclient.wire.header - << "X-Frame-Options: SAMEORIGIN[\r][\n]"
DEBUG main httpclient.wire.header - << "X-Content-Type-Options: nosniff[\r][\n]"
DEBUG main httpclient.wire.header - << "Set-Cookie: SESSION_EXPIRATION_TIME="1481690312737,900000"; Version=1; Path=/[\r][\n]"
DEBUG main httpclient.wire.header - << "Date: Wed, 14 Dec 2016 04:38:32 GMT[\r][\n]"
DEBUG main httpclient.wire.header - << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
DEBUG main httpclient.wire.header - << "Accept-Ranges: bytes[\r][\n]"
DEBUG main httpclient.wire.header - << "Server: Noelios-Restlet-Engine/1.1.10[\r][\n]"
DEBUG main httpclient.wire.header - << "Content-Type: text/xml[\r][\n]"
DEBUG main httpclient.wire.header - << "Transfer-Encoding: chunked[\r][\n]"
DEBUG main httpclient.wire.header - << "[\r][\n]"
DEBUG main httpclient.wire.content - << "7"
DEBUG main httpclient.wire.content - << "8"
DEBUG main httpclient.wire.content - << "1"
DEBUG main httpclient.wire.content - << "[\r]"
DEBUG main httpclient.wire.content - << "[\n]"
DEBUG main httpclient.wire.content - << "<"
DEBUG main httpclient.wire.content - << "?xml version="1.0" encoding="UTF-8" standalone="yes"?>[\n]"
DEBUG main httpclient.wire.content - << "<arc:project id="data_full_1207_Test" current_arc="arc001" prearchive_code="4" xmlns:arc="http://nrg.wustl.edu/arc" xmlns:val="http://nrg.wustl.edu/val" xmlns:pipe="http://nrg.wustl.edu/pipe" xmlns:wrk="http://nrg.wustl.edu/workflow" xmlns:scr="http://nrg.wustl.edu/scr" xmlns:xdat="http://nrg.wustl.edu/security" xmlns:cat="http://nrg.wustl.edu/catalog" xmlns:prov="http://www.nbirn.net/prov" xmlns:xnat="http://nrg.wustl.edu/xnat" xmlns:xnat_a="http://nrg.wustl.edu/xnat_assessments" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://nrg.wustl.edu/workflow http://10.141.208.250:8080/schemas/workflow.xsd http://nrg.wustl.edu/catalog http://10.141.208.250:8080/schemas/catalog.xsd http://nrg.wustl.edu/pipe http://10.141.208.250:8080/schemas/repository.xsd http://nrg.wustl.edu/scr http://10.141.208.250:8080/schemas/screeningAssessment.xsd http://nrg.wustl.edu/arc http://10.141.208.250:8080/schemas/project.xsd http://nrg.wustl.edu/val http://10.141.208.250:8080/schemas/protocolValidation.xsd http://nrg.wustl.edu/xnat http://10.141.208.250:8080/schemas/xnat.xsd http://nrg.wustl.edu/xnat_assessments http://10.141.208.250:8080/schemas/assessments.xsd http://www.nbirn.net/prov http://10.141.208.250:8080/schemas/birnprov.xsd http://nrg.wustl.edu/security http://10.141.208.250:8080/schemas/security.xsd">[\n]"
DEBUG main httpclient.wire.content - << "<!--hidden_fields[arc_project_id="3",projects_project_arc_ArchiveSpe_arc_archivespecification_id="1"]-->[\n]"
DEBUG main httpclient.wire.content - << "<arc:paths>[\n]"
DEBUG main httpclient.wire.content - << "<!--hidden_fields[arc_pathInfo_id="4"]-->[\n]"
DEBUG main httpclient.wire.content - << "<arc:archivePath>/home/xnat/data/xnat/archive/data_full_1207_Test/</arc:archivePath>[\n]"
DEBUG main httpclient.wire.content - << "<arc:prearchivePath>/home/xnat/data/xnat/prearchive/data_full_1207_Test/</arc:prearchivePath>[\n]"
DEBUG main httpclient.wire.content - << "<arc:cachePath>/home/xnat/data/xnat/cache/data_full_1207_Test/</arc:cachePath>[\n]"
DEBUG main httpclient.wire.content - << "<arc:buildPath>/home/xnat/data/xnat/build/data_full_1207_Test/</arc:buildPath>[\n]"
DEBUG main httpclient.wire.content - << "</arc:paths>[\n]"
DEBUG main httpclient.wire.content - << "</arc:project>"
DEBUG main httpclient.wire.content - << "[\r]"
DEBUG main httpclient.wire.content - << "[\n]"
DEBUG main httpclient.wire.content - << "1"
DEBUG main httpclient.wire.content - << "[\r]"
DEBUG main httpclient.wire.content - << "[\n]"
DEBUG main httpclient.wire.content - << "[\n]"
DEBUG main httpclient.wire.content - << "[\r]"
DEBUG main httpclient.wire.content - << "[\n]"
DEBUG main httpclient.wire.content - << "0"
DEBUG main httpclient.wire.content - << "[\r]"
DEBUG main httpclient.wire.content - << "[\n]"
DEBUG main httpclient.wire.content - << "[\r]"
DEBUG main httpclient.wire.content - << "[\n]"
DEBUG main httpclient.wire.header - << "[\r][\n]"
DEBUG main org.reflections.Reflections - going to scan these urls:
jar:file:/home/xnat/data/xnat/pipeline/lib/xnat-data-models-1.7.1.jar!/
jar:file:/home/xnat/data/xnat/pipeline/lib/core-1.7.1.jar!/
INFO main org.reflections.Reflections - Reflections took 39 ms to scan 2 urls, producing 230 keys and 230 values
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre ^fileUtils:GetCachePath(/Pipeline/parameters/parameter[name='resolvedHost']/values/unique/text(), /Pipeline/parameters/parameter[name='user']/values/unique/text(), /Pipeline/parameters/parameter[name='pwd']/values/unique/text(),/Pipeline/parameters/parameter[name='project']/values/unique/text())^ [/home/xnat/data/xnat/cache/data_full_1207_Test/]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre XNAT_E00075 [XNAT_E00075]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre http://10.141.208.250:8080/ [http://10.141.208.250:8080/]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre 35a82749-272d-4587-a10c-e4e7e201263b [35a82749-272d-4587-a10c-e4e7e201263b]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre 35a82749-272d-4587-a10c-e4e7e201263b [35a82749-272d-4587-a10c-e4e7e201263b]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre atsyOdyDkJQVP076Q0laPQoLNaxu7JoVH2Gut9s0mGiABMs9wERJqky9ccQppwQL [atsyOdyDkJQVP076Q0laPQoLNaxu7JoVH2Gut9s0mGiABMs9wERJqky9ccQppwQL]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre Normal_1212_40020 [Normal_1212_40020]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre data_full_1207_Test [data_full_1207_Test]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre data_full_1207_Test [data_full_1207_Test]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre A.Admin [A.Admin]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre false [false]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre admini...@xnat.org [admini...@xnat.org]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre XNAT_E00075 [XNAT_E00075]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre XNAT [XNAT]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre localhost [localhost]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre xnat:mrSessionData [xnat:mrSessionData]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre zhang...@lsccm.com [zhang...@lsccm.com]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre Normal_1212_40020 [Normal_1212_40020]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre 139939 [139939]
INFO main org.nrg.pipeline.utils.PipelineEngineUtils - Parameter Resolved
INFO main org.nrg.pipeline.utils.PipelineEngineUtils - Loop Resolved
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre ^concat(/Pipeline/parameters/parameter[name='cachepath']/values/unique/text(),/Pipeline/parameters/parameter[name='label']/values/unique/text(),'/',/Pipeline/name/text())^ [/home/xnat/data/xnat/cache/data_full_1207_Test/Normal_1212_40020/AutoRun]
INFO main org.nrg.pipeline.utils.PipelineEngineUtils - Output resolved
INFO main org.nrg.pipeline.task.StepManager - Step attributes resolved
INFO main org.nrg.pipeline.manager.ResourceManager - Loaded /home/xnat/data/xnat/pipeline/catalog/images/resources/WebBasedQCImageCreator.xml
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre ^/Pipeline/parameters/parameter[name='label']/values/unique/text()^ [Normal_1212_40020]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre ^/Pipeline/parameters/parameter[name='id']/values/unique/text()^ [XNAT_E00075]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre ^/Pipeline/parameters/parameter[name='project']/values/unique/text()^ [data_full_1207_Test]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre ^/Pipeline/parameters/parameter[name='resolvedHost']/values/unique/text()^ [http://10.141.208.250:8080/]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre ^/Pipeline/parameters/parameter[name='user']/values/unique/text()^ [35a82749-272d-4587-a10c-e4e7e201263b]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre ^/Pipeline/parameters/parameter[name='pwd']/values/unique/text()^ [atsyOdyDkJQVP076Q0laPQoLNaxu7JoVH2Gut9s0mGiABMs9wERJqky9ccQppwQL]
INFO main org.nrg.pipeline.manager.ResourceManager - Loaded /home/xnat/data/xnat/pipeline/catalog/images/resources/WebBasedQCImageCreator.xml
INFO main org.nrg.pipeline.task.StepManager - Step attributes resolved
INFO main org.nrg.pipeline.manager.ResourceManager - Loaded /home/xnat/data/xnat/pipeline/catalog/xnat_tools/XnatDataClient.xml
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre ^/Pipeline/parameters/parameter[name='user']/values/unique/text()^ [35a82749-272d-4587-a10c-e4e7e201263b]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre ^/Pipeline/parameters/parameter[name='pwd']/values/unique/text()^ [atsyOdyDkJQVP076Q0laPQoLNaxu7JoVH2Gut9s0mGiABMs9wERJqky9ccQppwQL]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre POST [POST]
DEBUG main org.nrg.pipeline.xpath.XPathResolverSaxon - Expre ^concat('"',/Pipeline/parameters/parameter[name='resolvedHost']/values/unique/text(),'/data/projects/',/Pipeline/parameters/parameter[name='project']/values/unique/text(),'/pipelines/AUTO_ARCHIVE/experiments/',/Pipeline/parameters/parameter[name='session']/values/unique/text(),'?match=LIKE"')^ ["http://10.141.208.250:8080//data/projects/data_full_1207_Test/pipelines/AUTO_ARCHIVE/experiments/XNAT_E00075?match=LIKE"]
INFO main org.nrg.pipeline.manager.ResourceManager - Loaded /home/xnat/data/xnat/pipeline/catalog/xnat_tools/XnatDataClient.xml
INFO main org.nrg.pipeline.manager.ExecutionManager - Launching step 0
INFO main org.nrg.xnattools.xml.XMLStore - Got response with 0 bytes of content type Unspecified in 375 ms
INFO main org.nrg.pipeline.process.LocalProcessLauncher - Executing /home/xnat/data/xnat/pipeline/image-tools/WebBasedQCImageCreator -session Normal_1212_40020 -project data_full_1207_Test -xnatId XNAT_E00075 -host http://10.141.208.250:8080/ -u 35a82749-272d-4587-a10c-e4e7e201263b -pwd ######## -raw
INFO main org.nrg.pipeline.process.LocalProcessLauncher - ExitValue: 0
INFO main org.nrg.pipeline.process.LocalProcessLauncher - Executing /home/xnat/data/xnat/pipeline/image-tools/WebBasedQCImageCreator  --version
INFO main org.nrg.pipeline.process.LocalProcessLauncher - ExitValue: 1
INFO main org.nrg.pipeline.process.LocalProcessLauncher - Executing ldd /home/xnat/data/xnat/pipeline/image-tools/WebBasedQCImageCreator
INFO main org.nrg.pipeline.process.LocalProcessLauncher - ExitValue: 1
INFO main org.nrg.xnattools.xml.XMLStore - Got response with 0 bytes of content type Unspecified in 48 ms
INFO main org.nrg.pipeline.manager.ExecutionManager - Pipeline executed
INFO main org.nrg.pipeline.manager.ExecutionManager - Launching step 0
INFO main org.nrg.xnattools.xml.XMLStore - Got response with 0 bytes of content type Unspecified in 81 ms
INFO main org.nrg.pipeline.process.LocalProcessLauncher - Executing /home/xnat/data/xnat/pipeline/xnat-tools/XnatDataClient -u 35a82749-272d-4587-a10c-e4e7e201263b -p ######## -r "http://10.141.208.250:8080//data/projects/data_full_1207_Test/pipelines/AUTO_ARCHIVE/experiments/XNAT_E00075?match=LIKE" -m POST
INFO main org.nrg.pipeline.process.LocalProcessLauncher - ExitValue: 0
INFO main org.nrg.pipeline.process.LocalProcessLauncher - Executing /home/xnat/data/xnat/pipeline/xnat-tools/XnatDataClient  --version
INFO main org.nrg.pipeline.process.LocalProcessLauncher - ExitValue: 0
INFO main org.nrg.pipeline.process.LocalProcessLauncher - Executing ldd /home/xnat/data/xnat/pipeline/xnat-tools/XnatDataClient
INFO main org.nrg.pipeline.process.LocalProcessLauncher - ExitValue: 1
INFO main org.nrg.xnattools.xml.XMLStore - Got response with 0 bytes of content type Unspecified in 36 ms
INFO main org.nrg.pipeline.manager.ExecutionManager - Pipeline executed
INFO main org.nrg.xnattools.xml.XMLStore - Got response with 0 bytes of content type Unspecified in 69 ms
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - Found parameters:
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - resolvedHost: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">http://10.141.208.250:8080/</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - cachepath: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">/home/xnat/data/xnat/cache/data_full_1207_Test/</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - id: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">XNAT_E00075</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - host: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">http://10.141.208.250:8080/</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - user: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">35a82749-272d-4587-a10c-e4e7e201263b</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - u: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">35a82749-272d-4587-a10c-e4e7e201263b</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - pwd: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">atsyOdyDkJQVP076Q0laPQoLNaxu7JoVH2Gut9s0mGiABMs9wERJqky9ccQppwQL</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - label: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">Normal_1212_40020</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - project: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">data_full_1207_Test</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - xnat_project: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">data_full_1207_Test</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - userfullname: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">A.Admin</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - supressEmail: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">false</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - useremail: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">admini...@xnat.org</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - session: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">XNAT_E00075</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - xnatserver: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">XNAT</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - mailhost: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">localhost</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - sessionType: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">xnat:mrSessionData</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - adminemail: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">zhang...@lsccm.com</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - sessionLabel: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">Normal_1212_40020</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - workflowid: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">139939</unique>


below is the log info :

Dec 14, 2016 1:25:53 PM org.apache.coyote.http11.AbstractHttp11Processor process

INFO: Error parsing HTTP request header
 Note: further occurrences of HTTP header parsing errors will be logged at DEBUG level.
java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986
    at org.apache.coyote.http11.InternalInputBuffer.parseRequestLine(InternalInputBuffer.java:189)
    at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1000)
    at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:637)
    at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:318)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    at java.lang.Thread.run(Thread.java:745)

Dec 14, 2016 1:45:19 PM org.apache.coyote.http11.AbstractHttp11Processor process

INFO: Error parsing HTTP request header
 Note: further occurrences of HTTP header parsing errors will be logged at DEBUG level.
java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986
    at org.apache.coyote.http11.InternalInputBuffer.parseRequestLine(InternalInputBuffer.java:189)
    at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1000)
    at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:637)
    at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:316)

Moore, Charlie

unread,
Dec 14, 2016, 10:51:01 AM12/14/16
to xnat_di...@googlegroups.com

What version of tomcat are you using?

 

Thanks,

Charlie

--
You received this message because you are subscribed to the Google Groups "xnat_discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to xnat_discussi...@googlegroups.com.
To post to this group, send email to xnat_di...@googlegroups.com.
Visit this group at https://groups.google.com/group/xnat_discussion.
For more options, visit https://groups.google.com/d/optout.

 


The materials in this message are private and may contain Protected Healthcare Information or other information of a sensitive nature. If you are not the intended recipient, be advised that any unauthorized use, disclosure, copying or the taking of any action in reliance on the contents of this information is strictly prohibited. If you have received this email in error, please immediately notify the sender via telephone or return mail.

Xin Jie Zhang

unread,
Dec 19, 2016, 10:32:23 PM12/19/16
to xnat_discussion
We finally find a workaround for this issue .we can send the zipped file to prearchieve folder, then triger the archieve action .
Which will also help to generate the snapshots .
FYI maybe you can find a way to identify the root cause of the autorun issue .

Hope this information can help .


On Wednesday, December 14, 2016 at 2:28:00 PM UTC+8, Xin Jie Zhang wrote:
 Dear Xnat support team.
Today I upgrade the Xnat from 1.7 to 1.7.1 and seems this error msg still exists . Can anyone help to investigate it ?
Seems the pipeline runs OK,and I got the mail from pipeline . from the log file ,seems there is no error either .
However the snapshots are not created .

Pipeline log :

DEBUG main org.nrg.pipeline.client.CommandLineArguments - Pipeline executed with command line: -config /home/xnat/data/xnat/pipeline/pipeline.config -log /home/xnat/data/xnat/pipeline/log4j.properties -catalogPath /home/xnat/data/xnat/pipeline/catalog -pipeline xnat_tools/AutoRun.xml -id XNAT_E00075 -host http://10.141.208.250:8080 -u 35a82749-272d-4587-a10c-e4e7e201263b -pwd XXXXXXXXX -dataType xnat:mrSessionData -label Normal_1212_40020 -supressNotification -project data_full_1207_Test -notify admini...@xnat.org -notify zhang...@lsccm.com -parameter xnat_project=data_full_1207_Test -parameter userfullname=A.Admin -parameter supressEmail=false -parameter useremail=administrator@xnat.org -parameter session=XNAT_E00075 -parameter xnatserver=XNAT -parameter mailhost=localhost -parameter sessionType=xnat:mrSessionData -parameter adminemail=zhangxinjie@lsccm.com -parameter sessionLabel=Normal_1212_40020 -workFlowPrimaryKey 139939
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - useremail: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">administr...@xnat.org</unique>

DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - session: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">XNAT_E00075</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - xnatserver: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">XNAT</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - mailhost: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">localhost</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - sessionType: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">xnat:mrSessionData</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - adminemail: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">zhangxin...@lsccm.com</unique>

Xin Jie Zhang

unread,
Dec 28, 2016, 3:22:43 AM12/28/16
to xnat_discussion, moo...@wustl.edu
Hello Charlie,

Sorry don't know why the answer did not go to my mailbox .so I did notice your question .
I am using tomacat 7.0.73 .

BTW, if I want to show Chinese words for the lable, what's the best way to do it ? Do we have a language package ?

                     Apache Tomcat Version 7.0.73
                            Release Notes



On Wednesday, December 14, 2016 at 11:51:01 PM UTC+8, Moore, Charlie wrote:

What version of tomcat are you using?

 

Thanks,

Charlie

 

From: xnat_di...@googlegroups.com [mailto:xnat_di...@googlegroups.com] On Behalf Of Xin Jie Zhang
Sent: Wednesday, December 14, 2016 12:28 AM
To: xnat_discussion <xnat_di...@googlegroups.com>
Subject: [XNAT Discussion] Re: java.lang.IllegalArgumentException: Invalid character found in the request target.

 

 Dear Xnat support team.
Today I upgrade the Xnat from 1.7 to 1.7.1 and seems this error msg still exists . Can anyone help to investigate it ?
Seems the pipeline runs OK,and I got the mail from pipeline . from the log file ,seems there is no error either .
However the snapshots are not created .

Pipeline log :

DEBUG main org.nrg.pipeline.client.CommandLineArguments - Pipeline executed with command line: -config /home/xnat/data/xnat/pipeline/pipeline.config -log /home/xnat/data/xnat/pipeline/log4j.properties -catalogPath /home/xnat/data/xnat/pipeline/catalog -pipeline xnat_tools/AutoRun.xml -id XNAT_E00075 -host http://10.141.208.250:8080 -u 35a82749-272d-4587-a10c-e4e7e201263b -pwd XXXXXXXXX -dataType xnat:mrSessionData -label Normal_1212_40020 -supressNotification -project data_full_1207_Test -notify admini...@xnat.org -notify zhang...@lsccm.com -parameter xnat_project=data_full_1207_Test -parameter userfullname=A.Admin -parameter supressEmail=false -parameter useremail=a...@xnat.org -parameter session=XNAT_E00075 -parameter xnatserver=XNAT -parameter mailhost=localhost -parameter sessionType=xnat:mrSessionData -parameter adminemail=...@lsccm.com -parameter sessionLabel=Normal_1212_40020 -workFlowPrimaryKey 139939

DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - useremail: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">administr...@xnat.org</unique>


DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - session: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">XNAT_E00075</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - xnatserver: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">XNAT</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - mailhost: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">localhost</unique>
DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - sessionType: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">xnat:mrSessionData</unique>

DEBUG main org.nrg.pipeline.client.XNATPipelineLauncher - adminemail: <unique xmlns="http://nrg.wustl.edu/pipeline" xmlns:autorun="http://www.xnat.org/java/org.nrg.pipeline.client.webservices.WebserviceClient" xmlns:fileUtils="org.nrg.imagingtools.utils.FileUtils" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">zhangxin...@lsccm.com</unique>

Reply all
Reply to author
Forward
0 new messages