Hi Community.
I'm having this weird behavior, while I'm working with screen in Service.
I'm getting the following error. Somebody have a clue why?
502 - Web server received an invalid response while acting as a gateway or proxy server.
I'm peeled it down to this: It can't for some reason handle spaces in a string when I'm doing the following. When I'm leaving out the space, there is no problem.
Script with include name 'test'
#setLanguageLevel 3;
Void Test()
{
printLine("Te st");
}
Screen config script:
#include "test";
Test();