Monday

testing svc web service

First you have to create test project in visual studio and add service reference, than you will be able to create test like this:
      
[Test]
public void BusinessWebserviceServiceTest01()
{
BusinessWebservice.ServiceClient client= new ServiceClient();
Debug.Write(client.getOpenInvoicesCount(1006469, 1, 1292071, "0"));
}

No comments:

test smtp server with powershell

Send-MailMessage -SMTPServer smtp.domain.com -To [email protected] -From [email protected] -Subject "This is a test email" -Body ...