Posts by sibigrobia

    Hi Marcel , thanks for the support.
    finally I used your dicom.sql and Mysql query/browser and got it! , it´s perfect cause just click on rigth button and the results are sended to excel file .
    Due to I needed some more tags to do my query I modified your file.
    here is my modified dicom.sql , this is mainly for plain x-ray systems (bucky systems) .
    Thanks again for your help!!!!!
    With kind regards


    [ DICOM Database layout
    # Example version for all SQL servers (mostly normalized)
    #
    # (File DICOM.SQL)
    # ** DO NOT EDIT THIS FILE UNLESS YOU KNOW WHAT YOU ARE DOING **
    #
    # Version with modality moved to the series level and EchoNumber in image table
    # Revision 3: Patient birthday and sex, bolus agent, correct field lengths
    # Revision 4: Studymodality, Station and Department in study
    # Manufacturer, Model, BodyPart and Protocol in series
    # Acqdate/time, coil, acqnumber, slicelocation and pixel info in images
    # Notes for revision 4:
    # InstitutionalDepartmentName in study (should officially be in series, but eFilm expects it in study)
    # StationName is in study (should officially be in series, but more useful in study)
    # Revision 5: Added patientID in series and images for more efficient querying
    # Revision 6: Added frame of reference UID in series table
    # Revision 7: Added ImageType in image table, StudyModality to 64 chars, AcqDate to SQL_C_DATE
    # Revision 8: Denormalized study table (add patient ID, name, birthdate) to show consistency problems
    # Revision 10: Fixed width of ReceivingCoil: to 16 chars
    # Revision 13: Added ImageID to image database
    # Revision 14: Added WorkList database with HL7 tags
    # Revision 16: Moved Stationname and InstitutionalDepartmentName to series table
    # Revision 17: EchoNumber, ReqProcDescription to 64 characters; StudyModality, EchoNumber, ImageType to DT_MSTR; use Institution instead of InstitutionalDepartmentName
    #
    #
    # 5 databases need to be defined:
    #
    # *Patient*
    # *Study*
    # *Series*
    # *Image*
    # *WorkList*
    #
    #
    # The last defined element of Study is a link back to Patient
    # The last defined element of Series is a link back to Study
    # The last defined element of Image is a link back to Series
    #
    #
    # Format for DICOM databases :
    # { Group, Element, Column Name, Column Length, SQL-Type, DICOM-Type }
    # Format for Worklist database :
    # { Group, Element, Column Name, Column Length, SQL-Type, DICOM-Type, HL7 tag}
    # HL7 tags include SEQ.N, SEQ.N.M, SEQ.N.DATE, SEQ.N.TIME, *AN, *UI
    */
    *Patient*
    {
    { 0x0010, 0x0020, "PatientID", 64, SQL_C_CHAR, DT_STR },
    { 0x0010, 0x0010, "PatientName", 64, SQL_C_CHAR, DT_STR },
    { 0x0010, 0x0030, "PatientBirthDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0010, 0x0040, "PatientSex", 16, SQL_C_CHAR, DT_STR }
    }


    *Study*
    {
    { 0x0020, 0x000d, "StudyInstanceUID", 64, SQL_C_CHAR, DT_UI },
    { 0x0008, 0x0020, "StudyDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0008, 0x0030, "StudyTime", 16, SQL_C_CHAR, DT_TIME },
    { 0x0020, 0x0010, "StudyID", 16, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x1030, "StudyDescription", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0050, "AccessionNumber", 16, SQL_C_CHAR, DT_STR },


    { 0x0008, 0x0090, "ReferPhysician", 64, SQL_C_CHAR, DT_STR },
    { 0x0032, 0x1032, "ReqPhysician", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0080, "Institution", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x1040, "Department", 64, SQL_C_CHAR, DT_STR },


    { 0x0010, 0x1010, "PatientsAge", 16, SQL_C_CHAR, DT_STR },
    { 0x0010, 0x1030, "PatientsWeight", 16, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0061, "StudyModality", 64, SQL_C_CHAR, DT_MSTR },


    { 0x0010, 0x0010, "PatientName", 64, SQL_C_CHAR, DT_STR },
    { 0x0010, 0x0030, "PatientBirthDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0010, 0x0040, "PatientSex", 16, SQL_C_CHAR, DT_STR }


    { 0x0010, 0x0020, "PatientID", 64, SQL_C_CHAR, DT_STR }
    }


    *Series*
    {
    { 0x0020, 0x000e, "SeriesInstanceUID", 64, SQL_C_CHAR, DT_UI },
    { 0x0020, 0x0011, "SeriesNumber", 12, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0021, "SeriesDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0008, 0x0031, "SeriesTime", 16, SQL_C_CHAR, DT_TIME },
    { 0x0008, 0x103e, "SeriesDescription", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0060, "Modality", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x5100, "PatientPosition", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x0010, "ContrastBolusAgent", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0070, "Manufacturer", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x1090, "ModelName", 64, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x0015, "BodyPartExamined", 64, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1030, "ProtocolName", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x1010, "StationName", 16, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0080, "Institution", 64, SQL_C_CHAR, DT_STR },
    { 0x0020, 0x0052, "FrameOfReferenceUID", 64, SQL_C_CHAR, DT_UI },
    { 0x0010, 0x0020, "SeriesPat", 64, SQL_C_CHAR, DT_STR },


    { 0x0010, 0x0010, "PatientName", 64, SQL_C_CHAR, DT_STR },
    { 0x0010, 0x0030, "PatientBirthDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0010, 0x0040, "PatientSex", 16, SQL_C_CHAR, DT_STR }


    { 0x0008, 0x0020, "StudyDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0008, 0x0030, "StudyTime", 16, SQL_C_CHAR, DT_TIME },
    { 0x0020, 0x0010, "StudyID", 16, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x1030, "StudyDescription", 64, SQL_C_CHAR, DT_STR },


    { 0x0008, 0x0090, "ReferPhysician", 64, SQL_C_CHAR, DT_STR },
    { 0x0032, 0x1032, "ReqPhysician", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x1040, "Department", 64, SQL_C_CHAR, DT_STR },


    { 0x0020, 0x000d, "StudyInstanceUID", 64, SQL_C_CHAR, DT_UI }
    }


    *Image*
    {
    { 0x0008, 0x0018, "SOPInstanceUID", 64, SQL_C_CHAR, DT_UI },
    { 0x0008, 0x0016, "SOPClassUID", 64, SQL_C_CHAR, DT_UI },
    { 0x0020, 0x0013, "ImageNumber", 12, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x0086, "EchoNumber", 64, SQL_C_CHAR, DT_MSTR },
    { 0x0028, 0x0008, "NumberOfFrames", 12, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0022, "AcqDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0008, 0x0032, "AcqTime", 16, SQL_C_CHAR, DT_TIME },
    { 0x0018, 0x1250, "ReceivingCoil", 16, SQL_C_CHAR, DT_STR },
    { 0x0020, 0x0012, "AcqNumber", 12, SQL_C_CHAR, DT_STR },
    { 0x0020, 0x1041, "SliceLocation", 16, SQL_C_CHAR, DT_STR },
    { 0x0028, 0x0002, "SamplesPerPixel", 5, SQL_C_CHAR, DT_UINT16 },
    { 0x0028, 0x0004, "PhotoMetricInterpretation", 16, SQL_C_CHAR, DT_STR },
    { 0x0028, 0x0010, "Rows", 5, SQL_C_CHAR, DT_UINT16 },
    { 0x0028, 0x0011, "Colums", 5, SQL_C_CHAR, DT_UINT16 },
    { 0x0028, 0x0101, "BitsStored", 5, SQL_C_CHAR, DT_UINT16 },
    { 0x0008, 0x0008, "ImageType", 128, SQL_C_CHAR, DT_MSTR },
    { 0x0054, 0x0400, "ImageID", 16, SQL_C_CHAR, DT_STR },
    { 0x0010, 0x0020, "ImagePat", 64, SQL_C_CHAR, DT_STR },


    { 0x0018, 0x0050, "SliceThickness", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x0072, "EffectiveDuration", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x0090, "DataCollectionDiameter", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1151, "XRayTubeCurrent", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1154, "AvgPulseWidth", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1155, "RadiationSetting", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x115e, "RadiationMode", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1170, "GeneratorPower", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1181, "CollimationType", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1302, "ScanLength", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x9311, "SpiralPitchFactor", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x9306, "SingleCollimationWidth", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x9307, "TotalCollimationWidth", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x9323, "ExposureModulationType", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x9305, "RevolutionTime", 16, SQL_C_CHAR, DT_STR },
    { 0x0020, 0x0032, "ImagePositionPatient", 64, SQL_C_CHAR, DT_STR },


    { 0x0018, 0x0015, "BodyPartExamined", 64, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1030, "ProtocolName", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0070, "Manufacturer", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x1090, "ModelName", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0090, "ReferPhysician", 64, SQL_C_CHAR, DT_STR },
    { 0x0032, 0x1032, "ReqPhysician", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0080, "Institution", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x1040, "Department", 64, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x0010, "ContrastBolusAgent", 64, SQL_C_CHAR, DT_STR },


    { 0x0010, 0x0010, "PatientName", 64, SQL_C_CHAR, DT_STR },
    { 0x0010, 0x0030, "PatientBirthDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0010, 0x0040, "PatientSex", 16, SQL_C_CHAR, DT_STR }


    { 0x0008, 0x1030, "StudyDescription", 64, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x0060, "KVP", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1153, "MicroMas", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x8150, "texpMicroseg", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1150, "ExposureTime", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1152, "Exposure", 16, SQL_C_CHAR, DT_STR },

    { 0x0018, 0x1405, "RelXrayexposure", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x115e, "areadoseproduct", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1166, "rbucky", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1110, "sid", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1700, "colimationtype", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1702, "Colvleft", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1704, "Colvrigth", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1706, "Colhsup", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1708, "Colhinf", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x5101, "Posdevisualizacion", 16, SQL_C_CHAR, DT_STR },

    { 0x0008, 0x0023, "ImageDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0008, 0x0033, "ImageTime", 16, SQL_C_CHAR, DT_TIME },


    { 0x0020, 0x000d, "StudyInstanceUID", 64, SQL_C_CHAR, DT_UI },
    { 0x0008, 0x0020, "StudyDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0008, 0x0030, "StudyTime", 16, SQL_C_CHAR, DT_TIME },
    { 0x0020, 0x0010, "StudyID", 16, SQL_C_CHAR, DT_STR },


    { 0x0020, 0x0011, "SeriesNumber", 12, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0021, "SeriesDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0008, 0x0031, "SeriesTime", 16, SQL_C_CHAR, DT_TIME },
    { 0x0008, 0x103e, "SeriesDescription", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0060, "Modality", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x5100, "PatientPosition", 16, SQL_C_CHAR, DT_STR },
    { 0x0020, 0x0052, "FrameOfReferenceUID", 64, SQL_C_CHAR, DT_UI },


    { 0x0020, 0x000e, "SeriesInstanceUID", 64, SQL_C_CHAR, DT_UI }
    }


    *WorkList*
    {
    { 0x0008, 0x0050, "AccessionNumber", 16, SQL_C_CHAR, DT_STR, "OBR.3" },
    { 0x0010, 0x0020, "PatientID", 64, SQL_C_CHAR, DT_STR, "PID.4" },
    { 0x0010, 0x0010, "PatientName", 64, SQL_C_CHAR, DT_STR, "PID.5" },
    { 0x0010, 0x0030, "PatientBirthDate", 8, SQL_C_DATE, DT_DATE, "PID.7" },
    { 0x0010, 0x0040, "PatientSex", 16, SQL_C_CHAR, DT_STR, "PID.8" },


    { 0x0010, 0x2000, "MedicalAlerts", 64, SQL_C_CHAR, DT_STR, "---" },
    { 0x0010, 0x2110, "ContrastAllergies", 64, SQL_C_CHAR, DT_STR, "---" },
    { 0x0020, 0x000d, "StudyInstanceUID", 64, SQL_C_CHAR, DT_UI, "---" },
    { 0x0032, 0x1032, "ReqPhysician", 64, SQL_C_CHAR, DT_STR, "OBR.16" },
    { 0x0032, 0x1060, "ReqProcDescription", 64, SQL_C_CHAR, DT_STR, "OBR.4.1" },


    { 0x0040, 0x0100, "--------", 0, SQL_C_CHAR, DT_STARTSEQUENCE, "---" },
    { 0x0008, 0x0060, "Modality", 16, SQL_C_CHAR, DT_STR, "OBR.21" },
    { 0x0032, 0x1070, "ReqContrastAgent", 64, SQL_C_CHAR, DT_STR, "---" },
    { 0x0040, 0x0001, "ScheduledAE", 16, SQL_C_CHAR, DT_STR, "---" },
    { 0x0040, 0x0002, "StartDate", 8, SQL_C_DATE, DT_DATE, "OBR.7.DATE" },
    { 0x0040, 0x0003, "StartTime", 16, SQL_C_CHAR, DT_TIME, "OBR.7.TIME" },
    { 0x0040, 0x0006, "PerfPhysician", 64, SQL_C_CHAR, DT_STR, "---" },
    { 0x0040, 0x0007, "SchedPSDescription", 64, SQL_C_CHAR, DT_STR, "---" },
    { 0x0040, 0x0009, "SchedPSID", 16, SQL_C_CHAR, DT_STR, "OBR.4" },
    { 0x0040, 0x0010, "SchedStationName", 16, SQL_C_CHAR, DT_STR, "OBR.24" },
    { 0x0040, 0x0011, "SchedPSLocation", 16, SQL_C_CHAR, DT_STR, "---" },
    { 0x0040, 0x0012, "PreMedication", 64, SQL_C_CHAR, DT_STR, "---" },
    { 0x0040, 0x0400, "SchedPSComments", 64, SQL_C_CHAR, DT_STR, "---" },
    { 0x0040, 0x0100, "---------", 0, SQL_C_CHAR, DT_ENDSEQUENCE, "---" },


    { 0x0040, 0x1001, "ReqProcID", 16, SQL_C_CHAR, DT_STR, "OBR.4.0" },
    { 0x0040, 0x1003, "ReqProcPriority", 16, SQL_C_CHAR, DT_STR, "OBR.27 }
    }


    ]

    Hi Marcel I added the exportconverter you sended and got this error message
    ---------------------------------------------------
    ------------ Adding image files to server -----------
    ---- Processing directory: E:\287974220090724
    ---- Processing directory: E:\287974220090724\105416328000
    ---- Processing directory: E:\287974220090724\105416328000\im_1
    [CONQUESTSRV1] ***[AddImageFile] E:\287974220090724\105416328000\im_1\1.3.46.670589.30.1.3.1.1625105436.1248425756484.1 -FAILED: file does not contain correct UIDs
    [CONQUESTSRV1] FreeStore Left 2523 on D:\
    [CONQUESTSRV1] Added file: D:\imagenes\2879742\1.3.46.670589.30.1.3.1.1625105436.1248425756484.1_0001_000001_12525837130005.v2
    -----------------------------------------------------
    -----------------------------------------------------
    Sure I miss something
    Any clue What I´ve done wrong?
    Thanks in advance

    Rigth it´s for dose awarenes I´ve got 50 DVDs and need to dump those dicom info to compare (the info is of course in the dicom header) between the same kind of procedure and the differents technical exposure data ,and every DVD has about 400 patients so ... manually it´s a nigthmare to open every patien dump the dicom header and copy and paste into excel or other application to get statistical results
    Cause of that I was wandering if dragging and drop the DVD into conquest window and using exporconverters could be done in some way
    Any suggestion?
    Thanks in advance

    Hi , first of all Thanks to Marcel for this great tool!!!
    Mi question is I need to dump some dicom info of all database patients ( patname ,Kv, Ma, exposureTime....) for statistical reasons and make avalaible to use it in an excel file ( to make statistical desviation and calculate averages for some parameters)
    I was thinking to use exporconverters but I´m nor sure how ,or may be It would be possible straigth from query to Mysql (in this case I´m absolutely lost how to handle it :( )
    If somebody can give me a tip It would be apreciated
    Thanks in advance!

    Hi Marcel firts of all many, many Thanks for you support . there is a question how to start GUI? cause never appears such this files when no printing, and the server is up and runnig so as you say the problem should relays in the comunication with server, but I can send images from clinical systems to conquest but I cannot print from the same clinical sites.
    after these messages I send same pictures to store with no problem

    I found in some cases conquest can´t not get the printer in spite of it is avaliable , probably it means somethig about windows configuration cause in some pc works with no problem but in others don´t , it fails getting the printer .
    çAny suggestion?
    here is the debugg file


    20080415 18:14:42 *** Not enough rights to write in MAG0
    20080415 18:14:42 DGATE (1.4.13, build Fri Nov 16 23:13:02 2007) is running as threaded server
    4/15/2008 6:15:36 PM [CONQUESTSRV1] DGATE (1.4.13, build Fri Nov 16 23:13:02 2007) is running as threaded server
    4/15/2008 6:15:36 PM [CONQUESTSRV1] User interface test: local server is running!
    4/15/2008 6:15:36 PM [CONQUESTSRV1] User interface test: local server is running!
    4/15/2008 6:15:37 PM [CONQUESTSRV1] db extract for GUI of patient dbf
    4/15/2008 6:15:43 PM [CONQUESTSRV1] User interface test: local server is running!
    4/15/2008 6:15:43 PM [CONQUESTSRV1]
    4/15/2008 6:15:43 PM [CONQUESTSRV1] UPACS THREAD 0: STARTED AT: Tue Apr 15 18:15:43 2008
    4/15/2008 6:15:43 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 6:15:43 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 6:15:43 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 6:15:43 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 6:15:43 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 6:15:43 PM [CONQUESTSRV1] getting Printer
    4/15/2008 6:15:43 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 6:15:44 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 0
    4/15/2008 6:15:44 PM [CONQUESTSRV1] UPACS THREAD 0: ENDED AT: Tue Apr 15 18:15:44 2008
    4/15/2008 6:15:44 PM [CONQUESTSRV1] UPACS THREAD 0: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 6:15:52 PM [CONQUESTSRV1] DGATE (1.4.13, build Fri Nov 16 23:13:02 2007) is running as threaded server
    4/15/2008 6:15:52 PM [CONQUESTSRV1] User interface test: local server is running!
    20080415 18:16:00 DGATE (1.4.13, build Fri Nov 16 23:13:02 2007) is running as threaded server
    4/15/2008 6:16:02 PM [CONQUESTSRV1] User interface test: local server is running!
    4/15/2008 6:16:04 PM [CONQUESTSRV1]
    4/15/2008 6:16:04 PM [CONQUESTSRV1] UPACS THREAD 0: STARTED AT: Tue Apr 15 18:16:04 2008
    4/15/2008 6:16:04 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 6:16:04 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 6:16:04 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 6:16:04 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 6:16:04 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 6:16:04 PM [CONQUESTSRV1] getting Printer
    4/15/2008 6:16:04 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 6:16:05 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 0
    4/15/2008 6:16:05 PM [CONQUESTSRV1] UPACS THREAD 0: ENDED AT: Tue Apr 15 18:16:05 2008
    4/15/2008 6:16:05 PM [CONQUESTSRV1] UPACS THREAD 0: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 6:16:25 PM [CONQUESTSRV1]
    4/15/2008 6:16:25 PM [CONQUESTSRV1] UPACS THREAD 1: STARTED AT: Tue Apr 15 18:16:25 2008
    4/15/2008 6:16:25 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 6:16:25 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 6:16:25 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 6:16:25 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 6:16:25 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 6:16:25 PM [CONQUESTSRV1] getting Printer
    4/15/2008 6:16:25 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 6:16:26 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 1
    4/15/2008 6:16:26 PM [CONQUESTSRV1] UPACS THREAD 1: ENDED AT: Tue Apr 15 18:16:26 2008
    4/15/2008 6:16:26 PM [CONQUESTSRV1] UPACS THREAD 1: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:16:44 DGATE (1.4.13, build Fri Nov 16 23:13:02 2007) is running as threaded server
    4/15/2008 6:16:46 PM [CONQUESTSRV1]
    4/15/2008 6:16:46 PM [CONQUESTSRV1] UPACS THREAD 0: STARTED AT: Tue Apr 15 18:16:46 2008
    4/15/2008 6:16:46 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 6:16:46 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 6:16:46 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 6:16:46 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 6:16:46 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 6:16:46 PM [CONQUESTSRV1] getting Printer
    4/15/2008 6:16:46 PM [CONQUESTSRV1] User interface test: local server is running!
    4/15/2008 6:16:47 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 6:16:47 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 0
    4/15/2008 6:16:47 PM [CONQUESTSRV1] UPACS THREAD 0: ENDED AT: Tue Apr 15 18:16:47 2008
    4/15/2008 6:16:47 PM [CONQUESTSRV1] UPACS THREAD 0: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 6:16:51 PM [CONQUESTSRV1] set normal log from GUI
    [CONQUESTSRV1] 20080415 18:17:08
    [CONQUESTSRV1] 20080415 18:17:08 UPACS THREAD 1: STARTED AT: Tue Apr 15 18:17:07 2008
    [CONQUESTSRV1] 20080415 18:17:08 Calling Application Title : "AE_PHILIPSFD10 "
    [CONQUESTSRV1] 20080415 18:17:08 Called Application Title : "CONQUESTSRV1 "
    [CONQUESTSRV1] 20080415 18:17:08 Application Context : "1.2.840.10008.3.1.1.1"
    [CONQUESTSRV1] 20080415 18:17:08 Presentation Context 0 "1.2.840.10008.1.1"
    [CONQUESTSRV1] 20080415 18:17:08 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    [CONQUESTSRV1] 20080415 18:17:08 getting Printer
    [CONQUESTSRV1] 20080415 18:17:08 Creating Basic Film Session
    [CONQUESTSRV1] 20080415 18:17:08 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 1
    [CONQUESTSRV1] 20080415 18:17:08 UPACS THREAD 1: ENDED AT: Tue Apr 15 18:17:08 2008
    [CONQUESTSRV1] 20080415 18:17:08 UPACS THREAD 1: TOTAL RUNNING TIME: 1 SECONDS
    [CONQUESTSRV1] 20080415 18:17:28
    [CONQUESTSRV1] 20080415 18:17:28 UPACS THREAD 2: STARTED AT: Tue Apr 15 18:17:28 2008
    [CONQUESTSRV1] 20080415 18:17:28 Calling Application Title : "AE_PHILIPSFD10 "
    [CONQUESTSRV1] 20080415 18:17:28 Called Application Title : "CONQUESTSRV1 "
    [CONQUESTSRV1] 20080415 18:17:28 Application Context : "1.2.840.10008.3.1.1.1"
    [CONQUESTSRV1] 20080415 18:17:28 Presentation Context 0 "1.2.840.10008.1.1"
    [CONQUESTSRV1] 20080415 18:17:28 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    [CONQUESTSRV1] 20080415 18:17:28 getting Printer
    [CONQUESTSRV1] 20080415 18:17:29 Creating Basic Film Session
    [CONQUESTSRV1] 20080415 18:17:29 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 2
    [CONQUESTSRV1] 20080415 18:17:29 UPACS THREAD 2: ENDED AT: Tue Apr 15 18:17:29 2008
    [CONQUESTSRV1] 20080415 18:17:29 UPACS THREAD 2: TOTAL RUNNING TIME: 1 SECONDS
    [CONQUESTSRV1] 20080415 18:17:49
    [CONQUESTSRV1] 20080415 18:17:49 UPACS THREAD 3: STARTED AT: Tue Apr 15 18:17:49 2008
    [CONQUESTSRV1] 20080415 18:17:49 Calling Application Title : "AE_PHILIPSFD10 "
    [CONQUESTSRV1] 20080415 18:17:49 Called Application Title : "CONQUESTSRV1 "
    [CONQUESTSRV1] 20080415 18:17:49 Application Context : "1.2.840.10008.3.1.1.1"
    [CONQUESTSRV1] 20080415 18:17:49 Presentation Context 0 "1.2.840.10008.1.1"
    [CONQUESTSRV1] 20080415 18:17:49 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    [CONQUESTSRV1] 20080415 18:17:49 getting Printer
    [CONQUESTSRV1] 20080415 18:17:50 Creating Basic Film Session
    [CONQUESTSRV1] 20080415 18:17:50 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 3
    [CONQUESTSRV1] 20080415 18:17:50 UPACS THREAD 3: ENDED AT: Tue Apr 15 18:17:50 2008
    [CONQUESTSRV1] 20080415 18:17:50 UPACS THREAD 3: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:18:27 DGATE (1.4.13, build Fri Nov 16 23:13:02 2007) is running as threaded server
    20080415 18:19:01
    20080415 18:19:01 UPACS THREAD 0: STARTED AT: Tue Apr 15 18:19:00 2008
    20080415 18:19:01 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:19:01 Called Application Title : "CONQUESTSRV1 "
    20080415 18:19:01 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:19:01 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:19:01 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:19:01 getting Printer
    20080415 18:19:01 Creating Basic Film Session
    20080415 18:19:01 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 0
    20080415 18:19:01 UPACS THREAD 0: ENDED AT: Tue Apr 15 18:19:01 2008
    20080415 18:19:01 UPACS THREAD 0: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:19:22
    20080415 18:19:22 UPACS THREAD 1: STARTED AT: Tue Apr 15 18:19:22 2008
    20080415 18:19:22 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:19:22 Called Application Title : "CONQUESTSRV1 "
    20080415 18:19:22 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:19:22 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:19:22 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:19:22 getting Printer
    20080415 18:19:22 Creating Basic Film Session
    20080415 18:19:22 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 1
    20080415 18:19:22 UPACS THREAD 1: ENDED AT: Tue Apr 15 18:19:22 2008
    20080415 18:19:22 UPACS THREAD 1: TOTAL RUNNING TIME: 0 SECONDS
    20080415 18:19:43
    20080415 18:19:43 UPACS THREAD 2: STARTED AT: Tue Apr 15 18:19:43 2008
    20080415 18:19:43 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:19:43 Called Application Title : "CONQUESTSRV1 "
    20080415 18:19:43 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:19:43 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:19:43 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:19:43 getting Printer
    20080415 18:19:43 Creating Basic Film Session
    20080415 18:19:43 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 2
    20080415 18:19:44 UPACS THREAD 2: ENDED AT: Tue Apr 15 18:19:44 2008
    20080415 18:19:44 UPACS THREAD 2: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:20:04
    20080415 18:20:04 UPACS THREAD 3: STARTED AT: Tue Apr 15 18:20:04 2008
    20080415 18:20:04 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:20:04 Called Application Title : "CONQUESTSRV1 "
    20080415 18:20:04 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:20:04 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:20:04 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:20:04 getting Printer
    20080415 18:20:04 Creating Basic Film Session
    20080415 18:20:04 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 3
    20080415 18:20:05 UPACS THREAD 3: ENDED AT: Tue Apr 15 18:20:05 2008
    20080415 18:20:05 UPACS THREAD 3: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:20:25
    20080415 18:20:25 UPACS THREAD 4: STARTED AT: Tue Apr 15 18:20:25 2008
    20080415 18:20:25 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:20:25 Called Application Title : "CONQUESTSRV1 "
    20080415 18:20:25 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:20:25 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:20:25 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:20:25 getting Printer
    20080415 18:20:25 Creating Basic Film Session
    20080415 18:20:25 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 4
    20080415 18:20:26 UPACS THREAD 4: ENDED AT: Tue Apr 15 18:20:26 2008
    20080415 18:20:26 UPACS THREAD 4: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:20:46
    20080415 18:20:46 UPACS THREAD 5: STARTED AT: Tue Apr 15 18:20:46 2008
    20080415 18:20:46 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:20:46 Called Application Title : "CONQUESTSRV1 "
    20080415 18:20:46 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:20:46 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:20:46 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:20:46 getting Printer
    20080415 18:20:46 Creating Basic Film Session
    20080415 18:20:46 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 5
    20080415 18:20:47 UPACS THREAD 5: ENDED AT: Tue Apr 15 18:20:47 2008
    20080415 18:20:47 UPACS THREAD 5: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:21:07
    20080415 18:21:07 UPACS THREAD 6: STARTED AT: Tue Apr 15 18:21:07 2008
    20080415 18:21:07 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:21:07 Called Application Title : "CONQUESTSRV1 "
    20080415 18:21:07 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:21:07 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:21:07 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:21:07 getting Printer
    20080415 18:21:07 Creating Basic Film Session
    20080415 18:21:07 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 6
    20080415 18:21:08 UPACS THREAD 6: ENDED AT: Tue Apr 15 18:21:08 2008
    20080415 18:21:08 UPACS THREAD 6: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:21:28
    20080415 18:21:28 UPACS THREAD 7: STARTED AT: Tue Apr 15 18:21:28 2008
    20080415 18:21:28 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:21:28 Called Application Title : "CONQUESTSRV1 "
    20080415 18:21:28 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:21:28 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:21:28 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:21:28 getting Printer
    20080415 18:21:28 Creating Basic Film Session
    20080415 18:21:28 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 7
    20080415 18:21:29 UPACS THREAD 7: ENDED AT: Tue Apr 15 18:21:29 2008
    20080415 18:21:29 UPACS THREAD 7: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:21:49
    20080415 18:21:49 UPACS THREAD 8: STARTED AT: Tue Apr 15 18:21:49 2008
    20080415 18:21:49 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:21:49 Called Application Title : "CONQUESTSRV1 "
    20080415 18:21:49 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:21:49 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:21:49 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:21:49 getting Printer
    20080415 18:21:49 Creating Basic Film Session
    20080415 18:21:50 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 8
    20080415 18:21:50 UPACS THREAD 8: ENDED AT: Tue Apr 15 18:21:50 2008
    20080415 18:21:50 UPACS THREAD 8: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:22:10
    20080415 18:22:10 UPACS THREAD 9: STARTED AT: Tue Apr 15 18:22:10 2008
    20080415 18:22:10 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:22:10 Called Application Title : "CONQUESTSRV1 "
    20080415 18:22:10 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:22:10 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:22:10 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:22:10 getting Printer
    20080415 18:22:10 Creating Basic Film Session
    20080415 18:22:11 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 9
    20080415 18:22:11 UPACS THREAD 9: ENDED AT: Tue Apr 15 18:22:11 2008
    20080415 18:22:11 UPACS THREAD 9: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:22:31
    20080415 18:22:31 UPACS THREAD 10: STARTED AT: Tue Apr 15 18:22:31 2008
    20080415 18:22:31 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:22:31 Called Application Title : "CONQUESTSRV1 "
    20080415 18:22:31 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:22:31 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:22:31 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:22:31 getting Printer
    20080415 18:22:31 Creating Basic Film Session
    20080415 18:22:32 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 10
    20080415 18:22:32 UPACS THREAD 10: ENDED AT: Tue Apr 15 18:22:32 2008
    20080415 18:22:32 UPACS THREAD 10: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:22:52
    20080415 18:22:52 UPACS THREAD 11: STARTED AT: Tue Apr 15 18:22:52 2008
    20080415 18:22:52 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:22:52 Called Application Title : "CONQUESTSRV1 "
    20080415 18:22:52 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:22:52 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:22:52 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:22:52 getting Printer
    20080415 18:22:52 Creating Basic Film Session
    20080415 18:22:53 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 11
    20080415 18:22:53 UPACS THREAD 11: ENDED AT: Tue Apr 15 18:22:53 2008
    20080415 18:22:53 UPACS THREAD 11: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:23:13
    20080415 18:23:13 UPACS THREAD 12: STARTED AT: Tue Apr 15 18:23:13 2008
    20080415 18:23:13 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:23:13 Called Application Title : "CONQUESTSRV1 "
    20080415 18:23:13 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:23:13 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:23:13 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:23:13 getting Printer
    20080415 18:23:14 Creating Basic Film Session
    20080415 18:23:14 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 12
    20080415 18:23:14 UPACS THREAD 12: ENDED AT: Tue Apr 15 18:23:14 2008
    20080415 18:23:14 UPACS THREAD 12: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:23:34
    20080415 18:23:34 UPACS THREAD 13: STARTED AT: Tue Apr 15 18:23:34 2008
    20080415 18:23:34 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:23:34 Called Application Title : "CONQUESTSRV1 "
    20080415 18:23:34 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:23:34 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:23:34 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:23:34 getting Printer
    20080415 18:23:35 Creating Basic Film Session
    20080415 18:23:35 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 13
    20080415 18:23:35 UPACS THREAD 13: ENDED AT: Tue Apr 15 18:23:35 2008
    20080415 18:23:35 UPACS THREAD 13: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:23:55
    20080415 18:23:55 UPACS THREAD 14: STARTED AT: Tue Apr 15 18:23:55 2008
    20080415 18:23:55 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:23:55 Called Application Title : "CONQUESTSRV1 "
    20080415 18:23:55 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:23:55 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:23:55 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:23:55 getting Printer
    20080415 18:23:56 Creating Basic Film Session
    20080415 18:23:56 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 14
    20080415 18:23:56 UPACS THREAD 14: ENDED AT: Tue Apr 15 18:23:56 2008
    20080415 18:23:56 UPACS THREAD 14: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:24:16
    20080415 18:24:16 UPACS THREAD 15: STARTED AT: Tue Apr 15 18:24:16 2008
    20080415 18:24:16 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:24:16 Called Application Title : "CONQUESTSRV1 "
    20080415 18:24:16 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:24:16 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:24:16 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:24:16 getting Printer
    20080415 18:24:17 Creating Basic Film Session
    20080415 18:24:17 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 15
    20080415 18:24:17 UPACS THREAD 15: ENDED AT: Tue Apr 15 18:24:17 2008
    20080415 18:24:17 UPACS THREAD 15: TOTAL RUNNING TIME: 1 SECONDS
    20080415 18:24:38
    20080415 18:24:38 UPACS THREAD 16: STARTED AT: Tue Apr 15 18:24:37 2008
    20080415 18:24:38 Calling Application Title : "AE_PHILIPSFD10 "
    20080415 18:24:38 Called Application Title : "CONQUESTSRV1 "
    20080415 18:24:38 Application Context : "1.2.840.10008.3.1.1.1"
    20080415 18:24:38 Presentation Context 0 "1.2.840.10008.1.1"
    20080415 18:24:38 Presentation Context 1 "1.2.840.10008.5.1.1.9"
    20080415 18:24:38 getting Printer
    20080415 18:24:38 Creating Basic Film Session
    20080415 18:24:38 Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 16
    20080415 18:24:38 UPACS THREAD 16: ENDED AT: Tue Apr 15 18:24:38 2008
    20080415 18:24:38 UPACS THREAD 16: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 6:24:51 PM [CONQUESTSRV1] User interface test: local server is running!
    4/15/2008 6:24:58 PM [CONQUESTSRV1]
    4/15/2008 6:24:58 PM [CONQUESTSRV1] UPACS THREAD 17: STARTED AT: Tue Apr 15 18:24:58 2008
    4/15/2008 6:24:58 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 6:24:58 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 6:24:58 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 6:24:58 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 6:24:58 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 6:24:58 PM [CONQUESTSRV1] getting Printer
    4/15/2008 6:24:59 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 6:24:59 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 17
    4/15/2008 6:24:59 PM [CONQUESTSRV1] UPACS THREAD 17: ENDED AT: Tue Apr 15 18:24:59 2008
    4/15/2008 6:24:59 PM [CONQUESTSRV1] UPACS THREAD 17: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 6:25:20 PM [CONQUESTSRV1]
    4/15/2008 6:25:20 PM [CONQUESTSRV1] UPACS THREAD 18: STARTED AT: Tue Apr 15 18:25:19 2008
    4/15/2008 6:25:20 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 6:25:20 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 6:25:20 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 6:25:20 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 6:25:20 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 6:25:20 PM [CONQUESTSRV1] getting Printer
    4/15/2008 6:25:20 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 6:25:20 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 18
    4/15/2008 6:25:20 PM [CONQUESTSRV1] UPACS THREAD 18: ENDED AT: Tue Apr 15 18:25:20 2008
    4/15/2008 6:25:20 PM [CONQUESTSRV1] UPACS THREAD 18: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 7:30:55 PM [CONQUESTSRV1] User interface test: local server is running!
    4/15/2008 7:31:00 PM [CONQUESTSRV1] set debug level from GUI
    4/15/2008 7:31:00 PM [CONQUESTSRV1] set debug log from GUI
    4/15/2008 7:31:42 PM [CONQUESTSRV1]
    4/15/2008 7:31:42 PM [CONQUESTSRV1] UPACS THREAD 19: STARTED AT: Tue Apr 15 19:31:42 2008
    4/15/2008 7:31:42 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:31:42 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:31:42 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:31:42 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:31:42 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:31:42 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:31:42 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:31:42 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:31:42 PM [CONQUESTSRV1] Message ID := 0028
    4/15/2008 7:31:42 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:31:43 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:31:43 PM [CONQUESTSRV1] Message ID := 004d
    4/15/2008 7:31:43 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:31:43 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:31:43 PM [CONQUESTSRV1] Message ID := 004e
    4/15/2008 7:31:43 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 19
    4/15/2008 7:31:43 PM [CONQUESTSRV1] UPACS THREAD 19: ENDED AT: Tue Apr 15 19:31:43 2008
    4/15/2008 7:31:43 PM [CONQUESTSRV1] UPACS THREAD 19: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 7:32:03 PM [CONQUESTSRV1]
    4/15/2008 7:32:03 PM [CONQUESTSRV1] UPACS THREAD 20: STARTED AT: Tue Apr 15 19:32:03 2008
    4/15/2008 7:32:03 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:32:03 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:32:03 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:32:03 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:32:03 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:32:03 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:32:03 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:32:03 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:32:03 PM [CONQUESTSRV1] Message ID := 0029
    4/15/2008 7:32:03 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:32:04 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:32:04 PM [CONQUESTSRV1] Message ID := 004f
    4/15/2008 7:32:04 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:32:04 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:32:04 PM [CONQUESTSRV1] Message ID := 0050
    4/15/2008 7:32:04 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 20
    4/15/2008 7:32:04 PM [CONQUESTSRV1] UPACS THREAD 20: ENDED AT: Tue Apr 15 19:32:04 2008
    4/15/2008 7:32:04 PM [CONQUESTSRV1] UPACS THREAD 20: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 7:32:24 PM [CONQUESTSRV1]
    4/15/2008 7:32:24 PM [CONQUESTSRV1] UPACS THREAD 21: STARTED AT: Tue Apr 15 19:32:24 2008
    4/15/2008 7:32:24 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:32:24 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:32:24 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:32:24 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:32:24 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:32:24 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:32:24 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:32:24 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:32:24 PM [CONQUESTSRV1] Message ID := 002a
    4/15/2008 7:32:24 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:32:25 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:32:25 PM [CONQUESTSRV1] Message ID := 0051
    4/15/2008 7:32:25 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:32:25 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:32:25 PM [CONQUESTSRV1] Message ID := 0052
    4/15/2008 7:32:25 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 21
    4/15/2008 7:32:25 PM [CONQUESTSRV1] UPACS THREAD 21: ENDED AT: Tue Apr 15 19:32:25 2008
    4/15/2008 7:32:25 PM [CONQUESTSRV1] UPACS THREAD 21: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 7:32:45 PM [CONQUESTSRV1]
    4/15/2008 7:32:45 PM [CONQUESTSRV1] UPACS THREAD 22: STARTED AT: Tue Apr 15 19:32:45 2008
    4/15/2008 7:32:45 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:32:45 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:32:45 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:32:45 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:32:45 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:32:45 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:32:45 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:32:45 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:32:45 PM [CONQUESTSRV1] Message ID := 002b
    4/15/2008 7:32:45 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:32:45 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:32:45 PM [CONQUESTSRV1] Message ID := 0053
    4/15/2008 7:32:45 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:32:46 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:32:46 PM [CONQUESTSRV1] Message ID := 0054
    4/15/2008 7:32:46 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 22
    4/15/2008 7:32:46 PM [CONQUESTSRV1] UPACS THREAD 22: ENDED AT: Tue Apr 15 19:32:46 2008
    4/15/2008 7:32:46 PM [CONQUESTSRV1] UPACS THREAD 22: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 7:33:06 PM [CONQUESTSRV1]
    4/15/2008 7:33:06 PM [CONQUESTSRV1] UPACS THREAD 23: STARTED AT: Tue Apr 15 19:33:06 2008
    4/15/2008 7:33:06 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:33:06 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:33:06 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:33:06 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:33:06 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:33:06 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:33:06 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:33:06 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:33:06 PM [CONQUESTSRV1] Message ID := 002c
    4/15/2008 7:33:06 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:33:06 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:33:06 PM [CONQUESTSRV1] Message ID := 0055
    4/15/2008 7:33:06 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:33:06 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:33:06 PM [CONQUESTSRV1] Message ID := 0056
    4/15/2008 7:33:06 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 23
    4/15/2008 7:33:07 PM [CONQUESTSRV1] UPACS THREAD 23: ENDED AT: Tue Apr 15 19:33:07 2008
    4/15/2008 7:33:07 PM [CONQUESTSRV1] UPACS THREAD 23: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 7:33:23 PM [CONQUESTSRV1] Re-reading acrnema.map from GUI
    4/15/2008 7:33:27 PM [CONQUESTSRV1]
    4/15/2008 7:33:27 PM [CONQUESTSRV1] UPACS THREAD 24: STARTED AT: Tue Apr 15 19:33:27 2008
    4/15/2008 7:33:27 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:33:27 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:33:27 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:33:27 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:33:27 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:33:27 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:33:27 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:33:27 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:33:27 PM [CONQUESTSRV1] Message ID := 002d
    4/15/2008 7:33:27 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:33:27 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:33:27 PM [CONQUESTSRV1] Message ID := 0057
    4/15/2008 7:33:27 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:33:27 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:33:27 PM [CONQUESTSRV1] Message ID := 0058
    4/15/2008 7:33:27 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 24
    4/15/2008 7:33:28 PM [CONQUESTSRV1] UPACS THREAD 24: ENDED AT: Tue Apr 15 19:33:28 2008
    4/15/2008 7:33:28 PM [CONQUESTSRV1] UPACS THREAD 24: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 7:33:48 PM [CONQUESTSRV1]
    4/15/2008 7:33:48 PM [CONQUESTSRV1] UPACS THREAD 25: STARTED AT: Tue Apr 15 19:33:48 2008
    4/15/2008 7:33:48 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:33:48 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:33:48 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:33:48 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:33:48 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:33:48 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:33:48 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:33:48 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:33:48 PM [CONQUESTSRV1] Message ID := 002e
    4/15/2008 7:33:48 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:33:48 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:33:48 PM [CONQUESTSRV1] Message ID := 0059
    4/15/2008 7:33:48 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:33:48 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:33:48 PM [CONQUESTSRV1] Message ID := 005a
    4/15/2008 7:33:48 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 25
    4/15/2008 7:33:49 PM [CONQUESTSRV1] UPACS THREAD 25: ENDED AT: Tue Apr 15 19:33:49 2008
    4/15/2008 7:33:49 PM [CONQUESTSRV1] UPACS THREAD 25: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 7:34:09 PM [CONQUESTSRV1]
    4/15/2008 7:34:09 PM [CONQUESTSRV1] UPACS THREAD 26: STARTED AT: Tue Apr 15 19:34:09 2008
    4/15/2008 7:34:09 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:34:09 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:34:09 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:34:09 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:34:09 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:34:09 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:34:09 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:34:09 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:34:09 PM [CONQUESTSRV1] Message ID := 002f
    4/15/2008 7:34:09 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:34:09 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:34:09 PM [CONQUESTSRV1] Message ID := 005b
    4/15/2008 7:34:09 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:34:09 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:34:09 PM [CONQUESTSRV1] Message ID := 005c
    4/15/2008 7:34:09 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 26
    4/15/2008 7:34:09 PM [CONQUESTSRV1] UPACS THREAD 26: ENDED AT: Tue Apr 15 19:34:09 2008
    4/15/2008 7:34:09 PM [CONQUESTSRV1] UPACS THREAD 26: TOTAL RUNNING TIME: 0 SECONDS
    4/15/2008 7:34:30 PM [CONQUESTSRV1]
    4/15/2008 7:34:30 PM [CONQUESTSRV1] UPACS THREAD 27: STARTED AT: Tue Apr 15 19:34:30 2008
    4/15/2008 7:34:30 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:34:30 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:34:30 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:34:30 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:34:30 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:34:30 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:34:30 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:34:30 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:34:30 PM [CONQUESTSRV1] Message ID := 0030
    4/15/2008 7:34:30 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:34:30 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:34:30 PM [CONQUESTSRV1] Message ID := 005d
    4/15/2008 7:34:30 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:34:30 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:34:30 PM [CONQUESTSRV1] Message ID := 005e
    4/15/2008 7:34:30 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 27
    4/15/2008 7:34:30 PM [CONQUESTSRV1] UPACS THREAD 27: ENDED AT: Tue Apr 15 19:34:30 2008
    4/15/2008 7:34:30 PM [CONQUESTSRV1] UPACS THREAD 27: TOTAL RUNNING TIME: 0 SECONDS
    4/15/2008 7:34:51 PM [CONQUESTSRV1]
    4/15/2008 7:34:51 PM [CONQUESTSRV1] UPACS THREAD 28: STARTED AT: Tue Apr 15 19:34:50 2008
    4/15/2008 7:34:51 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:34:51 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:34:51 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:34:51 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:34:51 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:34:51 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:34:51 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:34:51 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:34:51 PM [CONQUESTSRV1] Message ID := 0031
    4/15/2008 7:34:51 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:34:51 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:34:51 PM [CONQUESTSRV1] Message ID := 005f
    4/15/2008 7:34:51 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:34:51 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:34:51 PM [CONQUESTSRV1] Message ID := 0060
    4/15/2008 7:34:51 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 28
    4/15/2008 7:34:51 PM [CONQUESTSRV1] UPACS THREAD 28: ENDED AT: Tue Apr 15 19:34:51 2008
    4/15/2008 7:34:51 PM [CONQUESTSRV1] UPACS THREAD 28: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 7:35:12 PM [CONQUESTSRV1]
    4/15/2008 7:35:12 PM [CONQUESTSRV1] UPACS THREAD 29: STARTED AT: Tue Apr 15 19:35:11 2008
    4/15/2008 7:35:12 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:35:12 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:35:12 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:35:12 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:35:12 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:35:12 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:35:12 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:35:12 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:35:12 PM [CONQUESTSRV1] Message ID := 0032
    4/15/2008 7:35:12 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:35:12 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:35:12 PM [CONQUESTSRV1] Message ID := 0061
    4/15/2008 7:35:12 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:35:12 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:35:12 PM [CONQUESTSRV1] Message ID := 0062
    4/15/2008 7:35:12 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 29
    4/15/2008 7:35:12 PM [CONQUESTSRV1] UPACS THREAD 29: ENDED AT: Tue Apr 15 19:35:12 2008
    4/15/2008 7:35:12 PM [CONQUESTSRV1] UPACS THREAD 29: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 7:35:32 PM [CONQUESTSRV1]
    4/15/2008 7:35:32 PM [CONQUESTSRV1] UPACS THREAD 30: STARTED AT: Tue Apr 15 19:35:32 2008
    4/15/2008 7:35:32 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:35:32 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:35:32 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:35:32 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:35:32 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:35:32 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:35:32 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:35:32 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:35:32 PM [CONQUESTSRV1] Message ID := 0033
    4/15/2008 7:35:32 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:35:33 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:35:33 PM [CONQUESTSRV1] Message ID := 0063
    4/15/2008 7:35:33 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:35:33 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:35:33 PM [CONQUESTSRV1] Message ID := 0064
    4/15/2008 7:35:33 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 30
    4/15/2008 7:35:33 PM [CONQUESTSRV1] UPACS THREAD 30: ENDED AT: Tue Apr 15 19:35:33 2008
    4/15/2008 7:35:33 PM [CONQUESTSRV1] UPACS THREAD 30: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 7:35:53 PM [CONQUESTSRV1]
    4/15/2008 7:35:53 PM [CONQUESTSRV1] UPACS THREAD 31: STARTED AT: Tue Apr 15 19:35:53 2008
    4/15/2008 7:35:53 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:35:53 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:35:53 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:35:53 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:35:53 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:35:53 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:35:53 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:35:53 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:35:53 PM [CONQUESTSRV1] Message ID := 0034
    4/15/2008 7:35:53 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:35:54 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:35:54 PM [CONQUESTSRV1] Message ID := 0065
    4/15/2008 7:35:54 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:35:54 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:35:54 PM [CONQUESTSRV1] Message ID := 0066
    4/15/2008 7:35:54 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 31
    4/15/2008 7:35:54 PM [CONQUESTSRV1] UPACS THREAD 31: ENDED AT: Tue Apr 15 19:35:54 2008
    4/15/2008 7:35:54 PM [CONQUESTSRV1] UPACS THREAD 31: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 7:36:15 PM [CONQUESTSRV1]
    4/15/2008 7:36:15 PM [CONQUESTSRV1] UPACS THREAD 32: STARTED AT: Tue Apr 15 19:36:14 2008
    4/15/2008 7:36:15 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:36:15 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:36:15 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:36:15 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:36:15 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:36:15 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:36:15 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:36:15 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:36:15 PM [CONQUESTSRV1] Message ID := 0035
    4/15/2008 7:36:15 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:36:16 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:36:16 PM [CONQUESTSRV1] Message ID := 0067
    4/15/2008 7:36:16 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:36:16 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:36:16 PM [CONQUESTSRV1] Message ID := 0068
    4/15/2008 7:36:16 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 32
    4/15/2008 7:36:16 PM [CONQUESTSRV1] UPACS THREAD 32: ENDED AT: Tue Apr 15 19:36:16 2008
    4/15/2008 7:36:16 PM [CONQUESTSRV1] UPACS THREAD 32: TOTAL RUNNING TIME: 2 SECONDS
    4/15/2008 7:36:37 PM [CONQUESTSRV1]
    4/15/2008 7:36:37 PM [CONQUESTSRV1] UPACS THREAD 33: STARTED AT: Tue Apr 15 19:36:36 2008
    4/15/2008 7:36:37 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:36:37 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:36:37 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:36:37 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:36:37 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:36:37 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:36:37 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:36:37 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:36:37 PM [CONQUESTSRV1] Message ID := 0036
    4/15/2008 7:36:37 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:36:37 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:36:37 PM [CONQUESTSRV1] Message ID := 0069
    4/15/2008 7:36:37 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:36:37 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:36:37 PM [CONQUESTSRV1] Message ID := 006a
    4/15/2008 7:36:37 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 33
    4/15/2008 7:36:37 PM [CONQUESTSRV1] UPACS THREAD 33: ENDED AT: Tue Apr 15 19:36:37 2008
    4/15/2008 7:36:37 PM [CONQUESTSRV1] UPACS THREAD 33: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 7:36:58 PM [CONQUESTSRV1]
    4/15/2008 7:36:58 PM [CONQUESTSRV1] UPACS THREAD 34: STARTED AT: Tue Apr 15 19:36:57 2008
    4/15/2008 7:36:58 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:36:58 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:36:58 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:36:58 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:36:58 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:36:58 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:36:58 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:36:58 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:36:58 PM [CONQUESTSRV1] Message ID := 0037
    4/15/2008 7:36:58 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:36:58 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:36:58 PM [CONQUESTSRV1] Message ID := 006b
    4/15/2008 7:36:58 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:36:58 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:36:58 PM [CONQUESTSRV1] Message ID := 006c
    4/15/2008 7:36:58 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 34
    4/15/2008 7:36:58 PM [CONQUESTSRV1] UPACS THREAD 34: ENDED AT: Tue Apr 15 19:36:58 2008
    4/15/2008 7:36:58 PM [CONQUESTSRV1] UPACS THREAD 34: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 7:37:19 PM [CONQUESTSRV1]
    4/15/2008 7:37:19 PM [CONQUESTSRV1] UPACS THREAD 35: STARTED AT: Tue Apr 15 19:37:18 2008
    4/15/2008 7:37:19 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:37:19 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:37:19 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:37:19 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:37:19 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:37:19 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"
    4/15/2008 7:37:19 PM [CONQUESTSRV1] Presentation Context 1 "1.2.840.10008.5.1.1.9"
    4/15/2008 7:37:19 PM [CONQUESTSRV1] Server Command := 0110
    4/15/2008 7:37:19 PM [CONQUESTSRV1] Message ID := 0038
    4/15/2008 7:37:19 PM [CONQUESTSRV1] getting Printer
    4/15/2008 7:37:19 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:37:19 PM [CONQUESTSRV1] Message ID := 006d
    4/15/2008 7:37:19 PM [CONQUESTSRV1] Creating Basic Film Session
    4/15/2008 7:37:19 PM [CONQUESTSRV1] Server Command := 0140
    4/15/2008 7:37:19 PM [CONQUESTSRV1] Message ID := 006e
    4/15/2008 7:37:19 PM [CONQUESTSRV1] Creating Basic Film Box with 1 Image boxes - PORTRAIT - Film# 35
    4/15/2008 7:37:19 PM [CONQUESTSRV1] UPACS THREAD 35: ENDED AT: Tue Apr 15 19:37:19 2008
    4/15/2008 7:37:19 PM [CONQUESTSRV1] UPACS THREAD 35: TOTAL RUNNING TIME: 1 SECONDS
    4/15/2008 7:37:39 PM [CONQUESTSRV1]
    4/15/2008 7:37:39 PM [CONQUESTSRV1] UPACS THREAD 36: STARTED AT: Tue Apr 15 19:37:39 2008
    4/15/2008 7:37:39 PM [CONQUESTSRV1] A-ASSOCIATE-RQ Packet Dump
    4/15/2008 7:37:39 PM [CONQUESTSRV1] Calling Application Title : "AE_PHILIPSFD10 "
    4/15/2008 7:37:39 PM [CONQUESTSRV1] Called Application Title : "CONQUESTSRV1 "
    4/15/2008 7:37:39 PM [CONQUESTSRV1] Application Context : "1.2.840.10008.3.1.1.1"
    4/15/2008 7:37:39 PM [CONQUESTSRV1] Number of Proposed Presentation Contexts: 2
    4/15/2008 7:37:39 PM [CONQUESTSRV1] Presentation Context 0 "1.2.840.10008.1.1"

    hi I have made some printouts from mysql screens to easy to follow
    1 go to login in Mysql administrator as a root after installation
    2 go to catalogs and put the pointer over a schema and clik the rigth button
    3 then select create a new schema (new database)
    4 introduce a new name for this schema ( usually conquest )and that´s
    all
    of course you should before copy the libmysql.dll from C:\Program Files\MySQL\MySQL Server 5.0\bin to the installation directory of conquest, before to run for the first time the conquestdicomserver. exe
    and then you can choose mysql database.
    if you want I can send you the sreenshots by e-mail i f these its not very clear.
    good luck

    I have been triyng to configure a system with a viewforum and a pc
    running conquest, and I can do send from viewforum to conquest and query to conquest but as soon as I try retrieve I get an error about viewforun did not acept the connection, also cannot send from conquest to viewforum cause get the same error, .
    I have checked AEs ports etc. and everything looks OK.
    I have tryed with other workstation from philips "Xcelera" , but here
    Q&R works fine!