Changes between Version 5 and Version 6 of XmlRpcPlugin/DotNet
- Timestamp:
- Jul 19, 2018, 7:56:37 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
XmlRpcPlugin/DotNet
v5 v6 3 3 = Accessing XmlRpcPlugin from C# 4 4 5 It is possible to access Trac via the XmlRpcPlugin plug -in from Microsoft's .NET framework. This should work for any .NET language, including Visual Basic. The steps below are written in C#.5 It is possible to access Trac via the XmlRpcPlugin plugin from Microsoft's .NET framework. This should work for any .NET language, including Visual Basic. The steps below are written in C#. 6 6 7 7 == Step 1. Install the Trac XmlRpcPlugin … … 80 80 == Step 6. Handling Certificate Problems (if any) 81 81 82 If your Trac uses https, make sure it has a valid, verif yable certificate. If you use a self-signed or expired certificate, all is not lost, butyou have to take a few additional steps.82 If your Trac uses https, make sure it has a valid, verifiable certificate. If you use a self-signed or expired certificate, you have to take a few additional steps. 83 83 84 First, you need to create a server certificate validation callback that alwayssays the certificate is OK, even if it's really not:84 First, you need to create a server certificate validation callback that says the certificate is OK, even if it's really not: 85 85 86 86 {{{#!cs … … 94 94 }}} 95 95 96 Second, ''before'' you create the proxy, do this (for example, at the beginning of Main)96 Second, ''before'' you create the proxy, add this, for example, at the beginning of Main: 97 97 98 98 {{{#!cs