Author: lresende
Date: Fri Oct 24 15:41:51 2008
New Revision: 707770

URL: http://svn.apache.org/viewvc?rev=707770&view=rev
Log:
Fixing issue where JSON-RPC binding was not being concatenated to generated 
java script proxy and was causing catalog.get is not a function when running 
store sample.

Modified:
    
tuscany/branches/sca-equinox/modules/implementation-widget-runtime/src/main/java/org/apache/tuscany/sca/implementation/widget/provider/WidgetProxyHelper.java

Modified: 
tuscany/branches/sca-equinox/modules/implementation-widget-runtime/src/main/java/org/apache/tuscany/sca/implementation/widget/provider/WidgetProxyHelper.java
URL: 
http://svn.apache.org/viewvc/tuscany/branches/sca-equinox/modules/implementation-widget-runtime/src/main/java/org/apache/tuscany/sca/implementation/widget/provider/WidgetProxyHelper.java?rev=707770&r1=707769&r2=707770&view=diff
==============================================================================
--- 
tuscany/branches/sca-equinox/modules/implementation-widget-runtime/src/main/java/org/apache/tuscany/sca/implementation/widget/provider/WidgetProxyHelper.java
 (original)
+++ 
tuscany/branches/sca-equinox/modules/implementation-widget-runtime/src/main/java/org/apache/tuscany/sca/implementation/widget/provider/WidgetProxyHelper.java
 Fri Oct 24 15:41:51 2008
@@ -6,15 +6,15 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
- * under the License.    
+ * under the License.
  */
 
 package org.apache.tuscany.sca.implementation.widget.provider;
@@ -33,18 +33,18 @@
     static {
         
proxyFileRegistry.put("org.apache.tuscany.sca.binding.atom.impl.AtomBindingImpl",
 "binding-atom.js");
         
proxyClient.put("org.apache.tuscany.sca.binding.atom.impl.AtomBindingImpl", 
"AtomClient");
-        
-        
proxyFileRegistry.put("org.apache.tuscany.sca.binding.jsonrpc.JSONRPCBinding", 
"binding-jsonrpc.js");
-        
proxyClient.put("org.apache.tuscany.sca.binding.jsonrpc.JSONRPCBinding", 
"JSONRpcClient");
+
+        
proxyFileRegistry.put("org.apache.tuscany.sca.binding.jsonrpc.impl.JSONRPCBindingImpl",
 "binding-jsonrpc.js");
+        
proxyClient.put("org.apache.tuscany.sca.binding.jsonrpc.impl.JSONRPCBindingImpl",
 "JSONRpcClient");
 
         
proxyFileRegistry.put("org.apache.tuscany.sca.binding.http.impl.HTTPBindingImpl",
 "binding-http.js");
         
proxyClient.put("org.apache.tuscany.sca.binding.http.impl.HTTPBindingImpl", 
"HTTPClient");
     }
-    
+
     static String getJavaScriptProxyFile(String bindingClass) {
         return proxyFileRegistry.get(bindingClass);
     }
-    
+
     static String getJavaScriptProxyClient(String bindingClass) {
         return proxyClient.get(bindingClass);
     }


Reply via email to