Avatar

Level 3

Background:

8.2 version

I'm trying to throw/receive a custom event but nothing is working for the receive to work. Below is the event information.

I create a process that throws the event. I create another process that has the event as, I have tried both Start point and Receive. It will not trap no matter what I do. How do I debug this?

Cheers,

Event:

Asynchronous

Event Data Template:

<?xml version="1.0" encoding="UTF-8"?>
<schema targetNamespace="http://www.ec.gc.ca/xsd/SampleData/" elementFormDefault="qualified" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.ec.gc.ca/xsd/SampleData/">
    <element name="SendEmail">

    <complexType >
        <all>
            <element name="EmailTo" type="string" />
            <element name="EmailFrom" type="string" />
            <element name="EmailSubject" type="string" />
            <element name="EmailCC" type="string" />
            <element name="EmailBCC" type="string" />
            <element name="EmailBody" type="string" />
        </all>
    </complexType>
    </element>
</schema>