You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds feature parity to http sender compared to TCP sender to specify what source IP should be used.
Signed-off-by: Joachim Beckers <joachim.beckers@nexuzhealth.com>
Issue: #332
@@ -1203,8 +1224,38 @@ public void actionPerformed(ActionEvent evt) {
1203
1224
patchButtonActionPerformed(evt);
1204
1225
}
1205
1226
});
1227
+
1228
+
localAddressLabel.setText("Local Address:");
1229
+
1230
+
localAddressField.setToolTipText("<html>The local address that the client socket will be bound to, if Override Local Binding is set to Yes.<br/></html>");
1231
+
1232
+
overrideLocalBindingLabel.setText("Override Local Binding:");
overrideLocalBindingYesRadio.setToolTipText("<html>Select Yes to override the local address that the client socket will be bound to.<br/>Select No to use the default values of 0.0.0.0:0.<br/></html>");
overrideLocalBindingNoRadio.setToolTipText("<html>Select Yes to override the local address that the client socket will be bound to.<br/>Select No to use the default values of 0.0.0.0:0.<br/></html>");
urlField.setToolTipText("Enter the URL of the HTTP server to send each message to.");
1210
1261
queryParametersTable.setToolTipText("Query parameters are encoded as x=y pairs as part of the request URL, separated from it by a '?' and from each other by an '&'.");
patchButton.setToolTipText("Selects the HTTP operation used to send each message.");
1244
1295
useQueryParamsTableRadio.setToolTipText("<html>The table below will be used to populate query parameters.</html>");
1245
1296
useQueryParamsVariableRadio.setToolTipText("<html>The Java map specified by the following variable will be used to populate query parameters.<br/>The map must have String keys and either String or List<String> values.</html>");
1246
-
queryParamsVariableField.setToolTipText("<html>The variable of a Java map to use to populate query parameters.<br/>The map must have String keys and either String or List<String> values.</html>");
1297
+
queryParamsVariableField.setToolTipText("<html>The variable of a Java map to use to populate query parameters.<br/>The map must have String keys and either String or List<String> values.</html>");
1247
1298
useHeadersTableRadio.setToolTipText("<html>The table below will be used to populate headers.</html>");
1248
1299
useHeadersVariableRadio.setToolTipText("<html>The Java map specified by the following variable will be used to populate headers.<br/>The map must have String keys and either String or List<String> values.</html>");
1249
1300
headersVariableField.setToolTipText("<html>The variable of a Java map to use to populate headers.<br/>The map must have String keys and either String or List<String> values.</html>");
0 commit comments