// Inspect each BindingEntry in the Symbol Table
if (entry instanceof BindingEntry) {
BindingEntry bEntry = (BindingEntry) entry;
Binding binding = bEntry.getBinding();
// Get the associated PortType
PortTypeEntry ptEntry =
symbolTable.getPortTypeEntry(
binding.getPortType().getQName());
PortType portType = ptEntry.getPortType();
Iterator operations = portType.getOperations().iterator();
// Inspect the Operations of the PortType
while(operations.hasNext()) {
Operation operation = (Operation) operations.next();
// Get the associated parameters of the operation.