Skip to content
/ j2xrp Public

A reverse proxy that converts a JSON request to an XML request

License

Notifications You must be signed in to change notification settings

flaccid/j2xrp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

j2xrp

A reverse proxy that converts a JSON request to an XML request.

An instance of this application is hosted on https://j2xrp.herokuapp.com/.

Installation

$ go get github.com/flaccid/j2xrp && go install github.com/flaccid/j2xrp

Usage

Example

Client request use with the hosted Heroku application:

curl -vvv \
  -H "Content-Type: application/json" \
  -X POST -d '{"username":"xyz","password":"xyz"}' \
    https://j2xrp.herokuapp.com/

Build

$ make

The resultant compiled binary is located at bin/github.com/flaccid/j2xrp.

Static Binary

To build a fully static 64-bit Linux binary (useful for docker):

$ CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -installsuffix cgo .

Docker

Build the static binary per above, then the docker image with:

$ docker build -t flaccid/j2xrp .

Example usage:

$ docker run -it -p 9090:9090 flaccid/j2xrp -s https api.my.xml

Run

See the usage options with j2xrp help. If you have installed the package, make sure "$GOPATH/bin" is within your $PATH.

A simple example:

$ j2xrp --scheme https wstunnel10-1.rightscale.com

You can also just run from the main entrypoint locally without building:

$ go run main.go

License and Authors

Copyright 2017, Chris Fordham

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

A reverse proxy that converts a JSON request to an XML request

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published