Coder Social home page Coder Social logo

knopkem / dicomweb-proxy Goto Github PK

View Code? Open in Web Editor NEW
64.0 9.0 18.0 80.19 MB

A proxy to translate between dicomweb and traditional dicom dimse services (PACS communication)

License: Other

JavaScript 7.18% HTML 7.79% TypeScript 85.03%
dicomweb dimse nodejs qido-rs wado-rs dicom ohif viewer wado-uri javascript

dicomweb-proxy's Introduction

dicomweb-proxy

A proxy to translate between DICOMWEB and traditional DICOM DIMSE services

Description

  • A nodejs tool to easily connect a DICOMWEB capable DICOM viewer to one or more legacy PACS that only know DIMSE services.
    Comes preinstalled with the popular OHIF DICOM Web Viewer (version 3.8.0).

Note: Since OHIF 3 is still beta you can also switch back to OHIF 2 version: just remove the public directory and unzip public.zip to public

What is it for?

  • if you want to view image data from one or more legacy PACS that does not understand DICOMWEB nor come with a web-viewer

How does it work?

  • the app should be installed within the hospital intranet and configured to connect via DIMSE networking to on or more PACS (peers)
  • it hosts a default DICOMweb viewer (OHIF) which can be replaced
  • the webserver exposes the default QIDO and WADOURI/WADORS API needed for the viewer and converts on the fly between the two protocols
  • optionally: you can connect to a DICOMWEB-WEBSOCKET-BRIDGE and expose the data to the public (handle with care!)

Prerequisite

  • nodejs 12 or newer

Setup Instructions - npm

  • install in empty directory:
    npm init -y
    npm install dicomweb-proxy

  • update config file located in:
    ./node_modules/dicomweb-proxy/config

  • or better: create config override, see: config

  • start proxy:
    npx dicomweb-proxy

Setup Instructions - source

  • clone repository and install dependencies:
    npm install

  • update config file located in:
    ./config

  • start proxy:
    npm start

What to modify

  • (optional) change our port or AET
config.source = {
  aet: "SOURCE_AET",
  ip: "SOURCE_IP",
  port: "SOURCE_PORT"
};
  • change peer(s) to your PACS
config.peers = [{
  aet: "TARGET_AET",
  ip: "TARGET_IP",
  port: "TARGET_PORT"
}, { more peers here...}];
  • in case your PACS does not support C-GET, switch to C-Move:
    config.useCget = false;

  • update webserver port:
    config.webserverPort = 5000;

  • open webbrowser and start viewing:
    e.g. http://localhost:5000

License

MIT

dicomweb-proxy's People

Contributors

dependabot[bot] avatar fossabot avatar knopkem avatar snyk-bot avatar vespasianvs avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

dicomweb-proxy's Issues

Problem network connection

Hi,
when I try to access the proxy webview on another Connection Denied computer, through the network IP:
http://192.168.0.10:5000
Says connection refused.

I can only do it on the local connection, how do I run on a network?

Integrate ohif's development version into Dicom proxy

Hi @knopkem!
When I build a product version of ohif into dicom proxy, it work.
But, I want to develop the ohif for my project. I need to update code regularly. It means, I take so much time to re-build it and import into dicom proxy.
I think that, I should run ohif seperated and update the default.js config file in 'ohif/platform/viewer/public/config' to point to the proxy.
I running the dicomproxy at localhost:5000, and ohif at localhost:3000
Can you point out for me the detail for config file in 'ohif/platform/viewer/public/config' to point to the dicom proxy ?

Thank you so much!

dicom-dimse-native library not working

Error while

npm install of the project

root@visorweb:/home/alma-dicomweb-proxy# npm install
npm ERR! code 1
npm ERR! path /home/alma-dicomweb-proxy/node_modules/dicom-dimse-native
npm ERR! command failed
npm ERR! command sh -c npx prebuild-install -r napi || npx cmake-js compile
npm ERR! [
npm ERR! '/usr/bin/node',
npm ERR! '/root/.npm/_npx/df44183e4145658d/node_modules/.bin/cmake-js',
npm ERR! 'compile'
npm ERR! ]
npm ERR! info TOOL Using Unix Makefiles generator.
npm ERR! info REP Build has been failed, trying to do a full rebuild.
npm ERR! ERR! OMG CMake executable is not found. Please use your system's package manager to install it, or you can get installers from there: http://cmake.org.

npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2021-03-25T14_08_59_150Z-debug.log

node_modules/node_addon_api

**https://www.npmjs.com/package/dicom-dimse-native **

** Already tryied both of this...**

This package uses prebuild to fetch precompiled binaries, so provided your platform is supported, all you need to do is:

npm i -s dicom-native-addon

Otherwise install will try to compile the sources for your platform, you will need:

CMake installed and in path
a working c++ compiler (vs 2015+ or g++5.3+)

Error then

npm ERR! info RUN cmake "/home/alma-dicomweb-proxy/node_modules/dicom-dimse-native" --no-warn-unused-cli -G"Unix Makefiles" -DCMAKE_JS_VERSION="6.1.0" -DCMAKE_BUILD_TYPE="Release" -DCMAKE_LIBRARY_OUTPUT_DIRECTORY="/home/alma-dicomweb-proxy/node_modules/dicom-dimse-native/build/Release" -DCMAKE_JS_INC="/root/.cmake-js/node-x64/v15.12.0/include/node" -DCMAKE_JS_SRC="" -DNODE_RUNTIME="node" -DNODE_RUNTIMEVERSION="15.12.0" -DNODE_ARCH="x64"
npm ERR! CMake Error at dcmdata/CMakeLists.txt:9 (add_subdirectory):
npm ERR! add_subdirectory given source "data" which is not an existing directory.
npm ERR!
npm ERR!
npm ERR! CMake Error at dcmimgle/CMakeLists.txt:9 (add_subdirectory):
npm ERR! add_subdirectory given source "data" which is not an existing directory.
npm ERR!
npm ERR!
npm ERR! info REP Build has been failed, trying to do a full rebuild.
npm ERR! info CMD CLEAN
npm ERR! info RUN cmake -E remove_directory "/home/alma-dicomweb-proxy/node_modules/dicom-dimse-native/build"
npm ERR! info CMD CONFIGURE
npm ERR! info RUN cmake "/home/alma-dicomweb-proxy/node_modules/dicom-dimse-native" --no-warn-unused-cli -G"Unix Makefiles" -DCMAKE_JS_VERSION="6.1.0" -DCMAKE_BUILD_TYPE="Release" -DCMAKE_LIBRARY_OUTPUT_DIRECTORY="/home/alma-dicomweb-proxy/node_modules/dicom-dimse-native/build/Release" -DCMAKE_JS_INC="/root/.cmake-js/node-x64/v15.12.0/include/node" -DCMAKE_JS_SRC="" -DNODE_RUNTIME="node" -DNODE_RUNTIMEVERSION="15.12.0" -DNODE_ARCH="x64"
npm ERR! CMake Error at dcmdata/CMakeLists.txt:9 (add_subdirectory):
npm ERR! add_subdirectory given source "data" which is not an existing directory.
npm ERR!
npm ERR!
npm ERR! CMake Error at dcmimgle/CMakeLists.txt:9 (add_subdirectory):
npm ERR! add_subdirectory given source "data" which is not an existing directory.
npm ERR!
npm ERR!
npm ERR! ERR! OMG Process terminated: 1

npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2021-03-25T14_06_10_492Z-debug.log

THX FOR THE HELP!

Upgrade of OHIF Viewer or features

Hi

First of all thanks for a great software. Can you guide me how can we upgrade the current version of OHIF Viewer to the latest version (I am not an IT Personnel) or add additional features in the current like MIP, MPR etc.

Can't connect to proxy

Hi,
I'm trying to test your component sending data from a python script.
I setup the "target" in the proxy configuration file as a locally running orthanc instance.
When I start the proxy the "target" connection test (C-ECHO) succeeds.

However, I'm not able to send images from my test script,
what is the correct configuration for the endpoints?

from dicomweb_client.api import DICOMwebClient
import pydicom

client = DICOMwebClient(
    url="http://localhost/",
    qido_url_prefix="rs",
    wado_url_prefix="wadouri",
    stow_url_prefix="rs"
)

filename = "./data/IM-0001-0001.dcm"
dataset = pydicom.dcmread(filename)
client.store_instances(datasets=[dataset])

Thanks

``

How to get all tag of series ?

