problems with webservices!!!!!!
-
Hi, I am developing a webapplication in Visual Studio-2008(AsP.net/C#). I am trying to integrate my webapplication with webservice.The webservice is such that it will put all my request in asynchronous mode. My webapplication, I am sending a mail with Cc and Bcc fields, for the body of my mail I am using a rich textbox from richer components. Rich text box is used to send the data in formatted text. I am using the code below: Service webServ = new Service(); // Make an Asynchronous Call by calling the start method. webServ.BeginSendMailAll(dsRec, strSubj, RichTextBox1.Text , new AsyncCallback(WsCallback), webServ); while using the webservice how to implement: The Bcc and Cc in the code above. Also the body of the mail goes(to the recepient) in html format, instead of the fromatted text I am sending. please help me out thanks
-
Hi, I am developing a webapplication in Visual Studio-2008(AsP.net/C#). I am trying to integrate my webapplication with webservice.The webservice is such that it will put all my request in asynchronous mode. My webapplication, I am sending a mail with Cc and Bcc fields, for the body of my mail I am using a rich textbox from richer components. Rich text box is used to send the data in formatted text. I am using the code below: Service webServ = new Service(); // Make an Asynchronous Call by calling the start method. webServ.BeginSendMailAll(dsRec, strSubj, RichTextBox1.Text , new AsyncCallback(WsCallback), webServ); while using the webservice how to implement: The Bcc and Cc in the code above. Also the body of the mail goes(to the recepient) in html format, instead of the fromatted text I am sending. please help me out thanks
Sounds like you need to make changes to the actual webservice code to make it do what you want it to.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
Sounds like you need to make changes to the actual webservice code to make it do what you want it to.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
I usually use Visual Studio to change code. ;P