Skip to content

Latest commit

 

History

History
50 lines (29 loc) · 2.86 KB

CUSTOM_SERVERS.md

File metadata and controls

50 lines (29 loc) · 2.86 KB

Testing with custom OneBusAway and OpenTripPlanner servers

We support testing custom OneBusAway and OpenTripPlanner servers in OneBusAway Android. You can use this feature to try out a new test server that you've set up, but aren't ready to publicize in the Regions API yet.

Before doing anything, check out the system architecture diagrams to understand how OBA Android communicates with other servers. and what features they provide.

Also, note that while you can test your OBA server with a HTTP URL (see section below), you'll need to enable SSL for HTTPS before launching in the Regions API.

Configuration

In the app, go to "Settings->Advanced". You should see a screen like:

image

You can use the following directions to add a custom OneBusAway API server and/or a custom OpenTripPlanner server. After entering the server name and path, hit the back button twice to exit the Settings screen, and the app will re-initialize with the new URL(s).

Testing without SSL

We strongly encourage you to configure your server to use SSL for secure communication via HTTPS - this is required for launching as a new region in the Regions API due to requirements in Android and iOS.

If you want to test a server without SSL enabled, you'll need to build your own version of this app with an edited onebusaway-android/src/main/res/xml/network_security_config.xml file to add an exception for your server. This is an Android restriction for plain text HTTP communication - see https://developer.android.com/training/articles/security-config for details.

OneBusAway API Server

You can enter a server URL in a few different formats, including:

  • example.onebusaway.org
  • example.onebusaway.org/onebusaway-api-webapp (if you deployed to the default path)
  • https://example.onebusaway.org
  • https://example.onebusaway.org/onebusaway-api-webapp

OpenTripPlanner API Server

You can enter a server URL in a few different formats, including:

  • example.opentripplanner.org/otp
  • http://example.opentripplanner.org/otp

Note that if your server is using SSL/HTTPS, you currently need to enter the entire URL:

  • https://example.opentripplanner.org/otp

For older OpenTripPlanner servers (circa pre-v0.19.0) that don't include "/otp/routers/default" in the path, you can include the path up until the "plan" endpoint.

For example, if your server "plan" endpoint is at http://example.opentripplanner.org/tripplanner/plan?..., then you can enter the following as the custom OTP URL:

  • example.opentripplanner.org/tripplanner/