When deeplinking to the application where the server in the URL has a different casing than the server in the database, it will not be recognized. This message is shown instead:
For example, if the url for the server stored in the database is https://example.server.com/store/WITSML,
This will not work:
http://localhost:3000/servers/https%3A%2F%2Fexample.server.com%2Fstore%2Fwitsml/wells
This however does work:
http://localhost:3000/servers/https%3A%2F%2Fexample.server.com%2Fstore%2FWITSML/wells
When deeplinking to the application where the server in the URL has a different casing than the server in the database, it will not be recognized. This message is shown instead:
For example, if the url for the server stored in the database is
https://example.server.com/store/WITSML
,This will not work:
http://localhost:3000/servers/https%3A%2F%2Fexample.server.com%2Fstore%2Fwitsml/wells
This however does work:
http://localhost:3000/servers/https%3A%2F%2Fexample.server.com%2Fstore%2FWITSML/wells
Notice the difference in
witsml
vsWITSML
.