묻고답하기

특정 웹프로그램이 있는데 패킷으로 검사해 보니까
--------------------------------------------------------------------------------------
POST / HTTP/1.1
Content-Type: text/xml
Content-Length: 75
Expect: 100-continue
Host: 192.168.0.10:8082


<?xml version='1.0' encoding='UTF-8'?><getServiceStatus></getServiceStatus>
---------------------------------------------------------------------------------

이렇게 보내더군요. 받는 값은 다음과 같구요...
-------------------------------------------------------------------------------------
HTTP/1.1 200 OK
Content-Type: text/html
Content-Length: 169

<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<getServiceStatus_result><status>ON</status><updateTime>2005-08-22 13:52:58</updateTime>
</getServiceStatus_result>
------------------------------------------------------------------------------------------

html이나 php로 어떻게 해야 다음과 같이 보낼 수 있는건가요?
답변 부탁드립니다.