@Shabeershah2002 Yes I succeeded.Issue is related to byte array.
You have to reverse the array which you receive but field wise.i.e
byte[48] :
[0]: 0 [1]: 1 [2]: 0 [3]: 44 [4]: 7 [5]: 162 [6]: 186
[7]: 4 [8]: 0 [9]: 2 [10]: 86 [11]: 182 [12]: 0…
@Kailash I already tried the above mention input but after using this output is different.
1: System.BitConverter.ToInt16(e.TextB, 1) o/p : 1
2: System.BitConverter.ToInt16(e.TextB, 0) o/p : 256
3.System.BitConverter.ToInt16(e.TextB, 3) o/p : 183…
@Kailash I am able to connect and receive data but data received is not getting parsed properly.
Data Received is byte array of 48 length and i am sending request for full mode
Message format for subscription :
1.message = {"a": "subscribe", "v":…
@vivek no still not receiving data can u check my message format is it ok.
and i have only subscribe for NFO so can i receive data of NSE Reliance.
1: string message = @{'a': 'subscribe', v: [738561]};
ws.Send(JsonConvert.SerializeObject(message)…