5.0.6 - Changing Adapter domain and port configuration after deploy through configuration - for QA and Testing team in development process

StackOverflow https://stackoverflow.com/questions/17491703

Question

I have seen some questions about dynamic adapter configuration at run-time

how to pass domain,port number,username and password from user input to worklight http adapter

With a Worklight Adapter can I change the domain and port for a procedure at runtime?

but my question is about adapter configuration after deploy on WL server 5.0.6 from external - not at runtime from code.

Our scenario is that in our enterprise development and testing process requires the QA and Testing team to change the destination host and port for the adapters from mockup-backend to testing-backend to production-backend regularly during testing.

of course, this should happen through configuration and not re-compile and re-deploy.

Is there a way to change the domain and port values for adapters that are deployed on the WL server 5.0.6? Can this be changed in the WL database tables? Can this be changed in the WL server filesystem somewhere?

since we did not find any solution to that yet, the developer team is already thinking about using the Adapter only as dumb facade and implement all connection to the backend-services in Adapter-side Java using the Java URL and Connection classes. Then it would be easy to read a configuration file from the file system in Java to change the backend destination URL and ports in this file. It would even be easy to read the URL and port from a property in the worklight.properties file in JavaScript and pass it to Java to connect.

I would like to avoid having developing all backend connection code in Java. I would rather see the project use the actual Adapter connectivity features, but I am also not sure how to convince the team since it is quite easy with just 4 lines of code in Java. The advantage of using the Adapter connectivity that can not be configured is hard to see over a own Java implementation in Adapter-Java code.

Thank you.

Was it helpful?

Solution

Is there a way to change the domain and port values for adapters that are deployed on the WL server 5.0.6? Can this be changed in the WL database tables? Can this be changed in the WL server filesystem somewhere?

In Worklight 5.0.6, as written in the questions you've linked to in the question, an adapter's connectivity settings cannot be altered. They are stored in the packaged adapter and cannot be read from anywhere else during runtime nor after deployment.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top