【发布时间】:2022-10-20 19:11:11
【问题描述】:
我使用 gSOAP 2.8.123E 生成了代理。使用 MediaBindingProxy 中包含的消息,我尝试使用 GetProfiles 消息检索远程设备上的配置文件列表。
如果我在 H.264 上设置设备编解码器,一切都很好,但是当编解码器是 H.265 时,我在肥皂响应中检索到错误(用 wireshark 嗅探我注意到 H.265 配置文件已正确返回)。
bool soap_OK = false;
MediaBindingProxy * media;
AddUsernameTokenDigest(media, NULL, GetUser(), GetPwd(), deltaT); //authentication
int ret_value = media->GetProfiles(&GetProfiles, GetProfilesResponse);
if (ret_value == SOAP_OK)
soap_OK = true; //returns true id H.264, with H.265 returns false
你能帮我解决这个问题吗?如果您需要更多信息,请在评论中询问。
【问题讨论】: