123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902 |
- <?xml version="1.0" encoding="utf-8"?>
- <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/">
- <wsdl:types>
- <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
- <s:element name="CheckWebService">
- <s:complexType />
- </s:element>
- <s:element name="CheckWebServiceResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="1" maxOccurs="1" name="CheckWebServiceResult" type="s:boolean" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="checkCendbService">
- <s:complexType />
- </s:element>
- <s:element name="checkCendbServiceResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="checkCendbServiceResult" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="CheckDatabaseConnection">
- <s:complexType />
- </s:element>
- <s:element name="CheckDatabaseConnectionResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="1" maxOccurs="1" name="CheckDatabaseConnectionResult" type="s:boolean" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetUserInfo">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="deptCd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetUserInfoResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetUserInfoResult" type="tns:UserVO" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:complexType name="UserVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="userName" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="userDeptCode" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="userDeptName" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="deptEngAbbr" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="jobKindCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="jobKindNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="userTelNo" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ioFlag" type="s:string" />
- </s:sequence>
- </s:complexType>
- <s:element name="GetTrmtDateList">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="patientNo" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="searchClnDate" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="searchType" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="orddeptcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dutinstcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ordType" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetTrmtDateListResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetTrmtDateListResult" type="tns:ArrayOfClnDateForDropdownVO" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:complexType name="ArrayOfClnDateForDropdownVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="unbounded" name="ClnDateForDropdownVO" nillable="true" type="tns:ClnDateForDropdownVO" />
- </s:sequence>
- </s:complexType>
- <s:complexType name="ClnDateForDropdownVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="ClnDate" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ClnFormatDate" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="VisitType" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="VisitTypeName" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ClnDeptCode" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ClnDeptName" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="DeptCd" type="s:string" />
- <s:element minOccurs="1" maxOccurs="1" name="CretNo" type="s:int" />
- <s:element minOccurs="0" maxOccurs="1" name="orddrid" type="s:string" />
- </s:sequence>
- </s:complexType>
- <s:element name="GetPatientList">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="srchDd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ordDeptCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="doctorId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="patientState" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="wardCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="myPatient" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="jobKindCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="drKind" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="selectFlag" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="srchYN" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetPatientListResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetPatientListResult" type="tns:ArrayOfPatListVO" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:complexType name="ArrayOfPatListVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="unbounded" name="PatListVO" nillable="true" type="tns:PatListVO" />
- </s:sequence>
- </s:complexType>
- <s:complexType name="PatListVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="inDd" type="s:string" />
- <s:element minOccurs="1" maxOccurs="1" name="cretNo" type="s:int" />
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ordType" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="hngNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ordDeptCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="doctorId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="sa" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="deptNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="doctorNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="roomCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="opRoomNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="oprsRvNo" type="s:string" />
- </s:sequence>
- </s:complexType>
- <s:element name="GetDeptList">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="ordType" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetDeptListResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetDeptListResult" type="tns:ArrayOfDeptListVO" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:complexType name="ArrayOfDeptListVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="unbounded" name="DeptListVO" nillable="true" type="tns:DeptListVO" />
- </s:sequence>
- </s:complexType>
- <s:complexType name="DeptListVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="deptCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="deptNm" type="s:string" />
- </s:sequence>
- </s:complexType>
- <s:element name="GetWardList">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetWardListResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetWardListResult" type="tns:ArrayOfDeptListVO" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetDoctorList">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="srchDd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ordDeptCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetDoctorListResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetDoctorListResult" type="tns:ArrayOfDocListVO" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:complexType name="ArrayOfDocListVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="unbounded" name="DocListVO" nillable="true" type="tns:DocListVO" />
- </s:sequence>
- </s:complexType>
- <s:complexType name="DocListVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="doctorId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="doctorNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="doctorKind" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="drKind" type="s:string" />
- </s:sequence>
- </s:complexType>
- <s:element name="GetSrchPatInfo">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="srchcond" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="hngnm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="rrgstno1" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="rrgstno2" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dutinstcd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetSrchPatInfoResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetSrchPatInfoResult" type="tns:ArrayOfPatInfoListVO" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:complexType name="ArrayOfPatInfoListVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="unbounded" name="PatInfoListVO" nillable="true" type="tns:PatInfoListVO" />
- </s:sequence>
- </s:complexType>
- <s:complexType name="PatInfoListVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="hngnm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="rrgstno1" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="rrgstno2" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="age" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="mpphontel" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="addr" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="lastorddd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="lastorddept" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="lastinsukind" type="s:string" />
- </s:sequence>
- </s:complexType>
- <s:element name="GetPatientInfo">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="inDd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ordType" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ordDeptCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="cretNo" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="opRsrvNo" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetPatientInfoResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetPatientInfoResult" type="tns:ArrayOfPatientVO" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:complexType name="ArrayOfPatientVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="unbounded" name="PatientVO" nillable="true" type="tns:PatientVO" />
- </s:sequence>
- </s:complexType>
- <s:complexType name="PatientVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="ordDeptCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="deptEngAbbr" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ordDeptNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="cretNo" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="roomCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="inDd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dschDd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ordType" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="mainDrId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="mainDrName" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="erDrNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="firstRgstDt" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="sa" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="patientName" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="juminNo" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="orgJuminNo" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="zipCdAddr" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="telNum" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="insuKind" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ward" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dxCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dxNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="gbn" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="opDeptCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="opDeptNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="opDrNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="opDrId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="opCnfmDd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="perfDrNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="perfDrFlag" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="perfDrDept" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="opDiagNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="opNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="anstDrNm1" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="anstDrFlag1" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="anstDeptNm1" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="anstDrNm2" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="anstDrFlag2" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="anstDeptNm2" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="anstDrNm3" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="anstDrFlag3" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="anstDeptNm3" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="opRsrvNo" type="s:string" />
- <s:element minOccurs="1" maxOccurs="1" name="orderNo" type="s:int" />
- <s:element minOccurs="0" maxOccurs="1" name="printTime" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ocrCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="inputId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="inputNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="signImg" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="bp" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="heart" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="kidney" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="respiration" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="hx" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="allergy" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="drug" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="smoking" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="idio" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="nacrotics" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="airway" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="hemorrhage" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="statusEtc" type="s:string" />
- </s:sequence>
- </s:complexType>
- <s:element name="GetConsentSetList">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetConsentSetListResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetConsentSetListResult" type="tns:ArrayOfConsentFormListVO" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:complexType name="ArrayOfConsentFormListVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="unbounded" name="ConsentFormListVO" nillable="true" type="tns:ConsentFormListVO" />
- </s:sequence>
- </s:complexType>
- <s:complexType name="ConsentFormListVO">
- <s:sequence>
- <s:element minOccurs="1" maxOccurs="1" name="consentMstRid" type="s:int" />
- <s:element minOccurs="0" maxOccurs="1" name="createUserId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="createUserName" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="modifyUserId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="modifyUserName" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="createDatetime" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ocrTag" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="inDd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ordType" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ordDeptCd" type="s:string" />
- <s:element minOccurs="1" maxOccurs="1" name="cretNo" type="s:int" />
- <s:element minOccurs="0" maxOccurs="1" name="opRsrvNo" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="patientName" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="consentState" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="consentStateEng" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="formCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="formGuid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="formName" type="s:string" />
- <s:element minOccurs="1" maxOccurs="1" name="formRid" type="s:int" />
- <s:element minOccurs="0" maxOccurs="1" name="printOnly" type="s:string" />
- <s:element minOccurs="1" maxOccurs="1" name="printCnt" type="s:int" />
- <s:element minOccurs="0" maxOccurs="1" name="ocrTagPrntYn" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="formPrntNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="certUseYn" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="opDiagNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="opNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="userDrFlag" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="linkFormCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="jinjeongCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="DrOnly" type="s:string" />
- </s:sequence>
- </s:complexType>
- <s:element name="SetUserFormSetList">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="formCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="SetUserFormSetListResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="SetUserFormSetListResult" type="tns:SingleReturnData" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:complexType name="SingleReturnData">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="responseData" type="s:string" />
- </s:sequence>
- </s:complexType>
- <s:element name="DelUserFormSetList">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="formCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="DelUserFormSetListResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="DelUserFormSetListResult" type="tns:SingleReturnData" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="checkOcrDup">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ocrtag" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="checkOcrDupResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="1" maxOccurs="1" name="checkOcrDupResult" type="s:int" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetOcrTag">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetOcrTagResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetOcrTagResult" type="tns:SingleReturnData" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetSignImage">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetSignImageResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetSignImageResult" type="tns:UserSignImageVO" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:complexType name="UserSignImageVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="SignImage" type="s:base64Binary" />
- </s:sequence>
- </s:complexType>
- <s:element name="GetDiagNameList">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="orddd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dutinstcd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetDiagNameListResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetDiagNameListResult" type="tns:ArrayOfString" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:complexType name="ArrayOfString">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="unbounded" name="string" nillable="true" type="s:string" />
- </s:sequence>
- </s:complexType>
- <s:element name="GetFileName">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ordtype" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="orddd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dschdd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="cretno" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="filesize" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="formcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="pageno" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ocrtag" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="userid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="orddeptcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dutinstcd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetFileNameResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetFileNameResult" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="delEformData">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ordtype" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="orddd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dschdd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="cretno" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="formcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ocrtag" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="userid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="username" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="consentmstrid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="hostype" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="orddeptcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dutinstcd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="delEformDataResponse">
- <s:complexType />
- </s:element>
- <s:element name="UpdateUserSetup">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="status" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="UpdateUserSetupResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="UpdateUserSetupResult" type="tns:SingleReturnData" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetUnfinishedListPerDoctor">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="userid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="status" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="fromdd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="todd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dutinstcd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetUnfinishedListPerDoctorResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetUnfinishedListPerDoctorResult" type="tns:ArrayOfUnFinishedListVO" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:complexType name="ArrayOfUnFinishedListVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="unbounded" name="UnFinishedListVO" nillable="true" type="tns:UnFinishedListVO" />
- </s:sequence>
- </s:complexType>
- <s:complexType name="UnFinishedListVO">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="patientCode" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="formcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="consentName" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="hngnm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="orderdate" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="printonly" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="certtarget" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="consentState" type="s:string" />
- <s:element minOccurs="1" maxOccurs="1" name="consentMstRid" type="s:int" />
- <s:element minOccurs="0" maxOccurs="1" name="orddd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="visitType" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="orddeptcd" type="s:string" />
- <s:element minOccurs="1" maxOccurs="1" name="orderno" type="s:int" />
- <s:element minOccurs="0" maxOccurs="1" name="ordercd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ocrNumber" type="s:string" />
- <s:element minOccurs="1" maxOccurs="1" name="cretno" type="s:int" />
- <s:element minOccurs="0" maxOccurs="1" name="createusername" type="s:string" />
- <s:element minOccurs="1" maxOccurs="1" name="formrid" type="s:int" />
- <s:element minOccurs="0" maxOccurs="1" name="formguid" type="s:string" />
- </s:sequence>
- </s:complexType>
- <s:element name="doLogin">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="userid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="pwd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dutinstcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="certSucc" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="doLoginResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="doLoginResult" type="tns:ArrayOfUserLoginDeptList" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:complexType name="ArrayOfUserLoginDeptList">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="unbounded" name="UserLoginDeptList" nillable="true" type="tns:UserLoginDeptList" />
- </s:sequence>
- </s:complexType>
- <s:complexType name="UserLoginDeptList">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="dutplceInstCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dutplceInstNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dutplceCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="deptHngNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="fromDd" type="s:string" />
- <s:element minOccurs="1" maxOccurs="1" name="sortNo" type="s:int" />
- <s:element minOccurs="0" maxOccurs="1" name="deptCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="jobKindCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="jobKindNm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="indexPage" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="userName" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="drKind" type="s:string" />
- </s:sequence>
- </s:complexType>
- <s:element name="GetMobileUserInfo">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="userid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dutplceinstcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dutplcecd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetMobileUserInfoResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetMobileUserInfoResult" type="tns:MobileUserInfo" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:complexType name="MobileUserInfo">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="userid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="usernm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dutplcecd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="deptengnm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dutplceinstcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="dutplceinstnm" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="jobkindcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="jobkindnm" type="s:string" />
- </s:sequence>
- </s:complexType>
- <s:element name="checkPrintablePatient">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="orddd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="cretno" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="checkPrintablePatientResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="1" maxOccurs="1" name="checkPrintablePatientResult" type="s:int" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="getPenOptions">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="getPenOptionsResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="getPenOptionsResult" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="getZoomRate">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="getZoomRateResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="getZoomRateResult" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="getPrintControlMsg">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="ordtype" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="getPrintControlMsgResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="getPrintControlMsgResult" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="getPrintOnly">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="formcd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="getPrintOnlyResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="getPrintOnlyResult" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="getMultiprintable">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="formcd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="getMultiprintableResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="1" maxOccurs="1" name="getMultiprintableResult" type="s:int" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="checkHardcd">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="hardcdno" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="trgtcd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="checkHardcdResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="1" maxOccurs="1" name="checkHardcdResult" type="s:int" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetBaseData">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="GetBaseDataResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetBaseDataResult" type="tns:SingleReturnData" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="setSignImage">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="signSeq" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="inptId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="signImage" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="setSignImageResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="setSignImageResult" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="getUserSignDataInfo">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="getUserSignDataInfoResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="getUserSignDataInfoResult" type="tns:UserSignDataVo" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:complexType name="UserSignDataVo">
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="instCd" type="s:string" />
- <s:element minOccurs="1" maxOccurs="1" name="signImgeSeqNo" type="s:int" />
- <s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="signData" type="s:base64Binary" />
- <s:element minOccurs="0" maxOccurs="1" name="signImgeFromDd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="userNm" type="s:string" />
- </s:sequence>
- </s:complexType>
- <s:element name="getEmrDataString">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="flag" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="instcd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="pid" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="indd" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="cretno" type="s:string" />
- <s:element minOccurs="0" maxOccurs="1" name="formCd" type="s:string" />
- </s:sequence>
- </s:complexType>
- </s:element>
- <s:element name="getEmrDataStringResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="getEmrDataStringResult" type="tns:SingleReturnData" />
- </s:sequence>
- </s:complexType>
- </s:element>
- </s:schema>
- </wsdl:types>
- <wsdl:message name="CheckWebServiceSoapIn">
- <wsdl:part name="parameters" element="tns:CheckWebService" />
- </wsdl:message>
- <wsdl:message name="CheckWebServiceSoapOut">
- <wsdl:part name="parameters" element="tns:CheckWebServiceResponse" />
- </wsdl:message>
- <wsdl:message name="checkCendbServiceSoapIn">
- <wsdl:part name="parameters" element="tns:checkCendbService" />
- </wsdl:message>
- <wsdl:message name="checkCendbServiceSoapOut">
- <wsdl:part name="parameters" element="tns:checkCendbServiceResponse" />
- </wsdl:message>
- <wsdl:message name="CheckDatabaseConnectionSoapIn">
- <wsdl:part name="parameters" element="tns:CheckDatabaseConnection" />
- </wsdl:message>
- <wsdl:message name="CheckDatabaseConnectionSoapOut">
- <wsdl:part name="parameters" element="tns:CheckDatabaseConnectionResponse" />
- </wsdl:message>
- <wsdl:message name="GetUserInfoSoapIn">
- <wsdl:part name="parameters" element="tns:GetUserInfo" />
- </wsdl:message>
- <wsdl:message name="GetUserInfoSoapOut">
- <wsdl:part name="parameters" element="tns:GetUserInfoResponse" />
- </wsdl:message>
- <wsdl:message name="GetTrmtDateListSoapIn">
- <wsdl:part name="parameters" element="tns:GetTrmtDateList" />
- </wsdl:message>
- <wsdl:message name="GetTrmtDateListSoapOut">
- <wsdl:part name="parameters" element="tns:GetTrmtDateListResponse" />
- </wsdl:message>
- <wsdl:message name="GetPatientListSoapIn">
- <wsdl:part name="parameters" element="tns:GetPatientList" />
- </wsdl:message>
- <wsdl:message name="GetPatientListSoapOut">
- <wsdl:part name="parameters" element="tns:GetPatientListResponse" />
- </wsdl:message>
- <wsdl:message name="GetDeptListSoapIn">
- <wsdl:part name="parameters" element="tns:GetDeptList" />
- </wsdl:message>
- <wsdl:message name="GetDeptListSoapOut">
- <wsdl:part name="parameters" element="tns:GetDeptListResponse" />
- </wsdl:message>
- <wsdl:message name="GetWardListSoapIn">
- <wsdl:part name="parameters" element="tns:GetWardList" />
- </wsdl:message>
- <wsdl:message name="GetWardListSoapOut">
- <wsdl:part name="parameters" element="tns:GetWardListResponse" />
- </wsdl:message>
- <wsdl:message name="GetDoctorListSoapIn">
- <wsdl:part name="parameters" element="tns:GetDoctorList" />
- </wsdl:message>
- <wsdl:message name="GetDoctorListSoapOut">
- <wsdl:part name="parameters" element="tns:GetDoctorListResponse" />
- </wsdl:message>
- <wsdl:message name="GetSrchPatInfoSoapIn">
- <wsdl:part name="parameters" element="tns:GetSrchPatInfo" />
- </wsdl:message>
- <wsdl:message name="GetSrchPatInfoSoapOut">
- <wsdl:part name="parameters" element="tns:GetSrchPatInfoResponse" />
- </wsdl:message>
- <wsdl:message name="GetPatientInfoSoapIn">
- <wsdl:part name="parameters" element="tns:GetPatientInfo" />
- </wsdl:message>
- <wsdl:message name="GetPatientInfoSoapOut">
- <wsdl:part name="parameters" element="tns:GetPatientInfoResponse" />
- </wsdl:message>
- <wsdl:message name="GetConsentSetListSoapIn">
- <wsdl:part name="parameters" element="tns:GetConsentSetList" />
- </wsdl:message>
- <wsdl:message name="GetConsentSetListSoapOut">
- <wsdl:part name="parameters" element="tns:GetConsentSetListResponse" />
- </wsdl:message>
- <wsdl:message name="SetUserFormSetListSoapIn">
- <wsdl:part name="parameters" element="tns:SetUserFormSetList" />
- </wsdl:message>
- <wsdl:message name="SetUserFormSetListSoapOut">
- <wsdl:part name="parameters" element="tns:SetUserFormSetListResponse" />
- </wsdl:message>
- <wsdl:message name="DelUserFormSetListSoapIn">
- <wsdl:part name="parameters" element="tns:DelUserFormSetList" />
- </wsdl:message>
- <wsdl:message name="DelUserFormSetListSoapOut">
- <wsdl:part name="parameters" element="tns:DelUserFormSetListResponse" />
- </wsdl:message>
- <wsdl:message name="checkOcrDupSoapIn">
- <wsdl:part name="parameters" element="tns:checkOcrDup" />
- </wsdl:message>
- <wsdl:message name="checkOcrDupSoapOut">
- <wsdl:part name="parameters" element="tns:checkOcrDupResponse" />
- </wsdl:message>
- <wsdl:message name="GetOcrTagSoapIn">
- <wsdl:part name="parameters" element="tns:GetOcrTag" />
- </wsdl:message>
- <wsdl:message name="GetOcrTagSoapOut">
- <wsdl:part name="parameters" element="tns:GetOcrTagResponse" />
- </wsdl:message>
- <wsdl:message name="GetSignImageSoapIn">
- <wsdl:part name="parameters" element="tns:GetSignImage" />
- </wsdl:message>
- <wsdl:message name="GetSignImageSoapOut">
- <wsdl:part name="parameters" element="tns:GetSignImageResponse" />
- </wsdl:message>
- <wsdl:message name="GetDiagNameListSoapIn">
- <wsdl:part name="parameters" element="tns:GetDiagNameList" />
- </wsdl:message>
- <wsdl:message name="GetDiagNameListSoapOut">
- <wsdl:part name="parameters" element="tns:GetDiagNameListResponse" />
- </wsdl:message>
- <wsdl:message name="GetFileNameSoapIn">
- <wsdl:part name="parameters" element="tns:GetFileName" />
- </wsdl:message>
- <wsdl:message name="GetFileNameSoapOut">
- <wsdl:part name="parameters" element="tns:GetFileNameResponse" />
- </wsdl:message>
- <wsdl:message name="delEformDataSoapIn">
- <wsdl:part name="parameters" element="tns:delEformData" />
- </wsdl:message>
- <wsdl:message name="delEformDataSoapOut">
- <wsdl:part name="parameters" element="tns:delEformDataResponse" />
- </wsdl:message>
- <wsdl:message name="UpdateUserSetupSoapIn">
- <wsdl:part name="parameters" element="tns:UpdateUserSetup" />
- </wsdl:message>
- <wsdl:message name="UpdateUserSetupSoapOut">
- <wsdl:part name="parameters" element="tns:UpdateUserSetupResponse" />
- </wsdl:message>
- <wsdl:message name="GetUnfinishedListPerDoctorSoapIn">
- <wsdl:part name="parameters" element="tns:GetUnfinishedListPerDoctor" />
- </wsdl:message>
- <wsdl:message name="GetUnfinishedListPerDoctorSoapOut">
- <wsdl:part name="parameters" element="tns:GetUnfinishedListPerDoctorResponse" />
- </wsdl:message>
- <wsdl:message name="doLoginSoapIn">
- <wsdl:part name="parameters" element="tns:doLogin" />
- </wsdl:message>
- <wsdl:message name="doLoginSoapOut">
- <wsdl:part name="parameters" element="tns:doLoginResponse" />
- </wsdl:message>
- <wsdl:message name="GetMobileUserInfoSoapIn">
- <wsdl:part name="parameters" element="tns:GetMobileUserInfo" />
- </wsdl:message>
- <wsdl:message name="GetMobileUserInfoSoapOut">
- <wsdl:part name="parameters" element="tns:GetMobileUserInfoResponse" />
- </wsdl:message>
- <wsdl:message name="checkPrintablePatientSoapIn">
- <wsdl:part name="parameters" element="tns:checkPrintablePatient" />
- </wsdl:message>
- <wsdl:message name="checkPrintablePatientSoapOut">
- <wsdl:part name="parameters" element="tns:checkPrintablePatientResponse" />
- </wsdl:message>
- <wsdl:message name="getPenOptionsSoapIn">
- <wsdl:part name="parameters" element="tns:getPenOptions" />
- </wsdl:message>
- <wsdl:message name="getPenOptionsSoapOut">
- <wsdl:part name="parameters" element="tns:getPenOptionsResponse" />
- </wsdl:message>
- <wsdl:message name="getZoomRateSoapIn">
- <wsdl:part name="parameters" element="tns:getZoomRate" />
- </wsdl:message>
- <wsdl:message name="getZoomRateSoapOut">
- <wsdl:part name="parameters" element="tns:getZoomRateResponse" />
- </wsdl:message>
- <wsdl:message name="getPrintControlMsgSoapIn">
- <wsdl:part name="parameters" element="tns:getPrintControlMsg" />
- </wsdl:message>
- <wsdl:message name="getPrintControlMsgSoapOut">
- <wsdl:part name="parameters" element="tns:getPrintControlMsgResponse" />
- </wsdl:message>
- <wsdl:message name="getPrintOnlySoapIn">
- <wsdl:part name="parameters" element="tns:getPrintOnly" />
- </wsdl:message>
- <wsdl:message name="getPrintOnlySoapOut">
- <wsdl:part name="parameters" element="tns:getPrintOnlyResponse" />
- </wsdl:message>
- <wsdl:message name="getMultiprintableSoapIn">
- <wsdl:part name="parameters" element="tns:getMultiprintable" />
- </wsdl:message>
- <wsdl:message name="getMultiprintableSoapOut">
- <wsdl:part name="parameters" element="tns:getMultiprintableResponse" />
- </wsdl:message>
- <wsdl:message name="checkHardcdSoapIn">
- <wsdl:part name="parameters" element="tns:checkHardcd" />
- </wsdl:message>
- <wsdl:message name="checkHardcdSoapOut">
- <wsdl:part name="parameters" element="tns:checkHardcdResponse" />
- </wsdl:message>
- <wsdl:message name="GetBaseDataSoapIn">
- <wsdl:part name="parameters" element="tns:GetBaseData" />
- </wsdl:message>
- <wsdl:message name="GetBaseDataSoapOut">
- <wsdl:part name="parameters" element="tns:GetBaseDataResponse" />
- </wsdl:message>
- <wsdl:message name="setSignImageSoapIn">
- <wsdl:part name="parameters" element="tns:setSignImage" />
- </wsdl:message>
- <wsdl:message name="setSignImageSoapOut">
- <wsdl:part name="parameters" element="tns:setSignImageResponse" />
- </wsdl:message>
- <wsdl:message name="getUserSignDataInfoSoapIn">
- <wsdl:part name="parameters" element="tns:getUserSignDataInfo" />
- </wsdl:message>
- <wsdl:message name="getUserSignDataInfoSoapOut">
- <wsdl:part name="parameters" element="tns:getUserSignDataInfoResponse" />
- </wsdl:message>
- <wsdl:message name="getEmrDataStringSoapIn">
- <wsdl:part name="parameters" element="tns:getEmrDataString" />
- </wsdl:message>
- <wsdl:message name="getEmrDataStringSoapOut">
- <wsdl:part name="parameters" element="tns:getEmrDataStringResponse" />
- </wsdl:message>
- <wsdl:portType name="HospitalSvcSoap">
- <wsdl:operation name="CheckWebService">
- <wsdl:input message="tns:CheckWebServiceSoapIn" />
- <wsdl:output message="tns:CheckWebServiceSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="checkCendbService">
- <wsdl:input message="tns:checkCendbServiceSoapIn" />
- <wsdl:output message="tns:checkCendbServiceSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="CheckDatabaseConnection">
- <wsdl:input message="tns:CheckDatabaseConnectionSoapIn" />
- <wsdl:output message="tns:CheckDatabaseConnectionSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetUserInfo">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">사용자 상세정보</wsdl:documentation>
- <wsdl:input message="tns:GetUserInfoSoapIn" />
- <wsdl:output message="tns:GetUserInfoSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetTrmtDateList">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">환자 진료일 조회</wsdl:documentation>
- <wsdl:input message="tns:GetTrmtDateListSoapIn" />
- <wsdl:output message="tns:GetTrmtDateListSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetPatientList">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">환자리스트 조회</wsdl:documentation>
- <wsdl:input message="tns:GetPatientListSoapIn" />
- <wsdl:output message="tns:GetPatientListSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetDeptList">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">환자리스트 조회조건 중 진료과 조회</wsdl:documentation>
- <wsdl:input message="tns:GetDeptListSoapIn" />
- <wsdl:output message="tns:GetDeptListSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetWardList">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">환자리스트 조회조건 중 병동 조회</wsdl:documentation>
- <wsdl:input message="tns:GetWardListSoapIn" />
- <wsdl:output message="tns:GetWardListSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetDoctorList">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">환자리스트 조회조건 중 의사 조회</wsdl:documentation>
- <wsdl:input message="tns:GetDoctorListSoapIn" />
- <wsdl:output message="tns:GetDoctorListSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetSrchPatInfo">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">환자리스트 조회조건 중 환자 검색 팝업</wsdl:documentation>
- <wsdl:input message="tns:GetSrchPatInfoSoapIn" />
- <wsdl:output message="tns:GetSrchPatInfoSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetPatientInfo">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">환자 선택시 수진일자별 진단 데이터 조회</wsdl:documentation>
- <wsdl:input message="tns:GetPatientInfoSoapIn" />
- <wsdl:output message="tns:GetPatientInfoSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetConsentSetList">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">동의서 SET 조회</wsdl:documentation>
- <wsdl:input message="tns:GetConsentSetListSoapIn" />
- <wsdl:output message="tns:GetConsentSetListSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="SetUserFormSetList">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">사용자 즐겨찾기 추가</wsdl:documentation>
- <wsdl:input message="tns:SetUserFormSetListSoapIn" />
- <wsdl:output message="tns:SetUserFormSetListSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="DelUserFormSetList">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">사용자 즐겨찾기 삭제</wsdl:documentation>
- <wsdl:input message="tns:DelUserFormSetListSoapIn" />
- <wsdl:output message="tns:DelUserFormSetListSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="checkOcrDup">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">OCRTAG 중복 확인</wsdl:documentation>
- <wsdl:input message="tns:checkOcrDupSoapIn" />
- <wsdl:output message="tns:checkOcrDupSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetOcrTag">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">OCRTAG 할당</wsdl:documentation>
- <wsdl:input message="tns:GetOcrTagSoapIn" />
- <wsdl:output message="tns:GetOcrTagSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetSignImage">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">사용자의 서명이미지 조회</wsdl:documentation>
- <wsdl:input message="tns:GetSignImageSoapIn" />
- <wsdl:output message="tns:GetSignImageSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetDiagNameList">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">주,부 진단명 리스트 조회(진단명 팝업)</wsdl:documentation>
- <wsdl:input message="tns:GetDiagNameListSoapIn" />
- <wsdl:output message="tns:GetDiagNameListSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetFileName">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">파일이름 조회</wsdl:documentation>
- <wsdl:input message="tns:GetFileNameSoapIn" />
- <wsdl:output message="tns:GetFileNameSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="delEformData">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">setFileName으로 등록된 데이터 삭제하는 함수</wsdl:documentation>
- <wsdl:input message="tns:delEformDataSoapIn" />
- <wsdl:output message="tns:delEformDataSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="UpdateUserSetup">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">모바일 Default Tap(외래, 입원..) 설정</wsdl:documentation>
- <wsdl:input message="tns:UpdateUserSetupSoapIn" />
- <wsdl:output message="tns:UpdateUserSetupSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetUnfinishedListPerDoctor">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">모바일 주치의별 미작성 리스트 가져오기</wsdl:documentation>
- <wsdl:input message="tns:GetUnfinishedListPerDoctorSoapIn" />
- <wsdl:output message="tns:GetUnfinishedListPerDoctorSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="doLogin">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">모바일 사용자 로그인 API</wsdl:documentation>
- <wsdl:input message="tns:doLoginSoapIn" />
- <wsdl:output message="tns:doLoginSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetMobileUserInfo">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">모바일 사용자 정보요청 API</wsdl:documentation>
- <wsdl:input message="tns:GetMobileUserInfoSoapIn" />
- <wsdl:output message="tns:GetMobileUserInfoSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="checkPrintablePatient">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">경북대학교병원, 출력 가능한 수진이력을 가진 환자인지 조회</wsdl:documentation>
- <wsdl:input message="tns:checkPrintablePatientSoapIn" />
- <wsdl:output message="tns:checkPrintablePatientSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="getPenOptions">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">펜 설정 검색</wsdl:documentation>
- <wsdl:input message="tns:getPenOptionsSoapIn" />
- <wsdl:output message="tns:getPenOptionsSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="getZoomRate">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">확대 배율 검색</wsdl:documentation>
- <wsdl:input message="tns:getZoomRateSoapIn" />
- <wsdl:output message="tns:getZoomRateSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="getPrintControlMsg">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">프린트 제어 메시지 검색</wsdl:documentation>
- <wsdl:input message="tns:getPrintControlMsgSoapIn" />
- <wsdl:output message="tns:getPrintControlMsgSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="getPrintOnly">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">프린트 제어 메시지 검색</wsdl:documentation>
- <wsdl:input message="tns:getPrintOnlySoapIn" />
- <wsdl:output message="tns:getPrintOnlySoapOut" />
- </wsdl:operation>
- <wsdl:operation name="getMultiprintable">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">멀티출력 가능 서식 카운트</wsdl:documentation>
- <wsdl:input message="tns:getMultiprintableSoapIn" />
- <wsdl:output message="tns:getMultiprintableSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="checkHardcd">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">기준자료검색</wsdl:documentation>
- <wsdl:input message="tns:checkHardcdSoapIn" />
- <wsdl:output message="tns:checkHardcdSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="GetBaseData">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">모바일 세션 시간을 가져옴</wsdl:documentation>
- <wsdl:input message="tns:GetBaseDataSoapIn" />
- <wsdl:output message="tns:GetBaseDataSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="setSignImage">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">서명 이미지 저장</wsdl:documentation>
- <wsdl:input message="tns:setSignImageSoapIn" />
- <wsdl:output message="tns:setSignImageSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="getUserSignDataInfo">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">서명 이미지 조회</wsdl:documentation>
- <wsdl:input message="tns:getUserSignDataInfoSoapIn" />
- <wsdl:output message="tns:getUserSignDataInfoSoapOut" />
- </wsdl:operation>
- <wsdl:operation name="getEmrDataString">
- <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">파라미터 필드 메시지 조회</wsdl:documentation>
- <wsdl:input message="tns:getEmrDataStringSoapIn" />
- <wsdl:output message="tns:getEmrDataStringSoapOut" />
- </wsdl:operation>
- </wsdl:portType>
- <wsdl:binding name="HospitalSvcSoap" type="tns:HospitalSvcSoap">
- <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
- <wsdl:operation name="CheckWebService">
- <soap:operation soapAction="http://tempuri.org/CheckWebService" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="checkCendbService">
- <soap:operation soapAction="http://tempuri.org/checkCendbService" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="CheckDatabaseConnection">
- <soap:operation soapAction="http://tempuri.org/CheckDatabaseConnection" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetUserInfo">
- <soap:operation soapAction="http://tempuri.org/GetUserInfo" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetTrmtDateList">
- <soap:operation soapAction="http://tempuri.org/GetTrmtDateList" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetPatientList">
- <soap:operation soapAction="http://tempuri.org/GetPatientList" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetDeptList">
- <soap:operation soapAction="http://tempuri.org/GetDeptList" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetWardList">
- <soap:operation soapAction="http://tempuri.org/GetWardList" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetDoctorList">
- <soap:operation soapAction="http://tempuri.org/GetDoctorList" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetSrchPatInfo">
- <soap:operation soapAction="http://tempuri.org/GetSrchPatInfo" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetPatientInfo">
- <soap:operation soapAction="http://tempuri.org/GetPatientInfo" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetConsentSetList">
- <soap:operation soapAction="http://tempuri.org/GetConsentSetList" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="SetUserFormSetList">
- <soap:operation soapAction="http://tempuri.org/SetUserFormSetList" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="DelUserFormSetList">
- <soap:operation soapAction="http://tempuri.org/DelUserFormSetList" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="checkOcrDup">
- <soap:operation soapAction="http://tempuri.org/checkOcrDup" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetOcrTag">
- <soap:operation soapAction="http://tempuri.org/GetOcrTag" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetSignImage">
- <soap:operation soapAction="http://tempuri.org/GetSignImage" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetDiagNameList">
- <soap:operation soapAction="http://tempuri.org/GetDiagNameList" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetFileName">
- <soap:operation soapAction="http://tempuri.org/GetFileName" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="delEformData">
- <soap:operation soapAction="http://tempuri.org/delEformData" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="UpdateUserSetup">
- <soap:operation soapAction="http://tempuri.org/UpdateUserSetup" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetUnfinishedListPerDoctor">
- <soap:operation soapAction="http://tempuri.org/GetUnfinishedListPerDoctor" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="doLogin">
- <soap:operation soapAction="http://tempuri.org/doLogin" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetMobileUserInfo">
- <soap:operation soapAction="http://tempuri.org/GetMobileUserInfo" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="checkPrintablePatient">
- <soap:operation soapAction="http://tempuri.org/checkPrintablePatient" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="getPenOptions">
- <soap:operation soapAction="http://tempuri.org/getPenOptions" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="getZoomRate">
- <soap:operation soapAction="http://tempuri.org/getZoomRate" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="getPrintControlMsg">
- <soap:operation soapAction="http://tempuri.org/getPrintControlMsg" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="getPrintOnly">
- <soap:operation soapAction="http://tempuri.org/getPrintOnly" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="getMultiprintable">
- <soap:operation soapAction="http://tempuri.org/getMultiprintable" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="checkHardcd">
- <soap:operation soapAction="http://tempuri.org/checkHardcd" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetBaseData">
- <soap:operation soapAction="http://tempuri.org/GetBaseData" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="setSignImage">
- <soap:operation soapAction="http://tempuri.org/setSignImage" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="getUserSignDataInfo">
- <soap:operation soapAction="http://tempuri.org/getUserSignDataInfo" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="getEmrDataString">
- <soap:operation soapAction="http://tempuri.org/getEmrDataString" style="document" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- </wsdl:binding>
- <wsdl:binding name="HospitalSvcSoap12" type="tns:HospitalSvcSoap">
- <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
- <wsdl:operation name="CheckWebService">
- <soap12:operation soapAction="http://tempuri.org/CheckWebService" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="checkCendbService">
- <soap12:operation soapAction="http://tempuri.org/checkCendbService" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="CheckDatabaseConnection">
- <soap12:operation soapAction="http://tempuri.org/CheckDatabaseConnection" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetUserInfo">
- <soap12:operation soapAction="http://tempuri.org/GetUserInfo" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetTrmtDateList">
- <soap12:operation soapAction="http://tempuri.org/GetTrmtDateList" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetPatientList">
- <soap12:operation soapAction="http://tempuri.org/GetPatientList" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetDeptList">
- <soap12:operation soapAction="http://tempuri.org/GetDeptList" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetWardList">
- <soap12:operation soapAction="http://tempuri.org/GetWardList" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetDoctorList">
- <soap12:operation soapAction="http://tempuri.org/GetDoctorList" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetSrchPatInfo">
- <soap12:operation soapAction="http://tempuri.org/GetSrchPatInfo" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetPatientInfo">
- <soap12:operation soapAction="http://tempuri.org/GetPatientInfo" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetConsentSetList">
- <soap12:operation soapAction="http://tempuri.org/GetConsentSetList" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="SetUserFormSetList">
- <soap12:operation soapAction="http://tempuri.org/SetUserFormSetList" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="DelUserFormSetList">
- <soap12:operation soapAction="http://tempuri.org/DelUserFormSetList" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="checkOcrDup">
- <soap12:operation soapAction="http://tempuri.org/checkOcrDup" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetOcrTag">
- <soap12:operation soapAction="http://tempuri.org/GetOcrTag" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetSignImage">
- <soap12:operation soapAction="http://tempuri.org/GetSignImage" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetDiagNameList">
- <soap12:operation soapAction="http://tempuri.org/GetDiagNameList" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetFileName">
- <soap12:operation soapAction="http://tempuri.org/GetFileName" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="delEformData">
- <soap12:operation soapAction="http://tempuri.org/delEformData" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="UpdateUserSetup">
- <soap12:operation soapAction="http://tempuri.org/UpdateUserSetup" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetUnfinishedListPerDoctor">
- <soap12:operation soapAction="http://tempuri.org/GetUnfinishedListPerDoctor" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="doLogin">
- <soap12:operation soapAction="http://tempuri.org/doLogin" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetMobileUserInfo">
- <soap12:operation soapAction="http://tempuri.org/GetMobileUserInfo" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="checkPrintablePatient">
- <soap12:operation soapAction="http://tempuri.org/checkPrintablePatient" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="getPenOptions">
- <soap12:operation soapAction="http://tempuri.org/getPenOptions" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="getZoomRate">
- <soap12:operation soapAction="http://tempuri.org/getZoomRate" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="getPrintControlMsg">
- <soap12:operation soapAction="http://tempuri.org/getPrintControlMsg" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="getPrintOnly">
- <soap12:operation soapAction="http://tempuri.org/getPrintOnly" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="getMultiprintable">
- <soap12:operation soapAction="http://tempuri.org/getMultiprintable" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="checkHardcd">
- <soap12:operation soapAction="http://tempuri.org/checkHardcd" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="GetBaseData">
- <soap12:operation soapAction="http://tempuri.org/GetBaseData" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="setSignImage">
- <soap12:operation soapAction="http://tempuri.org/setSignImage" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="getUserSignDataInfo">
- <soap12:operation soapAction="http://tempuri.org/getUserSignDataInfo" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- <wsdl:operation name="getEmrDataString">
- <soap12:operation soapAction="http://tempuri.org/getEmrDataString" style="document" />
- <wsdl:input>
- <soap12:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap12:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- </wsdl:binding>
- <wsdl:service name="HospitalSvc">
- <wsdl:port name="HospitalSvcSoap" binding="tns:HospitalSvcSoap">
- <soap:address location="http://localhost:8081/HospitalSvc.asmx" />
- </wsdl:port>
- <wsdl:port name="HospitalSvcSoap12" binding="tns:HospitalSvcSoap12">
- <soap12:address location="http://localhost:8081/HospitalSvc.asmx" />
- </wsdl:port>
- </wsdl:service>
- </wsdl:definitions>
|