gpt4 book ai didi

Java:重现捕获的请求

转载 作者:行者123 更新时间:2023-12-01 15:21:49 26 4
gpt4 key购买 nike

我正在尝试重现使用英特尔 upnp 开发人员工具堆栈生成的 SOAP 请求。

使用设备嗅探器,我能够捕获以下请求

有人可以向我指出重现此问题的最简单方法是什么吗?

数据包来源:

POST /_urn-upnp-org-serviceId-SwitchPower.0001_control HTTP/1.1
SOAPACTION: "urn:schemas-upnp-org:service:SwitchPower:1#SetTarget"
CONTENT-TYPE: text/xml; charset="utf-8"
HOST: 192.168.1.18:1451
Content-Length: 347

<?xml version="1.0" encoding="utf-8"?>
<s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<u:SetTarget xmlns:u="urn:schemas-upnp-org:service:SwitchPower:1">
<newTargetValue>0</newTargetValue>
</u:SetTarget>
</s:Body>
</s:Envelope>HTTP/1.1 200 OK
EXT:
CONTENT-TYPE: text/xml; charset="utf-8"
SERVER: Windows NT/5.0, UPnP/1.0
Content-Length: 290

<?xml version="1.0" encoding="utf-8"?>
<s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<u:SetTargetResponse xmlns:u="urn:schemas-upnp-org:service:SwitchPower:1" />
</s:Body>
</s:Envelope>

最佳答案

一种简单的方法是在端口 80 上打开到系统的流,然后按字面写出字符。您也可以通过这种方式获得响应。然而,这并不是实际处理返回的任何内容的最佳方式。您可以通过How to send HTTP request in java?发送普通请求,您还可以在其中解释响应。

关于Java:重现捕获的请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10795412/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com