Skip to content

Instantly share code, notes, and snippets.

@DominicFinn
Created May 7, 2013 15:54
Show Gist options
  • Save DominicFinn/5533713 to your computer and use it in GitHub Desktop.
Save DominicFinn/5533713 to your computer and use it in GitHub Desktop.
Helping Lea with an Esendex Soap question... Below requires a service reference to be created with the URL https://www.esendex.com/secure/messenger/soap/InboxService.asmx?op=GetMessagesForDay
Imports System.ServiceModel
Module Module1
Sub Main()
Dim service = New ServiceReference1.InboxServiceSoapClient()
Dim messageHeader = New EsendexSoap.ServiceReference1.MessengerHeader
messageHeader.Account = ""
messageHeader.Username = ""
messageHeader.Password = ""
Dim result = service.GetMessagesForDay(messageHeader, 2012, 10, 1)
End Sub
End Module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment