0

RESTfulWCFサービス内でコードを書き込もうとして問題が発生しました。呼び出し元のクライアントアプリケーションでメソッドを使用できるようにしましたが、Base64バイナリメッセージであるAx27834......形式のメッセージを受信して​​います。問題は、これを受け取った後、クライアントから送信されたメッセージの元のxmlバージョンに変換できるようにする必要があることです。以下のコードスニペットでこれを実現するにはどうすればよいですか。下の6行目には、コードをどこに配置する必要があるかがわかります。私は解決策を探しましたが、適切なものを見つけることができませんでした。ストリームではなくメッセージを受信する必要があります。

リクエストの受信に関しては、サービスが正常に機能していることを強調する必要があります。メッセージを使用できる形式にするのに苦労しています。

受信コード

public Message StoreMessage(Message request)
{
    //Store the message
    try
        {
        string message = [NEED SOLUTION HERE]

        myClass.StoreNoticeInSchema(message, DateTime.Now);
    }
    catch (Exception e)
    {
        log4net.Config.XmlConfigurator.Configure();

        ILog log = LogManager.GetLogger(typeof(Service1));

        if (log.IsErrorEnabled)
        {
            log.Error(String.Format("{0}: Notice was not stored. {1} reported an exception. {2}", DateTime.Now, System.Reflection.MethodBase.GetCurrentMethod().DeclaringType, e.Message));
        }
    }

    XElement responseElement = new XElement(XName.Get("elementName", "url"));

    XDocument resultDocument = new XDocument(responseElement);

    return Message.CreateMessage(OperationContext.Current.IncomingMessageVersion, "elementName", resultDocument.CreateReader());
}

クライアントコード

public string CallPostMethod()
    {
        const string action = "StoreNotice/New";

        TestNotice testNotice = new TestNotice();

        const string url = "http://myaddress:myport/myService.svc/StoreNotice/New";

        string contentType = String.Format("application/soap+xml; charset=utf-8; action=\"{0}\"", action);
        string xmlString = CreateSoapMessage(url, action, testNotice.NoticeText);

        HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url);

        ASCIIEncoding encoding = new ASCIIEncoding();

        byte[] bytesToSend = encoding.GetBytes(xmlString);

        request.Method = "POST";
        request.ContentLength = bytesToSend.Length;
        request.ContentType = contentType;

        using (Stream requestStream = request.GetRequestStream())
        {
            requestStream.Write(bytesToSend, 0, bytesToSend.Length);
            requestStream.Close();
        }

        string responseFromServer;

        HttpWebResponse response = (HttpWebResponse)request.GetResponse();

        using (Stream dataStream = response.GetResponseStream())
        {
            using (StreamReader reader = new StreamReader(dataStream))
                responseFromServer = reader.ReadToEnd();
            dataStream.Close();
        }

        XDocument document = XDocument.Parse(responseFromServer);
        string nameSpace = "http://www.w3.org/2003/05/soap-envelope";
        XElement responseElement = document.Root.Element(XName.Get("Body", nameSpace))
                                             .Element(XName.Get(@action + "Response", "http://www.wrcplc.co.uk/Schemas/ETON"));


        return responseElement.ToString();
    }

SOAPメッセージを作成するためのコード

  protected string CreateSoapMessage(string url, string action, string messageContent)
    {
        return String.Format(
 @"<?xml version=""1.0"" encoding=""utf-8""?>
 <soap12:Envelope xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" 
 xmlns:xsd=""http://www.w3.org/2001/XMLSchema"" xmlns:soap12=""http://www.w3.org/2003/05/soap-envelope""><soap12:Body>{0}</soap12:Body>
</soap12:Envelope>
", messageContent, action, url);
    }

注:TestNotice()オブジェクトには、メッセージの本文である大きなxml文字列が含まれています。

4

1 に答える 1

0

Message オブジェクトでは、通常、GetReaderAtBodyContents() を使用して本文コンテンツの XML 表現を取得しますが、本文の型がわからない場合は、GetBody<> を使用できます。それらを使用して文字列を取得し、必要に応じてデコードしてみてください。次のように実行できます。

byte[] encodedMessageAsBytes = System.Convert.FromBase64String(requestString);

string message = System.Text.Encoding.Unicode.GetString(encodedMessageAsBytes);

そこから、文字列からxmlを再構築できます

編集: コメントの最後の部分に答えるには、コンテンツ タイプは次のようにする必要があります: text/xml

于 2012-09-04T13:22:02.163 に答える