Hi @knopkem !
I found in the file src/app.js. You filter the tag to get meda data of series. It is ok.
TagFilter

But, if I want to get all tag of series, what should I do ?
Can you point to me the way to do it ?
Thank you so much !

Get incorrect data of tag 00200037 (image orientation (patient))

Hi @knopkem !
When I using the dicomweb proxy to get the metadata of series at link like: "localhost:5000/viewer/viewer/rs/studies/1.3.6.1.4.1.9328.50.17.81542716229005078623624107555150614426/series/1.3.6.1.4.1.9328.50.17.139140258220479953981546122144830800551/metaData".

  1. The log in console of dicomweb proxy display the value of tag (0020, 0037) as: [1.000000\0.000000\0.000000\0.000000\1.000000\0.000000].
    VerboseLogging

  2. The result of this link is a json string, and value of tag 00200037 as: [1].
    ActureResult

The result of 1st and 2nd above is different. I wonder why. It should be the same together. I think 1st is oke, and 2nd is an issue, 2nd should be an array include 6 element as [1, 0, 0, 0, 1, 0] or some thing same.

Can you check this problem ?
Thank you so much !

Include more than one DIMSE sources

How could be possible to include more than one DIMSE sources ?

The idea is that the proxy allow to search across different Q/R DICOM nodes, and answers back the first match.

Error: Configuration property "useKeycloakAuth" is not defined

I am getting the following error when trying to run the app by default:

dicomweb-proxy_1  | stderr: /app/node_modules/config/lib/config.js:182
dicomweb-proxy_1  |     throw new Error('Configuration property "' + property + '" is not defined');
dicomweb-proxy_1  |     ^
dicomweb-proxy_1  | 
dicomweb-proxy_1  | Error: Configuration property "useKeycloakAuth" is not defined
dicomweb-proxy_1  |     at Config.get (/app/node_modules/config/lib/config.js:182:11)
dicomweb-proxy_1  |     at Object.<anonymous> (/app/node_modules/dicomweb-proxy/src/app.js:20:12)
dicomweb-proxy_1  |     at Module._compile (internal/modules/cjs/loader.js:999:30)
dicomweb-proxy_1  |     at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)
dicomweb-proxy_1  |     at Module.load (internal/modules/cjs/loader.js:863:32)
dicomweb-proxy_1  |     at Function.Module._load (internal/modules/cjs/loader.js:708:14)
dicomweb-proxy_1  |     at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:60:12)
dicomweb-proxy_1  |     at internal/main/run_main_module.js:17:47
dicomweb-proxy_1  | 
dicomweb-proxy_1  | child process exited with code 1

Adding the following line I can skip the error

config.useKeycloakAuth = false;

Upgrade OHIF Viewer

Is it any documentation to upgrade the OHIF Viewer to version 4.12.49?

Regards,
Fadjar340

Dicomweb proxy returns corrupted data when i login in the ohif standalone viewer web page

Hi,

I was trying to connect to a dcm4chee arc light PACS with your application but it returns an error in the dimse output message.

i added your node to the AET configuration of dcm4chee arch light.

mainly it displays that dicom fields are corrupted

here is the output:

dicomweb-proxy Application seems to run fine.

dicomweb-proxy error

pd: i noticed u use pdu max size to 16384 and dcm4chee 16378 so i changed it, still it displays same error.

tested with c-get and c-move.

Any idea how to fix this issue ?

Br,

Dowloaded studies from PACS

What is the data retention policy of the downloaded studies (via C-GET/C-MOVE). Do they get purge or do they need to be manually deleted?

Problem with npm bindings

Hi again!

I'm trying to install the proxy in a new server and i'm having this problem. Any help would be lovely

I've already tried to change de node or npm version or installing new versions of bindings npm

thanks a lot

node src/app.js

/home/alma/alma-dicomproxy/node_modules/bindings/bindings.js:121
throw e;
^

Error: libwrap.so.0: cannot open shared object file: No such file or directory
at Object.Module._extensions..node (internal/modules/cjs/loader.js:1144:18)
at Module.load (internal/modules/cjs/loader.js:950:32)
at Function.Module._load (internal/modules/cjs/loader.js:790:12)
at Module.require (internal/modules/cjs/loader.js:974:19)
at require (internal/modules/cjs/helpers.js:101:18)
at bindings (/home/alma/alma-dicomproxy/node_modules/bindings/bindings.js:112:48)
at Object. (/home/alma/alma-dicomproxy/node_modules/dicom-dimse-native/index.js:1:37)
at Module._compile (internal/modules/cjs/loader.js:1085:14)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1114:10)
at Module.load (internal/modules/cjs/loader.js:950:32) {
code: 'ERR_DLOPEN_FAILED'
}
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] start: node src/app.js
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2022-02-21T14_23_37_091Z-debug.log
[root@srvvisrxpre02 alma-dicomproxy]# node -v

DIMSE result limitation

Hi...

Is it possible that in the C-FIND have limitation of the result from the DIMSE server?
Since I have more than 190k data, it's takes time and the viewer send error message on the studies query, even the query have limit.

Below my result data and this made problem in the viewer page.

D: DcmDataset::read() TransferSyntax="Little Endian Implicit"
--
D: DcmDataset::read() TransferSyntax="Little Endian Implicit"
I: Received Find Response 91644
D: ===================== INCOMING DIMSE MESSAGE ====================
D: Message Type : C-FIND RSP
D: Message ID Being Responded To : 1
D: Affected SOP Class UID : FINDStudyRootQueryRetrieveInformationModel
D: Data Set : present
D: DIMSE Status : 0xff01: Pending: Warning - Unsupported optional keys
D: ======================= END DIMSE MESSAGE =======================


With the limit, I think the result from the query URL will response faster. I think my request will make major changes, because you need to store the last number of the result, and perhaps it's not supported by DIMSE protocol..:)

Perhaps you can give enlightenment about this... :))

Regards,
Fadjar340

EDIT:
from https://support.dcmtk.org/docs/findscu.html
There is limit option C-FIND response, instead the default is unlimited, using

  -Xlo  --limit-output  [n]umber: integer
          limit number of responses extracted to file to n
          (default: unlimited)

An error occurs when viewing DICOM images of study using dicomweb-proxy "version": "1.6.4"

Hi @knopkem!
When viewing DICOM images of study using dicomweb-proxy "version": "1.6.4"
Github:
(1) . Dicomweb-proxy: https://github.com/knopkem/dicomweb-proxy ( "version": "1.6.4")
(2) . Webviewer: https://github.com/OHIF/Viewers/tree/v3-stable/

Example: I viewed image of study with StudyInstanceUIDs = 1.2.392.200036.9123.100.11.15000165473693810149439210000183743
(3) .There is the following issue:
"file does not exist:
data\1.2.392.200036.9123.100.11.15000165473693810149439210000183743\1.2.392.200036.9123.100.11.15000165473693810149595123800360593".
Note:

  • 1.2.392.200036.9123.100.11.15000165473693810149439210000183743 : StudyInstanceUIDs of study
  • 1.2.392.200036.9123.100.11.15000165473693810149595123800360593: SOP Instance UID of image

I followed the config of Dicomweb-proxy (1) above as same as: #2
However, it is still the issue (3) above.

I want the image streaming, no download need when viewing DICOM images.
What should I do?
Thank you so much !

MRP active?

is the MPR function available in the viewer?

Can't store measurement

Dicom Viewer:
https://github.com/OHIF/Viewers/tree/v3-stable/

PACS:
ConQuest DICOM server 1.5.0c

I replaced the dicom viewer from preinstalled viewer to OHIF viewer v3, and it can be execute fine (The viewer can retrieve the dicom images, and display them properly). However, only the functionality of saving measurement is not working. The browser's (chrome) debugger indicated that the media type is not supported (response status code: 415).

Here is the request header:

