Message(non-rowset) definition for the below xml
Please provide a sample non-rowset message definition in Peopleosoft to send the following XML message for sending binary data:
<?xml version='1.0'?>
<JobApplication>
<Photo name='JohnSmith'>
<PsftXopInclude SegmentNumber='1'/>
</Photo>
<Resume name='JohnSmithCV'>
<PsftXopInclude SegmentNumber='2'/>
</Resume>
</JobApplication>
Peoplecode for Message to be sent :
&xml = &xml | "<?xml version='1.0'?>";
&xml = &xml | "<JobApplication>";
&xml = &xml | "<Photo name='JohnSmith'>";
&xml = &xml | "<PsftXopInclude SegmentNumber='1'/>";
&xml = &xml | "</Photo>";
&xml = &xml | "<Resume name='JohnSmithCV'>";
&xml = &xml | "<PsftXopInclude SegmentNumber='2'/>";
&xml = &xml | "</Resume>";
&xml = &xml | "</JobApplication>";
&theXmlDoc = CreateXmlDoc(&xml);
&theMessage.SetXmlDoc(&theXmlDoc);
/* add an image to the outgoing message */