* Populate all the Actions
*
* @param binding soapbinding:operation
*/
private void populateActions(WSDLBoundPortTypeImpl binding) {
WSDLPortTypeImpl porttype = binding.getPortType();
for (WSDLOperationImpl o : porttype.getOperations()) {
// TODO: this may be performance intensive. Alternatively default action
// TODO: can be calculated when the operation is actually invoked.
WSDLBoundOperationImpl wboi = binding.get(o.getName());
if (wboi == null) {