i upgraded to the latest version under windows 25.8.23.2701; however when i tested app is running in the port ; kindly assist.
Try change the port to 8080
thanks for the assitance. i got it
Is there any reason you require port to be static?
@lubos: Speaking for myself, although it is not a big issue: Yes, there is a reason.
I am using the api to enter transactions from my bank CSV download, including transfers. This is done with a Python script using api2. It needs the port number. Until a few days ago I used 55667, and that worked fine. Now I have to go through the motions to find the current port number, change it in the code, and then run the program.
As I said, not a showstopper, but since you’re asking, that’s why.
You can make your Python script launch server edition in desktop mode with specific port. This is what desktop edition itself is doing. You will find ManagerServer binary within desktop edition installation folder.
Then run this:
ManagerServer --urls=http://127.0.0.1:55667 --edition=desktop
That is very useful, thank you.
