I am using wsdl file mention in below url
http://www.easylink.com/easylink-services/fax/webservices-api-downloads.php
The downloaded wsdl zip file contain below files
SendFaxManagement.wsdl
SendFaxManagement.xsd
SendFaxManagementService.wsdl
webservicestest.easylink.com.crt
I included SendFaxManagementService.wsdl to use send fax from vb.net application.
--Code to sent fax start here -----
Dim accountCode As String = ""
Dim UserCode As String = ""
Dim TSI As String = ""
Dim alternateDeliveryNotice As String = ""
Dim deliveryNoticeType As String = ""
Dim faxResolution As String = ""
Dim _to As String = "Test Fax"
Dim from As String = "xyz@prudential.com"
Dim attachments As List(Of FileInfo)
Dim ad As New List(Of WebReference.Data)
attachments = getAttachments("C:\inetpub\wwwroot\NBSS\temp\130556025690536528.jpeg")
For Each lst As FileInfo In attachments.ToList()
Dim objst As New WebReference.Data
objst.FileType = "tiff"
objst.FileContent = "C:\inetpub\wwwroot\NBSS\temp\130556025690536528.jpeg"
ad.Add(objst)
Next
Dim obj As New WebReference.SendFaxManagerSoapBinding
obj.Url = "https://test2messaging.easylink.com/soap/sync"
Dim trns As String = obj.SendFax("XYZ.prudentail.com", "Test123", "XXXX", accountCode, UserCode, ad.ToArray(), alternateDeliveryNotice, deliveryNoticeType, faxResolution, TSI, _to, from)
---Code end here---
So when i ran this code it shows me parsing error.
I did not get any documnet which says how to use mentioned wsdl.
Need help to sort out this issue .