HospitalSvc.wsdl 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <wsdl:definitions xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  3. <wsdl:types>
  4. <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
  5. <s:element name="CheckWebService">
  6. <s:complexType />
  7. </s:element>
  8. <s:element name="CheckWebServiceResponse">
  9. <s:complexType>
  10. <s:sequence>
  11. <s:element minOccurs="1" maxOccurs="1" name="CheckWebServiceResult" type="s:boolean" />
  12. </s:sequence>
  13. </s:complexType>
  14. </s:element>
  15. <s:element name="checkCendbService">
  16. <s:complexType />
  17. </s:element>
  18. <s:element name="checkCendbServiceResponse">
  19. <s:complexType>
  20. <s:sequence>
  21. <s:element minOccurs="0" maxOccurs="1" name="checkCendbServiceResult" type="s:string" />
  22. </s:sequence>
  23. </s:complexType>
  24. </s:element>
  25. <s:element name="CheckDatabaseConnection">
  26. <s:complexType />
  27. </s:element>
  28. <s:element name="CheckDatabaseConnectionResponse">
  29. <s:complexType>
  30. <s:sequence>
  31. <s:element minOccurs="1" maxOccurs="1" name="CheckDatabaseConnectionResult" type="s:boolean" />
  32. </s:sequence>
  33. </s:complexType>
  34. </s:element>
  35. <s:element name="GetUserInfo">
  36. <s:complexType>
  37. <s:sequence>
  38. <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
  39. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  40. <s:element minOccurs="0" maxOccurs="1" name="deptCd" type="s:string" />
  41. </s:sequence>
  42. </s:complexType>
  43. </s:element>
  44. <s:element name="GetUserInfoResponse">
  45. <s:complexType>
  46. <s:sequence>
  47. <s:element minOccurs="0" maxOccurs="1" name="GetUserInfoResult" type="tns:UserVO" />
  48. </s:sequence>
  49. </s:complexType>
  50. </s:element>
  51. <s:complexType name="UserVO">
  52. <s:sequence>
  53. <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
  54. <s:element minOccurs="0" maxOccurs="1" name="userName" type="s:string" />
  55. <s:element minOccurs="0" maxOccurs="1" name="userDeptCode" type="s:string" />
  56. <s:element minOccurs="0" maxOccurs="1" name="userDeptName" type="s:string" />
  57. <s:element minOccurs="0" maxOccurs="1" name="deptEngAbbr" type="s:string" />
  58. <s:element minOccurs="0" maxOccurs="1" name="jobKindCd" type="s:string" />
  59. <s:element minOccurs="0" maxOccurs="1" name="jobKindNm" type="s:string" />
  60. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  61. <s:element minOccurs="0" maxOccurs="1" name="userTelNo" type="s:string" />
  62. <s:element minOccurs="0" maxOccurs="1" name="ioFlag" type="s:string" />
  63. </s:sequence>
  64. </s:complexType>
  65. <s:element name="GetTrmtDateList">
  66. <s:complexType>
  67. <s:sequence>
  68. <s:element minOccurs="0" maxOccurs="1" name="patientNo" type="s:string" />
  69. <s:element minOccurs="0" maxOccurs="1" name="searchClnDate" type="s:string" />
  70. <s:element minOccurs="0" maxOccurs="1" name="searchType" type="s:string" />
  71. <s:element minOccurs="0" maxOccurs="1" name="orddeptcd" type="s:string" />
  72. <s:element minOccurs="0" maxOccurs="1" name="dutinstcd" type="s:string" />
  73. <s:element minOccurs="0" maxOccurs="1" name="ordType" type="s:string" />
  74. </s:sequence>
  75. </s:complexType>
  76. </s:element>
  77. <s:element name="GetTrmtDateListResponse">
  78. <s:complexType>
  79. <s:sequence>
  80. <s:element minOccurs="0" maxOccurs="1" name="GetTrmtDateListResult" type="tns:ArrayOfClnDateForDropdownVO" />
  81. </s:sequence>
  82. </s:complexType>
  83. </s:element>
  84. <s:complexType name="ArrayOfClnDateForDropdownVO">
  85. <s:sequence>
  86. <s:element minOccurs="0" maxOccurs="unbounded" name="ClnDateForDropdownVO" nillable="true" type="tns:ClnDateForDropdownVO" />
  87. </s:sequence>
  88. </s:complexType>
  89. <s:complexType name="ClnDateForDropdownVO">
  90. <s:sequence>
  91. <s:element minOccurs="0" maxOccurs="1" name="ClnDate" type="s:string" />
  92. <s:element minOccurs="0" maxOccurs="1" name="ClnFormatDate" type="s:string" />
  93. <s:element minOccurs="0" maxOccurs="1" name="VisitType" type="s:string" />
  94. <s:element minOccurs="0" maxOccurs="1" name="VisitTypeName" type="s:string" />
  95. <s:element minOccurs="0" maxOccurs="1" name="ClnDeptCode" type="s:string" />
  96. <s:element minOccurs="0" maxOccurs="1" name="ClnDeptName" type="s:string" />
  97. <s:element minOccurs="0" maxOccurs="1" name="DeptCd" type="s:string" />
  98. <s:element minOccurs="1" maxOccurs="1" name="CretNo" type="s:int" />
  99. <s:element minOccurs="0" maxOccurs="1" name="orddrid" type="s:string" />
  100. </s:sequence>
  101. </s:complexType>
  102. <s:element name="GetPatientList">
  103. <s:complexType>
  104. <s:sequence>
  105. <s:element minOccurs="0" maxOccurs="1" name="srchDd" type="s:string" />
  106. <s:element minOccurs="0" maxOccurs="1" name="ordDeptCd" type="s:string" />
  107. <s:element minOccurs="0" maxOccurs="1" name="doctorId" type="s:string" />
  108. <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
  109. <s:element minOccurs="0" maxOccurs="1" name="patientState" type="s:string" />
  110. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  111. <s:element minOccurs="0" maxOccurs="1" name="wardCd" type="s:string" />
  112. <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
  113. <s:element minOccurs="0" maxOccurs="1" name="myPatient" type="s:string" />
  114. <s:element minOccurs="0" maxOccurs="1" name="jobKindCd" type="s:string" />
  115. <s:element minOccurs="0" maxOccurs="1" name="drKind" type="s:string" />
  116. <s:element minOccurs="0" maxOccurs="1" name="selectFlag" type="s:string" />
  117. <s:element minOccurs="0" maxOccurs="1" name="srchYN" type="s:string" />
  118. </s:sequence>
  119. </s:complexType>
  120. </s:element>
  121. <s:element name="GetPatientListResponse">
  122. <s:complexType>
  123. <s:sequence>
  124. <s:element minOccurs="0" maxOccurs="1" name="GetPatientListResult" type="tns:ArrayOfPatListVO" />
  125. </s:sequence>
  126. </s:complexType>
  127. </s:element>
  128. <s:complexType name="ArrayOfPatListVO">
  129. <s:sequence>
  130. <s:element minOccurs="0" maxOccurs="unbounded" name="PatListVO" nillable="true" type="tns:PatListVO" />
  131. </s:sequence>
  132. </s:complexType>
  133. <s:complexType name="PatListVO">
  134. <s:sequence>
  135. <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
  136. <s:element minOccurs="0" maxOccurs="1" name="inDd" type="s:string" />
  137. <s:element minOccurs="1" maxOccurs="1" name="cretNo" type="s:int" />
  138. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  139. <s:element minOccurs="0" maxOccurs="1" name="ordType" type="s:string" />
  140. <s:element minOccurs="0" maxOccurs="1" name="hngNm" type="s:string" />
  141. <s:element minOccurs="0" maxOccurs="1" name="ordDeptCd" type="s:string" />
  142. <s:element minOccurs="0" maxOccurs="1" name="doctorId" type="s:string" />
  143. <s:element minOccurs="0" maxOccurs="1" name="sa" type="s:string" />
  144. <s:element minOccurs="0" maxOccurs="1" name="deptNm" type="s:string" />
  145. <s:element minOccurs="0" maxOccurs="1" name="doctorNm" type="s:string" />
  146. <s:element minOccurs="0" maxOccurs="1" name="roomCd" type="s:string" />
  147. <s:element minOccurs="0" maxOccurs="1" name="opRoomNm" type="s:string" />
  148. <s:element minOccurs="0" maxOccurs="1" name="oprsRvNo" type="s:string" />
  149. </s:sequence>
  150. </s:complexType>
  151. <s:element name="GetDeptList">
  152. <s:complexType>
  153. <s:sequence>
  154. <s:element minOccurs="0" maxOccurs="1" name="ordType" type="s:string" />
  155. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  156. </s:sequence>
  157. </s:complexType>
  158. </s:element>
  159. <s:element name="GetDeptListResponse">
  160. <s:complexType>
  161. <s:sequence>
  162. <s:element minOccurs="0" maxOccurs="1" name="GetDeptListResult" type="tns:ArrayOfDeptListVO" />
  163. </s:sequence>
  164. </s:complexType>
  165. </s:element>
  166. <s:complexType name="ArrayOfDeptListVO">
  167. <s:sequence>
  168. <s:element minOccurs="0" maxOccurs="unbounded" name="DeptListVO" nillable="true" type="tns:DeptListVO" />
  169. </s:sequence>
  170. </s:complexType>
  171. <s:complexType name="DeptListVO">
  172. <s:sequence>
  173. <s:element minOccurs="0" maxOccurs="1" name="deptCd" type="s:string" />
  174. <s:element minOccurs="0" maxOccurs="1" name="deptNm" type="s:string" />
  175. </s:sequence>
  176. </s:complexType>
  177. <s:element name="GetWardList">
  178. <s:complexType>
  179. <s:sequence>
  180. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  181. </s:sequence>
  182. </s:complexType>
  183. </s:element>
  184. <s:element name="GetWardListResponse">
  185. <s:complexType>
  186. <s:sequence>
  187. <s:element minOccurs="0" maxOccurs="1" name="GetWardListResult" type="tns:ArrayOfDeptListVO" />
  188. </s:sequence>
  189. </s:complexType>
  190. </s:element>
  191. <s:element name="GetDoctorList">
  192. <s:complexType>
  193. <s:sequence>
  194. <s:element minOccurs="0" maxOccurs="1" name="srchDd" type="s:string" />
  195. <s:element minOccurs="0" maxOccurs="1" name="ordDeptCd" type="s:string" />
  196. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  197. </s:sequence>
  198. </s:complexType>
  199. </s:element>
  200. <s:element name="GetDoctorListResponse">
  201. <s:complexType>
  202. <s:sequence>
  203. <s:element minOccurs="0" maxOccurs="1" name="GetDoctorListResult" type="tns:ArrayOfDocListVO" />
  204. </s:sequence>
  205. </s:complexType>
  206. </s:element>
  207. <s:complexType name="ArrayOfDocListVO">
  208. <s:sequence>
  209. <s:element minOccurs="0" maxOccurs="unbounded" name="DocListVO" nillable="true" type="tns:DocListVO" />
  210. </s:sequence>
  211. </s:complexType>
  212. <s:complexType name="DocListVO">
  213. <s:sequence>
  214. <s:element minOccurs="0" maxOccurs="1" name="doctorId" type="s:string" />
  215. <s:element minOccurs="0" maxOccurs="1" name="doctorNm" type="s:string" />
  216. <s:element minOccurs="0" maxOccurs="1" name="doctorKind" type="s:string" />
  217. <s:element minOccurs="0" maxOccurs="1" name="drKind" type="s:string" />
  218. </s:sequence>
  219. </s:complexType>
  220. <s:element name="GetSrchPatInfo">
  221. <s:complexType>
  222. <s:sequence>
  223. <s:element minOccurs="0" maxOccurs="1" name="srchcond" type="s:string" />
  224. <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
  225. <s:element minOccurs="0" maxOccurs="1" name="hngnm" type="s:string" />
  226. <s:element minOccurs="0" maxOccurs="1" name="rrgstno1" type="s:string" />
  227. <s:element minOccurs="0" maxOccurs="1" name="rrgstno2" type="s:string" />
  228. <s:element minOccurs="0" maxOccurs="1" name="dutinstcd" type="s:string" />
  229. </s:sequence>
  230. </s:complexType>
  231. </s:element>
  232. <s:element name="GetSrchPatInfoResponse">
  233. <s:complexType>
  234. <s:sequence>
  235. <s:element minOccurs="0" maxOccurs="1" name="GetSrchPatInfoResult" type="tns:ArrayOfPatInfoListVO" />
  236. </s:sequence>
  237. </s:complexType>
  238. </s:element>
  239. <s:complexType name="ArrayOfPatInfoListVO">
  240. <s:sequence>
  241. <s:element minOccurs="0" maxOccurs="unbounded" name="PatInfoListVO" nillable="true" type="tns:PatInfoListVO" />
  242. </s:sequence>
  243. </s:complexType>
  244. <s:complexType name="PatInfoListVO">
  245. <s:sequence>
  246. <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
  247. <s:element minOccurs="0" maxOccurs="1" name="hngnm" type="s:string" />
  248. <s:element minOccurs="0" maxOccurs="1" name="rrgstno1" type="s:string" />
  249. <s:element minOccurs="0" maxOccurs="1" name="rrgstno2" type="s:string" />
  250. <s:element minOccurs="0" maxOccurs="1" name="age" type="s:string" />
  251. <s:element minOccurs="0" maxOccurs="1" name="mpphontel" type="s:string" />
  252. <s:element minOccurs="0" maxOccurs="1" name="addr" type="s:string" />
  253. <s:element minOccurs="0" maxOccurs="1" name="lastorddd" type="s:string" />
  254. <s:element minOccurs="0" maxOccurs="1" name="lastorddept" type="s:string" />
  255. <s:element minOccurs="0" maxOccurs="1" name="lastinsukind" type="s:string" />
  256. </s:sequence>
  257. </s:complexType>
  258. <s:element name="GetPatientInfo">
  259. <s:complexType>
  260. <s:sequence>
  261. <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
  262. <s:element minOccurs="0" maxOccurs="1" name="inDd" type="s:string" />
  263. <s:element minOccurs="0" maxOccurs="1" name="ordType" type="s:string" />
  264. <s:element minOccurs="0" maxOccurs="1" name="ordDeptCd" type="s:string" />
  265. <s:element minOccurs="0" maxOccurs="1" name="cretNo" type="s:string" />
  266. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  267. <s:element minOccurs="0" maxOccurs="1" name="opRsrvNo" type="s:string" />
  268. </s:sequence>
  269. </s:complexType>
  270. </s:element>
  271. <s:element name="GetPatientInfoResponse">
  272. <s:complexType>
  273. <s:sequence>
  274. <s:element minOccurs="0" maxOccurs="1" name="GetPatientInfoResult" type="tns:ArrayOfPatientVO" />
  275. </s:sequence>
  276. </s:complexType>
  277. </s:element>
  278. <s:complexType name="ArrayOfPatientVO">
  279. <s:sequence>
  280. <s:element minOccurs="0" maxOccurs="unbounded" name="PatientVO" nillable="true" type="tns:PatientVO" />
  281. </s:sequence>
  282. </s:complexType>
  283. <s:complexType name="PatientVO">
  284. <s:sequence>
  285. <s:element minOccurs="0" maxOccurs="1" name="ordDeptCd" type="s:string" />
  286. <s:element minOccurs="0" maxOccurs="1" name="deptEngAbbr" type="s:string" />
  287. <s:element minOccurs="0" maxOccurs="1" name="ordDeptNm" type="s:string" />
  288. <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
  289. <s:element minOccurs="0" maxOccurs="1" name="cretNo" type="s:string" />
  290. <s:element minOccurs="0" maxOccurs="1" name="roomCd" type="s:string" />
  291. <s:element minOccurs="0" maxOccurs="1" name="inDd" type="s:string" />
  292. <s:element minOccurs="0" maxOccurs="1" name="dschDd" type="s:string" />
  293. <s:element minOccurs="0" maxOccurs="1" name="ordType" type="s:string" />
  294. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  295. <s:element minOccurs="0" maxOccurs="1" name="mainDrId" type="s:string" />
  296. <s:element minOccurs="0" maxOccurs="1" name="mainDrName" type="s:string" />
  297. <s:element minOccurs="0" maxOccurs="1" name="erDrNm" type="s:string" />
  298. <s:element minOccurs="0" maxOccurs="1" name="firstRgstDt" type="s:string" />
  299. <s:element minOccurs="0" maxOccurs="1" name="sa" type="s:string" />
  300. <s:element minOccurs="0" maxOccurs="1" name="patientName" type="s:string" />
  301. <s:element minOccurs="0" maxOccurs="1" name="juminNo" type="s:string" />
  302. <s:element minOccurs="0" maxOccurs="1" name="orgJuminNo" type="s:string" />
  303. <s:element minOccurs="0" maxOccurs="1" name="zipCdAddr" type="s:string" />
  304. <s:element minOccurs="0" maxOccurs="1" name="telNum" type="s:string" />
  305. <s:element minOccurs="0" maxOccurs="1" name="insuKind" type="s:string" />
  306. <s:element minOccurs="0" maxOccurs="1" name="ward" type="s:string" />
  307. <s:element minOccurs="0" maxOccurs="1" name="dxCd" type="s:string" />
  308. <s:element minOccurs="0" maxOccurs="1" name="dxNm" type="s:string" />
  309. <s:element minOccurs="0" maxOccurs="1" name="gbn" type="s:string" />
  310. <s:element minOccurs="0" maxOccurs="1" name="opDeptCd" type="s:string" />
  311. <s:element minOccurs="0" maxOccurs="1" name="opDeptNm" type="s:string" />
  312. <s:element minOccurs="0" maxOccurs="1" name="opDrNm" type="s:string" />
  313. <s:element minOccurs="0" maxOccurs="1" name="opDrId" type="s:string" />
  314. <s:element minOccurs="0" maxOccurs="1" name="opCnfmDd" type="s:string" />
  315. <s:element minOccurs="0" maxOccurs="1" name="perfDrNm" type="s:string" />
  316. <s:element minOccurs="0" maxOccurs="1" name="perfDrFlag" type="s:string" />
  317. <s:element minOccurs="0" maxOccurs="1" name="perfDrDept" type="s:string" />
  318. <s:element minOccurs="0" maxOccurs="1" name="opDiagNm" type="s:string" />
  319. <s:element minOccurs="0" maxOccurs="1" name="opNm" type="s:string" />
  320. <s:element minOccurs="0" maxOccurs="1" name="anstDrNm1" type="s:string" />
  321. <s:element minOccurs="0" maxOccurs="1" name="anstDrFlag1" type="s:string" />
  322. <s:element minOccurs="0" maxOccurs="1" name="anstDeptNm1" type="s:string" />
  323. <s:element minOccurs="0" maxOccurs="1" name="anstDrNm2" type="s:string" />
  324. <s:element minOccurs="0" maxOccurs="1" name="anstDrFlag2" type="s:string" />
  325. <s:element minOccurs="0" maxOccurs="1" name="anstDeptNm2" type="s:string" />
  326. <s:element minOccurs="0" maxOccurs="1" name="anstDrNm3" type="s:string" />
  327. <s:element minOccurs="0" maxOccurs="1" name="anstDrFlag3" type="s:string" />
  328. <s:element minOccurs="0" maxOccurs="1" name="anstDeptNm3" type="s:string" />
  329. <s:element minOccurs="0" maxOccurs="1" name="opRsrvNo" type="s:string" />
  330. <s:element minOccurs="1" maxOccurs="1" name="orderNo" type="s:int" />
  331. <s:element minOccurs="0" maxOccurs="1" name="printTime" type="s:string" />
  332. <s:element minOccurs="0" maxOccurs="1" name="ocrCd" type="s:string" />
  333. <s:element minOccurs="0" maxOccurs="1" name="inputId" type="s:string" />
  334. <s:element minOccurs="0" maxOccurs="1" name="inputNm" type="s:string" />
  335. <s:element minOccurs="0" maxOccurs="1" name="signImg" type="s:string" />
  336. <s:element minOccurs="0" maxOccurs="1" name="bp" type="s:string" />
  337. <s:element minOccurs="0" maxOccurs="1" name="dm" type="s:string" />
  338. <s:element minOccurs="0" maxOccurs="1" name="heart" type="s:string" />
  339. <s:element minOccurs="0" maxOccurs="1" name="kidney" type="s:string" />
  340. <s:element minOccurs="0" maxOccurs="1" name="respiration" type="s:string" />
  341. <s:element minOccurs="0" maxOccurs="1" name="hx" type="s:string" />
  342. <s:element minOccurs="0" maxOccurs="1" name="allergy" type="s:string" />
  343. <s:element minOccurs="0" maxOccurs="1" name="drug" type="s:string" />
  344. <s:element minOccurs="0" maxOccurs="1" name="smoking" type="s:string" />
  345. <s:element minOccurs="0" maxOccurs="1" name="idio" type="s:string" />
  346. <s:element minOccurs="0" maxOccurs="1" name="nacrotics" type="s:string" />
  347. <s:element minOccurs="0" maxOccurs="1" name="airway" type="s:string" />
  348. <s:element minOccurs="0" maxOccurs="1" name="hemorrhage" type="s:string" />
  349. <s:element minOccurs="0" maxOccurs="1" name="statusEtc" type="s:string" />
  350. </s:sequence>
  351. </s:complexType>
  352. <s:element name="GetConsentSetList">
  353. <s:complexType>
  354. <s:sequence>
  355. <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
  356. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  357. </s:sequence>
  358. </s:complexType>
  359. </s:element>
  360. <s:element name="GetConsentSetListResponse">
  361. <s:complexType>
  362. <s:sequence>
  363. <s:element minOccurs="0" maxOccurs="1" name="GetConsentSetListResult" type="tns:ArrayOfConsentFormListVO" />
  364. </s:sequence>
  365. </s:complexType>
  366. </s:element>
  367. <s:complexType name="ArrayOfConsentFormListVO">
  368. <s:sequence>
  369. <s:element minOccurs="0" maxOccurs="unbounded" name="ConsentFormListVO" nillable="true" type="tns:ConsentFormListVO" />
  370. </s:sequence>
  371. </s:complexType>
  372. <s:complexType name="ConsentFormListVO">
  373. <s:sequence>
  374. <s:element minOccurs="1" maxOccurs="1" name="consentMstRid" type="s:int" />
  375. <s:element minOccurs="0" maxOccurs="1" name="createUserId" type="s:string" />
  376. <s:element minOccurs="0" maxOccurs="1" name="createUserName" type="s:string" />
  377. <s:element minOccurs="0" maxOccurs="1" name="modifyUserId" type="s:string" />
  378. <s:element minOccurs="0" maxOccurs="1" name="modifyUserName" type="s:string" />
  379. <s:element minOccurs="0" maxOccurs="1" name="createDatetime" type="s:string" />
  380. <s:element minOccurs="0" maxOccurs="1" name="ocrTag" type="s:string" />
  381. <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
  382. <s:element minOccurs="0" maxOccurs="1" name="inDd" type="s:string" />
  383. <s:element minOccurs="0" maxOccurs="1" name="ordType" type="s:string" />
  384. <s:element minOccurs="0" maxOccurs="1" name="ordDeptCd" type="s:string" />
  385. <s:element minOccurs="1" maxOccurs="1" name="cretNo" type="s:int" />
  386. <s:element minOccurs="0" maxOccurs="1" name="opRsrvNo" type="s:string" />
  387. <s:element minOccurs="0" maxOccurs="1" name="patientName" type="s:string" />
  388. <s:element minOccurs="0" maxOccurs="1" name="consentState" type="s:string" />
  389. <s:element minOccurs="0" maxOccurs="1" name="consentStateEng" type="s:string" />
  390. <s:element minOccurs="0" maxOccurs="1" name="formCd" type="s:string" />
  391. <s:element minOccurs="0" maxOccurs="1" name="formGuid" type="s:string" />
  392. <s:element minOccurs="0" maxOccurs="1" name="formName" type="s:string" />
  393. <s:element minOccurs="1" maxOccurs="1" name="formRid" type="s:int" />
  394. <s:element minOccurs="0" maxOccurs="1" name="printOnly" type="s:string" />
  395. <s:element minOccurs="1" maxOccurs="1" name="printCnt" type="s:int" />
  396. <s:element minOccurs="0" maxOccurs="1" name="ocrTagPrntYn" type="s:string" />
  397. <s:element minOccurs="0" maxOccurs="1" name="formPrntNm" type="s:string" />
  398. <s:element minOccurs="0" maxOccurs="1" name="certUseYn" type="s:string" />
  399. <s:element minOccurs="0" maxOccurs="1" name="opDiagNm" type="s:string" />
  400. <s:element minOccurs="0" maxOccurs="1" name="opNm" type="s:string" />
  401. <s:element minOccurs="0" maxOccurs="1" name="userDrFlag" type="s:string" />
  402. <s:element minOccurs="0" maxOccurs="1" name="linkFormCd" type="s:string" />
  403. <s:element minOccurs="0" maxOccurs="1" name="jinjeongCd" type="s:string" />
  404. <s:element minOccurs="0" maxOccurs="1" name="DrOnly" type="s:string" />
  405. </s:sequence>
  406. </s:complexType>
  407. <s:element name="SetUserFormSetList">
  408. <s:complexType>
  409. <s:sequence>
  410. <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
  411. <s:element minOccurs="0" maxOccurs="1" name="formCd" type="s:string" />
  412. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  413. </s:sequence>
  414. </s:complexType>
  415. </s:element>
  416. <s:element name="SetUserFormSetListResponse">
  417. <s:complexType>
  418. <s:sequence>
  419. <s:element minOccurs="0" maxOccurs="1" name="SetUserFormSetListResult" type="tns:SingleReturnData" />
  420. </s:sequence>
  421. </s:complexType>
  422. </s:element>
  423. <s:complexType name="SingleReturnData">
  424. <s:sequence>
  425. <s:element minOccurs="0" maxOccurs="1" name="responseData" type="s:string" />
  426. </s:sequence>
  427. </s:complexType>
  428. <s:element name="DelUserFormSetList">
  429. <s:complexType>
  430. <s:sequence>
  431. <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
  432. <s:element minOccurs="0" maxOccurs="1" name="formCd" type="s:string" />
  433. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  434. </s:sequence>
  435. </s:complexType>
  436. </s:element>
  437. <s:element name="DelUserFormSetListResponse">
  438. <s:complexType>
  439. <s:sequence>
  440. <s:element minOccurs="0" maxOccurs="1" name="DelUserFormSetListResult" type="tns:SingleReturnData" />
  441. </s:sequence>
  442. </s:complexType>
  443. </s:element>
  444. <s:element name="checkOcrDup">
  445. <s:complexType>
  446. <s:sequence>
  447. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  448. <s:element minOccurs="0" maxOccurs="1" name="ocrtag" type="s:string" />
  449. </s:sequence>
  450. </s:complexType>
  451. </s:element>
  452. <s:element name="checkOcrDupResponse">
  453. <s:complexType>
  454. <s:sequence>
  455. <s:element minOccurs="1" maxOccurs="1" name="checkOcrDupResult" type="s:int" />
  456. </s:sequence>
  457. </s:complexType>
  458. </s:element>
  459. <s:element name="GetOcrTag">
  460. <s:complexType>
  461. <s:sequence>
  462. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  463. </s:sequence>
  464. </s:complexType>
  465. </s:element>
  466. <s:element name="GetOcrTagResponse">
  467. <s:complexType>
  468. <s:sequence>
  469. <s:element minOccurs="0" maxOccurs="1" name="GetOcrTagResult" type="tns:SingleReturnData" />
  470. </s:sequence>
  471. </s:complexType>
  472. </s:element>
  473. <s:element name="GetSignImage">
  474. <s:complexType>
  475. <s:sequence>
  476. <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
  477. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  478. </s:sequence>
  479. </s:complexType>
  480. </s:element>
  481. <s:element name="GetSignImageResponse">
  482. <s:complexType>
  483. <s:sequence>
  484. <s:element minOccurs="0" maxOccurs="1" name="GetSignImageResult" type="tns:UserSignImageVO" />
  485. </s:sequence>
  486. </s:complexType>
  487. </s:element>
  488. <s:complexType name="UserSignImageVO">
  489. <s:sequence>
  490. <s:element minOccurs="0" maxOccurs="1" name="SignImage" type="s:base64Binary" />
  491. </s:sequence>
  492. </s:complexType>
  493. <s:element name="GetDiagNameList">
  494. <s:complexType>
  495. <s:sequence>
  496. <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
  497. <s:element minOccurs="0" maxOccurs="1" name="orddd" type="s:string" />
  498. <s:element minOccurs="0" maxOccurs="1" name="dutinstcd" type="s:string" />
  499. </s:sequence>
  500. </s:complexType>
  501. </s:element>
  502. <s:element name="GetDiagNameListResponse">
  503. <s:complexType>
  504. <s:sequence>
  505. <s:element minOccurs="0" maxOccurs="1" name="GetDiagNameListResult" type="tns:ArrayOfString" />
  506. </s:sequence>
  507. </s:complexType>
  508. </s:element>
  509. <s:complexType name="ArrayOfString">
  510. <s:sequence>
  511. <s:element minOccurs="0" maxOccurs="unbounded" name="string" nillable="true" type="s:string" />
  512. </s:sequence>
  513. </s:complexType>
  514. <s:element name="GetFileName">
  515. <s:complexType>
  516. <s:sequence>
  517. <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
  518. <s:element minOccurs="0" maxOccurs="1" name="ordtype" type="s:string" />
  519. <s:element minOccurs="0" maxOccurs="1" name="orddd" type="s:string" />
  520. <s:element minOccurs="0" maxOccurs="1" name="dschdd" type="s:string" />
  521. <s:element minOccurs="0" maxOccurs="1" name="cretno" type="s:string" />
  522. <s:element minOccurs="0" maxOccurs="1" name="filesize" type="s:string" />
  523. <s:element minOccurs="0" maxOccurs="1" name="formcd" type="s:string" />
  524. <s:element minOccurs="0" maxOccurs="1" name="pageno" type="s:string" />
  525. <s:element minOccurs="0" maxOccurs="1" name="ocrtag" type="s:string" />
  526. <s:element minOccurs="0" maxOccurs="1" name="userid" type="s:string" />
  527. <s:element minOccurs="0" maxOccurs="1" name="orddeptcd" type="s:string" />
  528. <s:element minOccurs="0" maxOccurs="1" name="dutinstcd" type="s:string" />
  529. </s:sequence>
  530. </s:complexType>
  531. </s:element>
  532. <s:element name="GetFileNameResponse">
  533. <s:complexType>
  534. <s:sequence>
  535. <s:element minOccurs="0" maxOccurs="1" name="GetFileNameResult" type="s:string" />
  536. </s:sequence>
  537. </s:complexType>
  538. </s:element>
  539. <s:element name="delEformData">
  540. <s:complexType>
  541. <s:sequence>
  542. <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
  543. <s:element minOccurs="0" maxOccurs="1" name="ordtype" type="s:string" />
  544. <s:element minOccurs="0" maxOccurs="1" name="orddd" type="s:string" />
  545. <s:element minOccurs="0" maxOccurs="1" name="dschdd" type="s:string" />
  546. <s:element minOccurs="0" maxOccurs="1" name="cretno" type="s:string" />
  547. <s:element minOccurs="0" maxOccurs="1" name="formcd" type="s:string" />
  548. <s:element minOccurs="0" maxOccurs="1" name="ocrtag" type="s:string" />
  549. <s:element minOccurs="0" maxOccurs="1" name="userid" type="s:string" />
  550. <s:element minOccurs="0" maxOccurs="1" name="username" type="s:string" />
  551. <s:element minOccurs="0" maxOccurs="1" name="consentmstrid" type="s:string" />
  552. <s:element minOccurs="0" maxOccurs="1" name="hostype" type="s:string" />
  553. <s:element minOccurs="0" maxOccurs="1" name="orddeptcd" type="s:string" />
  554. <s:element minOccurs="0" maxOccurs="1" name="dutinstcd" type="s:string" />
  555. </s:sequence>
  556. </s:complexType>
  557. </s:element>
  558. <s:element name="delEformDataResponse">
  559. <s:complexType />
  560. </s:element>
  561. <s:element name="UpdateUserSetup">
  562. <s:complexType>
  563. <s:sequence>
  564. <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
  565. <s:element minOccurs="0" maxOccurs="1" name="status" type="s:string" />
  566. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  567. </s:sequence>
  568. </s:complexType>
  569. </s:element>
  570. <s:element name="UpdateUserSetupResponse">
  571. <s:complexType>
  572. <s:sequence>
  573. <s:element minOccurs="0" maxOccurs="1" name="UpdateUserSetupResult" type="tns:SingleReturnData" />
  574. </s:sequence>
  575. </s:complexType>
  576. </s:element>
  577. <s:element name="GetUnfinishedListPerDoctor">
  578. <s:complexType>
  579. <s:sequence>
  580. <s:element minOccurs="0" maxOccurs="1" name="userid" type="s:string" />
  581. <s:element minOccurs="0" maxOccurs="1" name="status" type="s:string" />
  582. <s:element minOccurs="0" maxOccurs="1" name="fromdd" type="s:string" />
  583. <s:element minOccurs="0" maxOccurs="1" name="todd" type="s:string" />
  584. <s:element minOccurs="0" maxOccurs="1" name="dutinstcd" type="s:string" />
  585. </s:sequence>
  586. </s:complexType>
  587. </s:element>
  588. <s:element name="GetUnfinishedListPerDoctorResponse">
  589. <s:complexType>
  590. <s:sequence>
  591. <s:element minOccurs="0" maxOccurs="1" name="GetUnfinishedListPerDoctorResult" type="tns:ArrayOfUnFinishedListVO" />
  592. </s:sequence>
  593. </s:complexType>
  594. </s:element>
  595. <s:complexType name="ArrayOfUnFinishedListVO">
  596. <s:sequence>
  597. <s:element minOccurs="0" maxOccurs="unbounded" name="UnFinishedListVO" nillable="true" type="tns:UnFinishedListVO" />
  598. </s:sequence>
  599. </s:complexType>
  600. <s:complexType name="UnFinishedListVO">
  601. <s:sequence>
  602. <s:element minOccurs="0" maxOccurs="1" name="patientCode" type="s:string" />
  603. <s:element minOccurs="0" maxOccurs="1" name="formcd" type="s:string" />
  604. <s:element minOccurs="0" maxOccurs="1" name="consentName" type="s:string" />
  605. <s:element minOccurs="0" maxOccurs="1" name="hngnm" type="s:string" />
  606. <s:element minOccurs="0" maxOccurs="1" name="orderdate" type="s:string" />
  607. <s:element minOccurs="0" maxOccurs="1" name="printonly" type="s:string" />
  608. <s:element minOccurs="0" maxOccurs="1" name="certtarget" type="s:string" />
  609. <s:element minOccurs="0" maxOccurs="1" name="consentState" type="s:string" />
  610. <s:element minOccurs="1" maxOccurs="1" name="consentMstRid" type="s:int" />
  611. <s:element minOccurs="0" maxOccurs="1" name="orddd" type="s:string" />
  612. <s:element minOccurs="0" maxOccurs="1" name="visitType" type="s:string" />
  613. <s:element minOccurs="0" maxOccurs="1" name="orddeptcd" type="s:string" />
  614. <s:element minOccurs="1" maxOccurs="1" name="orderno" type="s:int" />
  615. <s:element minOccurs="0" maxOccurs="1" name="ordercd" type="s:string" />
  616. <s:element minOccurs="0" maxOccurs="1" name="ocrNumber" type="s:string" />
  617. <s:element minOccurs="1" maxOccurs="1" name="cretno" type="s:int" />
  618. <s:element minOccurs="0" maxOccurs="1" name="createusername" type="s:string" />
  619. <s:element minOccurs="1" maxOccurs="1" name="formrid" type="s:int" />
  620. <s:element minOccurs="0" maxOccurs="1" name="formguid" type="s:string" />
  621. </s:sequence>
  622. </s:complexType>
  623. <s:element name="doLogin">
  624. <s:complexType>
  625. <s:sequence>
  626. <s:element minOccurs="0" maxOccurs="1" name="userid" type="s:string" />
  627. <s:element minOccurs="0" maxOccurs="1" name="pwd" type="s:string" />
  628. <s:element minOccurs="0" maxOccurs="1" name="dutinstcd" type="s:string" />
  629. <s:element minOccurs="0" maxOccurs="1" name="certSucc" type="s:string" />
  630. </s:sequence>
  631. </s:complexType>
  632. </s:element>
  633. <s:element name="doLoginResponse">
  634. <s:complexType>
  635. <s:sequence>
  636. <s:element minOccurs="0" maxOccurs="1" name="doLoginResult" type="tns:ArrayOfUserLoginDeptList" />
  637. </s:sequence>
  638. </s:complexType>
  639. </s:element>
  640. <s:complexType name="ArrayOfUserLoginDeptList">
  641. <s:sequence>
  642. <s:element minOccurs="0" maxOccurs="unbounded" name="UserLoginDeptList" nillable="true" type="tns:UserLoginDeptList" />
  643. </s:sequence>
  644. </s:complexType>
  645. <s:complexType name="UserLoginDeptList">
  646. <s:sequence>
  647. <s:element minOccurs="0" maxOccurs="1" name="dutplceInstCd" type="s:string" />
  648. <s:element minOccurs="0" maxOccurs="1" name="dutplceInstNm" type="s:string" />
  649. <s:element minOccurs="0" maxOccurs="1" name="dutplceCd" type="s:string" />
  650. <s:element minOccurs="0" maxOccurs="1" name="deptHngNm" type="s:string" />
  651. <s:element minOccurs="0" maxOccurs="1" name="fromDd" type="s:string" />
  652. <s:element minOccurs="1" maxOccurs="1" name="sortNo" type="s:int" />
  653. <s:element minOccurs="0" maxOccurs="1" name="deptCd" type="s:string" />
  654. <s:element minOccurs="0" maxOccurs="1" name="jobKindCd" type="s:string" />
  655. <s:element minOccurs="0" maxOccurs="1" name="jobKindNm" type="s:string" />
  656. <s:element minOccurs="0" maxOccurs="1" name="indexPage" type="s:string" />
  657. <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
  658. <s:element minOccurs="0" maxOccurs="1" name="userName" type="s:string" />
  659. <s:element minOccurs="0" maxOccurs="1" name="drKind" type="s:string" />
  660. </s:sequence>
  661. </s:complexType>
  662. <s:element name="GetMobileUserInfo">
  663. <s:complexType>
  664. <s:sequence>
  665. <s:element minOccurs="0" maxOccurs="1" name="userid" type="s:string" />
  666. <s:element minOccurs="0" maxOccurs="1" name="dutplceinstcd" type="s:string" />
  667. <s:element minOccurs="0" maxOccurs="1" name="dutplcecd" type="s:string" />
  668. </s:sequence>
  669. </s:complexType>
  670. </s:element>
  671. <s:element name="GetMobileUserInfoResponse">
  672. <s:complexType>
  673. <s:sequence>
  674. <s:element minOccurs="0" maxOccurs="1" name="GetMobileUserInfoResult" type="tns:MobileUserInfo" />
  675. </s:sequence>
  676. </s:complexType>
  677. </s:element>
  678. <s:complexType name="MobileUserInfo">
  679. <s:sequence>
  680. <s:element minOccurs="0" maxOccurs="1" name="userid" type="s:string" />
  681. <s:element minOccurs="0" maxOccurs="1" name="usernm" type="s:string" />
  682. <s:element minOccurs="0" maxOccurs="1" name="dutplcecd" type="s:string" />
  683. <s:element minOccurs="0" maxOccurs="1" name="deptengnm" type="s:string" />
  684. <s:element minOccurs="0" maxOccurs="1" name="dutplceinstcd" type="s:string" />
  685. <s:element minOccurs="0" maxOccurs="1" name="dutplceinstnm" type="s:string" />
  686. <s:element minOccurs="0" maxOccurs="1" name="jobkindcd" type="s:string" />
  687. <s:element minOccurs="0" maxOccurs="1" name="jobkindnm" type="s:string" />
  688. </s:sequence>
  689. </s:complexType>
  690. <s:element name="checkPrintablePatient">
  691. <s:complexType>
  692. <s:sequence>
  693. <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
  694. <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
  695. <s:element minOccurs="0" maxOccurs="1" name="orddd" type="s:string" />
  696. <s:element minOccurs="0" maxOccurs="1" name="cretno" type="s:string" />
  697. </s:sequence>
  698. </s:complexType>
  699. </s:element>
  700. <s:element name="checkPrintablePatientResponse">
  701. <s:complexType>
  702. <s:sequence>
  703. <s:element minOccurs="1" maxOccurs="1" name="checkPrintablePatientResult" type="s:int" />
  704. </s:sequence>
  705. </s:complexType>
  706. </s:element>
  707. <s:element name="getPenOptions">
  708. <s:complexType>
  709. <s:sequence>
  710. <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
  711. </s:sequence>
  712. </s:complexType>
  713. </s:element>
  714. <s:element name="getPenOptionsResponse">
  715. <s:complexType>
  716. <s:sequence>
  717. <s:element minOccurs="0" maxOccurs="1" name="getPenOptionsResult" type="s:string" />
  718. </s:sequence>
  719. </s:complexType>
  720. </s:element>
  721. <s:element name="getZoomRate">
  722. <s:complexType>
  723. <s:sequence>
  724. <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
  725. </s:sequence>
  726. </s:complexType>
  727. </s:element>
  728. <s:element name="getZoomRateResponse">
  729. <s:complexType>
  730. <s:sequence>
  731. <s:element minOccurs="0" maxOccurs="1" name="getZoomRateResult" type="s:string" />
  732. </s:sequence>
  733. </s:complexType>
  734. </s:element>
  735. <s:element name="getPrintControlMsg">
  736. <s:complexType>
  737. <s:sequence>
  738. <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
  739. <s:element minOccurs="0" maxOccurs="1" name="ordtype" type="s:string" />
  740. </s:sequence>
  741. </s:complexType>
  742. </s:element>
  743. <s:element name="getPrintControlMsgResponse">
  744. <s:complexType>
  745. <s:sequence>
  746. <s:element minOccurs="0" maxOccurs="1" name="getPrintControlMsgResult" type="s:string" />
  747. </s:sequence>
  748. </s:complexType>
  749. </s:element>
  750. <s:element name="getPrintOnly">
  751. <s:complexType>
  752. <s:sequence>
  753. <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
  754. <s:element minOccurs="0" maxOccurs="1" name="formcd" type="s:string" />
  755. </s:sequence>
  756. </s:complexType>
  757. </s:element>
  758. <s:element name="getPrintOnlyResponse">
  759. <s:complexType>
  760. <s:sequence>
  761. <s:element minOccurs="0" maxOccurs="1" name="getPrintOnlyResult" type="s:string" />
  762. </s:sequence>
  763. </s:complexType>
  764. </s:element>
  765. <s:element name="getMultiprintable">
  766. <s:complexType>
  767. <s:sequence>
  768. <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
  769. <s:element minOccurs="0" maxOccurs="1" name="formcd" type="s:string" />
  770. </s:sequence>
  771. </s:complexType>
  772. </s:element>
  773. <s:element name="getMultiprintableResponse">
  774. <s:complexType>
  775. <s:sequence>
  776. <s:element minOccurs="1" maxOccurs="1" name="getMultiprintableResult" type="s:int" />
  777. </s:sequence>
  778. </s:complexType>
  779. </s:element>
  780. <s:element name="checkHardcd">
  781. <s:complexType>
  782. <s:sequence>
  783. <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
  784. <s:element minOccurs="0" maxOccurs="1" name="hardcdno" type="s:string" />
  785. <s:element minOccurs="0" maxOccurs="1" name="trgtcd" type="s:string" />
  786. </s:sequence>
  787. </s:complexType>
  788. </s:element>
  789. <s:element name="checkHardcdResponse">
  790. <s:complexType>
  791. <s:sequence>
  792. <s:element minOccurs="1" maxOccurs="1" name="checkHardcdResult" type="s:int" />
  793. </s:sequence>
  794. </s:complexType>
  795. </s:element>
  796. <s:element name="GetBaseData">
  797. <s:complexType>
  798. <s:sequence>
  799. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  800. </s:sequence>
  801. </s:complexType>
  802. </s:element>
  803. <s:element name="GetBaseDataResponse">
  804. <s:complexType>
  805. <s:sequence>
  806. <s:element minOccurs="0" maxOccurs="1" name="GetBaseDataResult" type="tns:SingleReturnData" />
  807. </s:sequence>
  808. </s:complexType>
  809. </s:element>
  810. <s:element name="setSignImage">
  811. <s:complexType>
  812. <s:sequence>
  813. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  814. <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
  815. <s:element minOccurs="0" maxOccurs="1" name="signSeq" type="s:string" />
  816. <s:element minOccurs="0" maxOccurs="1" name="inptId" type="s:string" />
  817. <s:element minOccurs="0" maxOccurs="1" name="signImage" type="s:string" />
  818. </s:sequence>
  819. </s:complexType>
  820. </s:element>
  821. <s:element name="setSignImageResponse">
  822. <s:complexType>
  823. <s:sequence>
  824. <s:element minOccurs="0" maxOccurs="1" name="setSignImageResult" type="s:string" />
  825. </s:sequence>
  826. </s:complexType>
  827. </s:element>
  828. <s:element name="getUserSignDataInfo">
  829. <s:complexType>
  830. <s:sequence>
  831. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  832. <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
  833. </s:sequence>
  834. </s:complexType>
  835. </s:element>
  836. <s:element name="getUserSignDataInfoResponse">
  837. <s:complexType>
  838. <s:sequence>
  839. <s:element minOccurs="0" maxOccurs="1" name="getUserSignDataInfoResult" type="tns:UserSignDataVo" />
  840. </s:sequence>
  841. </s:complexType>
  842. </s:element>
  843. <s:complexType name="UserSignDataVo">
  844. <s:sequence>
  845. <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
  846. <s:element minOccurs="1" maxOccurs="1" name="signImgeSeqNo" type="s:int" />
  847. <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
  848. <s:element minOccurs="0" maxOccurs="1" name="signData" type="s:base64Binary" />
  849. <s:element minOccurs="0" maxOccurs="1" name="signImgeFromDd" type="s:string" />
  850. <s:element minOccurs="0" maxOccurs="1" name="userNm" type="s:string" />
  851. </s:sequence>
  852. </s:complexType>
  853. <s:element name="getEmrDataString">
  854. <s:complexType>
  855. <s:sequence>
  856. <s:element minOccurs="0" maxOccurs="1" name="flag" type="s:string" />
  857. <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
  858. <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
  859. <s:element minOccurs="0" maxOccurs="1" name="indd" type="s:string" />
  860. <s:element minOccurs="0" maxOccurs="1" name="cretno" type="s:string" />
  861. <s:element minOccurs="0" maxOccurs="1" name="formCd" type="s:string" />
  862. </s:sequence>
  863. </s:complexType>
  864. </s:element>
  865. <s:element name="getEmrDataStringResponse">
  866. <s:complexType>
  867. <s:sequence>
  868. <s:element minOccurs="0" maxOccurs="1" name="getEmrDataStringResult" type="tns:SingleReturnData" />
  869. </s:sequence>
  870. </s:complexType>
  871. </s:element>
  872. </s:schema>
  873. </wsdl:types>
  874. <wsdl:message name="CheckWebServiceSoapIn">
  875. <wsdl:part name="parameters" element="tns:CheckWebService" />
  876. </wsdl:message>
  877. <wsdl:message name="CheckWebServiceSoapOut">
  878. <wsdl:part name="parameters" element="tns:CheckWebServiceResponse" />
  879. </wsdl:message>
  880. <wsdl:message name="checkCendbServiceSoapIn">
  881. <wsdl:part name="parameters" element="tns:checkCendbService" />
  882. </wsdl:message>
  883. <wsdl:message name="checkCendbServiceSoapOut">
  884. <wsdl:part name="parameters" element="tns:checkCendbServiceResponse" />
  885. </wsdl:message>
  886. <wsdl:message name="CheckDatabaseConnectionSoapIn">
  887. <wsdl:part name="parameters" element="tns:CheckDatabaseConnection" />
  888. </wsdl:message>
  889. <wsdl:message name="CheckDatabaseConnectionSoapOut">
  890. <wsdl:part name="parameters" element="tns:CheckDatabaseConnectionResponse" />
  891. </wsdl:message>
  892. <wsdl:message name="GetUserInfoSoapIn">
  893. <wsdl:part name="parameters" element="tns:GetUserInfo" />
  894. </wsdl:message>
  895. <wsdl:message name="GetUserInfoSoapOut">
  896. <wsdl:part name="parameters" element="tns:GetUserInfoResponse" />
  897. </wsdl:message>
  898. <wsdl:message name="GetTrmtDateListSoapIn">
  899. <wsdl:part name="parameters" element="tns:GetTrmtDateList" />
  900. </wsdl:message>
  901. <wsdl:message name="GetTrmtDateListSoapOut">
  902. <wsdl:part name="parameters" element="tns:GetTrmtDateListResponse" />
  903. </wsdl:message>
  904. <wsdl:message name="GetPatientListSoapIn">
  905. <wsdl:part name="parameters" element="tns:GetPatientList" />
  906. </wsdl:message>
  907. <wsdl:message name="GetPatientListSoapOut">
  908. <wsdl:part name="parameters" element="tns:GetPatientListResponse" />
  909. </wsdl:message>
  910. <wsdl:message name="GetDeptListSoapIn">
  911. <wsdl:part name="parameters" element="tns:GetDeptList" />
  912. </wsdl:message>
  913. <wsdl:message name="GetDeptListSoapOut">
  914. <wsdl:part name="parameters" element="tns:GetDeptListResponse" />
  915. </wsdl:message>
  916. <wsdl:message name="GetWardListSoapIn">
  917. <wsdl:part name="parameters" element="tns:GetWardList" />
  918. </wsdl:message>
  919. <wsdl:message name="GetWardListSoapOut">
  920. <wsdl:part name="parameters" element="tns:GetWardListResponse" />
  921. </wsdl:message>
  922. <wsdl:message name="GetDoctorListSoapIn">
  923. <wsdl:part name="parameters" element="tns:GetDoctorList" />
  924. </wsdl:message>
  925. <wsdl:message name="GetDoctorListSoapOut">
  926. <wsdl:part name="parameters" element="tns:GetDoctorListResponse" />
  927. </wsdl:message>
  928. <wsdl:message name="GetSrchPatInfoSoapIn">
  929. <wsdl:part name="parameters" element="tns:GetSrchPatInfo" />
  930. </wsdl:message>
  931. <wsdl:message name="GetSrchPatInfoSoapOut">
  932. <wsdl:part name="parameters" element="tns:GetSrchPatInfoResponse" />
  933. </wsdl:message>
  934. <wsdl:message name="GetPatientInfoSoapIn">
  935. <wsdl:part name="parameters" element="tns:GetPatientInfo" />
  936. </wsdl:message>
  937. <wsdl:message name="GetPatientInfoSoapOut">
  938. <wsdl:part name="parameters" element="tns:GetPatientInfoResponse" />
  939. </wsdl:message>
  940. <wsdl:message name="GetConsentSetListSoapIn">
  941. <wsdl:part name="parameters" element="tns:GetConsentSetList" />
  942. </wsdl:message>
  943. <wsdl:message name="GetConsentSetListSoapOut">
  944. <wsdl:part name="parameters" element="tns:GetConsentSetListResponse" />
  945. </wsdl:message>
  946. <wsdl:message name="SetUserFormSetListSoapIn">
  947. <wsdl:part name="parameters" element="tns:SetUserFormSetList" />
  948. </wsdl:message>
  949. <wsdl:message name="SetUserFormSetListSoapOut">
  950. <wsdl:part name="parameters" element="tns:SetUserFormSetListResponse" />
  951. </wsdl:message>
  952. <wsdl:message name="DelUserFormSetListSoapIn">
  953. <wsdl:part name="parameters" element="tns:DelUserFormSetList" />
  954. </wsdl:message>
  955. <wsdl:message name="DelUserFormSetListSoapOut">
  956. <wsdl:part name="parameters" element="tns:DelUserFormSetListResponse" />
  957. </wsdl:message>
  958. <wsdl:message name="checkOcrDupSoapIn">
  959. <wsdl:part name="parameters" element="tns:checkOcrDup" />
  960. </wsdl:message>
  961. <wsdl:message name="checkOcrDupSoapOut">
  962. <wsdl:part name="parameters" element="tns:checkOcrDupResponse" />
  963. </wsdl:message>
  964. <wsdl:message name="GetOcrTagSoapIn">
  965. <wsdl:part name="parameters" element="tns:GetOcrTag" />
  966. </wsdl:message>
  967. <wsdl:message name="GetOcrTagSoapOut">
  968. <wsdl:part name="parameters" element="tns:GetOcrTagResponse" />
  969. </wsdl:message>
  970. <wsdl:message name="GetSignImageSoapIn">
  971. <wsdl:part name="parameters" element="tns:GetSignImage" />
  972. </wsdl:message>
  973. <wsdl:message name="GetSignImageSoapOut">
  974. <wsdl:part name="parameters" element="tns:GetSignImageResponse" />
  975. </wsdl:message>
  976. <wsdl:message name="GetDiagNameListSoapIn">
  977. <wsdl:part name="parameters" element="tns:GetDiagNameList" />
  978. </wsdl:message>
  979. <wsdl:message name="GetDiagNameListSoapOut">
  980. <wsdl:part name="parameters" element="tns:GetDiagNameListResponse" />
  981. </wsdl:message>
  982. <wsdl:message name="GetFileNameSoapIn">
  983. <wsdl:part name="parameters" element="tns:GetFileName" />
  984. </wsdl:message>
  985. <wsdl:message name="GetFileNameSoapOut">
  986. <wsdl:part name="parameters" element="tns:GetFileNameResponse" />
  987. </wsdl:message>
  988. <wsdl:message name="delEformDataSoapIn">
  989. <wsdl:part name="parameters" element="tns:delEformData" />
  990. </wsdl:message>
  991. <wsdl:message name="delEformDataSoapOut">
  992. <wsdl:part name="parameters" element="tns:delEformDataResponse" />
  993. </wsdl:message>
  994. <wsdl:message name="UpdateUserSetupSoapIn">
  995. <wsdl:part name="parameters" element="tns:UpdateUserSetup" />
  996. </wsdl:message>
  997. <wsdl:message name="UpdateUserSetupSoapOut">
  998. <wsdl:part name="parameters" element="tns:UpdateUserSetupResponse" />
  999. </wsdl:message>
  1000. <wsdl:message name="GetUnfinishedListPerDoctorSoapIn">
  1001. <wsdl:part name="parameters" element="tns:GetUnfinishedListPerDoctor" />
  1002. </wsdl:message>
  1003. <wsdl:message name="GetUnfinishedListPerDoctorSoapOut">
  1004. <wsdl:part name="parameters" element="tns:GetUnfinishedListPerDoctorResponse" />
  1005. </wsdl:message>
  1006. <wsdl:message name="doLoginSoapIn">
  1007. <wsdl:part name="parameters" element="tns:doLogin" />
  1008. </wsdl:message>
  1009. <wsdl:message name="doLoginSoapOut">
  1010. <wsdl:part name="parameters" element="tns:doLoginResponse" />
  1011. </wsdl:message>
  1012. <wsdl:message name="GetMobileUserInfoSoapIn">
  1013. <wsdl:part name="parameters" element="tns:GetMobileUserInfo" />
  1014. </wsdl:message>
  1015. <wsdl:message name="GetMobileUserInfoSoapOut">
  1016. <wsdl:part name="parameters" element="tns:GetMobileUserInfoResponse" />
  1017. </wsdl:message>
  1018. <wsdl:message name="checkPrintablePatientSoapIn">
  1019. <wsdl:part name="parameters" element="tns:checkPrintablePatient" />
  1020. </wsdl:message>
  1021. <wsdl:message name="checkPrintablePatientSoapOut">
  1022. <wsdl:part name="parameters" element="tns:checkPrintablePatientResponse" />
  1023. </wsdl:message>
  1024. <wsdl:message name="getPenOptionsSoapIn">
  1025. <wsdl:part name="parameters" element="tns:getPenOptions" />
  1026. </wsdl:message>
  1027. <wsdl:message name="getPenOptionsSoapOut">
  1028. <wsdl:part name="parameters" element="tns:getPenOptionsResponse" />
  1029. </wsdl:message>
  1030. <wsdl:message name="getZoomRateSoapIn">
  1031. <wsdl:part name="parameters" element="tns:getZoomRate" />
  1032. </wsdl:message>
  1033. <wsdl:message name="getZoomRateSoapOut">
  1034. <wsdl:part name="parameters" element="tns:getZoomRateResponse" />
  1035. </wsdl:message>
  1036. <wsdl:message name="getPrintControlMsgSoapIn">
  1037. <wsdl:part name="parameters" element="tns:getPrintControlMsg" />
  1038. </wsdl:message>
  1039. <wsdl:message name="getPrintControlMsgSoapOut">
  1040. <wsdl:part name="parameters" element="tns:getPrintControlMsgResponse" />
  1041. </wsdl:message>
  1042. <wsdl:message name="getPrintOnlySoapIn">
  1043. <wsdl:part name="parameters" element="tns:getPrintOnly" />
  1044. </wsdl:message>
  1045. <wsdl:message name="getPrintOnlySoapOut">
  1046. <wsdl:part name="parameters" element="tns:getPrintOnlyResponse" />
  1047. </wsdl:message>
  1048. <wsdl:message name="getMultiprintableSoapIn">
  1049. <wsdl:part name="parameters" element="tns:getMultiprintable" />
  1050. </wsdl:message>
  1051. <wsdl:message name="getMultiprintableSoapOut">
  1052. <wsdl:part name="parameters" element="tns:getMultiprintableResponse" />
  1053. </wsdl:message>
  1054. <wsdl:message name="checkHardcdSoapIn">
  1055. <wsdl:part name="parameters" element="tns:checkHardcd" />
  1056. </wsdl:message>
  1057. <wsdl:message name="checkHardcdSoapOut">
  1058. <wsdl:part name="parameters" element="tns:checkHardcdResponse" />
  1059. </wsdl:message>
  1060. <wsdl:message name="GetBaseDataSoapIn">
  1061. <wsdl:part name="parameters" element="tns:GetBaseData" />
  1062. </wsdl:message>
  1063. <wsdl:message name="GetBaseDataSoapOut">
  1064. <wsdl:part name="parameters" element="tns:GetBaseDataResponse" />
  1065. </wsdl:message>
  1066. <wsdl:message name="setSignImageSoapIn">
  1067. <wsdl:part name="parameters" element="tns:setSignImage" />
  1068. </wsdl:message>
  1069. <wsdl:message name="setSignImageSoapOut">
  1070. <wsdl:part name="parameters" element="tns:setSignImageResponse" />
  1071. </wsdl:message>
  1072. <wsdl:message name="getUserSignDataInfoSoapIn">
  1073. <wsdl:part name="parameters" element="tns:getUserSignDataInfo" />
  1074. </wsdl:message>
  1075. <wsdl:message name="getUserSignDataInfoSoapOut">
  1076. <wsdl:part name="parameters" element="tns:getUserSignDataInfoResponse" />
  1077. </wsdl:message>
  1078. <wsdl:message name="getEmrDataStringSoapIn">
  1079. <wsdl:part name="parameters" element="tns:getEmrDataString" />
  1080. </wsdl:message>
  1081. <wsdl:message name="getEmrDataStringSoapOut">
  1082. <wsdl:part name="parameters" element="tns:getEmrDataStringResponse" />
  1083. </wsdl:message>
  1084. <wsdl:portType name="HospitalSvcSoap">
  1085. <wsdl:operation name="CheckWebService">
  1086. <wsdl:input message="tns:CheckWebServiceSoapIn" />
  1087. <wsdl:output message="tns:CheckWebServiceSoapOut" />
  1088. </wsdl:operation>
  1089. <wsdl:operation name="checkCendbService">
  1090. <wsdl:input message="tns:checkCendbServiceSoapIn" />
  1091. <wsdl:output message="tns:checkCendbServiceSoapOut" />
  1092. </wsdl:operation>
  1093. <wsdl:operation name="CheckDatabaseConnection">
  1094. <wsdl:input message="tns:CheckDatabaseConnectionSoapIn" />
  1095. <wsdl:output message="tns:CheckDatabaseConnectionSoapOut" />
  1096. </wsdl:operation>
  1097. <wsdl:operation name="GetUserInfo">
  1098. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">사용자 상세정보</wsdl:documentation>
  1099. <wsdl:input message="tns:GetUserInfoSoapIn" />
  1100. <wsdl:output message="tns:GetUserInfoSoapOut" />
  1101. </wsdl:operation>
  1102. <wsdl:operation name="GetTrmtDateList">
  1103. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">환자 진료일 조회</wsdl:documentation>
  1104. <wsdl:input message="tns:GetTrmtDateListSoapIn" />
  1105. <wsdl:output message="tns:GetTrmtDateListSoapOut" />
  1106. </wsdl:operation>
  1107. <wsdl:operation name="GetPatientList">
  1108. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">환자리스트 조회</wsdl:documentation>
  1109. <wsdl:input message="tns:GetPatientListSoapIn" />
  1110. <wsdl:output message="tns:GetPatientListSoapOut" />
  1111. </wsdl:operation>
  1112. <wsdl:operation name="GetDeptList">
  1113. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">환자리스트 조회조건 중 진료과 조회</wsdl:documentation>
  1114. <wsdl:input message="tns:GetDeptListSoapIn" />
  1115. <wsdl:output message="tns:GetDeptListSoapOut" />
  1116. </wsdl:operation>
  1117. <wsdl:operation name="GetWardList">
  1118. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">환자리스트 조회조건 중 병동 조회</wsdl:documentation>
  1119. <wsdl:input message="tns:GetWardListSoapIn" />
  1120. <wsdl:output message="tns:GetWardListSoapOut" />
  1121. </wsdl:operation>
  1122. <wsdl:operation name="GetDoctorList">
  1123. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">환자리스트 조회조건 중 의사 조회</wsdl:documentation>
  1124. <wsdl:input message="tns:GetDoctorListSoapIn" />
  1125. <wsdl:output message="tns:GetDoctorListSoapOut" />
  1126. </wsdl:operation>
  1127. <wsdl:operation name="GetSrchPatInfo">
  1128. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">환자리스트 조회조건 중 환자 검색 팝업</wsdl:documentation>
  1129. <wsdl:input message="tns:GetSrchPatInfoSoapIn" />
  1130. <wsdl:output message="tns:GetSrchPatInfoSoapOut" />
  1131. </wsdl:operation>
  1132. <wsdl:operation name="GetPatientInfo">
  1133. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">환자 선택시 수진일자별 진단 데이터 조회</wsdl:documentation>
  1134. <wsdl:input message="tns:GetPatientInfoSoapIn" />
  1135. <wsdl:output message="tns:GetPatientInfoSoapOut" />
  1136. </wsdl:operation>
  1137. <wsdl:operation name="GetConsentSetList">
  1138. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">동의서 SET 조회</wsdl:documentation>
  1139. <wsdl:input message="tns:GetConsentSetListSoapIn" />
  1140. <wsdl:output message="tns:GetConsentSetListSoapOut" />
  1141. </wsdl:operation>
  1142. <wsdl:operation name="SetUserFormSetList">
  1143. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">사용자 즐겨찾기 추가</wsdl:documentation>
  1144. <wsdl:input message="tns:SetUserFormSetListSoapIn" />
  1145. <wsdl:output message="tns:SetUserFormSetListSoapOut" />
  1146. </wsdl:operation>
  1147. <wsdl:operation name="DelUserFormSetList">
  1148. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">사용자 즐겨찾기 삭제</wsdl:documentation>
  1149. <wsdl:input message="tns:DelUserFormSetListSoapIn" />
  1150. <wsdl:output message="tns:DelUserFormSetListSoapOut" />
  1151. </wsdl:operation>
  1152. <wsdl:operation name="checkOcrDup">
  1153. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">OCRTAG 중복 확인</wsdl:documentation>
  1154. <wsdl:input message="tns:checkOcrDupSoapIn" />
  1155. <wsdl:output message="tns:checkOcrDupSoapOut" />
  1156. </wsdl:operation>
  1157. <wsdl:operation name="GetOcrTag">
  1158. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">OCRTAG 할당</wsdl:documentation>
  1159. <wsdl:input message="tns:GetOcrTagSoapIn" />
  1160. <wsdl:output message="tns:GetOcrTagSoapOut" />
  1161. </wsdl:operation>
  1162. <wsdl:operation name="GetSignImage">
  1163. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">사용자의 서명이미지 조회</wsdl:documentation>
  1164. <wsdl:input message="tns:GetSignImageSoapIn" />
  1165. <wsdl:output message="tns:GetSignImageSoapOut" />
  1166. </wsdl:operation>
  1167. <wsdl:operation name="GetDiagNameList">
  1168. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">주,부 진단명 리스트 조회(진단명 팝업)</wsdl:documentation>
  1169. <wsdl:input message="tns:GetDiagNameListSoapIn" />
  1170. <wsdl:output message="tns:GetDiagNameListSoapOut" />
  1171. </wsdl:operation>
  1172. <wsdl:operation name="GetFileName">
  1173. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">파일이름 조회</wsdl:documentation>
  1174. <wsdl:input message="tns:GetFileNameSoapIn" />
  1175. <wsdl:output message="tns:GetFileNameSoapOut" />
  1176. </wsdl:operation>
  1177. <wsdl:operation name="delEformData">
  1178. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">setFileName으로 등록된 데이터 삭제하는 함수</wsdl:documentation>
  1179. <wsdl:input message="tns:delEformDataSoapIn" />
  1180. <wsdl:output message="tns:delEformDataSoapOut" />
  1181. </wsdl:operation>
  1182. <wsdl:operation name="UpdateUserSetup">
  1183. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">모바일 Default Tap(외래, 입원..) 설정</wsdl:documentation>
  1184. <wsdl:input message="tns:UpdateUserSetupSoapIn" />
  1185. <wsdl:output message="tns:UpdateUserSetupSoapOut" />
  1186. </wsdl:operation>
  1187. <wsdl:operation name="GetUnfinishedListPerDoctor">
  1188. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">모바일 주치의별 미작성 리스트 가져오기</wsdl:documentation>
  1189. <wsdl:input message="tns:GetUnfinishedListPerDoctorSoapIn" />
  1190. <wsdl:output message="tns:GetUnfinishedListPerDoctorSoapOut" />
  1191. </wsdl:operation>
  1192. <wsdl:operation name="doLogin">
  1193. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">모바일 사용자 로그인 API</wsdl:documentation>
  1194. <wsdl:input message="tns:doLoginSoapIn" />
  1195. <wsdl:output message="tns:doLoginSoapOut" />
  1196. </wsdl:operation>
  1197. <wsdl:operation name="GetMobileUserInfo">
  1198. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">모바일 사용자 정보요청 API</wsdl:documentation>
  1199. <wsdl:input message="tns:GetMobileUserInfoSoapIn" />
  1200. <wsdl:output message="tns:GetMobileUserInfoSoapOut" />
  1201. </wsdl:operation>
  1202. <wsdl:operation name="checkPrintablePatient">
  1203. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">경북대학교병원, 출력 가능한 수진이력을 가진 환자인지 조회</wsdl:documentation>
  1204. <wsdl:input message="tns:checkPrintablePatientSoapIn" />
  1205. <wsdl:output message="tns:checkPrintablePatientSoapOut" />
  1206. </wsdl:operation>
  1207. <wsdl:operation name="getPenOptions">
  1208. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">펜 설정 검색</wsdl:documentation>
  1209. <wsdl:input message="tns:getPenOptionsSoapIn" />
  1210. <wsdl:output message="tns:getPenOptionsSoapOut" />
  1211. </wsdl:operation>
  1212. <wsdl:operation name="getZoomRate">
  1213. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">확대 배율 검색</wsdl:documentation>
  1214. <wsdl:input message="tns:getZoomRateSoapIn" />
  1215. <wsdl:output message="tns:getZoomRateSoapOut" />
  1216. </wsdl:operation>
  1217. <wsdl:operation name="getPrintControlMsg">
  1218. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">프린트 제어 메시지 검색</wsdl:documentation>
  1219. <wsdl:input message="tns:getPrintControlMsgSoapIn" />
  1220. <wsdl:output message="tns:getPrintControlMsgSoapOut" />
  1221. </wsdl:operation>
  1222. <wsdl:operation name="getPrintOnly">
  1223. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">프린트 제어 메시지 검색</wsdl:documentation>
  1224. <wsdl:input message="tns:getPrintOnlySoapIn" />
  1225. <wsdl:output message="tns:getPrintOnlySoapOut" />
  1226. </wsdl:operation>
  1227. <wsdl:operation name="getMultiprintable">
  1228. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">멀티출력 가능 서식 카운트</wsdl:documentation>
  1229. <wsdl:input message="tns:getMultiprintableSoapIn" />
  1230. <wsdl:output message="tns:getMultiprintableSoapOut" />
  1231. </wsdl:operation>
  1232. <wsdl:operation name="checkHardcd">
  1233. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">기준자료검색</wsdl:documentation>
  1234. <wsdl:input message="tns:checkHardcdSoapIn" />
  1235. <wsdl:output message="tns:checkHardcdSoapOut" />
  1236. </wsdl:operation>
  1237. <wsdl:operation name="GetBaseData">
  1238. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">모바일 세션 시간을 가져옴</wsdl:documentation>
  1239. <wsdl:input message="tns:GetBaseDataSoapIn" />
  1240. <wsdl:output message="tns:GetBaseDataSoapOut" />
  1241. </wsdl:operation>
  1242. <wsdl:operation name="setSignImage">
  1243. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">서명 이미지 저장</wsdl:documentation>
  1244. <wsdl:input message="tns:setSignImageSoapIn" />
  1245. <wsdl:output message="tns:setSignImageSoapOut" />
  1246. </wsdl:operation>
  1247. <wsdl:operation name="getUserSignDataInfo">
  1248. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">서명 이미지 조회</wsdl:documentation>
  1249. <wsdl:input message="tns:getUserSignDataInfoSoapIn" />
  1250. <wsdl:output message="tns:getUserSignDataInfoSoapOut" />
  1251. </wsdl:operation>
  1252. <wsdl:operation name="getEmrDataString">
  1253. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">파라미터 필드 메시지 조회</wsdl:documentation>
  1254. <wsdl:input message="tns:getEmrDataStringSoapIn" />
  1255. <wsdl:output message="tns:getEmrDataStringSoapOut" />
  1256. </wsdl:operation>
  1257. </wsdl:portType>
  1258. <wsdl:binding name="HospitalSvcSoap" type="tns:HospitalSvcSoap">
  1259. <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
  1260. <wsdl:operation name="CheckWebService">
  1261. <soap:operation soapAction="http://tempuri.org/CheckWebService" style="document" />
  1262. <wsdl:input>
  1263. <soap:body use="literal" />
  1264. </wsdl:input>
  1265. <wsdl:output>
  1266. <soap:body use="literal" />
  1267. </wsdl:output>
  1268. </wsdl:operation>
  1269. <wsdl:operation name="checkCendbService">
  1270. <soap:operation soapAction="http://tempuri.org/checkCendbService" style="document" />
  1271. <wsdl:input>
  1272. <soap:body use="literal" />
  1273. </wsdl:input>
  1274. <wsdl:output>
  1275. <soap:body use="literal" />
  1276. </wsdl:output>
  1277. </wsdl:operation>
  1278. <wsdl:operation name="CheckDatabaseConnection">
  1279. <soap:operation soapAction="http://tempuri.org/CheckDatabaseConnection" style="document" />
  1280. <wsdl:input>
  1281. <soap:body use="literal" />
  1282. </wsdl:input>
  1283. <wsdl:output>
  1284. <soap:body use="literal" />
  1285. </wsdl:output>
  1286. </wsdl:operation>
  1287. <wsdl:operation name="GetUserInfo">
  1288. <soap:operation soapAction="http://tempuri.org/GetUserInfo" style="document" />
  1289. <wsdl:input>
  1290. <soap:body use="literal" />
  1291. </wsdl:input>
  1292. <wsdl:output>
  1293. <soap:body use="literal" />
  1294. </wsdl:output>
  1295. </wsdl:operation>
  1296. <wsdl:operation name="GetTrmtDateList">
  1297. <soap:operation soapAction="http://tempuri.org/GetTrmtDateList" style="document" />
  1298. <wsdl:input>
  1299. <soap:body use="literal" />
  1300. </wsdl:input>
  1301. <wsdl:output>
  1302. <soap:body use="literal" />
  1303. </wsdl:output>
  1304. </wsdl:operation>
  1305. <wsdl:operation name="GetPatientList">
  1306. <soap:operation soapAction="http://tempuri.org/GetPatientList" style="document" />
  1307. <wsdl:input>
  1308. <soap:body use="literal" />
  1309. </wsdl:input>
  1310. <wsdl:output>
  1311. <soap:body use="literal" />
  1312. </wsdl:output>
  1313. </wsdl:operation>
  1314. <wsdl:operation name="GetDeptList">
  1315. <soap:operation soapAction="http://tempuri.org/GetDeptList" style="document" />
  1316. <wsdl:input>
  1317. <soap:body use="literal" />
  1318. </wsdl:input>
  1319. <wsdl:output>
  1320. <soap:body use="literal" />
  1321. </wsdl:output>
  1322. </wsdl:operation>
  1323. <wsdl:operation name="GetWardList">
  1324. <soap:operation soapAction="http://tempuri.org/GetWardList" style="document" />
  1325. <wsdl:input>
  1326. <soap:body use="literal" />
  1327. </wsdl:input>
  1328. <wsdl:output>
  1329. <soap:body use="literal" />
  1330. </wsdl:output>
  1331. </wsdl:operation>
  1332. <wsdl:operation name="GetDoctorList">
  1333. <soap:operation soapAction="http://tempuri.org/GetDoctorList" style="document" />
  1334. <wsdl:input>
  1335. <soap:body use="literal" />
  1336. </wsdl:input>
  1337. <wsdl:output>
  1338. <soap:body use="literal" />
  1339. </wsdl:output>
  1340. </wsdl:operation>
  1341. <wsdl:operation name="GetSrchPatInfo">
  1342. <soap:operation soapAction="http://tempuri.org/GetSrchPatInfo" style="document" />
  1343. <wsdl:input>
  1344. <soap:body use="literal" />
  1345. </wsdl:input>
  1346. <wsdl:output>
  1347. <soap:body use="literal" />
  1348. </wsdl:output>
  1349. </wsdl:operation>
  1350. <wsdl:operation name="GetPatientInfo">
  1351. <soap:operation soapAction="http://tempuri.org/GetPatientInfo" style="document" />
  1352. <wsdl:input>
  1353. <soap:body use="literal" />
  1354. </wsdl:input>
  1355. <wsdl:output>
  1356. <soap:body use="literal" />
  1357. </wsdl:output>
  1358. </wsdl:operation>
  1359. <wsdl:operation name="GetConsentSetList">
  1360. <soap:operation soapAction="http://tempuri.org/GetConsentSetList" style="document" />
  1361. <wsdl:input>
  1362. <soap:body use="literal" />
  1363. </wsdl:input>
  1364. <wsdl:output>
  1365. <soap:body use="literal" />
  1366. </wsdl:output>
  1367. </wsdl:operation>
  1368. <wsdl:operation name="SetUserFormSetList">
  1369. <soap:operation soapAction="http://tempuri.org/SetUserFormSetList" style="document" />
  1370. <wsdl:input>
  1371. <soap:body use="literal" />
  1372. </wsdl:input>
  1373. <wsdl:output>
  1374. <soap:body use="literal" />
  1375. </wsdl:output>
  1376. </wsdl:operation>
  1377. <wsdl:operation name="DelUserFormSetList">
  1378. <soap:operation soapAction="http://tempuri.org/DelUserFormSetList" style="document" />
  1379. <wsdl:input>
  1380. <soap:body use="literal" />
  1381. </wsdl:input>
  1382. <wsdl:output>
  1383. <soap:body use="literal" />
  1384. </wsdl:output>
  1385. </wsdl:operation>
  1386. <wsdl:operation name="checkOcrDup">
  1387. <soap:operation soapAction="http://tempuri.org/checkOcrDup" style="document" />
  1388. <wsdl:input>
  1389. <soap:body use="literal" />
  1390. </wsdl:input>
  1391. <wsdl:output>
  1392. <soap:body use="literal" />
  1393. </wsdl:output>
  1394. </wsdl:operation>
  1395. <wsdl:operation name="GetOcrTag">
  1396. <soap:operation soapAction="http://tempuri.org/GetOcrTag" style="document" />
  1397. <wsdl:input>
  1398. <soap:body use="literal" />
  1399. </wsdl:input>
  1400. <wsdl:output>
  1401. <soap:body use="literal" />
  1402. </wsdl:output>
  1403. </wsdl:operation>
  1404. <wsdl:operation name="GetSignImage">
  1405. <soap:operation soapAction="http://tempuri.org/GetSignImage" style="document" />
  1406. <wsdl:input>
  1407. <soap:body use="literal" />
  1408. </wsdl:input>
  1409. <wsdl:output>
  1410. <soap:body use="literal" />
  1411. </wsdl:output>
  1412. </wsdl:operation>
  1413. <wsdl:operation name="GetDiagNameList">
  1414. <soap:operation soapAction="http://tempuri.org/GetDiagNameList" style="document" />
  1415. <wsdl:input>
  1416. <soap:body use="literal" />
  1417. </wsdl:input>
  1418. <wsdl:output>
  1419. <soap:body use="literal" />
  1420. </wsdl:output>
  1421. </wsdl:operation>
  1422. <wsdl:operation name="GetFileName">
  1423. <soap:operation soapAction="http://tempuri.org/GetFileName" style="document" />
  1424. <wsdl:input>
  1425. <soap:body use="literal" />
  1426. </wsdl:input>
  1427. <wsdl:output>
  1428. <soap:body use="literal" />
  1429. </wsdl:output>
  1430. </wsdl:operation>
  1431. <wsdl:operation name="delEformData">
  1432. <soap:operation soapAction="http://tempuri.org/delEformData" style="document" />
  1433. <wsdl:input>
  1434. <soap:body use="literal" />
  1435. </wsdl:input>
  1436. <wsdl:output>
  1437. <soap:body use="literal" />
  1438. </wsdl:output>
  1439. </wsdl:operation>
  1440. <wsdl:operation name="UpdateUserSetup">
  1441. <soap:operation soapAction="http://tempuri.org/UpdateUserSetup" style="document" />
  1442. <wsdl:input>
  1443. <soap:body use="literal" />
  1444. </wsdl:input>
  1445. <wsdl:output>
  1446. <soap:body use="literal" />
  1447. </wsdl:output>
  1448. </wsdl:operation>
  1449. <wsdl:operation name="GetUnfinishedListPerDoctor">
  1450. <soap:operation soapAction="http://tempuri.org/GetUnfinishedListPerDoctor" style="document" />
  1451. <wsdl:input>
  1452. <soap:body use="literal" />
  1453. </wsdl:input>
  1454. <wsdl:output>
  1455. <soap:body use="literal" />
  1456. </wsdl:output>
  1457. </wsdl:operation>
  1458. <wsdl:operation name="doLogin">
  1459. <soap:operation soapAction="http://tempuri.org/doLogin" style="document" />
  1460. <wsdl:input>
  1461. <soap:body use="literal" />
  1462. </wsdl:input>
  1463. <wsdl:output>
  1464. <soap:body use="literal" />
  1465. </wsdl:output>
  1466. </wsdl:operation>
  1467. <wsdl:operation name="GetMobileUserInfo">
  1468. <soap:operation soapAction="http://tempuri.org/GetMobileUserInfo" style="document" />
  1469. <wsdl:input>
  1470. <soap:body use="literal" />
  1471. </wsdl:input>
  1472. <wsdl:output>
  1473. <soap:body use="literal" />
  1474. </wsdl:output>
  1475. </wsdl:operation>
  1476. <wsdl:operation name="checkPrintablePatient">
  1477. <soap:operation soapAction="http://tempuri.org/checkPrintablePatient" style="document" />
  1478. <wsdl:input>
  1479. <soap:body use="literal" />
  1480. </wsdl:input>
  1481. <wsdl:output>
  1482. <soap:body use="literal" />
  1483. </wsdl:output>
  1484. </wsdl:operation>
  1485. <wsdl:operation name="getPenOptions">
  1486. <soap:operation soapAction="http://tempuri.org/getPenOptions" style="document" />
  1487. <wsdl:input>
  1488. <soap:body use="literal" />
  1489. </wsdl:input>
  1490. <wsdl:output>
  1491. <soap:body use="literal" />
  1492. </wsdl:output>
  1493. </wsdl:operation>
  1494. <wsdl:operation name="getZoomRate">
  1495. <soap:operation soapAction="http://tempuri.org/getZoomRate" style="document" />
  1496. <wsdl:input>
  1497. <soap:body use="literal" />
  1498. </wsdl:input>
  1499. <wsdl:output>
  1500. <soap:body use="literal" />
  1501. </wsdl:output>
  1502. </wsdl:operation>
  1503. <wsdl:operation name="getPrintControlMsg">
  1504. <soap:operation soapAction="http://tempuri.org/getPrintControlMsg" style="document" />
  1505. <wsdl:input>
  1506. <soap:body use="literal" />
  1507. </wsdl:input>
  1508. <wsdl:output>
  1509. <soap:body use="literal" />
  1510. </wsdl:output>
  1511. </wsdl:operation>
  1512. <wsdl:operation name="getPrintOnly">
  1513. <soap:operation soapAction="http://tempuri.org/getPrintOnly" style="document" />
  1514. <wsdl:input>
  1515. <soap:body use="literal" />
  1516. </wsdl:input>
  1517. <wsdl:output>
  1518. <soap:body use="literal" />
  1519. </wsdl:output>
  1520. </wsdl:operation>
  1521. <wsdl:operation name="getMultiprintable">
  1522. <soap:operation soapAction="http://tempuri.org/getMultiprintable" style="document" />
  1523. <wsdl:input>
  1524. <soap:body use="literal" />
  1525. </wsdl:input>
  1526. <wsdl:output>
  1527. <soap:body use="literal" />
  1528. </wsdl:output>
  1529. </wsdl:operation>
  1530. <wsdl:operation name="checkHardcd">
  1531. <soap:operation soapAction="http://tempuri.org/checkHardcd" style="document" />
  1532. <wsdl:input>
  1533. <soap:body use="literal" />
  1534. </wsdl:input>
  1535. <wsdl:output>
  1536. <soap:body use="literal" />
  1537. </wsdl:output>
  1538. </wsdl:operation>
  1539. <wsdl:operation name="GetBaseData">
  1540. <soap:operation soapAction="http://tempuri.org/GetBaseData" style="document" />
  1541. <wsdl:input>
  1542. <soap:body use="literal" />
  1543. </wsdl:input>
  1544. <wsdl:output>
  1545. <soap:body use="literal" />
  1546. </wsdl:output>
  1547. </wsdl:operation>
  1548. <wsdl:operation name="setSignImage">
  1549. <soap:operation soapAction="http://tempuri.org/setSignImage" style="document" />
  1550. <wsdl:input>
  1551. <soap:body use="literal" />
  1552. </wsdl:input>
  1553. <wsdl:output>
  1554. <soap:body use="literal" />
  1555. </wsdl:output>
  1556. </wsdl:operation>
  1557. <wsdl:operation name="getUserSignDataInfo">
  1558. <soap:operation soapAction="http://tempuri.org/getUserSignDataInfo" style="document" />
  1559. <wsdl:input>
  1560. <soap:body use="literal" />
  1561. </wsdl:input>
  1562. <wsdl:output>
  1563. <soap:body use="literal" />
  1564. </wsdl:output>
  1565. </wsdl:operation>
  1566. <wsdl:operation name="getEmrDataString">
  1567. <soap:operation soapAction="http://tempuri.org/getEmrDataString" style="document" />
  1568. <wsdl:input>
  1569. <soap:body use="literal" />
  1570. </wsdl:input>
  1571. <wsdl:output>
  1572. <soap:body use="literal" />
  1573. </wsdl:output>
  1574. </wsdl:operation>
  1575. </wsdl:binding>
  1576. <wsdl:binding name="HospitalSvcSoap12" type="tns:HospitalSvcSoap">
  1577. <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
  1578. <wsdl:operation name="CheckWebService">
  1579. <soap12:operation soapAction="http://tempuri.org/CheckWebService" style="document" />
  1580. <wsdl:input>
  1581. <soap12:body use="literal" />
  1582. </wsdl:input>
  1583. <wsdl:output>
  1584. <soap12:body use="literal" />
  1585. </wsdl:output>
  1586. </wsdl:operation>
  1587. <wsdl:operation name="checkCendbService">
  1588. <soap12:operation soapAction="http://tempuri.org/checkCendbService" style="document" />
  1589. <wsdl:input>
  1590. <soap12:body use="literal" />
  1591. </wsdl:input>
  1592. <wsdl:output>
  1593. <soap12:body use="literal" />
  1594. </wsdl:output>
  1595. </wsdl:operation>
  1596. <wsdl:operation name="CheckDatabaseConnection">
  1597. <soap12:operation soapAction="http://tempuri.org/CheckDatabaseConnection" style="document" />
  1598. <wsdl:input>
  1599. <soap12:body use="literal" />
  1600. </wsdl:input>
  1601. <wsdl:output>
  1602. <soap12:body use="literal" />
  1603. </wsdl:output>
  1604. </wsdl:operation>
  1605. <wsdl:operation name="GetUserInfo">
  1606. <soap12:operation soapAction="http://tempuri.org/GetUserInfo" style="document" />
  1607. <wsdl:input>
  1608. <soap12:body use="literal" />
  1609. </wsdl:input>
  1610. <wsdl:output>
  1611. <soap12:body use="literal" />
  1612. </wsdl:output>
  1613. </wsdl:operation>
  1614. <wsdl:operation name="GetTrmtDateList">
  1615. <soap12:operation soapAction="http://tempuri.org/GetTrmtDateList" style="document" />
  1616. <wsdl:input>
  1617. <soap12:body use="literal" />
  1618. </wsdl:input>
  1619. <wsdl:output>
  1620. <soap12:body use="literal" />
  1621. </wsdl:output>
  1622. </wsdl:operation>
  1623. <wsdl:operation name="GetPatientList">
  1624. <soap12:operation soapAction="http://tempuri.org/GetPatientList" style="document" />
  1625. <wsdl:input>
  1626. <soap12:body use="literal" />
  1627. </wsdl:input>
  1628. <wsdl:output>
  1629. <soap12:body use="literal" />
  1630. </wsdl:output>
  1631. </wsdl:operation>
  1632. <wsdl:operation name="GetDeptList">
  1633. <soap12:operation soapAction="http://tempuri.org/GetDeptList" style="document" />
  1634. <wsdl:input>
  1635. <soap12:body use="literal" />
  1636. </wsdl:input>
  1637. <wsdl:output>
  1638. <soap12:body use="literal" />
  1639. </wsdl:output>
  1640. </wsdl:operation>
  1641. <wsdl:operation name="GetWardList">
  1642. <soap12:operation soapAction="http://tempuri.org/GetWardList" style="document" />
  1643. <wsdl:input>
  1644. <soap12:body use="literal" />
  1645. </wsdl:input>
  1646. <wsdl:output>
  1647. <soap12:body use="literal" />
  1648. </wsdl:output>
  1649. </wsdl:operation>
  1650. <wsdl:operation name="GetDoctorList">
  1651. <soap12:operation soapAction="http://tempuri.org/GetDoctorList" style="document" />
  1652. <wsdl:input>
  1653. <soap12:body use="literal" />
  1654. </wsdl:input>
  1655. <wsdl:output>
  1656. <soap12:body use="literal" />
  1657. </wsdl:output>
  1658. </wsdl:operation>
  1659. <wsdl:operation name="GetSrchPatInfo">
  1660. <soap12:operation soapAction="http://tempuri.org/GetSrchPatInfo" style="document" />
  1661. <wsdl:input>
  1662. <soap12:body use="literal" />
  1663. </wsdl:input>
  1664. <wsdl:output>
  1665. <soap12:body use="literal" />
  1666. </wsdl:output>
  1667. </wsdl:operation>
  1668. <wsdl:operation name="GetPatientInfo">
  1669. <soap12:operation soapAction="http://tempuri.org/GetPatientInfo" style="document" />
  1670. <wsdl:input>
  1671. <soap12:body use="literal" />
  1672. </wsdl:input>
  1673. <wsdl:output>
  1674. <soap12:body use="literal" />
  1675. </wsdl:output>
  1676. </wsdl:operation>
  1677. <wsdl:operation name="GetConsentSetList">
  1678. <soap12:operation soapAction="http://tempuri.org/GetConsentSetList" style="document" />
  1679. <wsdl:input>
  1680. <soap12:body use="literal" />
  1681. </wsdl:input>
  1682. <wsdl:output>
  1683. <soap12:body use="literal" />
  1684. </wsdl:output>
  1685. </wsdl:operation>
  1686. <wsdl:operation name="SetUserFormSetList">
  1687. <soap12:operation soapAction="http://tempuri.org/SetUserFormSetList" style="document" />
  1688. <wsdl:input>
  1689. <soap12:body use="literal" />
  1690. </wsdl:input>
  1691. <wsdl:output>
  1692. <soap12:body use="literal" />
  1693. </wsdl:output>
  1694. </wsdl:operation>
  1695. <wsdl:operation name="DelUserFormSetList">
  1696. <soap12:operation soapAction="http://tempuri.org/DelUserFormSetList" style="document" />
  1697. <wsdl:input>
  1698. <soap12:body use="literal" />
  1699. </wsdl:input>
  1700. <wsdl:output>
  1701. <soap12:body use="literal" />
  1702. </wsdl:output>
  1703. </wsdl:operation>
  1704. <wsdl:operation name="checkOcrDup">
  1705. <soap12:operation soapAction="http://tempuri.org/checkOcrDup" style="document" />
  1706. <wsdl:input>
  1707. <soap12:body use="literal" />
  1708. </wsdl:input>
  1709. <wsdl:output>
  1710. <soap12:body use="literal" />
  1711. </wsdl:output>
  1712. </wsdl:operation>
  1713. <wsdl:operation name="GetOcrTag">
  1714. <soap12:operation soapAction="http://tempuri.org/GetOcrTag" style="document" />
  1715. <wsdl:input>
  1716. <soap12:body use="literal" />
  1717. </wsdl:input>
  1718. <wsdl:output>
  1719. <soap12:body use="literal" />
  1720. </wsdl:output>
  1721. </wsdl:operation>
  1722. <wsdl:operation name="GetSignImage">
  1723. <soap12:operation soapAction="http://tempuri.org/GetSignImage" style="document" />
  1724. <wsdl:input>
  1725. <soap12:body use="literal" />
  1726. </wsdl:input>
  1727. <wsdl:output>
  1728. <soap12:body use="literal" />
  1729. </wsdl:output>
  1730. </wsdl:operation>
  1731. <wsdl:operation name="GetDiagNameList">
  1732. <soap12:operation soapAction="http://tempuri.org/GetDiagNameList" style="document" />
  1733. <wsdl:input>
  1734. <soap12:body use="literal" />
  1735. </wsdl:input>
  1736. <wsdl:output>
  1737. <soap12:body use="literal" />
  1738. </wsdl:output>
  1739. </wsdl:operation>
  1740. <wsdl:operation name="GetFileName">
  1741. <soap12:operation soapAction="http://tempuri.org/GetFileName" style="document" />
  1742. <wsdl:input>
  1743. <soap12:body use="literal" />
  1744. </wsdl:input>
  1745. <wsdl:output>
  1746. <soap12:body use="literal" />
  1747. </wsdl:output>
  1748. </wsdl:operation>
  1749. <wsdl:operation name="delEformData">
  1750. <soap12:operation soapAction="http://tempuri.org/delEformData" style="document" />
  1751. <wsdl:input>
  1752. <soap12:body use="literal" />
  1753. </wsdl:input>
  1754. <wsdl:output>
  1755. <soap12:body use="literal" />
  1756. </wsdl:output>
  1757. </wsdl:operation>
  1758. <wsdl:operation name="UpdateUserSetup">
  1759. <soap12:operation soapAction="http://tempuri.org/UpdateUserSetup" style="document" />
  1760. <wsdl:input>
  1761. <soap12:body use="literal" />
  1762. </wsdl:input>
  1763. <wsdl:output>
  1764. <soap12:body use="literal" />
  1765. </wsdl:output>
  1766. </wsdl:operation>
  1767. <wsdl:operation name="GetUnfinishedListPerDoctor">
  1768. <soap12:operation soapAction="http://tempuri.org/GetUnfinishedListPerDoctor" style="document" />
  1769. <wsdl:input>
  1770. <soap12:body use="literal" />
  1771. </wsdl:input>
  1772. <wsdl:output>
  1773. <soap12:body use="literal" />
  1774. </wsdl:output>
  1775. </wsdl:operation>
  1776. <wsdl:operation name="doLogin">
  1777. <soap12:operation soapAction="http://tempuri.org/doLogin" style="document" />
  1778. <wsdl:input>
  1779. <soap12:body use="literal" />
  1780. </wsdl:input>
  1781. <wsdl:output>
  1782. <soap12:body use="literal" />
  1783. </wsdl:output>
  1784. </wsdl:operation>
  1785. <wsdl:operation name="GetMobileUserInfo">
  1786. <soap12:operation soapAction="http://tempuri.org/GetMobileUserInfo" style="document" />
  1787. <wsdl:input>
  1788. <soap12:body use="literal" />
  1789. </wsdl:input>
  1790. <wsdl:output>
  1791. <soap12:body use="literal" />
  1792. </wsdl:output>
  1793. </wsdl:operation>
  1794. <wsdl:operation name="checkPrintablePatient">
  1795. <soap12:operation soapAction="http://tempuri.org/checkPrintablePatient" style="document" />
  1796. <wsdl:input>
  1797. <soap12:body use="literal" />
  1798. </wsdl:input>
  1799. <wsdl:output>
  1800. <soap12:body use="literal" />
  1801. </wsdl:output>
  1802. </wsdl:operation>
  1803. <wsdl:operation name="getPenOptions">
  1804. <soap12:operation soapAction="http://tempuri.org/getPenOptions" style="document" />
  1805. <wsdl:input>
  1806. <soap12:body use="literal" />
  1807. </wsdl:input>
  1808. <wsdl:output>
  1809. <soap12:body use="literal" />
  1810. </wsdl:output>
  1811. </wsdl:operation>
  1812. <wsdl:operation name="getZoomRate">
  1813. <soap12:operation soapAction="http://tempuri.org/getZoomRate" style="document" />
  1814. <wsdl:input>
  1815. <soap12:body use="literal" />
  1816. </wsdl:input>
  1817. <wsdl:output>
  1818. <soap12:body use="literal" />
  1819. </wsdl:output>
  1820. </wsdl:operation>
  1821. <wsdl:operation name="getPrintControlMsg">
  1822. <soap12:operation soapAction="http://tempuri.org/getPrintControlMsg" style="document" />
  1823. <wsdl:input>
  1824. <soap12:body use="literal" />
  1825. </wsdl:input>
  1826. <wsdl:output>
  1827. <soap12:body use="literal" />
  1828. </wsdl:output>
  1829. </wsdl:operation>
  1830. <wsdl:operation name="getPrintOnly">
  1831. <soap12:operation soapAction="http://tempuri.org/getPrintOnly" style="document" />
  1832. <wsdl:input>
  1833. <soap12:body use="literal" />
  1834. </wsdl:input>
  1835. <wsdl:output>
  1836. <soap12:body use="literal" />
  1837. </wsdl:output>
  1838. </wsdl:operation>
  1839. <wsdl:operation name="getMultiprintable">
  1840. <soap12:operation soapAction="http://tempuri.org/getMultiprintable" style="document" />
  1841. <wsdl:input>
  1842. <soap12:body use="literal" />
  1843. </wsdl:input>
  1844. <wsdl:output>
  1845. <soap12:body use="literal" />
  1846. </wsdl:output>
  1847. </wsdl:operation>
  1848. <wsdl:operation name="checkHardcd">
  1849. <soap12:operation soapAction="http://tempuri.org/checkHardcd" style="document" />
  1850. <wsdl:input>
  1851. <soap12:body use="literal" />
  1852. </wsdl:input>
  1853. <wsdl:output>
  1854. <soap12:body use="literal" />
  1855. </wsdl:output>
  1856. </wsdl:operation>
  1857. <wsdl:operation name="GetBaseData">
  1858. <soap12:operation soapAction="http://tempuri.org/GetBaseData" style="document" />
  1859. <wsdl:input>
  1860. <soap12:body use="literal" />
  1861. </wsdl:input>
  1862. <wsdl:output>
  1863. <soap12:body use="literal" />
  1864. </wsdl:output>
  1865. </wsdl:operation>
  1866. <wsdl:operation name="setSignImage">
  1867. <soap12:operation soapAction="http://tempuri.org/setSignImage" style="document" />
  1868. <wsdl:input>
  1869. <soap12:body use="literal" />
  1870. </wsdl:input>
  1871. <wsdl:output>
  1872. <soap12:body use="literal" />
  1873. </wsdl:output>
  1874. </wsdl:operation>
  1875. <wsdl:operation name="getUserSignDataInfo">
  1876. <soap12:operation soapAction="http://tempuri.org/getUserSignDataInfo" style="document" />
  1877. <wsdl:input>
  1878. <soap12:body use="literal" />
  1879. </wsdl:input>
  1880. <wsdl:output>
  1881. <soap12:body use="literal" />
  1882. </wsdl:output>
  1883. </wsdl:operation>
  1884. <wsdl:operation name="getEmrDataString">
  1885. <soap12:operation soapAction="http://tempuri.org/getEmrDataString" style="document" />
  1886. <wsdl:input>
  1887. <soap12:body use="literal" />
  1888. </wsdl:input>
  1889. <wsdl:output>
  1890. <soap12:body use="literal" />
  1891. </wsdl:output>
  1892. </wsdl:operation>
  1893. </wsdl:binding>
  1894. <wsdl:service name="HospitalSvc">
  1895. <wsdl:port name="HospitalSvcSoap" binding="tns:HospitalSvcSoap">
  1896. <soap:address location="http://localhost:8081/HospitalSvc.asmx" />
  1897. </wsdl:port>
  1898. <wsdl:port name="HospitalSvcSoap12" binding="tns:HospitalSvcSoap12">
  1899. <soap12:address location="http://localhost:8081/HospitalSvc.asmx" />
  1900. </wsdl:port>
  1901. </wsdl:service>
  1902. </wsdl:definitions>