We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
=
%3D
Alphabetic
Ideographic
Phonetic
DICOM PS3.4 - C.2.2.2.1.1 Attributes of VR of PN
For patient with Patient Name as Wang^XiaoDong=王^小東, if the same value is used in Patient Name query filter, invoked request to server side is
Wang^XiaoDong=王^小東
http://localhost:8880/dcm4chee-arc/aets/DCM4CHEE/rs/studies?limit=21&offset=0&PatientName=Wang%5EXiaoDong=%E7%8E%8B%5E%E5%B0%8F%E6%9D%B1
resulting in no records found.
Instead correctly encode = as %3D as
http://localhost:8880/dcm4chee-arc/aets/DCM4CHEE/rs/studies?limit=21&offset=0&PatientName=Wang%5EXiaoDong%3D%E7%8E%8B%5E%E5%B0%8F%E6%9D%B1
The text was updated successfully, but these errors were encountered:
shral
No branches or pull requests
DICOM PS3.4 - C.2.2.2.1.1 Attributes of VR of PN
For patient with Patient Name as
Wang^XiaoDong=王^小東
, if the same value is used in Patient Name query filter, invoked request to server side isresulting in no records found.
Instead correctly encode
=
as%3D
asThe text was updated successfully, but these errors were encountered: