I have an incoming soap message wich form is TStream (Delphi7), server that send this soap is in development mode and adds a html header to the message for debugging purposes. Now i need to cut out the html header part from it before i can pass it to soap converter. It starts from the beginning with 'pre' tag and ends with '/pre' tag. Im thinking it should be fairly easy to but i havent done it before in Delphi7, so can someone help me?
|
|
I think the following code would do what you want, assuming you only have one <pre> block in your document.
Another option I believe would be to use an xml transform to remove the unwanted tags, but I don't do much in the way of transforms so if anyone else wants that torch... EDIT: Corrected code so that it works. Teaches me for coding directly into SO rather than into the IDE first. |
|||
|
|
Another solution, more in line with Lars' suggestion and somehow more worked out. Warning: this code is for Delphi up to D2007, not D2009.
|
|||
|
|
|
|
An XPath expression of " It's been many years since I last used it, but I think Dieter Koehler's OpenXML library supports XPath. |
||
|
|
|
Make a new TStream (use TMemoryStream) and move any stuff you want to keep over from one stream to the other with TStream.CopyFrom or the TStream.ReadBuffer/WriteBuffer methods. |
||
|
