Method | Description | |
---|---|---|
HandleRequest ( |
Invokes the appropriate handler for a given request
|
|
ParseIncomingMessages ( |
Parses incoming messages and returns a list to be dispatched
|
|
RegisterServiceHandlers ( ) : void |
Finds and initializes service handlers (methods with a ServiceAttribute defined)
|
|
ServiceManager ( ) : System |
Initializes the service manager, loads assemblies from the deploy dir and adds a file system watcher to load new assemblies upon their creation
|
Method | Description | |
---|---|---|
LoadServiceHandlerAssemblies ( ) : void |
Loads all assemblies in the deploy directory
|
|
LoadSingleAssembly ( String file_location ) : void |
Loads a single assembly given its full path
|
|
RegisterServicesFromAssembly ( |
||
fsw_Created ( object sender, |
Handles the file created event in the deploy dir so we can load assemblies
|
public HandleRequest ( |
||
request | The ServiceRequest object corresponding to the incoming request | |
response | The ServiceResponse object corresponding to the outgoing response | |
session | System.Web.SessionState.HttpSessionState | |
httpresponse | ||
return | void |
public ParseIncomingMessages ( |
||
context | The HttpContext of the request | |
broker | The ServiceBroker handling the request | |
details | The RequestDetails from the request | |
content_type | String | |
return | List |