Title: TRtcGateway with a custom GateFileName always fail Post by: ISIGest on October 21, 2016, 02:43:53 PM Hi, I'va a Gateway with a filename like this "/$GATE" but when I try to login with a client I got always a RequestNotAccepted.
Code: BAD REQUEST! 127.0.0.1 > "GET /GATE/$p" > Method "GET" not supported. If I replace GateFileName with "/" all work fine. Title: Re: TRtcGateway with a custom GateFileName always fail Post by: D.Tkalcec (RTC) on October 21, 2016, 05:28:12 PM Oops. The "GateFileName" property setter was messed up on Gateway components.
I've fixed it now. You can download the update from the "RTC SDK Downloads" area (RTC SDK v7.56). Make sure to use the exact same string for the GateFileName property on the Gateway and on GateClient components. The property is case sensitive, which means that /$GATE is NOT the same as /$gate or /$Gate. Also, keep in mind that GateFileName is ONLY a prefix for Gateway URIs. For example, if you set GateFileName:='/$GATE' and you want to check the status of your Gateway running on localhost, you have to enter http://localhost/$GATE$s in your Web Browser. Best Regards, Danijel Tkalcec |