modules/core/src/main/java/org/apache/savan/eventing/client/EventingClient.java [90:104]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SubscriptionResponseData data =
                (SubscriptionResponseData)subscriptionDataMap.get(subscriptionID);
        EndpointReference managerEPR = data.getSubscriptionManager();
        if (managerEPR == null)
            throw new Exception("Manager EPR is not set");

        Options options = serviceClient.getOptions();
        if (options == null) {
            options = new Options();
            serviceClient.setOptions(options);
        }

        String SOAPVersion = options.getSoapVersionURI();
        if (SOAPVersion == null)
            SOAPVersion = SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



modules/core/src/main/java/org/apache/savan/eventing/client/EventingClient.java [122:136]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SubscriptionResponseData data =
                (SubscriptionResponseData)subscriptionDataMap.get(subscriptionID);
        EndpointReference managerEPR = data.getSubscriptionManager();
        if (managerEPR == null)
            throw new Exception("Manager EPR is not set");

        Options options = serviceClient.getOptions();
        if (options == null) {
            options = new Options();
            serviceClient.setOptions(options);
        }

        String SOAPVersion = options.getSoapVersionURI();
        if (SOAPVersion == null)
            SOAPVersion = SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



