Skip to content

Commit fd05e55

Browse files
Add Vermont as a Tyler Jurisdiction
Tried updating the python script that updates things, but there's still more refactors needed before we can fully automate adding new jurisdictions (mainly moving the rest of the WSDL stuff to TylerEcf4 and TylerEcf5).
1 parent 00affea commit fd05e55

18 files changed

+244
-4
lines changed

TylerEfmClient/src/main/java/edu/suffolk/litlab/efsp/tyler/TylerClients.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ public class TylerClients {
2020
"illinois", TylerVersion.v2024_6,
2121
"indiana", TylerVersion.v2024_6,
2222
"massachusetts", TylerVersion.v2025_0,
23-
"texas", TylerVersion.v2024_6);
23+
"texas", TylerVersion.v2024_6,
24+
"vermont", TylerVersion.v2024_6);
2425

2526
private static final Map<String, TylerVersion> PROD_VERSION_MAP =
2627
Map.of(
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<wsdl:definitions name="EfmFirmService" targetNamespace="urn:tyler:efm:services"
3+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
4+
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
5+
xmlns:tns="urn:tyler:efm:services">
6+
<wsdl:import location="../Base-EFMFirmService.wsdl"
7+
namespace="urn:tyler:efm:services" />
8+
<wsdl:service name="EfmFirmService">
9+
<wsdl:port name="BasicHttpBinding_IEfmFirmService"
10+
binding="tns:BasicHttpBinding_IEfmFirmService">
11+
<soap:address location="https://vermont.tylertech.cloud/EFM/EFMFirmService.svc" />
12+
</wsdl:port>
13+
<wsdl:port name="BasicHttpBinding_IEfmFirmService1"
14+
binding="tns:BasicHttpBinding_IEfmFirmService1">
15+
<soap:address location="https://vermont.tylertech.cloud/EFM/EFMFirmService.svc/test" />
16+
</wsdl:port>
17+
</wsdl:service>
18+
</wsdl:definitions>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<wsdl:definitions name="EfmUserService" targetNamespace="urn:tyler:efm:services"
3+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
4+
xmlns:tns="urn:tyler:efm:services"
5+
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
6+
<wsdl:import location="../Base-EFMUserService.wsdl"
7+
namespace="urn:tyler:efm:services" />
8+
9+
<wsdl:service name="EfmUserService">
10+
<wsdl:port name="BasicHttpBinding_IEfmUserService"
11+
binding="tns:BasicHttpBinding_IEfmUserService">
12+
<soap:address location="https://vermont.tylertech.cloud/EFM/EFMUserService.svc" />
13+
</wsdl:port>
14+
<wsdl:port name="BasicHttpBinding_IEfmUserService1"
15+
binding="tns:BasicHttpBinding_IEfmUserService1">
16+
<soap:address location="https://vermont.tylertech.cloud/EFM/EFMUserService.svc/test" />
17+
</wsdl:port>
18+
</wsdl:service>
19+
</wsdl:definitions>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<wsdl:definitions name="EfmFirmService" targetNamespace="urn:tyler:efm:services"
3+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
4+
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
5+
xmlns:tns="urn:tyler:efm:services">
6+
<wsdl:import location="../Base-EFMFirmService.wsdl"
7+
namespace="urn:tyler:efm:services" />
8+
<wsdl:service name="EfmFirmService">
9+
<wsdl:port name="BasicHttpBinding_IEfmFirmService"
10+
binding="tns:BasicHttpBinding_IEfmFirmService">
11+
<soap:address location="https://vermont-stage.tylertech.cloud/EFM/EFMFirmService.svc" />
12+
</wsdl:port>
13+
<wsdl:port name="BasicHttpBinding_IEfmFirmService1"
14+
binding="tns:BasicHttpBinding_IEfmFirmService1">
15+
<soap:address location="https://vermont-stage.tylertech.cloud/EFM/EFMFirmService.svc/test" />
16+
</wsdl:port>
17+
</wsdl:service>
18+
</wsdl:definitions>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<wsdl:definitions name="EfmUserService" targetNamespace="urn:tyler:efm:services"
3+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
4+
xmlns:tns="urn:tyler:efm:services"
5+
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
6+
<wsdl:import location="../Base-EFMUserService.wsdl"
7+
namespace="urn:tyler:efm:services" />
8+
9+
<wsdl:service name="EfmUserService">
10+
<wsdl:port name="BasicHttpBinding_IEfmUserService"
11+
binding="tns:BasicHttpBinding_IEfmUserService">
12+
<soap:address location="https://vermont-stage.tylertech.cloud/EFM/EFMUserService.svc" />
13+
</wsdl:port>
14+
<wsdl:port name="BasicHttpBinding_IEfmUserService1"
15+
binding="tns:BasicHttpBinding_IEfmUserService1">
16+
<soap:address location="https://vermont-stage.tylertech.cloud/EFM/EFMUserService.svc/test" />
17+
</wsdl:port>
18+
</wsdl:service>
19+
</wsdl:definitions>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<wsdl:definitions name="EfmFirmService" targetNamespace="urn:tyler:efm:services"
3+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
4+
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
5+
xmlns:tns="urn:tyler:efm:services">
6+
<wsdl:import location="../Base-EFMFirmService.wsdl"
7+
namespace="urn:tyler:efm:services" />
8+
<wsdl:service name="EfmFirmService">
9+
<wsdl:port name="BasicHttpBinding_IEfmFirmService"
10+
binding="tns:BasicHttpBinding_IEfmFirmService">
11+
<soap:address location="https://vermont.tylertech.cloud/EFM/EFMFirmService.svc" />
12+
</wsdl:port>
13+
<wsdl:port name="BasicHttpBinding_IEfmFirmService1"
14+
binding="tns:BasicHttpBinding_IEfmFirmService1">
15+
<soap:address location="https://vermont.tylertech.cloud/EFM/EFMFirmService.svc/test" />
16+
</wsdl:port>
17+
</wsdl:service>
18+
</wsdl:definitions>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<wsdl:definitions name="EfmUserService" targetNamespace="urn:tyler:efm:services"
3+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
4+
xmlns:tns="urn:tyler:efm:services"
5+
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
6+
<wsdl:import location="../Base-EFMUserService.wsdl"
7+
namespace="urn:tyler:efm:services" />
8+
9+
<wsdl:service name="EfmUserService">
10+
<wsdl:port name="BasicHttpBinding_IEfmUserService"
11+
binding="tns:BasicHttpBinding_IEfmUserService">
12+
<soap:address location="https://vermont.tylertech.cloud/EFM/EFMUserService.svc" />
13+
</wsdl:port>
14+
<wsdl:port name="BasicHttpBinding_IEfmUserService1"
15+
binding="tns:BasicHttpBinding_IEfmUserService1">
16+
<soap:address location="https://vermont.tylertech.cloud/EFM/EFMUserService.svc/test" />
17+
</wsdl:port>
18+
</wsdl:service>
19+
</wsdl:definitions>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<wsdl:definitions name="EfmFirmService" targetNamespace="urn:tyler:efm:services"
3+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
4+
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
5+
xmlns:tns="urn:tyler:efm:services">
6+
<wsdl:import location="../Base-EFMFirmService.wsdl"
7+
namespace="urn:tyler:efm:services" />
8+
<wsdl:service name="EfmFirmService">
9+
<wsdl:port name="BasicHttpBinding_IEfmFirmService"
10+
binding="tns:BasicHttpBinding_IEfmFirmService">
11+
<soap:address location="https://vermont-stage.tylertech.cloud/EFM/EFMFirmService.svc" />
12+
</wsdl:port>
13+
<wsdl:port name="BasicHttpBinding_IEfmFirmService1"
14+
binding="tns:BasicHttpBinding_IEfmFirmService1">
15+
<soap:address location="https://vermont-stage.tylertech.cloud/EFM/EFMFirmService.svc/test" />
16+
</wsdl:port>
17+
</wsdl:service>
18+
</wsdl:definitions>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<wsdl:definitions name="EfmUserService" targetNamespace="urn:tyler:efm:services"
3+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
4+
xmlns:tns="urn:tyler:efm:services"
5+
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
6+
<wsdl:import location="../Base-EFMUserService.wsdl"
7+
namespace="urn:tyler:efm:services" />
8+
9+
<wsdl:service name="EfmUserService">
10+
<wsdl:port name="BasicHttpBinding_IEfmUserService"
11+
binding="tns:BasicHttpBinding_IEfmUserService">
12+
<soap:address location="https://vermont-stage.tylertech.cloud/EFM/EFMUserService.svc" />
13+
</wsdl:port>
14+
<wsdl:port name="BasicHttpBinding_IEfmUserService1"
15+
binding="tns:BasicHttpBinding_IEfmUserService1">
16+
<soap:address location="https://vermont-stage.tylertech.cloud/EFM/EFMUserService.svc/test" />
17+
</wsdl:port>
18+
</wsdl:service>
19+
</wsdl:definitions>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<wsdl:definitions name="EfmFirmService" targetNamespace="urn:tyler:efm:services"
3+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
4+
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
5+
xmlns:tns="urn:tyler:efm:services">
6+
<wsdl:import location="../Base-EFMFirmService.wsdl"
7+
namespace="urn:tyler:efm:services" />
8+
<wsdl:service name="EfmFirmService">
9+
<wsdl:port name="BasicHttpBinding_IEfmFirmService"
10+
binding="tns:BasicHttpBinding_IEfmFirmService">
11+
<soap:address location="https://vermont.tylertech.cloud/EFM/EFMFirmService.svc" />
12+
</wsdl:port>
13+
<wsdl:port name="BasicHttpBinding_IEfmFirmService1"
14+
binding="tns:BasicHttpBinding_IEfmFirmService1">
15+
<soap:address location="https://vermont.tylertech.cloud/EFM/EFMFirmService.svc/test" />
16+
</wsdl:port>
17+
</wsdl:service>
18+
</wsdl:definitions>

0 commit comments

Comments
 (0)