final GeneratorContext context = this.getGeneratorContext();
final Type string = context.getString();
final Method setter = serviceDefTarget.getMostDerivedMethod(Constants.SET_SERVICE_ENTRY_POINT, Collections.nCopies(1, string));
final StringValue addressValue = new StringValue();
addressValue.setGeneratorContext(context);
addressValue.setType(string);
final String serviceEntryPoint = rpc.getServiceEntryPoint();
addressValue.setValue(serviceEntryPoint);
body.addProperty(setter, addressValue);
context.debug("serviceEntryPoint: \"" + serviceEntryPoint + "\"");
}