API Support,
One of our customers is trying to create an enhanced email JobSubmit application, sending transactional emails with PDF attachments. They have been trying to use the
JobSubmitPortTypeClient in the WSDL, to no luck.
Here is their app.config.
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="JobSubmitBinding">
<security mode="Transport"></security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="https://test2messaging.easylink.com/soap/sync"
binding="wsHttpBinding"
bindingConfiguration="JobSubmitBinding"
contract="JobSubmitService.JobSubmitPortType"
name="JobSubmitPort" />
</client>
</system.serviceModel>
</configuration>
Would you be able to advise how we can get this working?
Thank you.