}
public static void main(String args[]) throws java.lang.Exception {
URL wsdlURL = new URL(args[0]);
OrchestrationService_Service ss = new OrchestrationService_Service(wsdlURL, SERVICE_NAME);
OrchestrationService port = ss.getOrchestrationServicePort();
String resetMailbox_msisdn = args[1];
String resetMailbox_secret = args[2];
port.resetMailbox(resetMailbox_msisdn, resetMailbox_secret);
}