You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello All,
I am trying to add a CCD document in Base64 form to a SOAP wrapper to send into an EHR for digestion.
Here is what the document section of the SOAP wrapper outbound template looks like: <xdsb:Document id="Document01">
<xop:Include xmlns:xop="https...org" href="" />
</xdsb:Document>
Here is the code I'm using to add the document: var href = "cid:1:" + docUniqueId;
tmp::['Body'].::['ProvideAndRegisterDocumentRequest'].::['Document'].::['Include']['@href'] = href;
tmp.::['Body'].::['ProvideAndRegisterDocumentRequest'].::['Document'][0] = $('Base64CCDA');*
Here is the output I get:
<xdsb:Document id="Document01">PENsaW5py...</xdsb:Document>
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello All,
I am trying to add a CCD document in Base64 form to a SOAP wrapper to send into an EHR for digestion.
Here is what the document section of the SOAP wrapper outbound template looks like:
<xdsb:Document id="Document01">
<xop:Include xmlns:xop="https...org" href="" />
</xdsb:Document>
Here is the code I'm using to add the document:
var href = "cid:1:" + docUniqueId;
tmp::['Body'].::['ProvideAndRegisterDocumentRequest'].::['Document'].::['Include']['@href'] = href;
tmp.::['Body'].::['ProvideAndRegisterDocumentRequest'].::['Document'][0] = $('Base64CCDA');*
Here is the output I get:
<xdsb:Document id="Document01">PENsaW5py...</xdsb:Document>
<xdsb:Document id="Document01">
<xop:Include xmlns:xop="https...org" href="href" />PENsaW5py...
</xdsb:Document>
This is somewhat time sensitive. Thanks in advance for your help.
Beta Was this translation helpful? Give feedback.
All reactions