/[dgee]/dgee/cslib/DotGNU/DGEE/Protocols/ProtocolService.cs
ViewVC logotype

Diff of /dgee/cslib/DotGNU/DGEE/Protocols/ProtocolService.cs

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.4.7 by csmith, Sat Aug 30 17:51:54 2003 UTC revision 1.1.4.8 by csmith, Sat Aug 30 19:59:25 2003 UTC
# Line 99  public abstract  class ProtocolService Line 99  public abstract  class ProtocolService
99      //      //
100          RequestProc rproc = new RequestProc();          RequestProc rproc = new RequestProc();
101    
102      minfo = rproc.ResolveMethod( type, (method != null) ? method : ((XmlRpcMethod)rMethod).Name);      Type svcType = rproc.ResolveType( type );
103        minfo = rproc.ResolveMethod( svcType, (method != null) ? method : ((XmlRpcMethod)rMethod).Name);
104    
105      Object result = minfo.Invoke(null, ((XmlRpcMethod)rMethod).ToArray() );      # Create an instance of the webservice to invoke
106            #
107            Object webservice = Activator.CreateInstance( svcType );
108    
109        Object result = minfo.Invoke(webservice, ((XmlRpcMethod)rMethod).ToArray());
110                
111      // Send reply back via the Protocol's response handler      // Send reply back via the Protocol's response handler
112      // implementation      // implementation

Legend:
Removed from v.1.1.4.7  
changed lines
  Added in v.1.1.4.8

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26