| Waqar Ahmed 2005-01-12, 7:46 am |
| See in IIS if the 'Enable Anonymous Access' chk box is
chked in Security of that Orch WebService's Virtual
Directory.
>-----Original Message-----
>When I publish orchestration to webservice (build receive
location is
>checked), it produced a new receive port. I bind this
orche with the
>new receive port, and test it via another window form
below:
>
>private void button2_Click(object sender,
System.EventArgs e)
>{
>localhost.OrchWSReturn_AdderOrch_AddPort ws = new
>localhost.OrchWSReturn_AdderOrch_AddPort();
>ws.Credentials =
System.Net.CredentialCache.DefaultCredentials;
>WindowsApplication1.localhost.add zz = new
>WindowsApplication1.localhost.add();
>zz.x = "10";
>zz.y = "15";
>WindowsApplication1.localhost.addReturn ret = ws.Add(zz);
>textBox1.Text = ret.result;
>}
>
>After I press the button, it return "Internal SOAP
Processing Failure."
>
>I want to know how to test the orchestration after
published to
>webservice?
>And how do it be call by another component (.dll)?
>Thank for any advice, David.
>
>.
>
|