ruby_odata 0.0.8 → 0.0.9
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/.gitignore +2 -1
- data/.rspec +1 -0
- data/CHANGELOG.rdoc +12 -1
- data/README.rdoc +26 -14
- data/Rakefile +15 -0
- data/features/ssl.feature +21 -0
- data/features/step_definitions/service_steps.rb +8 -0
- data/lib/ruby_odata.rb +0 -1
- data/lib/ruby_odata/class_builder.rb +1 -1
- data/lib/ruby_odata/service.rb +28 -31
- data/lib/ruby_odata/version.rb +1 -1
- data/ruby_odata.gemspec +5 -5
- data/spec/class_builder_spec.rb +13 -0
- data/spec/fixtures/edmx_empty.xml +7 -0
- data/spec/fixtures/edmx_lowercase.xml +20 -0
- data/spec/service_spec.rb +43 -0
- data/spec/spec_helper.rb +2 -0
- data/test/applicationhost.config.template +957 -0
- data/test/iisExpress x64.bat +7 -1
- data/test/iisExpress x86.bat +7 -1
- data/test/setpath.rb +3 -0
- metadata +42 -23
data/.gitignore
CHANGED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/CHANGELOG.rdoc
CHANGED
@@ -39,8 +39,19 @@
|
|
39
39
|
|
40
40
|
=== 0.0.8
|
41
41
|
* New Features
|
42
|
-
* Basic HTTP Authentication (thanks J.D. Mullin)
|
42
|
+
* Basic HTTP Authentication (thanks J.D. Mullin)
|
43
43
|
* Modified cucumber tests to setup the test database so you no longer need to copy them yourself
|
44
|
+
* Support for nullable elements returned from the Data Service (m:null ="true")
|
44
45
|
* Bug Fixes
|
45
46
|
* ActiveSupport 2.3.x (tested 2.3.11) and 3.0.x (tested 3.0.4) are now supported
|
46
47
|
* Works with Ruby 1.9.2
|
48
|
+
|
49
|
+
=== 0.0.9
|
50
|
+
* New Features
|
51
|
+
* Support for self-signed SSL certificates (thanks J.D. Mullin)
|
52
|
+
* Refactored building classes/collections to only make one call to the service
|
53
|
+
* Added support for a WCF service with lowercase entities (reported by Klaus Rohe)
|
54
|
+
* Bug Fixes
|
55
|
+
* Fixed issue with passing a service URL with a trailing slash
|
56
|
+
* Other
|
57
|
+
* Cleaned up testing by adding a default task to the Rakefile that runs RSpec and Cucumber
|
data/README.rdoc
CHANGED
@@ -16,14 +16,11 @@ You can install ruby_odata as a gem using:
|
|
16
16
|
gem install ruby_odata
|
17
17
|
|
18
18
|
== Usage
|
19
|
-
As of version 0.0.5, support has been added for ActiveSupport 3.0.0 beta 4 and Ruby 1.9.1.
|
20
|
-
|
21
|
-
As of version 0.0.6, support has been added for batch saves
|
22
19
|
|
23
20
|
=== Adding
|
24
21
|
When you point at a service, an AddTo<EntityName> method is created for you. This method takes in the new entity to create. To commit the change, you need to call the save_changes method on the service. To add a new category for example, you would simply do the following:
|
25
22
|
|
26
|
-
require '
|
23
|
+
require 'ruby_odata'
|
27
24
|
|
28
25
|
svc = OData::Service.new "http://127.0.0.1:8888/SampleService/Entities.svc"
|
29
26
|
new_category = Category.new
|
@@ -35,7 +32,7 @@ When you point at a service, an AddTo<EntityName> method is created for you. Th
|
|
35
32
|
=== Updating
|
36
33
|
To update an object, simply pass the modified object to the update_object method on the service. Updating, like adding requires you to call save_changes in order to persist the change. For example:
|
37
34
|
|
38
|
-
require '
|
35
|
+
require 'ruby_odata'
|
39
36
|
|
40
37
|
svc = OData::Service.new "http://127.0.0.1:8888/SampleService/Entities.svc"
|
41
38
|
new_category = Category.new
|
@@ -52,7 +49,7 @@ To update an object, simply pass the modified object to the update_object method
|
|
52
49
|
=== Deleting
|
53
50
|
Deleting an object involves passing the tracked object to the delete_object method on the service. Deleting is another function that involves the save_changes method (to commit the change back to the server). In this example, we'll add a category and then delete it.
|
54
51
|
|
55
|
-
require '
|
52
|
+
require 'ruby_odata'
|
56
53
|
|
57
54
|
svc = OData::Service.new "http://127.0.0.1:8888/SampleService/Entities.svc"
|
58
55
|
new_category = Category.new
|
@@ -68,7 +65,7 @@ Deleting an object involves passing the tracked object to the delete_object meth
|
|
68
65
|
=== Querying
|
69
66
|
Querying is easy, for example to pull all the categories from the SampleService, you simply can run:
|
70
67
|
|
71
|
-
require '
|
68
|
+
require 'ruby_odata'
|
72
69
|
|
73
70
|
svc = OData::Service.new "http://127.0.0.1:8888/SampleService/Entities.svc"
|
74
71
|
svc.Categories
|
@@ -77,13 +74,6 @@ Querying is easy, for example to pull all the categories from the SampleService,
|
|
77
74
|
|
78
75
|
You can also expand, add filters, order, skip records, and take only the top X records to the query before executing it. For example:
|
79
76
|
|
80
|
-
=== Authentication
|
81
|
-
Basic HTTP Authentication is supported via sending a username and password as service constructor arguments:
|
82
|
-
|
83
|
-
require 'lib/ruby_odata'
|
84
|
-
|
85
|
-
svc = OData::Service.new "http://127.0.0.1:8888/SampleService/Entities.svc", { :username => "bob", :password=> "12345" }
|
86
|
-
|
87
77
|
=== Expanding
|
88
78
|
Expanding allows you to eagerly load other objects that are children of the root.
|
89
79
|
You can use more than one expand on a query.
|
@@ -164,6 +154,28 @@ Top allows you only retrieve the top X number of records when querying. This is
|
|
164
154
|
svc.Products.top(5)
|
165
155
|
products = svc.execute # => returns only the first 5 items
|
166
156
|
|
157
|
+
=== Authentication
|
158
|
+
Basic HTTP Authentication is supported via sending a username and password as service constructor arguments:
|
159
|
+
|
160
|
+
require 'ruby_odata'
|
161
|
+
|
162
|
+
svc = OData::Service.new "http://127.0.0.1:8888/SampleService/Entities.svc", { :username => "bob", :password=> "12345" }
|
163
|
+
|
164
|
+
=== SSL/https Certificate Verification
|
165
|
+
The certificate verification mode can be passed in the options hash via the :verify_ssl key. For example, to ignore verification in order to use a self-signed certificate:
|
166
|
+
|
167
|
+
require 'ruby_odata'
|
168
|
+
|
169
|
+
svc = OData::Service.new "https://127.0.0.1:44300/SampleService/Entities.svc", { :verify_ssl => false }
|
170
|
+
|
171
|
+
Or an OpenSSL integer constant can be passed as well:
|
172
|
+
|
173
|
+
require 'ruby_odata'
|
174
|
+
|
175
|
+
svc = OData::Service.new "https://127.0.0.1:44300/SampleService/Entities.svc", { :verify_ssl => OpenSSL::SSL::VERIFY_PEER }
|
176
|
+
|
177
|
+
Default verification is OpenSSL::SSL::VERIFY_PEER. Note due to the way Ruby's Request object implements certificate checking, you CAN NOT pass OpenSSL::SSL::VERIFY_NONE, you must instead pass a boolean false.
|
178
|
+
|
167
179
|
== Tests
|
168
180
|
All of the tests are written using Cucumber going against a sample service (Found in /test/SampleService/*). The SampleService is an ASP.NET Web Site running a SQLEXPRESS 2008 R2 Database (TestDB), as well as the ADO.NET Entity Framework and a WCF Data Service. In order to run the tests, you need to spin up the SampleService and have it running on port 8888 (http://localhost:8888/SampleService).
|
169
181
|
|
data/Rakefile
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
require 'rake/rdoctask'
|
2
2
|
require 'bundler'
|
3
|
+
require 'rspec/core/rake_task'
|
4
|
+
require 'cucumber/rake/task'
|
3
5
|
|
4
6
|
Rake::RDocTask.new do |rd|
|
5
7
|
rd.main = "README.rdoc"
|
@@ -7,4 +9,17 @@ Rake::RDocTask.new do |rd|
|
|
7
9
|
rd.rdoc_dir = 'doc'
|
8
10
|
end
|
9
11
|
|
12
|
+
desc "Run specs"
|
13
|
+
RSpec::Core::RakeTask.new do |t|
|
14
|
+
t.pattern = "./spec/**/*_spec.rb" # don't need this, it's default.
|
15
|
+
# Put spec opts in a file named .rspec in root
|
16
|
+
end
|
17
|
+
|
18
|
+
desc "Run features"
|
19
|
+
Cucumber::Rake::Task.new(:features) do |t|
|
20
|
+
t.cucumber_opts = "features --format progress"
|
21
|
+
end
|
22
|
+
|
23
|
+
|
10
24
|
Bundler::GemHelper.install_tasks
|
25
|
+
task :default => [:spec, :features]
|
@@ -0,0 +1,21 @@
|
|
1
|
+
Feature: Service Should Access Basic Resources via SSL using a self-signed certificate
|
2
|
+
|
3
|
+
Background:
|
4
|
+
Given an ODataService exists with uri: "https://localhost:44300/SampleService/BasicAuth/Entities.svc" using self-signed certificate and username "admin" and password "passwd"
|
5
|
+
And blueprints exist for the service
|
6
|
+
|
7
|
+
Scenario: Service should respond to valid collections
|
8
|
+
Then I should be able to call "Products" on the service
|
9
|
+
|
10
|
+
Scenario: Entity should fill values on protected resource
|
11
|
+
Given I call "AddToCategories" on the service with a new "Category" object with Name: "Auth Test Category"
|
12
|
+
And I save changes
|
13
|
+
And I call "Categories" on the service with args: "1"
|
14
|
+
When I run the query
|
15
|
+
Then the method "Id" on the result should equal: "1"
|
16
|
+
And the method "Name" on the result should equal: "Auth Test Category"
|
17
|
+
|
18
|
+
Scenario: Should get SSL failure if SSL used with self-signed certificate and not passing "false" as :verify_ssl option
|
19
|
+
Given an ODataService exists with uri: "https://localhost:44300/SampleService/Entities.svc" it should throw an exception with message containing "SSL Verification failed"
|
20
|
+
|
21
|
+
|
@@ -10,10 +10,18 @@ Given /^an ODataService exists with uri: "([^\"]*)" using username "([^\"]*)" an
|
|
10
10
|
lambda { @service = OData::Service.new(uri, { :username => username, :password => password }) }.should raise_error(msg)
|
11
11
|
end
|
12
12
|
|
13
|
+
Given /^an ODataService exists with uri: "([^\"]*)" it should throw an exception with message containing "([^\"]*)"$/ do |uri, msg|
|
14
|
+
lambda { @service = OData::Service.new(uri) }.should raise_error(/#{msg}.*/)
|
15
|
+
end
|
16
|
+
|
13
17
|
Given /^an ODataService exists with uri: "([^\"]*)" it should throw an exception with message "([^\"]*)"$/ do |uri, msg|
|
14
18
|
lambda { @service = OData::Service.new(uri) }.should raise_error(msg)
|
15
19
|
end
|
16
20
|
|
21
|
+
Given /^an ODataService exists with uri: "([^\"]*)" using self-signed certificate and username "([^\"]*)" and password "([^\"]*)"$/ do |uri, username, password|
|
22
|
+
@service = OData::Service.new(uri, { :username => username, :password => password, :verify_ssl => false })
|
23
|
+
end
|
24
|
+
|
17
25
|
When /^I call "([^\"]*)" on the service$/ do |method|
|
18
26
|
@service_query = @service.send(method)
|
19
27
|
end
|
data/lib/ruby_odata.rb
CHANGED
@@ -8,7 +8,7 @@ module OData
|
|
8
8
|
# - methods: The accessor methods to add to the class
|
9
9
|
# - nav_props: The accessor methods to add for navigation properties
|
10
10
|
def initialize(klass_name, methods, nav_props)
|
11
|
-
@klass_name = klass_name
|
11
|
+
@klass_name = klass_name.camelcase
|
12
12
|
@methods = methods
|
13
13
|
@nav_props = nav_props
|
14
14
|
end
|
data/lib/ruby_odata/service.rb
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
require 'logger'
|
2
|
-
require 'base64'
|
3
2
|
|
4
3
|
module OData
|
5
4
|
|
@@ -9,17 +8,17 @@ class Service
|
|
9
8
|
#
|
10
9
|
# ==== Required Attributes
|
11
10
|
# - service_uri: The root URI of the OData service
|
11
|
+
# ==== Options in options hash
|
12
|
+
# - username: username for http basic auth
|
13
|
+
# - password: password for http basic auth
|
14
|
+
# - verify_ssl: false if no verification, otherwise mode (OpenSSL::SSL::VERIFY_PEER is default)
|
12
15
|
def initialize(service_uri, options = {})
|
13
|
-
@uri = service_uri
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
else
|
18
|
-
@http_headers = {}
|
19
|
-
end
|
20
|
-
@collections = get_collections
|
16
|
+
@uri = service_uri.gsub!(/\/?$/, '')
|
17
|
+
@options = options
|
18
|
+
@rest_options = { :verify_ssl => get_verify_mode, :user => @options[:username], :password => @options[:password] }
|
19
|
+
@collections = []
|
21
20
|
@save_operations = []
|
22
|
-
|
21
|
+
build_collections_and_classes
|
23
22
|
end
|
24
23
|
|
25
24
|
# Handles the dynamic AddTo<EntityName> methods as well as the collections on the service
|
@@ -94,8 +93,8 @@ class Service
|
|
94
93
|
end
|
95
94
|
|
96
95
|
# Performs query operations (Read) against the server
|
97
|
-
def execute
|
98
|
-
result = RestClient.
|
96
|
+
def execute
|
97
|
+
result = RestClient::Resource.new(build_query_uri, @rest_options).get
|
99
98
|
build_classes_from_result(result)
|
100
99
|
end
|
101
100
|
|
@@ -117,30 +116,28 @@ class Service
|
|
117
116
|
end
|
118
117
|
|
119
118
|
private
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
119
|
+
|
120
|
+
# Gets ssl certificate verification mode, or defaults to verify_peer
|
121
|
+
def get_verify_mode
|
122
|
+
if @options[:verify_ssl].nil?
|
123
|
+
return OpenSSL::SSL::VERIFY_PEER
|
124
124
|
else
|
125
|
-
return
|
125
|
+
return @options[:verify_ssl]
|
126
126
|
end
|
127
127
|
end
|
128
128
|
|
129
|
-
# Retrieves collections from the main service page
|
130
|
-
def get_collections
|
131
|
-
doc = Nokogiri::XML(http_open(@uri))
|
132
|
-
collections = doc.xpath("//app:collection", "app" => "http://www.w3.org/2007/app")
|
133
|
-
collections.collect { |c| c["href"] }
|
134
|
-
end
|
135
|
-
|
136
129
|
# Build the classes required by the metadata
|
137
|
-
def
|
130
|
+
def build_collections_and_classes
|
138
131
|
@classes = Hash.new
|
139
|
-
doc = Nokogiri::XML(
|
140
|
-
|
132
|
+
doc = Nokogiri::XML(RestClient::Resource.new("#{@uri}/$metadata", @rest_options).get)
|
133
|
+
|
141
134
|
# Get the edm namespace
|
142
135
|
edm_ns = doc.xpath("edmx:Edmx/edmx:DataServices/*", "edmx" => "http://schemas.microsoft.com/ado/2007/06/edmx").first.namespaces['xmlns'].to_s
|
143
136
|
|
137
|
+
# Fill in the collections instance variable
|
138
|
+
collections = doc.xpath("//edm:EntityContainer/edm:EntitySet", "edm" => edm_ns)
|
139
|
+
@collections = collections.collect { |c| c["Name"] }
|
140
|
+
|
144
141
|
# Build complex types first, these will be used for entities
|
145
142
|
complex_types = doc.xpath("//edm:ComplexType", "edm" => edm_ns) || []
|
146
143
|
complex_types.each do |c|
|
@@ -234,16 +231,16 @@ class Service
|
|
234
231
|
if operation.kind == "Add"
|
235
232
|
save_uri = "#{@uri}/#{operation.klass_name}"
|
236
233
|
json_klass = operation.klass.to_json(:type => :add)
|
237
|
-
post_result = RestClient.
|
234
|
+
post_result = RestClient::Resource.new(save_uri, @rest_options).post json_klass, {:content_type => :json}
|
238
235
|
return build_classes_from_result(post_result)
|
239
236
|
elsif operation.kind == "Update"
|
240
237
|
update_uri = operation.klass.send(:__metadata)[:uri]
|
241
238
|
json_klass = operation.klass.to_json
|
242
|
-
update_result = RestClient.
|
239
|
+
update_result = RestClient::Resource.new(update_uri, @rest_options).put json_klass, {:content_type => :json}
|
243
240
|
return (update_result.code == 204)
|
244
241
|
elsif operation.kind == "Delete"
|
245
242
|
delete_uri = operation.klass.send(:__metadata)[:uri]
|
246
|
-
delete_result = RestClient.
|
243
|
+
delete_result = RestClient::Resource.new(delete_uri, @rest_options).delete
|
247
244
|
return (delete_result.code == 204)
|
248
245
|
end
|
249
246
|
end
|
@@ -259,7 +256,7 @@ class Service
|
|
259
256
|
|
260
257
|
body = build_batch_body(operations, batch_num, changeset_num)
|
261
258
|
|
262
|
-
result = RestClient.
|
259
|
+
result = RestClient::Resource.new( batch_uri, @rest_options).post body, {:content_type => "multipart/mixed; boundary=batch_#{batch_num}"}
|
263
260
|
|
264
261
|
# TODO: More result validation needs to be done.
|
265
262
|
# The result returns HTTP 202 even if there is an error in the batch
|
data/lib/ruby_odata/version.rb
CHANGED
data/ruby_odata.gemspec
CHANGED
@@ -18,11 +18,11 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.add_dependency('rest-client', '>= 1.5.1')
|
19
19
|
s.add_dependency('nokogiri', '>= 1.4.2')
|
20
20
|
|
21
|
-
s.add_development_dependency('rspec')
|
22
|
-
s.add_development_dependency('cucumber')
|
23
|
-
s.add_development_dependency('
|
24
|
-
s.add_development_dependency('
|
25
|
-
s.add_development_dependency('
|
21
|
+
s.add_development_dependency('rspec', '~> 2.5.0')
|
22
|
+
s.add_development_dependency('cucumber', '~> 0.10.2')
|
23
|
+
s.add_development_dependency('faker', '~> 0.9.5')
|
24
|
+
s.add_development_dependency('machinist', '~> 1.0.6')
|
25
|
+
s.add_development_dependency('webmock', '~> 1.6.2')
|
26
26
|
|
27
27
|
s.files = `git ls-files`.split("\n")
|
28
28
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
|
2
|
+
<edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx">
|
3
|
+
<edmx:DataServices xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:DataServiceVersion="1.0">
|
4
|
+
<Schema Namespace="Model" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://schemas.microsoft.com/ado/2008/09/edm">
|
5
|
+
</Schema>
|
6
|
+
</edmx:DataServices>
|
7
|
+
</edmx:Edmx>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
|
2
|
+
<edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx">
|
3
|
+
<edmx:DataServices xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:DataServiceVersion="1.0">
|
4
|
+
<Schema Namespace="acronymdbModel" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://schemas.microsoft.com/ado/2008/09/edm">
|
5
|
+
<EntityType Name="acronym">
|
6
|
+
<Key>
|
7
|
+
<PropertyRef Name="aid" />
|
8
|
+
</Key>
|
9
|
+
<Property Name="aid" Type="Edm.Int32" Nullable="false" />
|
10
|
+
<Property Name="acrn" Type="Edm.String" Nullable="false" MaxLength="10" Unicode="true" FixedLength="true" />
|
11
|
+
<Property Name="meaning" Type="Edm.String" Nullable="false" MaxLength="500" Unicode="true" FixedLength="false" />
|
12
|
+
</EntityType>
|
13
|
+
</Schema>
|
14
|
+
<Schema Namespace="AcrnOData" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://schemas.microsoft.com/ado/2008/09/edm">
|
15
|
+
<EntityContainer Name="acronymdbEntities" p7:LazyLoadingEnabled="true" m:IsDefaultEntityContainer="true" xmlns:p7="http://schemas.microsoft.com/ado/2009/02/edm/annotation">
|
16
|
+
<EntitySet Name="acronyms" EntityType="acronymdbModel.acronym" />
|
17
|
+
</EntityContainer>
|
18
|
+
</Schema>
|
19
|
+
</edmx:DataServices>
|
20
|
+
</edmx:Edmx>
|
@@ -0,0 +1,43 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module OData
|
4
|
+
describe Service do
|
5
|
+
describe "#initialize" do
|
6
|
+
it "truncates passed in end slash from uri when making the request" do
|
7
|
+
# Required for the build_classes method
|
8
|
+
stub_request(:get, "http://test.com/test.svc/$metadata").
|
9
|
+
with(:headers => {'Accept'=>'*/*; q=0.5, application/xml', 'Accept-Encoding'=>'gzip, deflate'}).
|
10
|
+
to_return(:status => 200, :body => File.new(File.expand_path("../fixtures/edmx_empty.xml", __FILE__)), :headers => {})
|
11
|
+
|
12
|
+
svc = OData::Service.new "http://test.com/test.svc/"
|
13
|
+
end
|
14
|
+
it "doesn't error with lowercase entities" do
|
15
|
+
# Required for the build_classes method
|
16
|
+
stub_request(:get, "http://test.com/test.svc/$metadata").
|
17
|
+
with(:headers => {'Accept'=>'*/*; q=0.5, application/xml', 'Accept-Encoding'=>'gzip, deflate'}).
|
18
|
+
to_return(:status => 200, :body => File.new(File.expand_path("../fixtures/edmx_lowercase.xml", __FILE__)), :headers => {})
|
19
|
+
|
20
|
+
lambda { OData::Service.new "http://test.com/test.svc" }.should_not raise_error
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
describe "lowercase collections" do
|
25
|
+
before(:each) do
|
26
|
+
# Required for the build_classes method
|
27
|
+
stub_request(:get, "http://test.com/test.svc/$metadata").
|
28
|
+
with(:headers => {'Accept'=>'*/*; q=0.5, application/xml', 'Accept-Encoding'=>'gzip, deflate'}).
|
29
|
+
to_return(:status => 200, :body => File.new(File.expand_path("../fixtures/edmx_lowercase.xml", __FILE__)), :headers => {})
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should respond_to a lowercase collection" do
|
33
|
+
svc = OData::Service.new "http://test.com/test.svc"
|
34
|
+
svc.respond_to?('acronyms').should be_true
|
35
|
+
end
|
36
|
+
|
37
|
+
it "should allow a lowercase collections to be queried" do
|
38
|
+
svc = OData::Service.new "http://test.com/test.svc"
|
39
|
+
lambda { svc.send('acronyms') }.should_not raise_error
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,957 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!--
|
3
|
+
|
4
|
+
IIS configuration sections.
|
5
|
+
|
6
|
+
For schema documentation, see
|
7
|
+
%IIS_BIN%\config\schema\IIS_schema.xml.
|
8
|
+
|
9
|
+
Please make a backup of this file before making any changes to it.
|
10
|
+
|
11
|
+
NOTE: The following environment variables are available to be used
|
12
|
+
within this file and are understood by the IIS Development Express.
|
13
|
+
|
14
|
+
%IIS_USER_HOME% - The IIS Development Express home directory for the user
|
15
|
+
%IIS_SITES_HOME% - The default home directory for sites
|
16
|
+
%IIS_BIN% - The location of the IIS Development Express binaries
|
17
|
+
%SYSTEMDRIVE% - The drive letter of %IIS_BIN%
|
18
|
+
|
19
|
+
-->
|
20
|
+
|
21
|
+
<configuration>
|
22
|
+
|
23
|
+
<!--
|
24
|
+
|
25
|
+
The <configSections> section controls the registration of sections.
|
26
|
+
Section is the basic unit of deployment, locking, searching and
|
27
|
+
containment for configuration settings.
|
28
|
+
|
29
|
+
Every section belongs to one section group.
|
30
|
+
A section group is a container of logically-related sections.
|
31
|
+
|
32
|
+
Sections cannot be nested.
|
33
|
+
Section groups may be nested.
|
34
|
+
|
35
|
+
<section
|
36
|
+
name="" [Required, Collection Key] [XML name of the section]
|
37
|
+
allowDefinition="Everywhere" [MachineOnly|MachineToApplication|AppHostOnly|Everywhere] [Level where it can be set]
|
38
|
+
overrideModeDefault="Allow" [Allow|Deny] [Default delegation mode]
|
39
|
+
allowLocation="true" [true|false] [Allowed in location tags]
|
40
|
+
/>
|
41
|
+
|
42
|
+
The recommended way to unlock sections is by using a location tag:
|
43
|
+
<location path="Default Web Site" overrideMode="Allow">
|
44
|
+
<system.webServer>
|
45
|
+
<asp />
|
46
|
+
</system.webServer>
|
47
|
+
</location>
|
48
|
+
|
49
|
+
-->
|
50
|
+
<configSections>
|
51
|
+
<sectionGroup name="system.applicationHost">
|
52
|
+
<section name="applicationPools" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
|
53
|
+
<section name="configHistory" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
|
54
|
+
<section name="customMetadata" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
|
55
|
+
<section name="listenerAdapters" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
|
56
|
+
<section name="log" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
|
57
|
+
<section name="preloadProviders" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
|
58
|
+
<section name="sites" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
|
59
|
+
<section name="webLimits" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
|
60
|
+
</sectionGroup>
|
61
|
+
|
62
|
+
<sectionGroup name="system.webServer">
|
63
|
+
<section name="asp" overrideModeDefault="Deny" />
|
64
|
+
<section name="caching" overrideModeDefault="Allow" />
|
65
|
+
<section name="cgi" overrideModeDefault="Deny" />
|
66
|
+
<section name="defaultDocument" overrideModeDefault="Allow" />
|
67
|
+
<section name="directoryBrowse" overrideModeDefault="Allow" />
|
68
|
+
<section name="fastCgi" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
|
69
|
+
<section name="globalModules" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
|
70
|
+
<section name="handlers" overrideModeDefault="Deny" />
|
71
|
+
<section name="httpCompression" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
|
72
|
+
<section name="httpErrors" overrideModeDefault="Allow" />
|
73
|
+
<section name="httpLogging" overrideModeDefault="Deny" />
|
74
|
+
<section name="httpProtocol" overrideModeDefault="Allow" />
|
75
|
+
<section name="httpRedirect" overrideModeDefault="Allow" />
|
76
|
+
<section name="httpTracing" overrideModeDefault="Deny" />
|
77
|
+
<section name="isapiFilters" allowDefinition="MachineToApplication" overrideModeDefault="Deny" />
|
78
|
+
<section name="modules" allowDefinition="MachineToApplication" overrideModeDefault="Deny" />
|
79
|
+
<section name="odbcLogging" overrideModeDefault="Deny" />
|
80
|
+
<sectionGroup name="security">
|
81
|
+
<section name="access" overrideModeDefault="Deny" />
|
82
|
+
<section name="applicationDependencies" overrideModeDefault="Deny" />
|
83
|
+
<sectionGroup name="authentication">
|
84
|
+
<section name="anonymousAuthentication" overrideModeDefault="Deny" />
|
85
|
+
<section name="basicAuthentication" overrideModeDefault="Deny" />
|
86
|
+
<section name="clientCertificateMappingAuthentication" overrideModeDefault="Deny" />
|
87
|
+
<section name="digestAuthentication" overrideModeDefault="Deny" />
|
88
|
+
<section name="iisClientCertificateMappingAuthentication" overrideModeDefault="Deny" />
|
89
|
+
<section name="windowsAuthentication" overrideModeDefault="Deny" />
|
90
|
+
</sectionGroup>
|
91
|
+
<section name="authorization" overrideModeDefault="Allow" />
|
92
|
+
<section name="ipSecurity" overrideModeDefault="Deny" />
|
93
|
+
<section name="isapiCgiRestriction" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
|
94
|
+
<section name="requestFiltering" overrideModeDefault="Allow" />
|
95
|
+
</sectionGroup>
|
96
|
+
<section name="serverRuntime" overrideModeDefault="Deny" />
|
97
|
+
<section name="serverSideInclude" overrideModeDefault="Deny" />
|
98
|
+
<section name="staticContent" overrideModeDefault="Allow" />
|
99
|
+
<sectionGroup name="tracing">
|
100
|
+
<section name="traceFailedRequests" overrideModeDefault="Allow" />
|
101
|
+
<section name="traceProviderDefinitions" overrideModeDefault="Deny" />
|
102
|
+
</sectionGroup>
|
103
|
+
<section name="urlCompression" overrideModeDefault="Allow" />
|
104
|
+
<section name="validation" overrideModeDefault="Allow" />
|
105
|
+
<sectionGroup name="webdav">
|
106
|
+
<section name="globalSettings" overrideModeDefault="Deny" />
|
107
|
+
<section name="authoring" overrideModeDefault="Deny" />
|
108
|
+
<section name="authoringRules" overrideModeDefault="Deny" />
|
109
|
+
</sectionGroup>
|
110
|
+
<sectionGroup name="rewrite">
|
111
|
+
<section name="allowedServerVariables" overrideModeDefault="Deny" />
|
112
|
+
<section name="rules" overrideModeDefault="Allow" />
|
113
|
+
<section name="outboundRules" overrideModeDefault="Allow" />
|
114
|
+
<section name="globalRules" overrideModeDefault="Deny" allowDefinition="AppHostOnly" />
|
115
|
+
<section name="providers" overrideModeDefault="Allow" />
|
116
|
+
<section name="rewriteMaps" overrideModeDefault="Allow" />
|
117
|
+
</sectionGroup>
|
118
|
+
</sectionGroup>
|
119
|
+
</configSections>
|
120
|
+
|
121
|
+
<configProtectedData>
|
122
|
+
<providers>
|
123
|
+
<add name="IISWASOnlyRsaProvider" type="" description="Uses RsaCryptoServiceProvider to encrypt and decrypt" keyContainerName="iisWasKey" cspProviderName="" useMachineContainer="true" useOAEP="false" />
|
124
|
+
<add name="AesProvider" type="Microsoft.ApplicationHost.AesProtectedConfigurationProvider" description="Uses an AES session key to encrypt and decrypt" keyContainerName="iisConfigurationKey" cspProviderName="" useOAEP="false" useMachineContainer="true" sessionKey="AQIAAA5mAAAApAAAKmFQvWHDEETRz8l2bjZlRxIkwcqTFaCUnCLljn3Q1OkesrhEO9YyLyx4bUhsj1/DyShAv7OAFFhXlrlomaornnk5PLeyO4lIXxaiT33yOFUUgxDx4GSaygkqghVV0tO5yQ/XguUBp2juMfZyztnsNa4pLcz7ZNZQ6p4yn9hxwNs=" />
|
125
|
+
<add name="IISWASOnlyAesProvider" type="Microsoft.ApplicationHost.AesProtectedConfigurationProvider" description="Uses an AES session key to encrypt and decrypt" keyContainerName="iisWasKey" cspProviderName="" useOAEP="false" useMachineContainer="true" sessionKey="AQIAAA5mAAAApAAA4WoiRJ8KHwzAG8AgejPxEOO4/2Vhkolbwo/8gZeNdUDSD36m55hWv4uC9tr/MlKdnwRLL0NhT50Gccyftqz5xTZ0dg5FtvQhTw/he1NwexTKbV+I4Zrd+sZUqHZTsr7JiEr6OHGXL70qoISW5G2m9U8wKT3caPiDPNj2aAaYPLo=" />
|
126
|
+
</providers>
|
127
|
+
</configProtectedData>
|
128
|
+
|
129
|
+
<system.applicationHost>
|
130
|
+
|
131
|
+
<applicationPools>
|
132
|
+
<add name="Clr4IntegratedAppPool" managedRuntimeVersion="v4.0" managedPipelineMode="Integrated" CLRConfigFile="%IIS_USER_HOME%\config\aspnet.config" autoStart="true" />
|
133
|
+
<add name="Clr4ClassicAppPool" managedRuntimeVersion="v4.0" managedPipelineMode="Classic" CLRConfigFile="%IIS_USER_HOME%\config\aspnet.config" autoStart="true" />
|
134
|
+
<add name="Clr2IntegratedAppPool" managedRuntimeVersion="v2.0" managedPipelineMode="Integrated" CLRConfigFile="%IIS_USER_HOME%\config\aspnet.config" autoStart="true" />
|
135
|
+
<add name="Clr2ClassicAppPool" managedRuntimeVersion="v2.0" managedPipelineMode="Classic" CLRConfigFile="%IIS_USER_HOME%\config\aspnet.config" autoStart="true" />
|
136
|
+
<add name="UnmanagedClassicAppPool" managedRuntimeVersion="" managedPipelineMode="Classic" autoStart="true" />
|
137
|
+
<applicationPoolDefaults managedRuntimeLoader="v4.0" >
|
138
|
+
<processModel/>
|
139
|
+
</applicationPoolDefaults>
|
140
|
+
</applicationPools>
|
141
|
+
|
142
|
+
<!--
|
143
|
+
|
144
|
+
The <listenerAdapters> section defines the protocols with which the
|
145
|
+
Windows Process Activation Service (WAS) binds.
|
146
|
+
|
147
|
+
-->
|
148
|
+
<listenerAdapters>
|
149
|
+
<add name="http" />
|
150
|
+
</listenerAdapters>
|
151
|
+
|
152
|
+
<sites>
|
153
|
+
<site name="ruby_odata test site" id="1" serverAutoStart="true">
|
154
|
+
<application path="/">
|
155
|
+
<virtualDirectory path="/" physicalPath="%IIS_BIN%\AppServer\empty_wwwroot" />
|
156
|
+
</application>
|
157
|
+
<application path="/SampleService">
|
158
|
+
<virtualDirectory path="/" physicalPath="%SAMPLE_SERVICE_DIR%" />
|
159
|
+
</application>
|
160
|
+
<bindings>
|
161
|
+
<binding protocol="http" bindingInformation=":8888:localhost" />
|
162
|
+
<binding protocol="https" bindingInformation=":44300:localhost" />
|
163
|
+
</bindings>
|
164
|
+
</site>
|
165
|
+
<siteDefaults>
|
166
|
+
<logFile logFormat="W3C" directory="%IIS_USER_HOME%\Logs" />
|
167
|
+
<traceFailedRequestsLogging directory="%IIS_USER_HOME%\TraceLogFiles" enabled="true" maxLogFileSizeKB="1024" />
|
168
|
+
</siteDefaults>
|
169
|
+
<applicationDefaults applicationPool="Clr4IntegratedAppPool" />
|
170
|
+
<virtualDirectoryDefaults allowSubDirConfig="true" />
|
171
|
+
</sites>
|
172
|
+
|
173
|
+
<webLimits />
|
174
|
+
|
175
|
+
</system.applicationHost>
|
176
|
+
|
177
|
+
<system.webServer>
|
178
|
+
|
179
|
+
<serverRuntime />
|
180
|
+
|
181
|
+
<asp scriptErrorSentToBrowser="true">
|
182
|
+
<cache diskTemplateCacheDirectory="%TEMP%\iisexpress\ASP Compiled Templates" />
|
183
|
+
<limits />
|
184
|
+
</asp>
|
185
|
+
|
186
|
+
<caching enabled="true" enableKernelCache="true">
|
187
|
+
</caching>
|
188
|
+
|
189
|
+
<cgi />
|
190
|
+
|
191
|
+
<defaultDocument enabled="true">
|
192
|
+
<files>
|
193
|
+
<add value="Default.htm" />
|
194
|
+
<add value="Default.asp" />
|
195
|
+
<add value="index.htm" />
|
196
|
+
<add value="index.html" />
|
197
|
+
<add value="iisstart.htm" />
|
198
|
+
<add value="default.aspx" />
|
199
|
+
</files>
|
200
|
+
</defaultDocument>
|
201
|
+
|
202
|
+
<directoryBrowse enabled="false" />
|
203
|
+
|
204
|
+
<fastCgi />
|
205
|
+
|
206
|
+
<!--
|
207
|
+
|
208
|
+
The <globalModules> section defines all native-code modules.
|
209
|
+
To enable a module, specify it in the <modules> section.
|
210
|
+
|
211
|
+
-->
|
212
|
+
<globalModules>
|
213
|
+
<add name="UriCacheModule" image="%IIS_BIN%\cachuri.dll" />
|
214
|
+
<!-- <add name="FileCacheModule" image="%IIS_BIN%\cachfile.dll" /> -->
|
215
|
+
<add name="TokenCacheModule" image="%IIS_BIN%\cachtokn.dll" />
|
216
|
+
<!-- <add name="HttpCacheModule" image="%IIS_BIN%\cachhttp.dll" /> -->
|
217
|
+
<add name="DynamicCompressionModule" image="%IIS_BIN%\compdyn.dll" />
|
218
|
+
<add name="StaticCompressionModule" image="%IIS_BIN%\compstat.dll" />
|
219
|
+
<add name="DefaultDocumentModule" image="%IIS_BIN%\defdoc.dll" />
|
220
|
+
<add name="DirectoryListingModule" image="%IIS_BIN%\dirlist.dll" />
|
221
|
+
<add name="ProtocolSupportModule" image="%IIS_BIN%\protsup.dll" />
|
222
|
+
<add name="HttpRedirectionModule" image="%IIS_BIN%\redirect.dll" />
|
223
|
+
<add name="ServerSideIncludeModule" image="%IIS_BIN%\iis_ssi.dll" />
|
224
|
+
<add name="StaticFileModule" image="%IIS_BIN%\static.dll" />
|
225
|
+
<add name="AnonymousAuthenticationModule" image="%IIS_BIN%\authanon.dll" />
|
226
|
+
<add name="CertificateMappingAuthenticationModule" image="%IIS_BIN%\authcert.dll" />
|
227
|
+
<add name="UrlAuthorizationModule" image="%IIS_BIN%\urlauthz.dll" />
|
228
|
+
<add name="BasicAuthenticationModule" image="%IIS_BIN%\authbas.dll" />
|
229
|
+
<add name="WindowsAuthenticationModule" image="%IIS_BIN%\authsspi.dll" />
|
230
|
+
<!-- <add name="DigestAuthenticationModule" image="%IIS_BIN%\authmd5.dll" /> -->
|
231
|
+
<add name="IISCertificateMappingAuthenticationModule" image="%IIS_BIN%\authmap.dll" />
|
232
|
+
<add name="IpRestrictionModule" image="%IIS_BIN%\iprestr.dll" />
|
233
|
+
<add name="RequestFilteringModule" image="%IIS_BIN%\modrqflt.dll" />
|
234
|
+
<add name="CustomLoggingModule" image="%IIS_BIN%\logcust.dll" />
|
235
|
+
<add name="CustomErrorModule" image="%IIS_BIN%\custerr.dll" />
|
236
|
+
<add name="HttpLoggingModule" image="%IIS_BIN%\loghttp.dll" />
|
237
|
+
<!-- <add name="TracingModule" image="%IIS_BIN%\iisetw.dll" /> -->
|
238
|
+
<add name="FailedRequestsTracingModule" image="%IIS_BIN%\iisfreb.dll" />
|
239
|
+
<add name="RequestMonitorModule" image="%IIS_BIN%\iisreqs.dll" />
|
240
|
+
<add name="IsapiModule" image="%IIS_BIN%\isapi.dll" />
|
241
|
+
<add name="IsapiFilterModule" image="%IIS_BIN%\filter.dll" />
|
242
|
+
<add name="CgiModule" image="%IIS_BIN%\cgi.dll" />
|
243
|
+
<add name="FastCgiModule" image="%IIS_BIN%\iisfcgi.dll" />
|
244
|
+
<!-- <add name="WebDAVModule" image="%IIS_BIN%\webdav.dll" /> -->
|
245
|
+
<add name="RewriteModule" image="%IIS_BIN%\rewrite.dll" />
|
246
|
+
<add name="ConfigurationValidationModule" image="%IIS_BIN%\validcfg.dll" />
|
247
|
+
<add name="WebMatrixSupportModule" image="%IIS_BIN%\webmatrixsup.dll" />
|
248
|
+
<add name="ManagedEngine" image="%windir%\Microsoft.NET\Framework\v2.0.50727\webengine.dll" preCondition="integratedMode,runtimeVersionv2.0,bitness32" />
|
249
|
+
<add name="ManagedEngineV4.0_32bit" image="%windir%\Microsoft.NET\Framework\v4.0.30319\webengine4.dll" preCondition="integratedMode,runtimeVersionv4.0,bitness32" />
|
250
|
+
</globalModules>
|
251
|
+
|
252
|
+
<httpCompression directory="%TEMP%\iisexpress\IIS Temporary Compressed Files">
|
253
|
+
<scheme name="gzip" dll="%IIS_BIN%\gzip.dll" />
|
254
|
+
<dynamicTypes>
|
255
|
+
<add mimeType="text/*" enabled="true" />
|
256
|
+
<add mimeType="message/*" enabled="true" />
|
257
|
+
<add mimeType="application/x-javascript" enabled="true" />
|
258
|
+
<add mimeType="*/*" enabled="false" />
|
259
|
+
</dynamicTypes>
|
260
|
+
<staticTypes>
|
261
|
+
<add mimeType="text/*" enabled="true" />
|
262
|
+
<add mimeType="message/*" enabled="true" />
|
263
|
+
<add mimeType="application/x-javascript" enabled="true" />
|
264
|
+
<add mimeType="application/atom+xml" enabled="true" />
|
265
|
+
<add mimeType="application/xaml+xml" enabled="true" />
|
266
|
+
<add mimeType="*/*" enabled="false" />
|
267
|
+
</staticTypes>
|
268
|
+
</httpCompression>
|
269
|
+
|
270
|
+
<httpErrors lockAttributes="allowAbsolutePathsWhenDelegated,defaultPath">
|
271
|
+
<error statusCode="401" prefixLanguageFilePath="%IIS_BIN%\custerr" path="401.htm" />
|
272
|
+
<error statusCode="403" prefixLanguageFilePath="%IIS_BIN%\custerr" path="403.htm" />
|
273
|
+
<error statusCode="404" prefixLanguageFilePath="%IIS_BIN%\custerr" path="404.htm" />
|
274
|
+
<error statusCode="405" prefixLanguageFilePath="%IIS_BIN%\custerr" path="405.htm" />
|
275
|
+
<error statusCode="406" prefixLanguageFilePath="%IIS_BIN%\custerr" path="406.htm" />
|
276
|
+
<error statusCode="412" prefixLanguageFilePath="%IIS_BIN%\custerr" path="412.htm" />
|
277
|
+
<error statusCode="500" prefixLanguageFilePath="%IIS_BIN%\custerr" path="500.htm" />
|
278
|
+
<error statusCode="501" prefixLanguageFilePath="%IIS_BIN%\custerr" path="501.htm" />
|
279
|
+
<error statusCode="502" prefixLanguageFilePath="%IIS_BIN%\custerr" path="502.htm" />
|
280
|
+
</httpErrors>
|
281
|
+
|
282
|
+
<httpLogging dontLog="false" />
|
283
|
+
|
284
|
+
<httpProtocol>
|
285
|
+
<customHeaders>
|
286
|
+
<clear />
|
287
|
+
<add name="X-Powered-By" value="ASP.NET" />
|
288
|
+
</customHeaders>
|
289
|
+
<redirectHeaders>
|
290
|
+
<clear />
|
291
|
+
</redirectHeaders>
|
292
|
+
</httpProtocol>
|
293
|
+
|
294
|
+
<httpRedirect enabled="false" />
|
295
|
+
|
296
|
+
<httpTracing>
|
297
|
+
</httpTracing>
|
298
|
+
|
299
|
+
<isapiFilters>
|
300
|
+
<filter name="ASP.Net_2.0.50727.0" path="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_filter.dll" enableCache="true" preCondition="bitness32,runtimeVersionv2.0" />
|
301
|
+
<filter name="ASP.Net_2.0_for_v1.1" path="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_filter.dll" enableCache="true" preCondition="runtimeVersionv1.1" />
|
302
|
+
<filter name="ASP.Net_4.0_32bit" path="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_filter.dll" enableCache="true" preCondition="bitness32,runtimeVersionv4.0" />
|
303
|
+
</isapiFilters>
|
304
|
+
|
305
|
+
<odbcLogging />
|
306
|
+
|
307
|
+
<security>
|
308
|
+
|
309
|
+
<access sslFlags="None" />
|
310
|
+
|
311
|
+
<applicationDependencies>
|
312
|
+
<application name="Active Server Pages" groupId="ASP" />
|
313
|
+
</applicationDependencies>
|
314
|
+
|
315
|
+
<authentication>
|
316
|
+
|
317
|
+
<anonymousAuthentication enabled="true" userName="" />
|
318
|
+
|
319
|
+
<basicAuthentication enabled="false" />
|
320
|
+
|
321
|
+
<clientCertificateMappingAuthentication enabled="false" />
|
322
|
+
|
323
|
+
<digestAuthentication enabled="false" />
|
324
|
+
|
325
|
+
<iisClientCertificateMappingAuthentication enabled="false">
|
326
|
+
</iisClientCertificateMappingAuthentication>
|
327
|
+
|
328
|
+
<windowsAuthentication enabled="false">
|
329
|
+
<providers>
|
330
|
+
<add value="Negotiate" />
|
331
|
+
<add value="NTLM" />
|
332
|
+
</providers>
|
333
|
+
</windowsAuthentication>
|
334
|
+
|
335
|
+
</authentication>
|
336
|
+
|
337
|
+
<authorization>
|
338
|
+
<add accessType="Allow" users="*" />
|
339
|
+
</authorization>
|
340
|
+
|
341
|
+
<ipSecurity allowUnlisted="true" />
|
342
|
+
|
343
|
+
<isapiCgiRestriction notListedIsapisAllowed="true" notListedCgisAllowed="true">
|
344
|
+
<add path="%windir%\Microsoft.NET\Framework\v4.0.30319\webengine4.dll" allowed="true" groupId="ASP.NET_v4.0" description="ASP.NET_v4.0" />
|
345
|
+
</isapiCgiRestriction>
|
346
|
+
|
347
|
+
<requestFiltering>
|
348
|
+
<fileExtensions allowUnlisted="true" applyToWebDAV="true">
|
349
|
+
<add fileExtension=".asa" allowed="false" />
|
350
|
+
<add fileExtension=".asax" allowed="false" />
|
351
|
+
<add fileExtension=".ascx" allowed="false" />
|
352
|
+
<add fileExtension=".master" allowed="false" />
|
353
|
+
<add fileExtension=".skin" allowed="false" />
|
354
|
+
<add fileExtension=".browser" allowed="false" />
|
355
|
+
<add fileExtension=".sitemap" allowed="false" />
|
356
|
+
<add fileExtension=".config" allowed="false" />
|
357
|
+
<add fileExtension=".cs" allowed="false" />
|
358
|
+
<add fileExtension=".csproj" allowed="false" />
|
359
|
+
<add fileExtension=".vb" allowed="false" />
|
360
|
+
<add fileExtension=".vbproj" allowed="false" />
|
361
|
+
<add fileExtension=".webinfo" allowed="false" />
|
362
|
+
<add fileExtension=".licx" allowed="false" />
|
363
|
+
<add fileExtension=".resx" allowed="false" />
|
364
|
+
<add fileExtension=".resources" allowed="false" />
|
365
|
+
<add fileExtension=".mdb" allowed="false" />
|
366
|
+
<add fileExtension=".vjsproj" allowed="false" />
|
367
|
+
<add fileExtension=".java" allowed="false" />
|
368
|
+
<add fileExtension=".jsl" allowed="false" />
|
369
|
+
<add fileExtension=".ldb" allowed="false" />
|
370
|
+
<add fileExtension=".dsdgm" allowed="false" />
|
371
|
+
<add fileExtension=".ssdgm" allowed="false" />
|
372
|
+
<add fileExtension=".lsad" allowed="false" />
|
373
|
+
<add fileExtension=".ssmap" allowed="false" />
|
374
|
+
<add fileExtension=".cd" allowed="false" />
|
375
|
+
<add fileExtension=".dsprototype" allowed="false" />
|
376
|
+
<add fileExtension=".lsaprototype" allowed="false" />
|
377
|
+
<add fileExtension=".sdm" allowed="false" />
|
378
|
+
<add fileExtension=".sdmDocument" allowed="false" />
|
379
|
+
<add fileExtension=".mdf" allowed="false" />
|
380
|
+
<add fileExtension=".ldf" allowed="false" />
|
381
|
+
<add fileExtension=".ad" allowed="false" />
|
382
|
+
<add fileExtension=".dd" allowed="false" />
|
383
|
+
<add fileExtension=".ldd" allowed="false" />
|
384
|
+
<add fileExtension=".sd" allowed="false" />
|
385
|
+
<add fileExtension=".adprototype" allowed="false" />
|
386
|
+
<add fileExtension=".lddprototype" allowed="false" />
|
387
|
+
<add fileExtension=".exclude" allowed="false" />
|
388
|
+
<add fileExtension=".refresh" allowed="false" />
|
389
|
+
<add fileExtension=".compiled" allowed="false" />
|
390
|
+
<add fileExtension=".msgx" allowed="false" />
|
391
|
+
<add fileExtension=".vsdisco" allowed="false" />
|
392
|
+
<add fileExtension=".rules" allowed="false" />
|
393
|
+
</fileExtensions>
|
394
|
+
<verbs allowUnlisted="true" applyToWebDAV="true" />
|
395
|
+
<hiddenSegments applyToWebDAV="true">
|
396
|
+
<add segment="web.config" />
|
397
|
+
<add segment="bin" />
|
398
|
+
<add segment="App_code" />
|
399
|
+
<add segment="App_GlobalResources" />
|
400
|
+
<add segment="App_LocalResources" />
|
401
|
+
<add segment="App_WebReferences" />
|
402
|
+
<add segment="App_Data" />
|
403
|
+
<add segment="App_Browsers" />
|
404
|
+
</hiddenSegments>
|
405
|
+
</requestFiltering>
|
406
|
+
|
407
|
+
</security>
|
408
|
+
|
409
|
+
<serverSideInclude ssiExecDisable="false" />
|
410
|
+
|
411
|
+
<staticContent lockAttributes="isDocFooterFileName">
|
412
|
+
<mimeMap fileExtension=".323" mimeType="text/h323" />
|
413
|
+
<mimeMap fileExtension=".aaf" mimeType="application/octet-stream" />
|
414
|
+
<mimeMap fileExtension=".aca" mimeType="application/octet-stream" />
|
415
|
+
<mimeMap fileExtension=".accdb" mimeType="application/msaccess" />
|
416
|
+
<mimeMap fileExtension=".accde" mimeType="application/msaccess" />
|
417
|
+
<mimeMap fileExtension=".accdt" mimeType="application/msaccess" />
|
418
|
+
<mimeMap fileExtension=".acx" mimeType="application/internet-property-stream" />
|
419
|
+
<mimeMap fileExtension=".afm" mimeType="application/octet-stream" />
|
420
|
+
<mimeMap fileExtension=".ai" mimeType="application/postscript" />
|
421
|
+
<mimeMap fileExtension=".aif" mimeType="audio/x-aiff" />
|
422
|
+
<mimeMap fileExtension=".aifc" mimeType="audio/aiff" />
|
423
|
+
<mimeMap fileExtension=".aiff" mimeType="audio/aiff" />
|
424
|
+
<mimeMap fileExtension=".application" mimeType="application/x-ms-application" />
|
425
|
+
<mimeMap fileExtension=".art" mimeType="image/x-jg" />
|
426
|
+
<mimeMap fileExtension=".asd" mimeType="application/octet-stream" />
|
427
|
+
<mimeMap fileExtension=".asf" mimeType="video/x-ms-asf" />
|
428
|
+
<mimeMap fileExtension=".asi" mimeType="application/octet-stream" />
|
429
|
+
<mimeMap fileExtension=".asm" mimeType="text/plain" />
|
430
|
+
<mimeMap fileExtension=".asr" mimeType="video/x-ms-asf" />
|
431
|
+
<mimeMap fileExtension=".asx" mimeType="video/x-ms-asf" />
|
432
|
+
<mimeMap fileExtension=".atom" mimeType="application/atom+xml" />
|
433
|
+
<mimeMap fileExtension=".au" mimeType="audio/basic" />
|
434
|
+
<mimeMap fileExtension=".avi" mimeType="video/x-msvideo" />
|
435
|
+
<mimeMap fileExtension=".axs" mimeType="application/olescript" />
|
436
|
+
<mimeMap fileExtension=".bas" mimeType="text/plain" />
|
437
|
+
<mimeMap fileExtension=".bcpio" mimeType="application/x-bcpio" />
|
438
|
+
<mimeMap fileExtension=".bin" mimeType="application/octet-stream" />
|
439
|
+
<mimeMap fileExtension=".bmp" mimeType="image/bmp" />
|
440
|
+
<mimeMap fileExtension=".c" mimeType="text/plain" />
|
441
|
+
<mimeMap fileExtension=".cab" mimeType="application/octet-stream" />
|
442
|
+
<mimeMap fileExtension=".calx" mimeType="application/vnd.ms-office.calx" />
|
443
|
+
<mimeMap fileExtension=".cat" mimeType="application/vnd.ms-pki.seccat" />
|
444
|
+
<mimeMap fileExtension=".cdf" mimeType="application/x-cdf" />
|
445
|
+
<mimeMap fileExtension=".chm" mimeType="application/octet-stream" />
|
446
|
+
<mimeMap fileExtension=".class" mimeType="application/x-java-applet" />
|
447
|
+
<mimeMap fileExtension=".clp" mimeType="application/x-msclip" />
|
448
|
+
<mimeMap fileExtension=".cmx" mimeType="image/x-cmx" />
|
449
|
+
<mimeMap fileExtension=".cnf" mimeType="text/plain" />
|
450
|
+
<mimeMap fileExtension=".cod" mimeType="image/cis-cod" />
|
451
|
+
<mimeMap fileExtension=".cpio" mimeType="application/x-cpio" />
|
452
|
+
<mimeMap fileExtension=".cpp" mimeType="text/plain" />
|
453
|
+
<mimeMap fileExtension=".crd" mimeType="application/x-mscardfile" />
|
454
|
+
<mimeMap fileExtension=".crl" mimeType="application/pkix-crl" />
|
455
|
+
<mimeMap fileExtension=".crt" mimeType="application/x-x509-ca-cert" />
|
456
|
+
<mimeMap fileExtension=".csh" mimeType="application/x-csh" />
|
457
|
+
<mimeMap fileExtension=".css" mimeType="text/css" />
|
458
|
+
<mimeMap fileExtension=".csv" mimeType="application/octet-stream" />
|
459
|
+
<mimeMap fileExtension=".cur" mimeType="application/octet-stream" />
|
460
|
+
<mimeMap fileExtension=".dcr" mimeType="application/x-director" />
|
461
|
+
<mimeMap fileExtension=".deploy" mimeType="application/octet-stream" />
|
462
|
+
<mimeMap fileExtension=".der" mimeType="application/x-x509-ca-cert" />
|
463
|
+
<mimeMap fileExtension=".dib" mimeType="image/bmp" />
|
464
|
+
<mimeMap fileExtension=".dir" mimeType="application/x-director" />
|
465
|
+
<mimeMap fileExtension=".disco" mimeType="text/xml" />
|
466
|
+
<mimeMap fileExtension=".dll" mimeType="application/x-msdownload" />
|
467
|
+
<mimeMap fileExtension=".dll.config" mimeType="text/xml" />
|
468
|
+
<mimeMap fileExtension=".dlm" mimeType="text/dlm" />
|
469
|
+
<mimeMap fileExtension=".doc" mimeType="application/msword" />
|
470
|
+
<mimeMap fileExtension=".docm" mimeType="application/vnd.ms-word.document.macroEnabled.12" />
|
471
|
+
<mimeMap fileExtension=".docx" mimeType="application/vnd.openxmlformats-officedocument.wordprocessingml.document" />
|
472
|
+
<mimeMap fileExtension=".dot" mimeType="application/msword" />
|
473
|
+
<mimeMap fileExtension=".dotm" mimeType="application/vnd.ms-word.template.macroEnabled.12" />
|
474
|
+
<mimeMap fileExtension=".dotx" mimeType="application/vnd.openxmlformats-officedocument.wordprocessingml.template" />
|
475
|
+
<mimeMap fileExtension=".dsp" mimeType="application/octet-stream" />
|
476
|
+
<mimeMap fileExtension=".dtd" mimeType="text/xml" />
|
477
|
+
<mimeMap fileExtension=".dvi" mimeType="application/x-dvi" />
|
478
|
+
<mimeMap fileExtension=".dwf" mimeType="drawing/x-dwf" />
|
479
|
+
<mimeMap fileExtension=".dwp" mimeType="application/octet-stream" />
|
480
|
+
<mimeMap fileExtension=".dxr" mimeType="application/x-director" />
|
481
|
+
<mimeMap fileExtension=".eml" mimeType="message/rfc822" />
|
482
|
+
<mimeMap fileExtension=".emz" mimeType="application/octet-stream" />
|
483
|
+
<mimeMap fileExtension=".eot" mimeType="application/octet-stream" />
|
484
|
+
<mimeMap fileExtension=".eps" mimeType="application/postscript" />
|
485
|
+
<mimeMap fileExtension=".etx" mimeType="text/x-setext" />
|
486
|
+
<mimeMap fileExtension=".evy" mimeType="application/envoy" />
|
487
|
+
<mimeMap fileExtension=".exe" mimeType="application/octet-stream" />
|
488
|
+
<mimeMap fileExtension=".exe.config" mimeType="text/xml" />
|
489
|
+
<mimeMap fileExtension=".fdf" mimeType="application/vnd.fdf" />
|
490
|
+
<mimeMap fileExtension=".fif" mimeType="application/fractals" />
|
491
|
+
<mimeMap fileExtension=".fla" mimeType="application/octet-stream" />
|
492
|
+
<mimeMap fileExtension=".flr" mimeType="x-world/x-vrml" />
|
493
|
+
<mimeMap fileExtension=".flv" mimeType="video/x-flv" />
|
494
|
+
<mimeMap fileExtension=".gif" mimeType="image/gif" />
|
495
|
+
<mimeMap fileExtension=".gtar" mimeType="application/x-gtar" />
|
496
|
+
<mimeMap fileExtension=".gz" mimeType="application/x-gzip" />
|
497
|
+
<mimeMap fileExtension=".h" mimeType="text/plain" />
|
498
|
+
<mimeMap fileExtension=".hdf" mimeType="application/x-hdf" />
|
499
|
+
<mimeMap fileExtension=".hdml" mimeType="text/x-hdml" />
|
500
|
+
<mimeMap fileExtension=".hhc" mimeType="application/x-oleobject" />
|
501
|
+
<mimeMap fileExtension=".hhk" mimeType="application/octet-stream" />
|
502
|
+
<mimeMap fileExtension=".hhp" mimeType="application/octet-stream" />
|
503
|
+
<mimeMap fileExtension=".hlp" mimeType="application/winhlp" />
|
504
|
+
<mimeMap fileExtension=".hqx" mimeType="application/mac-binhex40" />
|
505
|
+
<mimeMap fileExtension=".hta" mimeType="application/hta" />
|
506
|
+
<mimeMap fileExtension=".htc" mimeType="text/x-component" />
|
507
|
+
<mimeMap fileExtension=".htm" mimeType="text/html" />
|
508
|
+
<mimeMap fileExtension=".html" mimeType="text/html" />
|
509
|
+
<mimeMap fileExtension=".htt" mimeType="text/webviewhtml" />
|
510
|
+
<mimeMap fileExtension=".hxt" mimeType="text/html" />
|
511
|
+
<mimeMap fileExtension=".ical" mimeType="text/calendar" />
|
512
|
+
<mimeMap fileExtension=".icalendar" mimeType="text/calendar" />
|
513
|
+
<mimeMap fileExtension=".ico" mimeType="image/x-icon" />
|
514
|
+
<mimeMap fileExtension=".ics" mimeType="text/calendar" />
|
515
|
+
<mimeMap fileExtension=".ief" mimeType="image/ief" />
|
516
|
+
<mimeMap fileExtension=".ifb" mimeType="text/calendar" />
|
517
|
+
<mimeMap fileExtension=".iii" mimeType="application/x-iphone" />
|
518
|
+
<mimeMap fileExtension=".inf" mimeType="application/octet-stream" />
|
519
|
+
<mimeMap fileExtension=".ins" mimeType="application/x-internet-signup" />
|
520
|
+
<mimeMap fileExtension=".isp" mimeType="application/x-internet-signup" />
|
521
|
+
<mimeMap fileExtension=".IVF" mimeType="video/x-ivf" />
|
522
|
+
<mimeMap fileExtension=".jar" mimeType="application/java-archive" />
|
523
|
+
<mimeMap fileExtension=".java" mimeType="application/octet-stream" />
|
524
|
+
<mimeMap fileExtension=".jck" mimeType="application/liquidmotion" />
|
525
|
+
<mimeMap fileExtension=".jcz" mimeType="application/liquidmotion" />
|
526
|
+
<mimeMap fileExtension=".jfif" mimeType="image/pjpeg" />
|
527
|
+
<mimeMap fileExtension=".jpb" mimeType="application/octet-stream" />
|
528
|
+
<mimeMap fileExtension=".jpe" mimeType="image/jpeg" />
|
529
|
+
<mimeMap fileExtension=".jpeg" mimeType="image/jpeg" />
|
530
|
+
<mimeMap fileExtension=".jpg" mimeType="image/jpeg" />
|
531
|
+
<mimeMap fileExtension=".js" mimeType="application/x-javascript" />
|
532
|
+
<mimeMap fileExtension=".jsx" mimeType="text/jscript" />
|
533
|
+
<mimeMap fileExtension=".latex" mimeType="application/x-latex" />
|
534
|
+
<mimeMap fileExtension=".lit" mimeType="application/x-ms-reader" />
|
535
|
+
<mimeMap fileExtension=".lpk" mimeType="application/octet-stream" />
|
536
|
+
<mimeMap fileExtension=".lsf" mimeType="video/x-la-asf" />
|
537
|
+
<mimeMap fileExtension=".lsx" mimeType="video/x-la-asf" />
|
538
|
+
<mimeMap fileExtension=".lzh" mimeType="application/octet-stream" />
|
539
|
+
<mimeMap fileExtension=".m13" mimeType="application/x-msmediaview" />
|
540
|
+
<mimeMap fileExtension=".m14" mimeType="application/x-msmediaview" />
|
541
|
+
<mimeMap fileExtension=".m1v" mimeType="video/mpeg" />
|
542
|
+
<mimeMap fileExtension=".m3u" mimeType="audio/x-mpegurl" />
|
543
|
+
<mimeMap fileExtension=".man" mimeType="application/x-troff-man" />
|
544
|
+
<mimeMap fileExtension=".manifest" mimeType="application/x-ms-manifest" />
|
545
|
+
<mimeMap fileExtension=".map" mimeType="text/plain" />
|
546
|
+
<mimeMap fileExtension=".mdb" mimeType="application/x-msaccess" />
|
547
|
+
<mimeMap fileExtension=".mdp" mimeType="application/octet-stream" />
|
548
|
+
<mimeMap fileExtension=".me" mimeType="application/x-troff-me" />
|
549
|
+
<mimeMap fileExtension=".mht" mimeType="message/rfc822" />
|
550
|
+
<mimeMap fileExtension=".mhtml" mimeType="message/rfc822" />
|
551
|
+
<mimeMap fileExtension=".mid" mimeType="audio/mid" />
|
552
|
+
<mimeMap fileExtension=".midi" mimeType="audio/mid" />
|
553
|
+
<mimeMap fileExtension=".mix" mimeType="application/octet-stream" />
|
554
|
+
<mimeMap fileExtension=".mmf" mimeType="application/x-smaf" />
|
555
|
+
<mimeMap fileExtension=".mno" mimeType="text/xml" />
|
556
|
+
<mimeMap fileExtension=".mny" mimeType="application/x-msmoney" />
|
557
|
+
<mimeMap fileExtension=".mov" mimeType="video/quicktime" />
|
558
|
+
<mimeMap fileExtension=".movie" mimeType="video/x-sgi-movie" />
|
559
|
+
<mimeMap fileExtension=".mp2" mimeType="video/mpeg" />
|
560
|
+
<mimeMap fileExtension=".mp3" mimeType="audio/mpeg" />
|
561
|
+
<mimeMap fileExtension=".mpa" mimeType="video/mpeg" />
|
562
|
+
<mimeMap fileExtension=".mpe" mimeType="video/mpeg" />
|
563
|
+
<mimeMap fileExtension=".mpeg" mimeType="video/mpeg" />
|
564
|
+
<mimeMap fileExtension=".mpg" mimeType="video/mpeg" />
|
565
|
+
<mimeMap fileExtension=".mpp" mimeType="application/vnd.ms-project" />
|
566
|
+
<mimeMap fileExtension=".mpv2" mimeType="video/mpeg" />
|
567
|
+
<mimeMap fileExtension=".ms" mimeType="application/x-troff-ms" />
|
568
|
+
<mimeMap fileExtension=".msi" mimeType="application/octet-stream" />
|
569
|
+
<mimeMap fileExtension=".mso" mimeType="application/octet-stream" />
|
570
|
+
<mimeMap fileExtension=".mvb" mimeType="application/x-msmediaview" />
|
571
|
+
<mimeMap fileExtension=".mvc" mimeType="application/x-miva-compiled" />
|
572
|
+
<mimeMap fileExtension=".nc" mimeType="application/x-netcdf" />
|
573
|
+
<mimeMap fileExtension=".nsc" mimeType="video/x-ms-asf" />
|
574
|
+
<mimeMap fileExtension=".nws" mimeType="message/rfc822" />
|
575
|
+
<mimeMap fileExtension=".ocx" mimeType="application/octet-stream" />
|
576
|
+
<mimeMap fileExtension=".oda" mimeType="application/oda" />
|
577
|
+
<mimeMap fileExtension=".odc" mimeType="text/x-ms-odc" />
|
578
|
+
<mimeMap fileExtension=".ods" mimeType="application/oleobject" />
|
579
|
+
<mimeMap fileExtension=".one" mimeType="application/onenote" />
|
580
|
+
<mimeMap fileExtension=".onea" mimeType="application/onenote" />
|
581
|
+
<mimeMap fileExtension=".onetoc" mimeType="application/onenote" />
|
582
|
+
<mimeMap fileExtension=".onetoc2" mimeType="application/onenote" />
|
583
|
+
<mimeMap fileExtension=".onetmp" mimeType="application/onenote" />
|
584
|
+
<mimeMap fileExtension=".onepkg" mimeType="application/onenote" />
|
585
|
+
<mimeMap fileExtension=".osdx" mimeType="application/opensearchdescription+xml" />
|
586
|
+
<mimeMap fileExtension=".p10" mimeType="application/pkcs10" />
|
587
|
+
<mimeMap fileExtension=".p12" mimeType="application/x-pkcs12" />
|
588
|
+
<mimeMap fileExtension=".p7b" mimeType="application/x-pkcs7-certificates" />
|
589
|
+
<mimeMap fileExtension=".p7c" mimeType="application/pkcs7-mime" />
|
590
|
+
<mimeMap fileExtension=".p7m" mimeType="application/pkcs7-mime" />
|
591
|
+
<mimeMap fileExtension=".p7r" mimeType="application/x-pkcs7-certreqresp" />
|
592
|
+
<mimeMap fileExtension=".p7s" mimeType="application/pkcs7-signature" />
|
593
|
+
<mimeMap fileExtension=".pbm" mimeType="image/x-portable-bitmap" />
|
594
|
+
<mimeMap fileExtension=".pcx" mimeType="application/octet-stream" />
|
595
|
+
<mimeMap fileExtension=".pcz" mimeType="application/octet-stream" />
|
596
|
+
<mimeMap fileExtension=".pdf" mimeType="application/pdf" />
|
597
|
+
<mimeMap fileExtension=".pfb" mimeType="application/octet-stream" />
|
598
|
+
<mimeMap fileExtension=".pfm" mimeType="application/octet-stream" />
|
599
|
+
<mimeMap fileExtension=".pfx" mimeType="application/x-pkcs12" />
|
600
|
+
<mimeMap fileExtension=".pgm" mimeType="image/x-portable-graymap" />
|
601
|
+
<mimeMap fileExtension=".pko" mimeType="application/vnd.ms-pki.pko" />
|
602
|
+
<mimeMap fileExtension=".pma" mimeType="application/x-perfmon" />
|
603
|
+
<mimeMap fileExtension=".pmc" mimeType="application/x-perfmon" />
|
604
|
+
<mimeMap fileExtension=".pml" mimeType="application/x-perfmon" />
|
605
|
+
<mimeMap fileExtension=".pmr" mimeType="application/x-perfmon" />
|
606
|
+
<mimeMap fileExtension=".pmw" mimeType="application/x-perfmon" />
|
607
|
+
<mimeMap fileExtension=".png" mimeType="image/png" />
|
608
|
+
<mimeMap fileExtension=".pnm" mimeType="image/x-portable-anymap" />
|
609
|
+
<mimeMap fileExtension=".pnz" mimeType="image/png" />
|
610
|
+
<mimeMap fileExtension=".pot" mimeType="application/vnd.ms-powerpoint" />
|
611
|
+
<mimeMap fileExtension=".potm" mimeType="application/vnd.ms-powerpoint.template.macroEnabled.12" />
|
612
|
+
<mimeMap fileExtension=".potx" mimeType="application/vnd.openxmlformats-officedocument.presentationml.template" />
|
613
|
+
<mimeMap fileExtension=".ppam" mimeType="application/vnd.ms-powerpoint.addin.macroEnabled.12" />
|
614
|
+
<mimeMap fileExtension=".ppm" mimeType="image/x-portable-pixmap" />
|
615
|
+
<mimeMap fileExtension=".pps" mimeType="application/vnd.ms-powerpoint" />
|
616
|
+
<mimeMap fileExtension=".ppsm" mimeType="application/vnd.ms-powerpoint.slideshow.macroEnabled.12" />
|
617
|
+
<mimeMap fileExtension=".ppsx" mimeType="application/vnd.openxmlformats-officedocument.presentationml.slideshow" />
|
618
|
+
<mimeMap fileExtension=".ppt" mimeType="application/vnd.ms-powerpoint" />
|
619
|
+
<mimeMap fileExtension=".pptm" mimeType="application/vnd.ms-powerpoint.presentation.macroEnabled.12" />
|
620
|
+
<mimeMap fileExtension=".pptx" mimeType="application/vnd.openxmlformats-officedocument.presentationml.presentation" />
|
621
|
+
<mimeMap fileExtension=".prf" mimeType="application/pics-rules" />
|
622
|
+
<mimeMap fileExtension=".prm" mimeType="application/octet-stream" />
|
623
|
+
<mimeMap fileExtension=".prx" mimeType="application/octet-stream" />
|
624
|
+
<mimeMap fileExtension=".ps" mimeType="application/postscript" />
|
625
|
+
<mimeMap fileExtension=".psd" mimeType="application/octet-stream" />
|
626
|
+
<mimeMap fileExtension=".psm" mimeType="application/octet-stream" />
|
627
|
+
<mimeMap fileExtension=".psp" mimeType="application/octet-stream" />
|
628
|
+
<mimeMap fileExtension=".pub" mimeType="application/x-mspublisher" />
|
629
|
+
<mimeMap fileExtension=".qt" mimeType="video/quicktime" />
|
630
|
+
<mimeMap fileExtension=".qtl" mimeType="application/x-quicktimeplayer" />
|
631
|
+
<mimeMap fileExtension=".qxd" mimeType="application/octet-stream" />
|
632
|
+
<mimeMap fileExtension=".ra" mimeType="audio/x-pn-realaudio" />
|
633
|
+
<mimeMap fileExtension=".ram" mimeType="audio/x-pn-realaudio" />
|
634
|
+
<mimeMap fileExtension=".rar" mimeType="application/octet-stream" />
|
635
|
+
<mimeMap fileExtension=".ras" mimeType="image/x-cmu-raster" />
|
636
|
+
<mimeMap fileExtension=".rf" mimeType="image/vnd.rn-realflash" />
|
637
|
+
<mimeMap fileExtension=".rgb" mimeType="image/x-rgb" />
|
638
|
+
<mimeMap fileExtension=".rm" mimeType="application/vnd.rn-realmedia" />
|
639
|
+
<mimeMap fileExtension=".rmi" mimeType="audio/mid" />
|
640
|
+
<mimeMap fileExtension=".roff" mimeType="application/x-troff" />
|
641
|
+
<mimeMap fileExtension=".rpm" mimeType="audio/x-pn-realaudio-plugin" />
|
642
|
+
<mimeMap fileExtension=".rtf" mimeType="application/rtf" />
|
643
|
+
<mimeMap fileExtension=".rtx" mimeType="text/richtext" />
|
644
|
+
<mimeMap fileExtension=".scd" mimeType="application/x-msschedule" />
|
645
|
+
<mimeMap fileExtension=".sct" mimeType="text/scriptlet" />
|
646
|
+
<mimeMap fileExtension=".sea" mimeType="application/octet-stream" />
|
647
|
+
<mimeMap fileExtension=".setpay" mimeType="application/set-payment-initiation" />
|
648
|
+
<mimeMap fileExtension=".setreg" mimeType="application/set-registration-initiation" />
|
649
|
+
<mimeMap fileExtension=".sgml" mimeType="text/sgml" />
|
650
|
+
<mimeMap fileExtension=".sh" mimeType="application/x-sh" />
|
651
|
+
<mimeMap fileExtension=".shar" mimeType="application/x-shar" />
|
652
|
+
<mimeMap fileExtension=".sit" mimeType="application/x-stuffit" />
|
653
|
+
<mimeMap fileExtension=".sldm" mimeType="application/vnd.ms-powerpoint.slide.macroEnabled.12" />
|
654
|
+
<mimeMap fileExtension=".sldx" mimeType="application/vnd.openxmlformats-officedocument.presentationml.slide" />
|
655
|
+
<mimeMap fileExtension=".smd" mimeType="audio/x-smd" />
|
656
|
+
<mimeMap fileExtension=".smi" mimeType="application/octet-stream" />
|
657
|
+
<mimeMap fileExtension=".smx" mimeType="audio/x-smd" />
|
658
|
+
<mimeMap fileExtension=".smz" mimeType="audio/x-smd" />
|
659
|
+
<mimeMap fileExtension=".snd" mimeType="audio/basic" />
|
660
|
+
<mimeMap fileExtension=".snp" mimeType="application/octet-stream" />
|
661
|
+
<mimeMap fileExtension=".spc" mimeType="application/x-pkcs7-certificates" />
|
662
|
+
<mimeMap fileExtension=".spl" mimeType="application/futuresplash" />
|
663
|
+
<mimeMap fileExtension=".src" mimeType="application/x-wais-source" />
|
664
|
+
<mimeMap fileExtension=".ssm" mimeType="application/streamingmedia" />
|
665
|
+
<mimeMap fileExtension=".sst" mimeType="application/vnd.ms-pki.certstore" />
|
666
|
+
<mimeMap fileExtension=".stl" mimeType="application/vnd.ms-pki.stl" />
|
667
|
+
<mimeMap fileExtension=".sv4cpio" mimeType="application/x-sv4cpio" />
|
668
|
+
<mimeMap fileExtension=".sv4crc" mimeType="application/x-sv4crc" />
|
669
|
+
<mimeMap fileExtension=".swf" mimeType="application/x-shockwave-flash" />
|
670
|
+
<mimeMap fileExtension=".t" mimeType="application/x-troff" />
|
671
|
+
<mimeMap fileExtension=".tar" mimeType="application/x-tar" />
|
672
|
+
<mimeMap fileExtension=".tcl" mimeType="application/x-tcl" />
|
673
|
+
<mimeMap fileExtension=".tex" mimeType="application/x-tex" />
|
674
|
+
<mimeMap fileExtension=".texi" mimeType="application/x-texinfo" />
|
675
|
+
<mimeMap fileExtension=".texinfo" mimeType="application/x-texinfo" />
|
676
|
+
<mimeMap fileExtension=".tgz" mimeType="application/x-compressed" />
|
677
|
+
<mimeMap fileExtension=".thmx" mimeType="application/vnd.ms-officetheme" />
|
678
|
+
<mimeMap fileExtension=".thn" mimeType="application/octet-stream" />
|
679
|
+
<mimeMap fileExtension=".tif" mimeType="image/tiff" />
|
680
|
+
<mimeMap fileExtension=".tiff" mimeType="image/tiff" />
|
681
|
+
<mimeMap fileExtension=".toc" mimeType="application/octet-stream" />
|
682
|
+
<mimeMap fileExtension=".tr" mimeType="application/x-troff" />
|
683
|
+
<mimeMap fileExtension=".trm" mimeType="application/x-msterminal" />
|
684
|
+
<mimeMap fileExtension=".tsv" mimeType="text/tab-separated-values" />
|
685
|
+
<mimeMap fileExtension=".ttf" mimeType="application/octet-stream" />
|
686
|
+
<mimeMap fileExtension=".txt" mimeType="text/plain" />
|
687
|
+
<mimeMap fileExtension=".u32" mimeType="application/octet-stream" />
|
688
|
+
<mimeMap fileExtension=".uls" mimeType="text/iuls" />
|
689
|
+
<mimeMap fileExtension=".ustar" mimeType="application/x-ustar" />
|
690
|
+
<mimeMap fileExtension=".vbs" mimeType="text/vbscript" />
|
691
|
+
<mimeMap fileExtension=".vcf" mimeType="text/x-vcard" />
|
692
|
+
<mimeMap fileExtension=".vcs" mimeType="text/plain" />
|
693
|
+
<mimeMap fileExtension=".vdx" mimeType="application/vnd.ms-visio.viewer" />
|
694
|
+
<mimeMap fileExtension=".vml" mimeType="text/xml" />
|
695
|
+
<mimeMap fileExtension=".vsd" mimeType="application/vnd.visio" />
|
696
|
+
<mimeMap fileExtension=".vss" mimeType="application/vnd.visio" />
|
697
|
+
<mimeMap fileExtension=".vst" mimeType="application/vnd.visio" />
|
698
|
+
<mimeMap fileExtension=".vsto" mimeType="application/x-ms-vsto" />
|
699
|
+
<mimeMap fileExtension=".vsw" mimeType="application/vnd.visio" />
|
700
|
+
<mimeMap fileExtension=".vsx" mimeType="application/vnd.visio" />
|
701
|
+
<mimeMap fileExtension=".vtx" mimeType="application/vnd.visio" />
|
702
|
+
<mimeMap fileExtension=".wav" mimeType="audio/wav" />
|
703
|
+
<mimeMap fileExtension=".wax" mimeType="audio/x-ms-wax" />
|
704
|
+
<mimeMap fileExtension=".wbmp" mimeType="image/vnd.wap.wbmp" />
|
705
|
+
<mimeMap fileExtension=".wcm" mimeType="application/vnd.ms-works" />
|
706
|
+
<mimeMap fileExtension=".wdb" mimeType="application/vnd.ms-works" />
|
707
|
+
<mimeMap fileExtension=".wks" mimeType="application/vnd.ms-works" />
|
708
|
+
<mimeMap fileExtension=".wm" mimeType="video/x-ms-wm" />
|
709
|
+
<mimeMap fileExtension=".wma" mimeType="audio/x-ms-wma" />
|
710
|
+
<mimeMap fileExtension=".wmd" mimeType="application/x-ms-wmd" />
|
711
|
+
<mimeMap fileExtension=".wmf" mimeType="application/x-msmetafile" />
|
712
|
+
<mimeMap fileExtension=".wml" mimeType="text/vnd.wap.wml" />
|
713
|
+
<mimeMap fileExtension=".wmlc" mimeType="application/vnd.wap.wmlc" />
|
714
|
+
<mimeMap fileExtension=".wmls" mimeType="text/vnd.wap.wmlscript" />
|
715
|
+
<mimeMap fileExtension=".wmlsc" mimeType="application/vnd.wap.wmlscriptc" />
|
716
|
+
<mimeMap fileExtension=".wmp" mimeType="video/x-ms-wmp" />
|
717
|
+
<mimeMap fileExtension=".wmv" mimeType="video/x-ms-wmv" />
|
718
|
+
<mimeMap fileExtension=".wmx" mimeType="video/x-ms-wmx" />
|
719
|
+
<mimeMap fileExtension=".wmz" mimeType="application/x-ms-wmz" />
|
720
|
+
<mimeMap fileExtension=".wps" mimeType="application/vnd.ms-works" />
|
721
|
+
<mimeMap fileExtension=".wri" mimeType="application/x-mswrite" />
|
722
|
+
<mimeMap fileExtension=".wrl" mimeType="x-world/x-vrml" />
|
723
|
+
<mimeMap fileExtension=".wrz" mimeType="x-world/x-vrml" />
|
724
|
+
<mimeMap fileExtension=".wsdl" mimeType="text/xml" />
|
725
|
+
<mimeMap fileExtension=".wvx" mimeType="video/x-ms-wvx" />
|
726
|
+
<mimeMap fileExtension=".x" mimeType="application/directx" />
|
727
|
+
<mimeMap fileExtension=".xaf" mimeType="x-world/x-vrml" />
|
728
|
+
<mimeMap fileExtension=".xaml" mimeType="application/xaml+xml" />
|
729
|
+
<mimeMap fileExtension=".xap" mimeType="application/x-silverlight-app" />
|
730
|
+
<mimeMap fileExtension=".xbap" mimeType="application/x-ms-xbap" />
|
731
|
+
<mimeMap fileExtension=".xbm" mimeType="image/x-xbitmap" />
|
732
|
+
<mimeMap fileExtension=".xdr" mimeType="text/plain" />
|
733
|
+
<mimeMap fileExtension=".xla" mimeType="application/vnd.ms-excel" />
|
734
|
+
<mimeMap fileExtension=".xlam" mimeType="application/vnd.ms-excel.addin.macroEnabled.12" />
|
735
|
+
<mimeMap fileExtension=".xlc" mimeType="application/vnd.ms-excel" />
|
736
|
+
<mimeMap fileExtension=".xlm" mimeType="application/vnd.ms-excel" />
|
737
|
+
<mimeMap fileExtension=".xls" mimeType="application/vnd.ms-excel" />
|
738
|
+
<mimeMap fileExtension=".xlsb" mimeType="application/vnd.ms-excel.sheet.binary.macroEnabled.12" />
|
739
|
+
<mimeMap fileExtension=".xlsm" mimeType="application/vnd.ms-excel.sheet.macroEnabled.12" />
|
740
|
+
<mimeMap fileExtension=".xlsx" mimeType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />
|
741
|
+
<mimeMap fileExtension=".xlt" mimeType="application/vnd.ms-excel" />
|
742
|
+
<mimeMap fileExtension=".xltm" mimeType="application/vnd.ms-excel.template.macroEnabled.12" />
|
743
|
+
<mimeMap fileExtension=".xltx" mimeType="application/vnd.openxmlformats-officedocument.spreadsheetml.template" />
|
744
|
+
<mimeMap fileExtension=".xlw" mimeType="application/vnd.ms-excel" />
|
745
|
+
<mimeMap fileExtension=".xml" mimeType="text/xml" />
|
746
|
+
<mimeMap fileExtension=".xof" mimeType="x-world/x-vrml" />
|
747
|
+
<mimeMap fileExtension=".xpm" mimeType="image/x-xpixmap" />
|
748
|
+
<mimeMap fileExtension=".xps" mimeType="application/vnd.ms-xpsdocument" />
|
749
|
+
<mimeMap fileExtension=".xsd" mimeType="text/xml" />
|
750
|
+
<mimeMap fileExtension=".xsf" mimeType="text/xml" />
|
751
|
+
<mimeMap fileExtension=".xsl" mimeType="text/xml" />
|
752
|
+
<mimeMap fileExtension=".xslt" mimeType="text/xml" />
|
753
|
+
<mimeMap fileExtension=".xsn" mimeType="application/octet-stream" />
|
754
|
+
<mimeMap fileExtension=".xtp" mimeType="application/octet-stream" />
|
755
|
+
<mimeMap fileExtension=".xwd" mimeType="image/x-xwindowdump" />
|
756
|
+
<mimeMap fileExtension=".z" mimeType="application/x-compress" />
|
757
|
+
<mimeMap fileExtension=".zip" mimeType="application/x-zip-compressed" />
|
758
|
+
</staticContent>
|
759
|
+
|
760
|
+
<tracing>
|
761
|
+
|
762
|
+
<traceProviderDefinitions>
|
763
|
+
<add name="WWW Server" guid="{3a2a4e84-4c21-4981-ae10-3fda0d9b0f83}">
|
764
|
+
<areas>
|
765
|
+
<clear />
|
766
|
+
<add name="Authentication" value="2" />
|
767
|
+
<add name="Security" value="4" />
|
768
|
+
<add name="Filter" value="8" />
|
769
|
+
<add name="StaticFile" value="16" />
|
770
|
+
<add name="CGI" value="32" />
|
771
|
+
<add name="Compression" value="64" />
|
772
|
+
<add name="Cache" value="128" />
|
773
|
+
<add name="RequestNotifications" value="256" />
|
774
|
+
<add name="Module" value="512" />
|
775
|
+
<add name="Rewrite" value="1024" />
|
776
|
+
<add name="FastCGI" value="4096" />
|
777
|
+
</areas>
|
778
|
+
</add>
|
779
|
+
<add name="ASP" guid="{06b94d9a-b15e-456e-a4ef-37c984a2cb4b}">
|
780
|
+
<areas>
|
781
|
+
<clear />
|
782
|
+
</areas>
|
783
|
+
</add>
|
784
|
+
<add name="ISAPI Extension" guid="{a1c2040e-8840-4c31-ba11-9871031a19ea}">
|
785
|
+
<areas>
|
786
|
+
<clear />
|
787
|
+
</areas>
|
788
|
+
</add>
|
789
|
+
<add name="ASPNET" guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}">
|
790
|
+
<areas>
|
791
|
+
<add name="Infrastructure" value="1" />
|
792
|
+
<add name="Module" value="2" />
|
793
|
+
<add name="Page" value="4" />
|
794
|
+
<add name="AppServices" value="8" />
|
795
|
+
</areas>
|
796
|
+
</add>
|
797
|
+
</traceProviderDefinitions>
|
798
|
+
|
799
|
+
<traceFailedRequests>
|
800
|
+
<add path="*">
|
801
|
+
<traceAreas>
|
802
|
+
<add provider="ASP" verbosity="Verbose" />
|
803
|
+
<add provider="ASPNET" areas="Infrastructure,Module,Page,AppServices" verbosity="Verbose" />
|
804
|
+
<add provider="ISAPI Extension" verbosity="Verbose" />
|
805
|
+
<add provider="WWW Server" areas="Authentication,Security,Filter,StaticFile,CGI,Compression,Cache,RequestNotifications,Module,Rewrite" verbosity="Verbose" />
|
806
|
+
</traceAreas>
|
807
|
+
<failureDefinitions statusCodes="200-999" />
|
808
|
+
</add>
|
809
|
+
</traceFailedRequests>
|
810
|
+
|
811
|
+
</tracing>
|
812
|
+
|
813
|
+
<urlCompression />
|
814
|
+
|
815
|
+
<validation />
|
816
|
+
<webdav>
|
817
|
+
<globalSettings>
|
818
|
+
<propertyStores>
|
819
|
+
<add name="webdav_simple_prop" image="%IIS_BIN%\webdav_simple_prop.dll" image32="%windir%\syswow64\inetsrv\webdav_simple_prop.dll" />
|
820
|
+
</propertyStores>
|
821
|
+
<lockStores>
|
822
|
+
<add name="webdav_simple_lock" image="%IIS_BIN%\webdav_simple_lock.dll" image32="%windir%\syswow64\inetsrv\webdav_simple_lock.dll" />
|
823
|
+
</lockStores>
|
824
|
+
|
825
|
+
</globalSettings>
|
826
|
+
<authoring>
|
827
|
+
<locks enabled="true" lockStore="webdav_simple_lock" />
|
828
|
+
</authoring>
|
829
|
+
<authoringRules />
|
830
|
+
</webdav>
|
831
|
+
|
832
|
+
</system.webServer>
|
833
|
+
<location path="" overrideMode="Allow">
|
834
|
+
<system.webServer>
|
835
|
+
<modules>
|
836
|
+
<!--
|
837
|
+
<add name="HttpCacheModule" lockItem="true" />
|
838
|
+
-->
|
839
|
+
<add name="DynamicCompressionModule" lockItem="true" />
|
840
|
+
<add name="StaticCompressionModule" lockItem="true" />
|
841
|
+
<add name="DefaultDocumentModule" lockItem="true" />
|
842
|
+
<add name="DirectoryListingModule" lockItem="true" />
|
843
|
+
<add name="IsapiFilterModule" lockItem="true" />
|
844
|
+
<add name="ProtocolSupportModule" lockItem="true" />
|
845
|
+
<add name="HttpRedirectionModule" lockItem="true" />
|
846
|
+
<add name="ServerSideIncludeModule" lockItem="true" />
|
847
|
+
<add name="StaticFileModule" lockItem="true" />
|
848
|
+
<add name="AnonymousAuthenticationModule" lockItem="true" />
|
849
|
+
<add name="CertificateMappingAuthenticationModule" lockItem="true" />
|
850
|
+
<add name="UrlAuthorizationModule" lockItem="true" />
|
851
|
+
<add name="BasicAuthenticationModule" lockItem="true" />
|
852
|
+
<add name="WindowsAuthenticationModule" lockItem="true" />
|
853
|
+
<!--
|
854
|
+
<add name="DigestAuthenticationModule" lockItem="true" />
|
855
|
+
-->
|
856
|
+
<add name="IISCertificateMappingAuthenticationModule" lockItem="true" />
|
857
|
+
<add name="IpRestrictionModule" lockItem="true" />
|
858
|
+
<add name="RequestFilteringModule" lockItem="true" />
|
859
|
+
<add name="CustomLoggingModule" lockItem="true" />
|
860
|
+
<add name="CustomErrorModule" lockItem="true" />
|
861
|
+
<add name="IsapiModule" lockItem="true" />
|
862
|
+
<add name="HttpLoggingModule" lockItem="true" />
|
863
|
+
<add name="FailedRequestsTracingModule" lockItem="true" />
|
864
|
+
<add name="CgiModule" lockItem="true" />
|
865
|
+
<add name="FastCgiModule" lockItem="true" />
|
866
|
+
<!-- <add name="WebDAVModule" /> -->
|
867
|
+
<add name="RewriteModule" />
|
868
|
+
<add name="ConfigurationValidationModule" lockItem="true" />
|
869
|
+
<add name="WebMatrixSupportModule" lockItem="true" />
|
870
|
+
<add name="OutputCache" type="System.Web.Caching.OutputCacheModule" preCondition="managedHandler" />
|
871
|
+
<add name="Session" type="System.Web.SessionState.SessionStateModule" preCondition="managedHandler" />
|
872
|
+
<add name="WindowsAuthentication" type="System.Web.Security.WindowsAuthenticationModule" preCondition="managedHandler" />
|
873
|
+
<add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule" preCondition="managedHandler" />
|
874
|
+
<add name="DefaultAuthentication" type="System.Web.Security.DefaultAuthenticationModule" preCondition="managedHandler" />
|
875
|
+
<add name="RoleManager" type="System.Web.Security.RoleManagerModule" preCondition="managedHandler" />
|
876
|
+
<add name="UrlAuthorization" type="System.Web.Security.UrlAuthorizationModule" preCondition="managedHandler" />
|
877
|
+
<add name="FileAuthorization" type="System.Web.Security.FileAuthorizationModule" preCondition="managedHandler" />
|
878
|
+
<add name="AnonymousIdentification" type="System.Web.Security.AnonymousIdentificationModule" preCondition="managedHandler" />
|
879
|
+
<add name="Profile" type="System.Web.Profile.ProfileModule" preCondition="managedHandler" />
|
880
|
+
<add name="UrlMappingsModule" type="System.Web.UrlMappingsModule" preCondition="managedHandler" />
|
881
|
+
<add name="ServiceModel-4.0" type="System.ServiceModel.Activation.ServiceHttpModule,System.ServiceModel.Activation,Version=4.0.0.0,Culture=neutral,PublicKeyToken=31bf3856ad364e35" preCondition="managedHandler,runtimeVersionv4.0" />
|
882
|
+
<add name="UrlRoutingModule-4.0" type="System.Web.Routing.UrlRoutingModule" preCondition="managedHandler,runtimeVersionv4.0" />
|
883
|
+
<add name="ScriptModule-4.0" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="managedHandler,runtimeVersionv4.0" />
|
884
|
+
<add name="ServiceModel" type="System.ServiceModel.Activation.HttpModule, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="managedHandler,runtimeVersionv2.0" />
|
885
|
+
</modules>
|
886
|
+
<handlers accessPolicy="Read, Script">
|
887
|
+
<!-- <add name="WebDAV" path="*" verb="PROPFIND,PROPPATCH,MKCOL,PUT,COPY,DELETE,MOVE,LOCK,UNLOCK" modules="WebDAVModule" resourceType="Unspecified" requireAccess="None" /> -->
|
888
|
+
<add name="svc-Integrated" path="*.svc" verb="*" type="System.ServiceModel.Activation.HttpHandler, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="integratedMode,runtimeVersionv2.0" />
|
889
|
+
<add name="svc-ISAPI-2.0" path="*.svc" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" />
|
890
|
+
<add name="xoml-Integrated" path="*.xoml" verb="*" type="System.ServiceModel.Activation.HttpHandler, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="integratedMode,runtimeVersionv2.0" />
|
891
|
+
<add name="xoml-ISAPI-2.0" path="*.xoml" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" />
|
892
|
+
<add name="rules-Integrated" path="*.rules" verb="*" type="System.ServiceModel.Activation.HttpHandler, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="integratedMode,runtimeVersionv2.0" />
|
893
|
+
<add name="rules-ISAPI-2.0" path="*.rules" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" />
|
894
|
+
<add name="AXD-ISAPI-4.0_32bit" path="*.axd" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
895
|
+
<add name="PageHandlerFactory-ISAPI-4.0_32bit" path="*.aspx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
896
|
+
<add name="SimpleHandlerFactory-ISAPI-4.0_32bit" path="*.ashx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
897
|
+
<add name="WebServiceHandlerFactory-ISAPI-4.0_32bit" path="*.asmx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
898
|
+
<add name="HttpRemotingHandlerFactory-rem-ISAPI-4.0_32bit" path="*.rem" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
899
|
+
<add name="HttpRemotingHandlerFactory-soap-ISAPI-4.0_32bit" path="*.soap" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
900
|
+
<add name="svc-ISAPI-4.0_32bit" path="*.svc" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
901
|
+
<add name="rules-ISAPI-4.0_32bit" path="*.rules" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
902
|
+
<add name="xoml-ISAPI-4.0_32bit" path="*.xoml" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
903
|
+
<add name="xamlx-ISAPI-4.0_32bit" path="*.xamlx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
904
|
+
<add name="aspq-ISAPI-4.0_32bit" path="*.aspq" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
905
|
+
<add name="cshtm-ISAPI-4.0_32bit" path="*.cshtm" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
906
|
+
<add name="cshtml-ISAPI-4.0_32bit" path="*.cshtml" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
907
|
+
<add name="vbhtm-ISAPI-4.0_32bit" path="*.vbhtm" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
908
|
+
<add name="vbhtml-ISAPI-4.0_32bit" path="*.vbhtml" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
909
|
+
<add name="TraceHandler-Integrated-4.0" path="trace.axd" verb="GET,HEAD,POST,DEBUG" type="System.Web.Handlers.TraceHandler" preCondition="integratedMode,runtimeVersionv4.0" />
|
910
|
+
<add name="WebAdminHandler-Integrated-4.0" path="WebAdmin.axd" verb="GET,DEBUG" type="System.Web.Handlers.WebAdminHandler" preCondition="integratedMode,runtimeVersionv4.0" />
|
911
|
+
<add name="AssemblyResourceLoader-Integrated-4.0" path="WebResource.axd" verb="GET,DEBUG" type="System.Web.Handlers.AssemblyResourceLoader" preCondition="integratedMode,runtimeVersionv4.0" />
|
912
|
+
<add name="PageHandlerFactory-Integrated-4.0" path="*.aspx" verb="GET,HEAD,POST,DEBUG" type="System.Web.UI.PageHandlerFactory" preCondition="integratedMode,runtimeVersionv4.0" />
|
913
|
+
<add name="SimpleHandlerFactory-Integrated-4.0" path="*.ashx" verb="GET,HEAD,POST,DEBUG" type="System.Web.UI.SimpleHandlerFactory" preCondition="integratedMode,runtimeVersionv4.0" />
|
914
|
+
<add name="WebServiceHandlerFactory-Integrated-4.0" path="*.asmx" verb="GET,HEAD,POST,DEBUG" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode,runtimeVersionv4.0" />
|
915
|
+
<add name="HttpRemotingHandlerFactory-rem-Integrated-4.0" path="*.rem" verb="GET,HEAD,POST,DEBUG" type="System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory, System.Runtime.Remoting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="integratedMode,runtimeVersionv4.0" />
|
916
|
+
<add name="HttpRemotingHandlerFactory-soap-Integrated-4.0" path="*.soap" verb="GET,HEAD,POST,DEBUG" type="System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory, System.Runtime.Remoting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="integratedMode,runtimeVersionv4.0" />
|
917
|
+
<add name="svc-Integrated-4.0" path="*.svc" verb="*" type="System.ServiceModel.Activation.ServiceHttpHandlerFactory, System.ServiceModel.Activation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode,runtimeVersionv4.0" />
|
918
|
+
<add name="rules-Integrated-4.0" path="*.rules" verb="*" type="System.ServiceModel.Activation.ServiceHttpHandlerFactory, System.ServiceModel.Activation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode,runtimeVersionv4.0" />
|
919
|
+
<add name="xoml-Integrated-4.0" path="*.xoml" verb="*" type="System.ServiceModel.Activation.ServiceHttpHandlerFactory, System.ServiceModel.Activation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode,runtimeVersionv4.0" />
|
920
|
+
<add name="xamlx-Integrated-4.0" path="*.xamlx" verb="GET,HEAD,POST,DEBUG" type="System.Xaml.Hosting.XamlHttpHandlerFactory, System.Xaml.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode,runtimeVersionv4.0" />
|
921
|
+
<add name="aspq-Integrated-4.0" path="*.aspq" verb="GET,HEAD,POST,DEBUG" type="System.Web.HttpForbiddenHandler" preCondition="integratedMode,runtimeVersionv4.0" />
|
922
|
+
<add name="cshtm-Integrated-4.0" path="*.cshtm" verb="GET,HEAD,POST,DEBUG" type="System.Web.HttpForbiddenHandler" preCondition="integratedMode,runtimeVersionv4.0" />
|
923
|
+
<add name="cshtml-Integrated-4.0" path="*.cshtml" verb="GET,HEAD,POST,DEBUG" type="System.Web.HttpForbiddenHandler" preCondition="integratedMode,runtimeVersionv4.0" />
|
924
|
+
<add name="vbhtm-Integrated-4.0" path="*.vbhtm" verb="GET,HEAD,POST,DEBUG" type="System.Web.HttpForbiddenHandler" preCondition="integratedMode,runtimeVersionv4.0" />
|
925
|
+
<add name="vbhtml-Integrated-4.0" path="*.vbhtml" verb="GET,HEAD,POST,DEBUG" type="System.Web.HttpForbiddenHandler" preCondition="integratedMode,runtimeVersionv4.0" />
|
926
|
+
<add name="ScriptHandlerFactoryAppServices-Integrated-4.0" path="*_AppService.axd" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" preCondition="integratedMode,runtimeVersionv4.0" />
|
927
|
+
<add name="ScriptResourceIntegrated-4.0" path="ScriptResource.axd" verb="GET,HEAD" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" preCondition="integratedMode,runtimeVersionv4.0" />
|
928
|
+
<add name="ASPClassic" path="*.asp" verb="GET,HEAD,POST" modules="IsapiModule" scriptProcessor="%IIS_BIN%\asp.dll" resourceType="File" />
|
929
|
+
<add name="SecurityCertificate" path="*.cer" verb="GET,HEAD,POST" modules="IsapiModule" scriptProcessor="%IIS_BIN%\asp.dll" resourceType="File" />
|
930
|
+
<add name="ISAPI-dll" path="*.dll" verb="*" modules="IsapiModule" resourceType="File" requireAccess="Execute" allowPathInfo="true" />
|
931
|
+
<add name="TraceHandler-Integrated" path="trace.axd" verb="GET,HEAD,POST,DEBUG" type="System.Web.Handlers.TraceHandler" preCondition="integratedMode" />
|
932
|
+
<add name="WebAdminHandler-Integrated" path="WebAdmin.axd" verb="GET,DEBUG" type="System.Web.Handlers.WebAdminHandler" preCondition="integratedMode" />
|
933
|
+
<add name="AssemblyResourceLoader-Integrated" path="WebResource.axd" verb="GET,DEBUG" type="System.Web.Handlers.AssemblyResourceLoader" preCondition="integratedMode" />
|
934
|
+
<add name="PageHandlerFactory-Integrated" path="*.aspx" verb="GET,HEAD,POST,DEBUG" type="System.Web.UI.PageHandlerFactory" preCondition="integratedMode" />
|
935
|
+
<add name="SimpleHandlerFactory-Integrated" path="*.ashx" verb="GET,HEAD,POST,DEBUG" type="System.Web.UI.SimpleHandlerFactory" preCondition="integratedMode" />
|
936
|
+
<add name="WebServiceHandlerFactory-Integrated" path="*.asmx" verb="GET,HEAD,POST,DEBUG" type="System.Web.Services.Protocols.WebServiceHandlerFactory,System.Web.Services,Version=2.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a" preCondition="integratedMode,runtimeVersionv2.0" />
|
937
|
+
<add name="HttpRemotingHandlerFactory-rem-Integrated" path="*.rem" verb="GET,HEAD,POST,DEBUG" type="System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory,System.Runtime.Remoting,Version=2.0.0.0,Culture=neutral,PublicKeyToken=b77a5c561934e089" preCondition="integratedMode,runtimeVersionv2.0" />
|
938
|
+
<add name="HttpRemotingHandlerFactory-soap-Integrated" path="*.soap" verb="GET,HEAD,POST,DEBUG" type="System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory,System.Runtime.Remoting,Version=2.0.0.0,Culture=neutral,PublicKeyToken=b77a5c561934e089" preCondition="integratedMode,runtimeVersionv2.0" />
|
939
|
+
<add name="AXD-ISAPI-2.0" path="*.axd" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" responseBufferLimit="0" />
|
940
|
+
<add name="PageHandlerFactory-ISAPI-2.0" path="*.aspx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" responseBufferLimit="0" />
|
941
|
+
<add name="SimpleHandlerFactory-ISAPI-2.0" path="*.ashx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" responseBufferLimit="0" />
|
942
|
+
<add name="WebServiceHandlerFactory-ISAPI-2.0" path="*.asmx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" responseBufferLimit="0" />
|
943
|
+
<add name="HttpRemotingHandlerFactory-rem-ISAPI-2.0" path="*.rem" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" responseBufferLimit="0" />
|
944
|
+
<add name="HttpRemotingHandlerFactory-soap-ISAPI-2.0" path="*.soap" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" responseBufferLimit="0" />
|
945
|
+
<add name="CGI-exe" path="*.exe" verb="*" modules="CgiModule" resourceType="File" requireAccess="Execute" allowPathInfo="true" />
|
946
|
+
<add name="SSINC-stm" path="*.stm" verb="GET,POST" modules="ServerSideIncludeModule" resourceType="File" />
|
947
|
+
<add name="SSINC-shtm" path="*.shtm" verb="GET,POST" modules="ServerSideIncludeModule" resourceType="File" />
|
948
|
+
<add name="SSINC-shtml" path="*.shtml" verb="GET,POST" modules="ServerSideIncludeModule" resourceType="File" />
|
949
|
+
<add name="TRACEVerbHandler" path="*" verb="TRACE" modules="ProtocolSupportModule" requireAccess="None" />
|
950
|
+
<add name="OPTIONSVerbHandler" path="*" verb="OPTIONS" modules="ProtocolSupportModule" requireAccess="None" />
|
951
|
+
<add name="ExtensionlessUrl-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
|
952
|
+
<add name="ExtensionlessUrl-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
|
953
|
+
<add name="StaticFile" path="*" verb="*" modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule" resourceType="Either" requireAccess="Read" />
|
954
|
+
</handlers>
|
955
|
+
</system.webServer>
|
956
|
+
</location>
|
957
|
+
</configuration>
|