Hello,
I'm calling, from my computer, the Configuration API of a remote KEPServerEx instance (version 6.16, running in a host).
My .opf file is stored in the local computer.
I wonder if there is a way to use load this file in the KEPServer instance.
I feel like the file needs to be stored locally on the server when using the /config/v1/project/services/ProjectLoad endpoint.
Thank you
Solved! Go to Solution.
You're correct that the .opf file needs to be stored locally on the server when using the /config/v1/project/services/ProjectLoad endpoint. To load your .opf file into the remote KEPServerEx instance, follow these steps:
Use the Configuration API: Once the file is on the server, you can call the /config/v1/project/services/ProjectLoad endpoint with the appropriate parameters to load the project file. The endpoint will require the path to the .opf file on the server.
Here's an example of how you might structure the API call:
{
"ProjectFilePath": "C:\\path\\to\\your\\project.opf"
}
Make sure to replace "C:\\path\\to\\your\\project.opf" with the actual path to your .opf file on the server.
If you encounter any issues or need further assistance, feel free to ask!
You're correct that the .opf file needs to be stored locally on the server when using the /config/v1/project/services/ProjectLoad endpoint. To load your .opf file into the remote KEPServerEx instance, follow these steps:
Use the Configuration API: Once the file is on the server, you can call the /config/v1/project/services/ProjectLoad endpoint with the appropriate parameters to load the project file. The endpoint will require the path to the .opf file on the server.
Here's an example of how you might structure the API call:
{
"ProjectFilePath": "C:\\path\\to\\your\\project.opf"
}
Make sure to replace "C:\\path\\to\\your\\project.opf" with the actual path to your .opf file on the server.
If you encounter any issues or need further assistance, feel free to ask!