The ATL COM module hospitalMCDResponse is capable of
analyzing electronic responses to MCD requests
						analyzing electronic responses to MCD requests
	
API browser of hospitalMCDResponse451 COM module
 
							
							
						
| 
	Loads a received XML infoset back into memory for further processing via the returned interface instance. The hospitalMCDResponse451 COM module understands and processes the hospitalMCDResponse_451 XSD standard as well as its predecessors, namely hospitalMCDResponse_450 and hospitalMCDResponse_440.
 To analyze and retrieve the received data use the returned instance of the IHospitalMCDResponse interface and/or preview/print the data. Since the infoset is possibly encrypted, call GetXMLInfo to decide if and which PFX certificate to supply for the decryption process.  | 
	|||
| HRESULT LoadXML( | 			BSTR
			 BSTR BSTR IHospitalMCDResponse VARIANT_BOOL  | 
				bstrInputFile,
			 bstrToPFXFile, bstrToPFXPassword, **ppIHospitalMCDResponse, *pbStatus);  | 
	|
| [in] BSTR | bstrInputFile | The input XML infoset (full file name) that must be loaded and analyzed. | |
| [in] BSTR | bstrToPFXFile | The file name of the PFX certificate that is the private certificate of the "toGLN" entity.
 This variable is not used if the XML infoset is not encrypted.  | 
	|
| [in] BSTR | bstrToPFXPassword | The password to open the PFX certificate.
 This variable is not used if the XML infoset is not encrypted.  | 
	|
| [out] IHospitalMCDResponse | **ppIHospitalMCDResponse | The instance of a IHospitalMCDResponse interface allows to read back all currently loaded data.
 The handle is NULL if an error occurred.  | 
	|
| [out, retval] VARIANT_BOOL | *pbStatus | Return status of the method. If pbStatus is VARIANT_FALSE then an error occurred and GetAbortInfo should be called to retrieve the error string. | |
| S_OK | This value is returned if the function call was successful or if the return value of a boolean method signalling a true value. In this case the VARIANT_BOOL is set to VARIANT_TRUE. | ||
| S_FALSE | This is the return value of a boolean method signalling a false return value. In this case the VARIANT_BOOL is set to VARIANT_FALSE. | ||
| E_name | This value is returned if the function call was unsuccessful and an error exception was generated. Note that if you are using SmartPointers an exception is thrown under these conditions. | ||