Author: hihellohi | Posted on: 8/14/2008 12:09:59 AM | Views : 1363

Now I am trying to use web service to send out a fax by dll.
In dll, the function is as following:
 public void SendFax(string DocumentName, string FileName, string RecipientName, string FaxNumber)

        {

            if (FaxNumber != "")

            {

               
StreamWriter myStream = new
StreamWriter(@"c:\windows\temp\yyyzzz1.txt");

                myStream.WriteLine("asdfghjkl");

                try

                {

  &nb ...

Go to the complete details ...