API Support Forum
User Profile

Viewing User Profile for: LLuigi


About

Nov 01, 2016 01:51 PM

Nov 07, 2016 09:27 AM

Nov 07, 2016 09:30 AM

c#



Post Statistics
LLuigi has contributed to 2 posts out of 5593 total posts (0.04%) in 2740 days (0.00 posts per day).

20 most recent posts:

API Support » Connection problem Nov 07, 2016 @ 09:27 AM (Total replies: 3)

Thanks for the answer,
to move to the production server and to have a valid UUID I have to pay?

API Support » Connection problem Nov 05, 2016 @ 12:07 PM (Total replies: 3)

Hi, I made a .net application (vb.net) that has always worked, with the latest update stopped working
my old source code to connect was
Dim WithEvents cli As New OEC.API.OECClient
Dim WithEvents OECClient As New OEC.API.OECClient
cli = OEC.API.OECClient.CreateInstance(True)
OECClient = OEC.API.OECClient.CreateInstance(True)

The new code is:
OECClient = New OEC.API.OECClient()
OECClient.UUID = "6C59886E-...."
OECClient.Connect("api.gainfutures.com", 9200, "xx", "xx", True)

but the code call always the OECClient_OnLoginFailed event... with reason: OEC.Data.FailReason.SoftwareNotPermitted

why?