https://github.com/virtuald/ews-proxy
EWS Proxy
https://github.com/virtuald/ews-proxy
Last synced: 8 months ago
JSON representation
EWS Proxy
- Host: GitHub
- URL: https://github.com/virtuald/ews-proxy
- Owner: virtuald
- License: apache-2.0
- Created: 2018-02-02T18:26:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-14T21:24:35.000Z (about 7 years ago)
- Last Synced: 2025-02-28T04:39:27.783Z (over 1 year ago)
- Language: Go
- Size: 173 KB
- Stars: 4
- Watchers: 5
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
ews-proxy
=========
Reverse proxy that allows using an EWS XML client on an OWA endpoint.
Compilation requirements
------------------------
Despite this being a golang package, there is an autogenerated piece that is
written using Python. You must have python 2 installed, and you must have
xmlschema 0.9.9 installed. On Windows:
py -2 -m pip install xmlschema==0.9.9
On Linux/OSX:
python2 -m pip install xmlschema==0.9.9
Once that is installed, you should be able to run `go generate` to generate the
needed files.
Compilation
-----------
This package requires autogenerated pieces, which can be generated using the
'go generate' command.
go generate
go install
If you are using this package as a library, then you would need to run the
following from your application source code directory:
go get
go generate github.com/virtuald/ews-proxy