Accept: */*
Accept-Encoding: gzip, deflate, br
Accept-Language: en-US,en;q=0.9
Connection: keep-alive
Content-Length: 4445
Content-Type: multipart/related; type=application/dicom; boundary=b604543a-e4de-bf0b-ea88-19f0c3efdb5b
Cookie: i18next=en-US
Host: localhost:5000
Origin: http://localhost:5000
Sec-Fetch-Dest: empty
Sec-Fetch-Mode: cors
Sec-Fetch-Site: same-origin
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36
sec-ch-ua: ".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"
sec-ch-ua-mobile: ?0
sec-ch-ua-platform: "Windows"

What is the reason of the problem? How could I fix this? or it is the bug of the dicomweb-proxy?

p.s. I have tried to use the preinstall viewer before, but it is still can't save the measurement of the image.

Cannot access custom page

Hi @knopkem !
I just create a custom page in ohif to login. In ohif, it is work with url such as localhost:3000/login.
I create a build product ohif and override it into dicomweb proxy. I access home page at localhost:5000, it is redirect into localhost:5000/viewer and display correctly with my expected.
But, i access localhost:5000/login, an error will appear as same as picture bellow:

Capture

Can you help me to find out of reason, and what should I do with this situation ?
Thank you so much!

Cannot get the Modality property of series

Hi @knopkem!
When I using dicom proxy to get metadata of series, I always receive the Modality property as "undefined".
Please refer at image bellow:
image
I wonder why!
Can you tell me a solution to resolve it ?
And, can you tell me how to get patient information including: date of birth, gender, address ?

Thank you so much!

Show rulers on the image

Hi,

I just installed dicomweb-proxy and I can access conquest images.

I´d like to show horizontal and vertical rulers in the image.

How can I do that?

[Override index.umd.js] cannot open image when click any item on the study list

Hi you.
When I build a file of ohif 4.2.3 as ohif/platform/viewer/dist/index.umd.js and then override it into dicomweb-proxy
/public/viewer/index.umd.js.
I run the project, and I see the list of study at home page. But, When I click on any item on study list to open image, so much errors will occur repeated with one type only is: 'Uncaught (in promise) Error: decodeTask: imageFrame.pixelData is undefined after decoding
at index.umd.js:2'
error

Can you help me to find what the problem in this case ?
Thank you!

Search multiple Modalities doesn't work

Hi @knopkem!
When I use dicomweb proxy to filter study list data for Viewers-3-stable:
Github:

There is the following issue:
"Search multiple Modalities doesn't work".

Example:
(1). I search with a Modalities ="CT".
request: http://localhost:3000/?modalities=CT
image

(2). I search with a Modalities ="SM".
request: http://localhost:3000/?modalities=SM
image

(3). I search with multiple Modalities ="CT, SM".
request: http://localhost:3000/?modalities=CT%2CSM
image

Both (1) and (2) , it works.
Only (3), It does not work.

What should I do to get it ?
Thank you so much !

patient name, date, window and level

Hi,
First of all thanks for a great software, dicomweb proxy is connected successfully with conquest but some information like patient name, date, window and level are not retrieve
CaptureOHIF
CaptureOHIF2

CMOVE STORE complain error

Hello, Thanks for your hard work. It's amazing. Nowadays I'm testing to use dicomwebproxy with GE PACS with usecget setting to false. After viewing some studies, the OHIF viewer complains below and never work well except restart dicomwebproxy.
The error from ohif:
OHIF
The error from dicomwebproxy's server console:
console
The error from GEPACS's console:
GEPACS

I'm sure there aren't some special configurations on GE endpoint. This eror will occur after sometimes' image viewer. And everthing works well when dicomwebproxy start refresh or reboot.

Run Production

How do I run in production?
when I use the npm start command and close the shell it ends the application.

when I use the command " nohup npm start & "
it stays for a while and then it finishes on its own.

Is it possible to run the dicomweb-proxy without interrupting?

Error find studies in Conquest

Hi,
Using dicomweb-proxy with Conquest 1.5.0 gives a find error.
Log dicomweb-proxy:
proxylog
Log Conquest:
conquestlog

C-Echo goes well.
Any Clues?

Chris

Study List PatientName empty and PatientID missing after refresh browser

Hi,

I notice that if the server start in the first time, the PatientName still empty, otherwise have PatientID.
After I refresh the page then the PatientID gone as follow
image

Is it expected or have bug or merely about the browser?
I use Chrome.

This the information about the Viewer
image

Regards,
Fadjar340

C-Find error

cap
Cap1
cap2

Hello,
i am using orthanc as a pacs server and would like to communicate in normal dicom protocol with OHIF.
DICOM association is succesful.But i cant view the images stored in the pacs on OHIF viewer.
I have attached error log above.
Thanking you,
Arun

Trouble running in windows.

Hello to all.

I have been trying to install dicom-web proxy for a while in a windows pc. Node.js and npm have been installed and working properly.
I have tried installing other packages and they work fine. However after successfully installing dicomweb-proxy 1.7.2 i get the following error :

'dicomweb-proxy' is not recognized as an internal or external command,
operable program or batch file.

This is very odd because when I try for example >npx [email protected] (non-existent version) I get the following error :

npm ERR! code ETARGET
npm ERR! notarget No matching version found for [email protected].
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.

Maybe this is not the appropriate platform to ask this question, however could this be a problem in the code that creates problems in windows installations?

Thank you

Explicit return on routes

Awesome job. Whilst tweaking the project to suit my personal requirements I have come across this:
(https://www.fastify.io/docs/latest/Reference/Routes/#async-await):

In this case do not forget to return reply or await reply in your async handler or you will introduce a race condition in certain situations.

Although I have not experienced race conditions, I was wondering if it would be necessary to return reply on ohif routes.
(https://github.com/knopkem/dicomweb-proxy/blob/e3ef28aff1a81139c9dcbd79c6825dde2b4c7df2/src/routes/routes.ts)

Install v1.0.13 instead of 1.0.14

Hello,
I had setup success dicomweb- proxy but not able to find 2d mpr button in 4.8.6.
So plan to move to 1.0.13 but when using npm install dicomweb- proxy command it install 1.0.14 , also try command using #v1.0.13 at end but not succeed. Let me know how to resolve this situation..my need is to use dicomwebproxy with viewer having 2d mpr.

Error Getting very small images

Hi, am using dicomweb-proxy connected to conquest server.
When images load, they are to noisy with magnification of over 400% and no patient information is displayed on viewer.
Set Conquest to forward all images to KPacs and the images in KPacs look good and load with normal magnification of about 0.8 and shows patient information.
image
Capture

Error gettting some images from conquest server

Hi,
With some images from conquest I get the next error.
I am using C-GET.
I tried to get the same image using ClearCanvas and it works well.
I have attached the conquest and dicomweb-proxy logs.

//conquest log
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 14 "1.2.840.10008.5.1.4.1.1.88.33" 1
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2091: ENDED AT: Sat Jul 24 19:57:29 2021
[CONQUESTLOCAL] UPACS THREAD 2091: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2092: STARTED AT: Sat Jul 24 19:57:29 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2093: STARTED AT: Sat Jul 24 19:57:29 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2093: ENDED AT: Sat Jul 24 19:57:29 2021
[CONQUESTLOCAL] UPACS THREAD 2093: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2094: STARTED AT: Sat Jul 24 19:57:29 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2095: STARTED AT: Sat Jul 24 19:57:29 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2095: ENDED AT: Sat Jul 24 19:57:29 2021
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Host 'C-GET client' will not accept image
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2097: STARTED AT: Sat Jul 24 19:57:29 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Host 'C-GET client' will not accept image
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2098: STARTED AT: Sat Jul 24 19:57:30 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] UPACS THREAD 2097: ENDED AT: Sat Jul 24 19:57:30 2021
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] UPACS THREAD 2097: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2099: STARTED AT: Sat Jul 24 19:57:30 2021
[CONQUESTLOCAL] UPACS THREAD 2099: ENDED AT: Sat Jul 24 19:57:30 2021
[CONQUESTLOCAL] UPACS THREAD 2099: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2100: STARTED AT: Sat Jul 24 19:57:30 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Host 'C-GET client' will not accept image
[CONQUESTLOCAL] UPACS THREAD 2100: ENDED AT: Sat Jul 24 19:57:30 2021
[CONQUESTLOCAL] UPACS THREAD 2100: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2101: STARTED AT: Sat Jul 24 19:57:30 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] UPACS THREAD 2101: ENDED AT: Sat Jul 24 19:57:30 2021
[CONQUESTLOCAL] UPACS THREAD 2101: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2103: STARTED AT: Sat Jul 24 19:57:30 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] UPACS THREAD 2102: ENDED AT: Sat Jul 24 19:57:31 2021
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2104: STARTED AT: Sat Jul 24 19:57:31 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Presentation Context 81 "1.2.840.10008.5.1.4.1.1.66.2" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Host 'C-GET client' will not accept image
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] UPACS THREAD 2104: ENDED AT: Sat Jul 24 19:57:31 2021
[CONQUESTLOCAL] UPACS THREAD 2104: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2105: STARTED AT: Sat Jul 24 19:57:31 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2106: STARTED AT: Sat Jul 24 19:57:31 2021
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] UPACS THREAD 2105: ENDED AT: Sat Jul 24 19:57:31 2021
[CONQUESTLOCAL] UPACS THREAD 2105: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] UPACS THREAD 2106: ENDED AT: Sat Jul 24 19:57:31 2021
[CONQUESTLOCAL] UPACS THREAD 2106: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2107: STARTED AT: Sat Jul 24 19:57:31 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2108: STARTED AT: Sat Jul 24 19:57:31 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2109: STARTED AT: Sat Jul 24 19:57:31 2021
[CONQUESTLOCAL] UPACS THREAD 2109: ENDED AT: Sat Jul 24 19:57:32 2021
[CONQUESTLOCAL] UPACS THREAD 2109: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2110: STARTED AT: Sat Jul 24 19:57:31 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2110: ENDED AT: Sat Jul 24 19:57:32 2021
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Host 'C-GET client' will not accept image
[CONQUESTLOCAL] C-Get (PatientRoot)
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2112: STARTED AT: Sat Jul 24 19:57:32 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2113: STARTED AT: Sat Jul 24 19:57:32 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Presentation Context 6 "1.2.840.10008.5.1.4.1.1.9.4.1" 1
[CONQUESTLOCAL] Presentation Context 7 "1.2.840.10008.5.1.4.1.1.11.4" 1
[CONQUESTLOCAL] Presentation Context 8 "1.2.840.10008.5.1.4.1.1.13.1.3" 1
[CONQUESTLOCAL] Presentation Context 9 "1.2.840.10008.5.1.4.1.1.9.3.1" 1
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2114: STARTED AT: Sat Jul 24 19:57:32 2021
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] UPACS THREAD 2113: ENDED AT: Sat Jul 24 19:57:32 2021
[CONQUESTLOCAL] UPACS THREAD 2113: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] UPACS THREAD 2114: ENDED AT: Sat Jul 24 19:57:32 2021
[CONQUESTLOCAL] UPACS THREAD 2114: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2115: STARTED AT: Sat Jul 24 19:57:32 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] UPACS THREAD 2116: ENDED AT: Sat Jul 24 19:57:33 2021
[CONQUESTLOCAL] UPACS THREAD 2116: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] UPACS THREAD 2115: ENDED AT: Sat Jul 24 19:57:33 2021
[CONQUESTLOCAL] UPACS THREAD 2115: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2117: STARTED AT: Sat Jul 24 19:57:33 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] UPACS THREAD 2117: ENDED AT: Sat Jul 24 19:57:33 2021
[CONQUESTLOCAL] UPACS THREAD 2117: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2118: STARTED AT: Sat Jul 24 19:57:33 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] UPACS THREAD 2118: ENDED AT: Sat Jul 24 19:57:33 2021
[CONQUESTLOCAL] UPACS THREAD 2118: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2119: STARTED AT: Sat Jul 24 19:57:33 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Presentation Context 44 "1.2.840.10008.5.1.4.1.1.2.2" 0
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2120: STARTED AT: Sat Jul 24 19:57:33 2021
[CONQUESTLOCAL] UPACS THREAD 2119: ENDED AT: Sat Jul 24 19:57:33 2021
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2121: STARTED AT: Sat Jul 24 19:57:33 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Presentation Context 6 "1.2.840.10008.5.1.4.1.1.9.4.1" 1
[CONQUESTLOCAL] Presentation Context 7 "1.2.840.10008.5.1.4.1.1.11.4" 1
[CONQUESTLOCAL] Presentation Context 50 "1.2.840.10008.5.1.4.1.1.4" 1
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2122: STARTED AT: Sat Jul 24 19:57:34 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] UPACS THREAD 2122: ENDED AT: Sat Jul 24 19:57:34 2021
[CONQUESTLOCAL] UPACS THREAD 2122: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] UPACS THREAD 2121: ENDED AT: Sat Jul 24 19:57:34 2021
[CONQUESTLOCAL] UPACS THREAD 2121: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2123: STARTED AT: Sat Jul 24 19:57:34 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 14 "1.2.840.10008.5.1.4.1.1.88.33" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] UPACS THREAD 2124: ENDED AT: Sat Jul 24 19:57:34 2021
[CONQUESTLOCAL] UPACS THREAD 2124: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] UPACS THREAD 2123: ENDED AT: Sat Jul 24 19:57:34 2021
[CONQUESTLOCAL] UPACS THREAD 2123: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2125: STARTED AT: Sat Jul 24 19:57:34 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] UPACS THREAD 2125: ENDED AT: Sat Jul 24 19:57:35 2021
[CONQUESTLOCAL] UPACS THREAD 2125: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] UPACS THREAD 2126: ENDED AT: Sat Jul 24 19:57:35 2021
[CONQUESTLOCAL] UPACS THREAD 2126: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2127: STARTED AT: Sat Jul 24 19:57:35 2021
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] UPACS THREAD 2127: ENDED AT: Sat Jul 24 19:57:35 2021
[CONQUESTLOCAL] UPACS THREAD 2127: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2128: STARTED AT: Sat Jul 24 19:57:35 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 17 "1.2.840.10008.5.1.4.1.1.66.3" 1
[CONQUESTLOCAL] UPACS THREAD 2128: ENDED AT: Sat Jul 24 19:57:35 2021
[CONQUESTLOCAL] UPACS THREAD 2128: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2129: STARTED AT: Sat Jul 24 19:57:35 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Host 'C-GET client' will not accept image
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2129: ENDED AT: Sat Jul 24 19:57:35 2021
[CONQUESTLOCAL] UPACS THREAD 2130: STARTED AT: Sat Jul 24 19:57:35 2021
[CONQUESTLOCAL] UPACS THREAD 2129: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Host 'C-GET client' will not accept image
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2130: ENDED AT: Sat Jul 24 19:57:35 2021
[CONQUESTLOCAL] UPACS THREAD 2130: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2131: STARTED AT: Sat Jul 24 19:57:35 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Presentation Context 62 "1.2.840.10008.5.1.4.1.1.80.1" 1
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2132: STARTED AT: Sat Jul 24 19:57:35 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] UPACS THREAD 2132: ENDED AT: Sat Jul 24 19:57:36 2021
[CONQUESTLOCAL] UPACS THREAD 2132: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2134: STARTED AT: Sat Jul 24 19:57:36 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Presentation Context 6 "1.2.840.10008.5.1.4.1.1.9.4.1" 1
[CONQUESTLOCAL] Presentation Context 7 "1.2.840.10008.5.1.4.1.1.11.4" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] UPACS THREAD 2134: ENDED AT: Sat Jul 24 19:57:36 2021
[CONQUESTLOCAL] UPACS THREAD 2134: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2133: STARTED AT: Sat Jul 24 19:57:36 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2135: STARTED AT: Sat Jul 24 19:57:36 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] UPACS THREAD 2135: ENDED AT: Sat Jul 24 19:57:37 2021
[CONQUESTLOCAL] UPACS THREAD 2135: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2136: STARTED AT: Sat Jul 24 19:57:36 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Presentation Context 6 "1.2.840.10008.5.1.4.1.1.9.4.1" 1
[CONQUESTLOCAL] Presentation Context 7 "1.2.840.10008.5.1.4.1.1.11.4" 1
[CONQUESTLOCAL] Presentation Context 8 "1.2.840.10008.5.1.4.1.1.13.1.3" 1
[CONQUESTLOCAL] Presentation Context 9 "1.2.840.10008.5.1.4.1.1.9.3.1" 1
[CONQUESTLOCAL] Presentation Context 10 "1.2.840.10008.5.1.4.1.1.88.65" 1
[CONQUESTLOCAL] Presentation Context 11 "1.2.840.10008.5.1.4.1.1.88.69" 1
[CONQUESTLOCAL] Presentation Context 12 "1.2.840.10008.5.1.4.1.1.11.2" 1
[CONQUESTLOCAL] Presentation Context 13 "1.2.840.10008.5.1.4.1.1.88.34" 0
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] UPACS THREAD 2136: ENDED AT: Sat Jul 24 19:57:37 2021
[CONQUESTLOCAL] UPACS THREAD 2136: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2137: STARTED AT: Sat Jul 24 19:57:37 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] UPACS THREAD 2137: ENDED AT: Sat Jul 24 19:57:37 2021
[CONQUESTLOCAL] UPACS THREAD 2137: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2139: STARTED AT: Sat Jul 24 19:57:37 2021
[CONQUESTLOCAL] UPACS THREAD 2138: STARTED AT: Sat Jul 24 19:57:37 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] UPACS THREAD 2138: ENDED AT: Sat Jul 24 19:57:37 2021
[CONQUESTLOCAL] UPACS THREAD 2138: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] UPACS THREAD 2139: ENDED AT: Sat Jul 24 19:57:37 2021
[CONQUESTLOCAL] UPACS THREAD 2139: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2140: STARTED AT: Sat Jul 24 19:57:37 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Presentation Context 6 "1.2.840.10008.5.1.4.1.1.9.4.1" 1
[CONQUESTLOCAL] Presentation Context 7 "1.2.840.10008.5.1.4.1.1.11.4" 1
[CONQUESTLOCAL] Presentation Context 8 "1.2.840.10008.5.1.4.1.1.13.1.3" 1
[CONQUESTLOCAL] Presentation Context 9 "1.2.840.10008.5.1.4.1.1.9.3.1" 1
[CONQUESTLOCAL] Presentation Context 10 "1.2.840.10008.5.1.4.1.1.88.65" 1
[CONQUESTLOCAL] Presentation Context 11 "1.2.840.10008.5.1.4.1.1.88.69" 1
[CONQUESTLOCAL] UPACS THREAD 2140: ENDED AT: Sat Jul 24 19:57:38 2021
[CONQUESTLOCAL] UPACS THREAD 2140: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] UPACS THREAD 2141: ENDED AT: Sat Jul 24 19:57:38 2021
[CONQUESTLOCAL] UPACS THREAD 2141: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2143: STARTED AT: Sat Jul 24 19:57:38 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] UPACS THREAD 2143: ENDED AT: Sat Jul 24 19:57:38 2021
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] UPACS THREAD 2142: ENDED AT: Sat Jul 24 19:57:38 2021
[CONQUESTLOCAL] UPACS THREAD 2142: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2144: STARTED AT: Sat Jul 24 19:57:38 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] UPACS THREAD 2144: ENDED AT: Sat Jul 24 19:57:38 2021
[CONQUESTLOCAL] UPACS THREAD 2144: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2145: STARTED AT: Sat Jul 24 19:57:38 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] UPACS THREAD 2145: ENDED AT: Sat Jul 24 19:57:39 2021
[CONQUESTLOCAL] UPACS THREAD 2145: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2146: STARTED AT: Sat Jul 24 19:57:39 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2147: STARTED AT: Sat Jul 24 19:57:39 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] Values: DICOMSeries.SeriesInst = '1.3.46.670589.30.1.6.1.116520970982.1515095185578.1' and DICOMStudies.StudyInsta = '1.3.46.670589.30.1.6.1.116520970982.1515094474578.1' and DICOMSeries.StudyInsta = DICOMStudies.StudyInsta and DICOMImages.SeriesInst = DICOMSeries.SeriesInst
[CONQUESTLOCAL] Tables: DICOMImages, DICOMSeries, DICOMStudies
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Host 'C-GET client' will not accept image
[CONQUESTLOCAL] C-Get (PatientRoot)
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] Values: DICOMSeries.SeriesInst = '1.3.46.670589.30.1.6.1.116520970982.1515095183937.1' and DICOMStudies.StudyInsta = '1.3.46.670589.30.1.6.1.116520970982.1515094474578.1' and DICOMSeries.StudyInsta = DICOMStudies.StudyInsta and DICOMImages.SeriesInst = DICOMSeries.SeriesInst
[CONQUESTLOCAL] Tables: DICOMImages, DICOMSeries, DICOMStudies
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Host 'C-GET client' will not accept image
[CONQUESTLOCAL] C-Get (PatientRoot)
[CONQUESTLOCAL] UPACS THREAD 2147: ENDED AT: Sat Jul 24 19:57:39 2021
[CONQUESTLOCAL] UPACS THREAD 2147: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] UPACS THREAD 2148: ENDED AT: Sat Jul 24 19:57:39 2021
[CONQUESTLOCAL] UPACS THREAD 2148: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2150: STARTED AT: Sat Jul 24 19:57:39 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] Values: DICOMSeries.SeriesInst = '1.3.46.670589.30.1.6.1.116520970982.1515095183937.1' and DICOMStudies.StudyInsta = '1.3.46.670589.30.1.6.1.116520970982.1515094474578.1' and DICOMSeries.StudyInsta = DICOMStudies.StudyInsta and DICOMImages.SeriesInst = DICOMSeries.SeriesInst
[CONQUESTLOCAL] Tables: DICOMImages, DICOMSeries, DICOMStudies
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Host 'C-GET client' will not accept image
[CONQUESTLOCAL] C-Get (PatientRoot)
[CONQUESTLOCAL] UPACS THREAD 2150: ENDED AT: Sat Jul 24 19:57:40 2021
[CONQUESTLOCAL] UPACS THREAD 2150: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] UPACS THREAD 2149: ENDED AT: Sat Jul 24 19:57:40 2021
[CONQUESTLOCAL] UPACS THREAD 2149: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2151: STARTED AT: Sat Jul 24 19:57:40 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] UPACS THREAD 2151: ENDED AT: Sat Jul 24 19:57:40 2021
[CONQUESTLOCAL] UPACS THREAD 2151: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2152: STARTED AT: Sat Jul 24 19:57:40 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] UPACS THREAD 2152: ENDED AT: Sat Jul 24 19:57:41 2021
[CONQUESTLOCAL] UPACS THREAD 2152: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2154: STARTED AT: Sat Jul 24 19:57:41 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] UPACS THREAD 2154: ENDED AT: Sat Jul 24 19:57:41 2021
[CONQUESTLOCAL] UPACS THREAD 2154: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2155: STARTED AT: Sat Jul 24 19:57:41 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] UPACS THREAD 2155: ENDED AT: Sat Jul 24 19:57:41 2021
[CONQUESTLOCAL] UPACS THREAD 2155: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2156: STARTED AT: Sat Jul 24 19:57:41 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Host 'C-GET client' will not accept image
[CONQUESTLOCAL] C-Get (PatientRoot)
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2156: ENDED AT: Sat Jul 24 19:57:41 2021
[CONQUESTLOCAL] UPACS THREAD 2156: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2157: STARTED AT: Sat Jul 24 19:57:41 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2158: STARTED AT: Sat Jul 24 19:57:41 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2159: STARTED AT: Sat Jul 24 19:57:41 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Presentation Context 6 "1.2.840.10008.5.1.4.1.1.9.4.1" 1
[CONQUESTLOCAL] Presentation Context 7 "1.2.840.10008.5.1.4.1.1.11.4" 1
[CONQUESTLOCAL] Presentation Context 8 "1.2.840.10008.5.1.4.1.1.13.1.3" 1
[CONQUESTLOCAL] Presentation Context 9 "1.2.840.10008.5.1.4.1.1.9.3.1" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Host 'C-GET client' will not accept image
[CONQUESTLOCAL] UPACS THREAD 2159: ENDED AT: Sat Jul 24 19:57:42 2021
[CONQUESTLOCAL] UPACS THREAD 2159: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] UPACS THREAD 2160: ENDED AT: Sat Jul 24 19:57:42 2021
[CONQUESTLOCAL] UPACS THREAD 2160: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2161: STARTED AT: Sat Jul 24 19:57:42 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Presentation Context 80 "1.2.840.10008.5.1.4.1.1.66.4" 1
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] UPACS THREAD 2162: ENDED AT: Sat Jul 24 19:57:42 2021
[CONQUESTLOCAL] UPACS THREAD 2161: ENDED AT: Sat Jul 24 19:57:42 2021
[CONQUESTLOCAL] UPACS THREAD 2161: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2163: STARTED AT: Sat Jul 24 19:57:42 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Presentation Context 6 "1.2.840.10008.5.1.4.1.1.9.4.1" 1
[CONQUESTLOCAL] Presentation Context 7 "1.2.840.10008.5.1.4.1.1.11.4" 1
[CONQUESTLOCAL] Presentation Context 8 "1.2.840.10008.5.1.4.1.1.13.1.3" 1
[CONQUESTLOCAL] Presentation Context 9 "1.2.840.10008.5.1.4.1.1.9.3.1" 1
[CONQUESTLOCAL] Presentation Context 10 "1.2.840.10008.5.1.4.1.1.88.65" 1
[CONQUESTLOCAL] Presentation Context 11 "1.2.840.10008.5.1.4.1.1.88.69" 1
[CONQUESTLOCAL] Presentation Context 12 "1.2.840.10008.5.1.4.1.1.11.2" 1
[CONQUESTLOCAL] Presentation Context 13 "1.2.840.10008.5.1.4.1.1.88.34" 0
[CONQUESTLOCAL] Presentation Context 14 "1.2.840.10008.5.1.4.1.1.88.33" 1
[CONQUESTLOCAL] Presentation Context 15 "1.2.840.10008.5.1.4.1.1.1" 1
[CONQUESTLOCAL] Presentation Context 16 "1.2.840.10008.5.1.4.1.1.2" 1
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] UPACS THREAD 2163: ENDED AT: Sat Jul 24 19:57:43 2021
[CONQUESTLOCAL] UPACS THREAD 2163: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] UPACS THREAD 2164: ENDED AT: Sat Jul 24 19:57:43 2021
[CONQUESTLOCAL] UPACS THREAD 2164: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2166: STARTED AT: Sat Jul 24 19:57:43 2021
[CONQUESTLOCAL] UPACS THREAD 2165: STARTED AT: Sat Jul 24 19:57:43 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] UPACS THREAD 2165: ENDED AT: Sat Jul 24 19:57:43 2021
[CONQUESTLOCAL] UPACS THREAD 2165: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] UPACS THREAD 2166: ENDED AT: Sat Jul 24 19:57:43 2021
[CONQUESTLOCAL] UPACS THREAD 2166: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2168: STARTED AT: Sat Jul 24 19:57:43 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] 0000,0110 2 US MessageID 1
[CONQUESTLOCAL] 0000,0700 2 US Priority 0
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2167: STARTED AT: Sat Jul 24 19:57:43 2021
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2169: STARTED AT: Sat Jul 24 19:57:43 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] UPACS THREAD 2169: ENDED AT: Sat Jul 24 19:57:43 2021
[CONQUESTLOCAL] UPACS THREAD 2169: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2170: STARTED AT: Sat Jul 24 19:57:43 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] UPACS THREAD 2170: ENDED AT: Sat Jul 24 19:57:44 2021
[CONQUESTLOCAL] UPACS THREAD 2170: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2171: STARTED AT: Sat Jul 24 19:57:44 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] UPACS THREAD 2171: ENDED AT: Sat Jul 24 19:57:44 2021
[CONQUESTLOCAL] UPACS THREAD 2171: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2172: STARTED AT: Sat Jul 24 19:57:44 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2172: ENDED AT: Sat Jul 24 19:57:44 2021
[CONQUESTLOCAL] UPACS THREAD 2172: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2173: STARTED AT: Sat Jul 24 19:57:44 2021
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] UPACS THREAD 2173: ENDED AT: Sat Jul 24 19:57:44 2021
[CONQUESTLOCAL] UPACS THREAD 2173: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2174: STARTED AT: Sat Jul 24 19:57:44 2021
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2174: ENDED AT: Sat Jul 24 19:57:44 2021
[CONQUESTLOCAL] UPACS THREAD 2174: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2175: STARTED AT: Sat Jul 24 19:57:44 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] UPACS THREAD 2175: ENDED AT: Sat Jul 24 19:57:44 2021
[CONQUESTLOCAL] UPACS THREAD 2175: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2177: STARTED AT: Sat Jul 24 19:57:45 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Presentation Context 6 "1.2.840.10008.5.1.4.1.1.9.4.1" 1
[CONQUESTLOCAL] Presentation Context 7 "1.2.840.10008.5.1.4.1.1.11.4" 1
[CONQUESTLOCAL] Presentation Context 8 "1.2.840.10008.5.1.4.1.1.13.1.3" 1
[CONQUESTLOCAL] UPACS THREAD 2176: ENDED AT: Sat Jul 24 19:57:45 2021
[CONQUESTLOCAL] UPACS THREAD 2176: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] UPACS THREAD 2177: ENDED AT: Sat Jul 24 19:57:45 2021
[CONQUESTLOCAL] UPACS THREAD 2177: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2179: STARTED AT: Sat Jul 24 19:57:45 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Presentation Context 6 "1.2.840.10008.5.1.4.1.1.9.4.1" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2178: STARTED AT: Sat Jul 24 19:57:45 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] UPACS THREAD 2179: ENDED AT: Sat Jul 24 19:57:45 2021
[CONQUESTLOCAL] UPACS THREAD 2179: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2180: STARTED AT: Sat Jul 24 19:57:45 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Host 'C-GET client' will not accept image
[CONQUESTLOCAL] UPACS THREAD 2180: ENDED AT: Sat Jul 24 19:57:45 2021
[CONQUESTLOCAL] UPACS THREAD 2180: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2181: STARTED AT: Sat Jul 24 19:57:45 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] UPACS THREAD 2181: ENDED AT: Sat Jul 24 19:57:46 2021
[CONQUESTLOCAL] UPACS THREAD 2181: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] C-Find (StudyRoot) located 179879 records
[CONQUESTLOCAL] UPACS THREAD 2182: ENDED AT: Sat Jul 24 19:57:46 2021
[CONQUESTLOCAL] UPACS THREAD 2182: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2183: STARTED AT: Sat Jul 24 19:57:46 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2183: ENDED AT: Sat Jul 24 19:57:46 2021
[CONQUESTLOCAL] UPACS THREAD 2183: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2184: STARTED AT: Sat Jul 24 19:57:46 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 61 "1.2.840.10008.5.1.4.1.1.77.1.5.4" 1
[CONQUESTLOCAL] UPACS THREAD 2184: ENDED AT: Sat Jul 24 19:57:46 2021
[CONQUESTLOCAL] UPACS THREAD 2184: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2185: STARTED AT: Sat Jul 24 19:57:46 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2185: ENDED AT: Sat Jul 24 19:57:46 2021
[CONQUESTLOCAL] UPACS THREAD 2185: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2186: STARTED AT: Sat Jul 24 19:57:46 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] UPACS THREAD 2186: ENDED AT: Sat Jul 24 19:57:46 2021
[CONQUESTLOCAL] UPACS THREAD 2186: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2187: STARTED AT: Sat Jul 24 19:57:46 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] UPACS THREAD 2187: ENDED AT: Sat Jul 24 19:57:47 2021
[CONQUESTLOCAL] UPACS THREAD 2187: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2188: STARTED AT: Sat Jul 24 19:57:47 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Presentation Context 74 "1.2.840.10008.5.1.4.1.1.481.9" 1
[CONQUESTLOCAL] UPACS THREAD 2188: ENDED AT: Sat Jul 24 19:57:47 2021
[CONQUESTLOCAL] UPACS THREAD 2188: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2189: STARTED AT: Sat Jul 24 19:57:47 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2189: ENDED AT: Sat Jul 24 19:57:47 2021
[CONQUESTLOCAL] UPACS THREAD 2189: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2190: STARTED AT: Sat Jul 24 19:57:47 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] UPACS THREAD 2190: ENDED AT: Sat Jul 24 19:57:47 2021
[CONQUESTLOCAL] UPACS THREAD 2190: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2191: STARTED AT: Sat Jul 24 19:57:47 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] C-Get (PatientRoot)
[CONQUESTLOCAL] UPACS THREAD 2191: ENDED AT: Sat Jul 24 19:57:47 2021
[CONQUESTLOCAL] UPACS THREAD 2191: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2192: STARTED AT: Sat Jul 24 19:57:47 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2192: ENDED AT: Sat Jul 24 19:57:47 2021
[CONQUESTLOCAL] UPACS THREAD 2192: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2193: STARTED AT: Sat Jul 24 19:57:47 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] UPACS THREAD 2193: ENDED AT: Sat Jul 24 19:57:48 2021
[CONQUESTLOCAL] UPACS THREAD 2193: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2194: STARTED AT: Sat Jul 24 19:57:48 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] UPACS THREAD 2194: ENDED AT: Sat Jul 24 19:57:48 2021
[CONQUESTLOCAL] UPACS THREAD 2194: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2195: STARTED AT: Sat Jul 24 19:57:48 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2195: ENDED AT: Sat Jul 24 19:57:48 2021
[CONQUESTLOCAL] UPACS THREAD 2195: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2196: STARTED AT: Sat Jul 24 19:57:48 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Message ID := 0001
[CONQUESTLOCAL] UPACS THREAD 2196: ENDED AT: Sat Jul 24 19:57:48 2021
[CONQUESTLOCAL] UPACS THREAD 2196: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2197: STARTED AT: Sat Jul 24 19:57:48 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] Host 'C-GET client' will not accept image
[CONQUESTLOCAL] UPACS THREAD 2197: ENDED AT: Sat Jul 24 19:57:48 2021
[CONQUESTLOCAL] UPACS THREAD 2197: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2198: STARTED AT: Sat Jul 24 19:57:48 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2198: ENDED AT: Sat Jul 24 19:57:48 2021
[CONQUESTLOCAL] UPACS THREAD 2198: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2199: STARTED AT: Sat Jul 24 19:57:48 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] UPACS THREAD 2199: ENDED AT: Sat Jul 24 19:57:49 2021
[CONQUESTLOCAL] UPACS THREAD 2199: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2200: STARTED AT: Sat Jul 24 19:57:49 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Presentation Context 6 "1.2.840.10008.5.1.4.1.1.9.4.1" 1
[CONQUESTLOCAL] Presentation Context 7 "1.2.840.10008.5.1.4.1.1.11.4" 1
[CONQUESTLOCAL] Presentation Context 8 "1.2.840.10008.5.1.4.1.1.13.1.3" 1
[CONQUESTLOCAL] Presentation Context 9 "1.2.840.10008.5.1.4.1.1.9.3.1" 1
[CONQUESTLOCAL] Presentation Context 10 "1.2.840.10008.5.1.4.1.1.88.65" 1
[CONQUESTLOCAL] Presentation Context 11 "1.2.840.10008.5.1.4.1.1.88.69" 1
[CONQUESTLOCAL] Presentation Context 12 "1.2.840.10008.5.1.4.1.1.11.2" 1
[CONQUESTLOCAL] Presentation Context 13 "1.2.840.10008.5.1.4.1.1.88.34" 0
[CONQUESTLOCAL] Presentation Context 14 "1.2.840.10008.5.1.4.1.1.88.33" 1
[CONQUESTLOCAL] Presentation Context 15 "1.2.840.10008.5.1.4.1.1.1" 1
[CONQUESTLOCAL] Presentation Context 16 "1.2.840.10008.5.1.4.1.1.2" 1
[CONQUESTLOCAL] Presentation Context 17 "1.2.840.10008.5.1.4.1.1.66.3" 1
[CONQUESTLOCAL] Presentation Context 18 "1.2.840.10008.5.1.4.1.1.1.3" 1
[CONQUESTLOCAL] Presentation Context 19 "1.2.840.10008.5.1.4.1.1.1.3.1" 1
[CONQUESTLOCAL] Presentation Context 20 "1.2.840.10008.5.1.4.1.1.1.2" 1
[CONQUESTLOCAL] Presentation Context 21 "1.2.840.10008.5.1.4.1.1.1.2.1" 1
[CONQUESTLOCAL] Presentation Context 22 "1.2.840.10008.5.1.4.1.1.1.1" 1
[CONQUESTLOCAL] Presentation Context 23 "1.2.840.10008.5.1.4.1.1.1.1.1" 1
[CONQUESTLOCAL] Presentation Context 24 "1.2.840.10008.5.1.4.1.1.104.2" 1
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2200: ENDED AT: Sat Jul 24 19:57:49 2021
[CONQUESTLOCAL] UPACS THREAD 2200: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2202: STARTED AT: Sat Jul 24 19:57:49 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2201: STARTED AT: Sat Jul 24 19:57:49 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2201: ENDED AT: Sat Jul 24 19:57:49 2021
[CONQUESTLOCAL] UPACS THREAD 2201: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2203: STARTED AT: Sat Jul 24 19:57:49 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] UPACS THREAD 2203: ENDED AT: Sat Jul 24 19:57:49 2021
[CONQUESTLOCAL] UPACS THREAD 2203: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2204: STARTED AT: Sat Jul 24 19:57:49 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Presentation Context 6 "1.2.840.10008.5.1.4.1.1.9.4.1" 1
[CONQUESTLOCAL] Presentation Context 7 "1.2.840.10008.5.1.4.1.1.11.4" 1
[CONQUESTLOCAL] Presentation Context 8 "1.2.840.10008.5.1.4.1.1.13.1.3" 1
[CONQUESTLOCAL] Presentation Context 9 "1.2.840.10008.5.1.4.1.1.9.3.1" 1
[CONQUESTLOCAL] Presentation Context 10 "1.2.840.10008.5.1.4.1.1.88.65" 1
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] UPACS THREAD 2204: ENDED AT: Sat Jul 24 19:57:49 2021
[CONQUESTLOCAL] UPACS THREAD 2204: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2206: STARTED AT: Sat Jul 24 19:57:50 2021
[CONQUESTLOCAL] UPACS THREAD 2205: STARTED AT: Sat Jul 24 19:57:49 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] UPACS THREAD 2206: ENDED AT: Sat Jul 24 19:57:50 2021
[CONQUESTLOCAL] UPACS THREAD 2206: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] UPACS THREAD 2205: ENDED AT: Sat Jul 24 19:57:50 2021
[CONQUESTLOCAL] UPACS THREAD 2205: TOTAL RUNNING TIME: 1 SECONDS
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2208: STARTED AT: Sat Jul 24 19:57:50 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Presentation Context 6 "1.2.840.10008.5.1.4.1.1.9.4.1" 1
[CONQUESTLOCAL] Presentation Context 7 "1.2.840.10008.5.1.4.1.1.11.4" 1
[CONQUESTLOCAL] Query On Image
[CONQUESTLOCAL] Issue Query on Columns: DICOMImages.SOPClassUI, DICOMImages.SOPInstanc, DICOMSeries.SeriesInst, DICOMStudies.StudyInsta,DICOMImages.ObjectFile,DICOMImages.DeviceName
[CONQUESTLOCAL] UPACS THREAD 2208: ENDED AT: Sat Jul 24 19:57:50 2021
[CONQUESTLOCAL] UPACS THREAD 2208: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] UPACS THREAD 2207: ENDED AT: Sat Jul 24 19:57:50 2021
[CONQUESTLOCAL] UPACS THREAD 2207: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL]
[CONQUESTLOCAL] UPACS THREAD 2210: STARTED AT: Sat Jul 24 19:57:50 2021
[CONQUESTLOCAL] A-ASSOCIATE-RQ Packet Dump
[CONQUESTLOCAL] Calling Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Called Application Title : "MEUPCTESTE "
[CONQUESTLOCAL] Application Context : "1.2.840.10008.3.1.1.1", PDU length: 16384
[CONQUESTLOCAL] Number of Proposed Presentation Contexts: 121
[CONQUESTLOCAL] Presentation Context 0 "1.2.840.10008.5.1.4.1.2.1.3" 1
[CONQUESTLOCAL] Presentation Context 1 "1.2.840.10008.5.1.4.1.1.9.1.3" 1
[CONQUESTLOCAL] Presentation Context 2 "1.2.840.10008.5.1.4.1.1.9.5.1" 1
[CONQUESTLOCAL] Presentation Context 3 "1.2.840.10008.5.1.4.1.1.78.2" 1
[CONQUESTLOCAL] Presentation Context 4 "1.2.840.10008.5.1.4.1.1.131" 1
[CONQUESTLOCAL] Presentation Context 5 "1.2.840.10008.5.1.4.1.1.88.11" 1
[CONQUESTLOCAL] Presentation Context 6 "1.2.840.10008.5.1.4.1.1.9.4.1" 1
[CONQUESTLOCAL] Presentation Context 7 "1.2.840.10008.5.1.4.1.1.11.4" 1
[CONQUESTLOCAL] Presentation Context 8 "1.2.840.10008.5.1.4.1.1.13.1.3" 1
[CONQUESTLOCAL] Presentation Context 9 "1.2.840.10008.5.1.4.1.1.9.3.1" 1
[CONQUESTLOCAL] Presentation Context 10 "1.2.840.10008.5.1.4.1.1.88.65" 1
[CONQUESTLOCAL] Presentation Context 11 "1.2.840.10008.5.1.4.1.1.88.69" 1
[CONQUESTLOCAL] Records = 1
[CONQUESTLOCAL] Number of images to send: 1
[CONQUESTLOCAL] UPACS THREAD 2209: ENDED AT: Sat Jul 24 19:57:50 2021
[CONQUESTLOCAL] UPACS THREAD 2209: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] UPACS THREAD 2210: ENDED AT: Sat Jul 24 19:57:50 2021
[CONQUESTLOCAL] UPACS THREAD 2210: TOTAL RUNNING TIME: 0 SECONDS
[CONQUESTLOCAL] Connected by address: af93aa2d
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.1' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2.2' against list #0 = '1.2.840.10008.1.2'
[CONQUESTLOCAL] Testing transfer: '1.2.840.10008.1.2' against list #0 = '1.2.840.10008.1.2'

// Node.js log
20:00:38.695 ERROR file not found data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095183875.2
20:00:38.726 INFO fetch start: 1.3.46.670589.30.1.6.1.116520970982.1515094474578.1/1.3.46.670589.30.1.6.1.116520970982.1515095183937.1
20:00:38.751 INFO fetch finished: 1.3.46.670589.30.1.6.1.116520970982.1515094474578.1/1.3.46.670589.30.1.6.1.116520970982.1515095185578.1
20:00:38.753 ERROR ENOENT: no such file or directory, access 'F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095184046.2'
{"errno":-4058,"code":"ENOENT","syscall":"access","path":"F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095184046.2"}
Error: ENOENT: no such file or directory, access 'F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095184046.2'
20:00:38.753 ERROR file not found data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095184046.2
20:00:38.764 INFO fetch start: 1.3.46.670589.30.1.6.1.116520970982.1515094474578.1/1.3.46.670589.30.1.6.1.116520970982.1515095185578.1
20:00:38.967 INFO fetch finished: 1.3.46.670589.30.1.6.1.116520970982.1515094474578.1/1.3.46.670589.30.1.6.1.116520970982.1515095183937.1
20:00:38.968 ERROR ENOENT: no such file or directory, access 'F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095183875.2'
{"errno":-4058,"code":"ENOENT","syscall":"access","path":"F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095183875.2"}
Error: ENOENT: no such file or directory, access 'F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095183875.2'
20:00:38.968 ERROR file not found data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095183875.2
20:00:38.981 INFO fetch start: 1.3.46.670589.30.1.6.1.116520970982.1515094474578.1/1.3.46.670589.30.1.6.1.116520970982.1515095183937.1
20:00:38.996 INFO fetch finished: 1.3.46.670589.30.1.6.1.116520970982.1515094474578.1/1.3.46.670589.30.1.6.1.116520970982.1515095185578.1
20:00:38.998 ERROR ENOENT: no such file or directory, access 'F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095184046.2'
{"errno":-4058,"code":"ENOENT","syscall":"access","path":"F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095184046.2"}
Error: ENOENT: no such file or directory, access 'F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095184046.2'
20:00:38.998 ERROR file not found data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095184046.2
20:00:39.008 INFO fetch start: 1.3.46.670589.30.1.6.1.116520970982.1515094474578.1/1.3.46.670589.30.1.6.1.116520970982.1515095185578.1
20:00:39.219 INFO fetch finished: 1.3.46.670589.30.1.6.1.116520970982.1515094474578.1/1.3.46.670589.30.1.6.1.116520970982.1515095183937.1
20:00:39.220 ERROR ENOENT: no such file or directory, access 'F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095183875.2'
{"errno":-4058,"code":"ENOENT","syscall":"access","path":"F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095183875.2"}
Error: ENOENT: no such file or directory, access 'F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095183875.2'
20:00:39.220 ERROR file not found data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095183875.2
20:00:39.249 INFO fetch finished: 1.3.46.670589.30.1.6.1.116520970982.1515094474578.1/1.3.46.670589.30.1.6.1.116520970982.1515095185578.1
20:00:39.271 ERROR ENOENT: no such file or directory, access 'F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095184046.2'
{"errno":-4058,"code":"ENOENT","syscall":"access","path":"F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095184046.2"}
Error: ENOENT: no such file or directory, access 'F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095184046.2'
20:00:39.271 ERROR file not found data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095184046.2
20:00:39.282 INFO fetch start: 1.3.46.670589.30.1.6.1.116520970982.1515094474578.1/1.3.46.670589.30.1.6.1.116520970982.1515095183937.1
20:00:39.514 INFO fetch finished: 1.3.46.670589.30.1.6.1.116520970982.1515094474578.1/1.3.46.670589.30.1.6.1.116520970982.1515095183937.1
20:00:39.516 ERROR ENOENT: no such file or directory, access 'F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095183875.2'
{"errno":-4058,"code":"ENOENT","syscall":"access","path":"F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095183875.2"}
Error: ENOENT: no such file or directory, access 'F:\Programas\dicomweb-proxy\data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095183875.2'
20:00:39.516 ERROR file not found data\1.3.46.670589.30.1.6.1.116520970982.1515094474578.1\1.3.46.670589.30.1.6.1.116520970982.1515095183875.2

Enable MPR in OHIF

I became a loyal member of the tool hahaha, thank you very much.
A doubt:
Is it possible to enable MPR in OHIF for it to work in wadouri?

Uncaught (in promise) Error: decodeRGB

hi,
I need some help.

ohif-viewer: v3-stable

app-config.js:
image

result screen:
image

web console error info:
Uncaught (in promise) Error: decodeRGB: rgbBuffer length must be divisible by 3 at t (cornerstoneWADOImageLoader.min.js:1:61233) at Ee (cornerstoneWADOImageLoader.min.js:1:79329) at Ce (cornerstoneWADOImageLoader.min.js:1:79406) at cornerstoneWADOImageLoader.min.js:1:84055

ps: when i modify the app-config.js to wadouri, everything is ok.

How could I fix this? I want to use wado-rs.
thanks.

WADO Calls kills the server

Hi Again,

No is working but with ohif and dicom4chee all the studies give the same error and server crashes

I've checked de log but there's the same info

14:41:36.725 INFO storeddata\1.2.826.0.1.3680043.2.403.53.1150416105135925.1.345051961227
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] start: node src/app.js
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\ferra\AppData\Roaming\npm-cache_logs\2021-03-26T13_41_36_753Z-debug.log

Thx a lot again!

image
image
image

CORS Problem

I'm having CORS problem with my viewer on another server

Error when getting the value of series number (tag 00200011)

Dear @knopkem !
I using the dicomweb proxy to get the metadata of series.
In the case "value of series number is empty", dicomweb proxy will return the value of series number as an empty array.
image

But, I reading in the wiki of dicom tag at http://dicomlookup.com/lookup.asp?sw=Tnumber&q=(0020,0011), the type of series number is a number.
So, I thing, in this case, the dicomweb proxy should be return the value of series number as an empty string instead.
image

Can you help me check it ?

Thank you so much!

Can not display image of study when running the latest version of OHIF/Viewers( v5.0.0-v2-sprint-1)

Hi @knopkem!

Before I used your dicomweb-proxy to run OHIF/Viewers(v4.5.12)
It worked correctly.

Hovewer, I upgrade OHIF/Viewers to the latest version of OHIF/Viewers( v5.0.0-v2-sprint-1).
It is not working.

I got the error when when running the latest version of OHIF/Viewers( v5.0.0-v2-sprint-1):
Cannot GET /viewer/rs/studies/1.2.840.114257.42904.2015122104032215890/series/1.2.840.114257.42904.2015122104032215890.1/instances/1.2.840.114257.42904.2015122104032215890.1.1.1/frames/1

Please check and help me!

Can you check it and help me the solution ?
Thank you so much!

Apply Quality Factor during lossy compression.

Thank you for this lovely solution - this is a life extender for most of our legacy PACS with good web viewer like OHIF. We are looking to deploy this solution for Remote X-Ray Reporting using OHIF viewer. We found the compression option config.transferSyntax very helpful for lossless compression.

For our X-rays we like to use quality factor with following transfer syntax.
1.2.840.10008.1.2.4.51 JPEG Baseline (Processes 2 & 4) - Lossy JPEG 12-bit Image Compression
1.2.840.10008.1.2.4.81 JPEG-LS Lossy (Near- Lossless) Image Compression
1.2.840.10008.1.2.4.91 JPEG 2000 Image Compression

Is there a way to set a quality factor to improve the download speed for remote reading. We prefer to set quality factor at 80 will really help to know if there is any way to set this in config file.

regards
Rady

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.