table.addProperty("Match SOAP Version", "requireSoapVersion", JPropertiesTable.BOOLEAN_OPTIONS).setDescription(
"Matches incoming SOAP Version against corresponding Interface");
table.addProperty("Require SOAP Action", "requireSoapAction", JPropertiesTable.BOOLEAN_OPTIONS);
table.addProperty("Dispatch Responses", "dispatchResponseMessages", JPropertiesTable.BOOLEAN_OPTIONS);
WsdlProject project = mockService.getProject();
StringList incomingNames = new StringList(project.getWssContainer().getIncomingWssNames());
incomingNames.add("");
table.addProperty("Incoming WSS", "incomingWss", incomingNames.toStringArray());
StringList outgoingNames = new StringList(project.getWssContainer().getOutgoingWssNames());
outgoingNames.add("");
table.addProperty("Default Outgoing WSS", "outgoingWss", outgoingNames.toStringArray());
table.setPropertyObject(mockService);
return table;