1
Answer

Silverlight enabled WCF service Hosting

raman verma

raman verma

12y
1.7k
1
I have setup/hosted my silverlight enabled wcf application in IIS. I have added .xap/.xbap/.xaml in IIS MIME type. User interface is working fine. Xaml page is opening perfectly.
But the problem is, silverlight enabled WCF service is not working. I dont know what is problem.

I there binding type problem? endpoint address problem? IP address/Localhost problem?

What is solution?

Urgent help needed.

Thanks
Raman
Answers (1)
0
Rahul Singh

Rahul Singh

NA 1.5k 226k 10y
Hi Pitchaiyan, You can use Process class methods for this purpose, check this link on MSDN.

You can do something like this on a button click or whatever event you want to bind:-

Process p = new Process();
p.StartInfo.FileName = "Yourfile.exe";
p.StartInfo.Arguments = String.Format(-- Your params--);
p.Start();