Revision: 7241 Author: [email protected] Date: Wed Dec 2 15:06:59 2009 Log: Have the policy name of RpcServiceProxy be the same as the permutation's strong name.
Review by: bobv http://code.google.com/p/google-web-toolkit/source/detail?r=7241 Modified: /trunk/user/src/com/google/gwt/rpc/client/impl/RpcServiceProxy.java ======================================= --- /trunk/user/src/com/google/gwt/rpc/client/impl/RpcServiceProxy.java Wed Dec 2 14:20:27 2009 +++ /trunk/user/src/com/google/gwt/rpc/client/impl/RpcServiceProxy.java Wed Dec 2 15:06:59 2009 @@ -15,6 +15,7 @@ */ package com.google.gwt.rpc.client.impl; +import com.google.gwt.core.client.GWT; import com.google.gwt.http.client.RequestCallback; import com.google.gwt.user.client.rpc.AsyncCallback; import com.google.gwt.user.client.rpc.SerializationException; @@ -31,7 +32,8 @@ protected RpcServiceProxy(String moduleBaseURL, String remoteServiceRelativePath, TypeOverrides typeOverrides) { - super(moduleBaseURL, remoteServiceRelativePath, "(unused)", null); + super(moduleBaseURL, remoteServiceRelativePath, + GWT.getPermutationStrongName(), null); this.typeOverrides = typeOverrides; } -- http://groups.google.com/group/Google-Web-Toolkit-Contributors
