Когда создается поле SoapHeader в ASMX? - PullRequest
0 голосов
/ 23 апреля 2009

Рассмотрим следующее:

public MyCustomHeader MyHeader;

public New()
{
    //MyHeader is NOT instantiated
}


[SoapHeader("MyHeader")]
[WebMethod()]
public bool MyFunction()
{
    //MyHeader is instantiated, but when was it instantiated?
}

Ответы [ 2 ]

0 голосов
/ 02 августа 2012
how to convert this part and attach to XML in android?
POST /SharingpointCheckBarcode.asmx HTTP/1.1
Host: awc.test.trin-it.nl
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/checkBarcode"
0 голосов
/ 23 апреля 2009

В случае вашего примера он будет создан непосредственно перед выполнением метода MyFunction. Поскольку заголовок был необходим, чтобы иметь возможность выполнять действия MyFunction.

...