Возможно, это не лучшее решение, но требуется отправить некоторые данные в теле запроса в другое приложение, чтобы данные могли быть прочитаны принимающим приложением и выполнять операции в зависимости от опубликованных данных.Я хотел бы опубликовать данные из a.mydomain.com/PostData на b.mydomain.com/RequestData, где RequestData имеет тип возврата IACtionResult, который отображает представление приложения B в зависимости от публикуемых данных.Это возможно.Любая помощь очень ценится
Я создал веб-запрос и использовал GetRequestStream () для создания тела, после создания тела я хотел бы перенаправить на b.mydomain.com/RequestData, где я могу прочитатьтело запроса и визуализация моего представления
WebRequest request = WebRequest.Create("http://b.mydomain.com/RequestData");
// Set the Method property of the request to POST.
request.Method = "POST";
// Create POST data and convert it to a byte array.
string postData = "This is a test that posts this string to a Web server.";
byte[] byteArray = Encoding.UTF8.GetBytes(postData);
// Set the ContentType property of the WebRequest.
request.ContentType = "application/x-www-form-urlencoded";
// Set the ContentLength property of the WebRequest.
request.ContentLength = byteArray.Length;`enter code here`
// Get the request stream.
Stream dataStream = request.GetRequestStream();
// Write the data to the request stream.
dataStream.Write(byteArray, 0, byteArray.Length);
// Close the Stream object.
dataStream.Close();