ASMX和WCF服务上的默认HelloWorldResult

时间:2018-01-15 15:55:21

标签: .net web-services wcf asmx

我需要在响应时实现具有特定结构的WebService,这个:

<S:Envelope xmlns:S="http://aaaa">
   <S:Body>
      <MyServiceResponse xmlns="aaaa">
         <Resultado>
            <ResultMajor>OK</ResultMajor>
            <ResultMinor>OK</ResultMinor>
            <ResultMessage>Success!</ResultMessage>
         </Resultado>
         <CodigoTransaccion>123456</CodigoTransaccion>
      </MyServiceResponse>
   </S:Body>
</S:Envelope>

确定!没关系。我创建了一个ASMX(Visual Studio)服务,我的WebService的响应是:

<S:Envelope xmlns:S="http://aaaa">
   <S:Body>
      <MyServiceResponse xmlns="aaaa">
         **<MyServiceResult>**
            <Resultado>
               <ResultMajor>OK</ResultMajor>
               <ResultMinor>OK</ResultMinor>
               <ResultMessage>Success!</ResultMessage>
            </Resultado>
            <CodigoTransaccion>123456</CodigoTransaccion>
         **</MyServiceResult>**
      </MyServiceResponse>
   </S:Body>
</S:Envelope>

我以WCF(Visual Studio)格式创建了相同的WebService,我有相同的结果...

我在JAVA和Bingo中创建了相同的WebService!我有一个成功的结果,但我不能使用Java(NetBeans)...

我相信这个额外标签适用于[.NET Framework]。 有人知道我怎么能删除或做这个额外标签的事情吗?

问题是第3次aplicattion不会使用此额外标记运行。

感谢您的时间和帮助。

度过美好的一天!

0 个答案:

没有答案