summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--branches/sca-java-1.x/modules/implementation-widget-runtime/src/main/java/org/apache/tuscany/sca/implementation/widget/provider/WidgetImplementationInvoker.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/branches/sca-java-1.x/modules/implementation-widget-runtime/src/main/java/org/apache/tuscany/sca/implementation/widget/provider/WidgetImplementationInvoker.java b/branches/sca-java-1.x/modules/implementation-widget-runtime/src/main/java/org/apache/tuscany/sca/implementation/widget/provider/WidgetImplementationInvoker.java
index d9616de359..7d91dcd29b 100644
--- a/branches/sca-java-1.x/modules/implementation-widget-runtime/src/main/java/org/apache/tuscany/sca/implementation/widget/provider/WidgetImplementationInvoker.java
+++ b/branches/sca-java-1.x/modules/implementation-widget-runtime/src/main/java/org/apache/tuscany/sca/implementation/widget/provider/WidgetImplementationInvoker.java
@@ -231,6 +231,17 @@ class WidgetImplementationInvoker implements Invoker {
// be generating proxies that communicate with other hosts (if a proxy needs to
// communicate with another host it should be generated on and served by
// that particular host)
+
+ /*
+ URI targetURI = URI.create(binding.getURI());
+ String targetPath;
+ if(targetURI.getScheme() == null) {
+ targetPath = targetURI.getPath();
+ } else {
+ targetPath = targetURI.toString();
+ }
+ */
+
URI targetURI = URI.create(binding.getURI());
String targetPath = targetURI.getPath();