我的网站正在向Postman的模拟服务器发帖子.我希望能够看到我的要求,以确保它以我期望的方式出现.我已经尝试连接显示器,但这并没有向我显示我能够找到的任何地方的请求.
在Postman Windows客户端中,我可以看到一个请求进入我的Postman模拟服务器吗?
我们想将使用本地WebRTC的Android项目更新到最新版本。我们使用的版本是1.0.24277,我们正在升级到1.0.25331。
这次升级的有趣之处在于它不需要任何代码更改(在新版本中,任何东西都已弃用)。我假设他们改变了需要执行某些代码的方式。
所以我的问题是,是否有人知道可能需要更改哪些本机Java webrtc代码才能使其崩溃?
只是要注意,onRenegotiationNeeded中没有任何代码,因此我不知道为什么这会导致崩溃。
2018-11-12 10:58:32.318 1400-2319/com.popinvideobanking.ttcu.demo D/FT_WebRTCPeer: 7ghYoCJtZmDxGNQ2AArv onRenegotiationNeeded
2018-11-12 10:58:32.385 1400-2324/com.popinvideobanking.ttcu.demo I/org.webrtc.Logging: CameraStatistics: Camera fps: 18.Enter one-line summary
--------- beginning of crash
2018-11-12 10:58:32.425 2404-2318/? A/google-breakpad: Microdump skipped (uninteresting)
2018-11-12 10:58:32.446 1400-2318/com.popinvideobanking.ttcu.demo W/google-breakpad: ### ### ### ### ### ### ### ### ### ### ### ### ###
2018-11-12 10:58:32.446 1400-2318/com.popinvideobanking.ttcu.demo W/google-breakpad: Chrome build fingerprint:
2018-11-12 10:58:32.446 1400-2318/com.popinvideobanking.ttcu.demo W/google-breakpad: 68.0.3440.91
2018-11-12 10:58:32.446 1400-2318/com.popinvideobanking.ttcu.demo W/google-breakpad: 344009152
2018-11-12 10:58:32.446 1400-2318/com.popinvideobanking.ttcu.demo W/google-breakpad: ### ### ### ### ### ### ### ### ### ### …Run Code Online (Sandbox Code Playgroud) 我试图在 Wix 安装程序结束时运行自定义操作,但前提是满足某些条件。用户运行安装程序,他们将选择设置属性“ServiceType”的两种模式之一。该属性的两个值是“RegisterNew”和“LinkExisting”。您可以通过下面的日志看到,当用户在 UI 中选择“LinkExisting”时,它会更改属性,但自定义操作仍在运行。
MSI (c) (D4:44) [11:20:15:686]: PROPERTY CHANGE: Modifying ServiceType property. Its current value is 'RegisterNew'. Its new value: 'LinkExisting'.
Run Code Online (Sandbox Code Playgroud)
这是我的自定义操作代码:
<InstallExecuteSequence>
<Custom Action="RegisterServiceNameCustomAction" Before="InstallFinalize">
<![CDATA[(ServiceType="RegisterNew") AND (NOT Installed)]]>
</Custom>
</InstallExecuteSequence>
<Fragment>
<Binary Id="RegisterServiceCustomActionBinary" SourceFile="$(var.RegisterServiceCustomAction.TargetDir)$(var.RegisterServiceCustomAction.TargetName).CA.dll" />
<CustomAction Id="RegisterServiceNameCustomAction" BinaryKey="RegisterServiceCustomActionBinary" DllEntry="ShowRegisterService" Execute="deferred" Return="check" />
</Fragment>
Run Code Online (Sandbox Code Playgroud)
以下是我尝试过的不同条件:
(ServiceType="RegisterNew") AND (NOT Installed)
<![CDATA[(ServiceType="RegisterNew") AND (NOT Installed)]]>
ServiceType="RegisterNew" AND NOT Installed
Run Code Online (Sandbox Code Playgroud)
这是我的自定义对话框的代码,他们在其中选择将更改“ServiceType”的选择:
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<UI Id="SelectServiceDlg">
<Property Id="ServiceType" Value="RegisterNew" />
<Dialog Id="SelectServiceDlg" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes"> …Run Code Online (Sandbox Code Playgroud)