01-20-05 12:47 PM
i tried the sample in lab J,
that is publishing an orchestration as a web service.
in the "TestPublishedWebService" project
how can change this codeto send a xml with more that one item?
localhost.Request req = new localhost.Request();
req.Header = new localhost.RequestHeader();
req.Header.ReqID = txtReqID.Text;
req.Header.Date = txtDate.Text;
req.Item = new localhost.RequestItem();
req.Item.ItemID = txtItemID.Text;
req.Item.Description = txtDesc.Text;
req.Item.Quantity = txtQty.Text;
req.Item.UnitPrice = txtUnitPrice.Text;
req.Item.TotalPrice = txtTotalPrice.Text;
thanks.
raf.
[ Post a follow-up to this message ]
|