You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, when I am starting my app, I am calling a set of different custom PHP services (1 - UserService, 2 - ConfigurationService, 3 - DatabasService). My first service call is "UserService.verifyLoggedIn", but when I am trying to access methods on the second and third service (for example "ConfigurationService.readInitSetupCompletion"), the app sends request to the first service used although with correct method names already ("UserService.readInitSetupCompletion").
I tried to debug it and found that problem is in RemoteDelegate.as near line 118. You have there TODO task to examine the function with concurrently calling other services. I don't know what exactly you try to do there, but for my needs was just good enough to add this line concurrentRemoteObject.source = service; just before the operation assignment.
If you are trying to protect the concurrent ROs from changing, I may suggest you can keep them in a collection and append new ROs if they weren't found in the collection when needed.
Hope that helped.
Good luck and thank you for creating and sharing this good time saving tool,
Jakub
The text was updated successfully, but these errors were encountered:
Hi, when I am starting my app, I am calling a set of different custom PHP services (1 - UserService, 2 - ConfigurationService, 3 - DatabasService). My first service call is "UserService.verifyLoggedIn", but when I am trying to access methods on the second and third service (for example "ConfigurationService.readInitSetupCompletion"), the app sends request to the first service used although with correct method names already ("UserService.readInitSetupCompletion").
I tried to debug it and found that problem is in RemoteDelegate.as near line 118. You have there TODO task to examine the function with concurrently calling other services. I don't know what exactly you try to do there, but for my needs was just good enough to add this line
concurrentRemoteObject.source = service;
just before the operation assignment.If you are trying to protect the concurrent ROs from changing, I may suggest you can keep them in a collection and append new ROs if they weren't found in the collection when needed.
Hope that helped.
Good luck and thank you for creating and sharing this good time saving tool,
Jakub
The text was updated successfully, but these errors were encountered: