Skip to content
This repository has been archived by the owner on Apr 26, 2023. It is now read-only.

Add Intellisense in proxy.config #486

Merged
merged 6 commits into from
May 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DotNet/proxy.ashx
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ class LogTraceListener : TraceListener
}


[XmlRoot("ProxyConfig")]
[XmlRoot("ProxyConfig", Namespace ="proxy.xsd")]
public class ProxyConfig
{
private static object _lockobject = new object();
Expand Down
2 changes: 1 addition & 1 deletion DotNet/proxy.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<ProxyConfig allowedReferers="*"
mustMatch="true">
mustMatch="true" xmlns="proxy.xsd">
<serverUrls>
<serverUrl url="http://services.arcgisonline.com"
matchAll="true"/>
Expand Down
2 changes: 1 addition & 1 deletion DotNet/proxy.xsd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="proxy.xsd">
<xs:element name="ProxyConfig">
<xs:complexType>
<xs:sequence>
Expand Down