agatha 1.1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/docs/CHANGELOG.txt +73 -0
- data/lib/LICENSE.txt +14 -0
- data/lib/dotnet/Agatha.Common.dll +0 -0
- data/lib/dotnet/Agatha.Common.pdb +0 -0
- data/lib/dotnet/Agatha.ServiceLayer.dll +0 -0
- data/lib/dotnet/Agatha.ServiceLayer.pdb +0 -0
- data/lib/dotnet/castle/Agatha.Castle.dll +0 -0
- data/lib/dotnet/castle/Agatha.Castle.pdb +0 -0
- data/lib/dotnet/ninject/Agatha.Ninject.dll +0 -0
- data/lib/dotnet/ninject/Agatha.Ninject.pdb +0 -0
- data/lib/dotnet/structuremap/Agatha.StructureMap.dll +0 -0
- data/lib/dotnet/structuremap/Agatha.StructureMap.pdb +0 -0
- data/lib/dotnet/unity/Agatha.Unity.dll +0 -0
- data/lib/dotnet/unity/Agatha.Unity.pdb +0 -0
- data/lib/silverlight/Agatha.Common.Silverlight.dll +0 -0
- data/lib/silverlight/Agatha.Common.Silverlight.pdb +0 -0
- data/lib/silverlight/Agatha.ServiceLayer.Silverlight.dll +0 -0
- data/lib/silverlight/Agatha.ServiceLayer.Silverlight.pdb +0 -0
- data/lib/silverlight/castle/Agatha.Castle.Silverlight.dll +0 -0
- data/lib/silverlight/castle/Agatha.Castle.Silverlight.pdb +0 -0
- data/lib/silverlight/unity/Agatha.Unity.Silverlight.dll +0 -0
- data/lib/silverlight/unity/Agatha.Unity.Silverlight.pdb +0 -0
- metadata +106 -0
data/docs/CHANGELOG.txt
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
1.1:
|
2
|
+
- fixed NullReferenceException in MessageInspector when using one-way requests in combination with INFO logging
|
3
|
+
|
4
|
+
- applied patch from Emil Ingerslev to introduce a couple of virtual methods in the RequestProcessor which allows you to customize how exceptions are logged
|
5
|
+
|
6
|
+
- added BeforeReturningResponses template method which you can use to modify the responses before they are returned to the consumer of the RequestDispatcher
|
7
|
+
|
8
|
+
- Applied patch from Andrew Rea to include REST (JSON and XML) support for the service contract
|
9
|
+
|
10
|
+
- Applied patch from Andrew Rea to support StructureMap
|
11
|
+
|
12
|
+
- Added a check (and an InvalidOperationException is thrown) in case of trying to add a Request with the same key more than once to the RequestDispatcher.
|
13
|
+
|
14
|
+
- Added a Agatha.ServiceLayer.Silverlight project which contains a lightweight-version of the Service Layer to use in-process in a Silverlight app
|
15
|
+
(it was asked by a user who uses this for an online/offline scenario)
|
16
|
+
|
17
|
+
- All *Configuration classes have been made a bit more fluently
|
18
|
+
|
19
|
+
- The Process method in the IWcfRequestProcessor service contract is now configured to allow transaction flowing ([TransactionFlow(TransactionFlowOption.Allowed)])
|
20
|
+
|
21
|
+
- Agatha.Castle.Silverlight is now included
|
22
|
+
|
23
|
+
- Agatha.Castle is now built against Castle Windsor 2.1
|
24
|
+
|
25
|
+
- Applied patch from Jason Diamond to support having request/response types and requesthandlers in multiple
|
26
|
+
assemblies
|
27
|
+
|
28
|
+
- Added AfterSendingRequests virtual method to AsyncRequestDispatcher and RequestDispatcher
|
29
|
+
|
30
|
+
- bugfix: ServiceLayerAndClientConfiguration used to create the ServiceLayerConfiguration too early, which
|
31
|
+
prevented you from overriding some implementation types
|
32
|
+
|
33
|
+
- Caching layer is now available... it only has an InMemory provider at the moment, but more will be added later
|
34
|
+
|
35
|
+
- added Agatha.Ninject project (patch contributed by Ian Davis)
|
36
|
+
|
37
|
+
1.0:
|
38
|
+
|
39
|
+
- RequestProcessor now inherits from Disposable so derived classes can easily clean up their resources
|
40
|
+
|
41
|
+
- Added Agatha.ServiceLayer.AsyncRequestProcessor which implements the IAsyncRequestProcessor interface and delegates
|
42
|
+
to the real IRequestProcessor in an asynchronous manner. Only useful when running the service layer and the client
|
43
|
+
in the same process.
|
44
|
+
|
45
|
+
- Added Agatha.Common.IAsyncRequestProcessor interface which has the same definition as the IAsyncWcfRequestProcessor
|
46
|
+
interface, except for the WCF specific stuff... The AsyncRequestDispatcher now communicates through an
|
47
|
+
IAsyncRequestProcessor instance instead of the WCF specific one. This way, this is completely the same as it is
|
48
|
+
for synchronous communication, and both the serverside components as the clientside classes can now be used _without_
|
49
|
+
WCF (eg: in-process or with some other communication transport layer)
|
50
|
+
|
51
|
+
- Removed Agatha.Common.Silverlight.WCF.IAsyncWcfRequestProcessor and linked Agatha.Common.WCF.IAsyncWcfRequestProcessor
|
52
|
+
into the Silverlight project... both interfaces are identicial so we only need one of them.
|
53
|
+
|
54
|
+
- added support for OneWayRequests (OneWay WCF calls) thanks to Arjen Smits' patch.
|
55
|
+
|
56
|
+
1.0 Beta 2:
|
57
|
+
|
58
|
+
- logging in the servicelayer now happens through the Common.Logging instead of using log4net directly...
|
59
|
+
which means you can use whatever logging library you prefer
|
60
|
+
|
61
|
+
- (Breaking Change): If you want to pass your container instance to an Agatha container wrapper, you have
|
62
|
+
to pass it to the constructor of the wrapper, and then pass that IContainer instance to your
|
63
|
+
ServiceLayerConfiguration or ClientConfiguration instance before initializing
|
64
|
+
|
65
|
+
- Added Agatha.Unity and Agatha.Unity.Silverlight
|
66
|
+
|
67
|
+
- added simple example of Agatha in use, with a small service layer, an IIS host for the service layer,
|
68
|
+
a .NET client which performs a synchronous and an asynchronous client, and a Silverlight client which
|
69
|
+
also performs an asynchronous call
|
70
|
+
|
71
|
+
|
72
|
+
1.0 Beta 1:
|
73
|
+
- initial release
|
data/lib/LICENSE.txt
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
Copyright 2009-2010 Davy Brion
|
2
|
+
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
you may not use the files in this directory structure except in compliance with the License.
|
5
|
+
You may obtain a copy of the License at
|
6
|
+
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
See the License for the specific language governing permissions and
|
13
|
+
limitations under the License.
|
14
|
+
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: agatha
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 1
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
version: 1.1.0.0
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Davy Brion
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-08-31 00:00:00 +03:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: common.logging
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - "="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
segments:
|
30
|
+
- 2
|
31
|
+
- 0
|
32
|
+
- 0
|
33
|
+
- 0
|
34
|
+
version: 2.0.0.0
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
37
|
+
description: |
|
38
|
+
Agatha is a Request/Response Service Layer built on top of WCF. (Silverlight is also supported)
|
39
|
+
|
40
|
+
Note-1: Please install one of the supported logging frameworks by Common.Logging
|
41
|
+
Note-2: Please install one of the supported IoC/DI frameworks: Castle.Windsor, Ninject, StructureMap, Unity
|
42
|
+
|
43
|
+
email: ralinx@davybrion.com
|
44
|
+
executables: []
|
45
|
+
|
46
|
+
extensions: []
|
47
|
+
|
48
|
+
extra_rdoc_files: []
|
49
|
+
|
50
|
+
files:
|
51
|
+
- lib/dotnet/Agatha.Common.dll
|
52
|
+
- lib/dotnet/Agatha.Common.pdb
|
53
|
+
- lib/dotnet/Agatha.ServiceLayer.dll
|
54
|
+
- lib/dotnet/Agatha.ServiceLayer.pdb
|
55
|
+
- lib/dotnet/castle/Agatha.Castle.dll
|
56
|
+
- lib/dotnet/castle/Agatha.Castle.pdb
|
57
|
+
- lib/dotnet/ninject/Agatha.Ninject.dll
|
58
|
+
- lib/dotnet/ninject/Agatha.Ninject.pdb
|
59
|
+
- lib/dotnet/structuremap/Agatha.StructureMap.dll
|
60
|
+
- lib/dotnet/structuremap/Agatha.StructureMap.pdb
|
61
|
+
- lib/dotnet/unity/Agatha.Unity.dll
|
62
|
+
- lib/dotnet/unity/Agatha.Unity.pdb
|
63
|
+
- lib/LICENSE.txt
|
64
|
+
- lib/silverlight/Agatha.Common.Silverlight.dll
|
65
|
+
- lib/silverlight/Agatha.Common.Silverlight.pdb
|
66
|
+
- lib/silverlight/Agatha.ServiceLayer.Silverlight.dll
|
67
|
+
- lib/silverlight/Agatha.ServiceLayer.Silverlight.pdb
|
68
|
+
- lib/silverlight/castle/Agatha.Castle.Silverlight.dll
|
69
|
+
- lib/silverlight/castle/Agatha.Castle.Silverlight.pdb
|
70
|
+
- lib/silverlight/unity/Agatha.Unity.Silverlight.dll
|
71
|
+
- lib/silverlight/unity/Agatha.Unity.Silverlight.pdb
|
72
|
+
- docs/CHANGELOG.txt
|
73
|
+
has_rdoc: true
|
74
|
+
homepage: http://code.google.com/p/agatha-rrsl/
|
75
|
+
licenses: []
|
76
|
+
|
77
|
+
post_install_message:
|
78
|
+
rdoc_options: []
|
79
|
+
|
80
|
+
require_paths:
|
81
|
+
- lib
|
82
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
83
|
+
none: false
|
84
|
+
requirements:
|
85
|
+
- - ">="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
segments:
|
88
|
+
- 0
|
89
|
+
version: "0"
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
none: false
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
segments:
|
96
|
+
- 0
|
97
|
+
version: "0"
|
98
|
+
requirements: []
|
99
|
+
|
100
|
+
rubyforge_project: agatha
|
101
|
+
rubygems_version: 1.3.7
|
102
|
+
signing_key:
|
103
|
+
specification_version: 3
|
104
|
+
summary: Agatha RRSL - Implementation of the Request/Response Service Layer for .NET
|
105
|
+
test_files: []
|
106
|
+
|