The status code from server is 200 but when i print response stream on logcat in eclipse i am getting undefined index message for method, event_id, device_id, device_token, session_id.
Notice: Undefined index: method in /mypath/file.php on line 17
INFO/Read from Server 200(493):
INFO/Read from Server 200(493): Notice: Undefined index: event_id in /mypath/file.php on line 18
INFO/Read from Server 200(493): ..............................................
..............................................................
What I am doing wrong ? Is this is because of server side php file or something wrong in java code?
Thanks
SCJP 5,SCWCD 5, RHCT
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
I don't see what this has to do with Android. Apparently the JSON that is being posted can't be handled by that PHP page. If this was my problem I'd create a Java desktop client application that gets this right before integrating it into an Android app; it's much easier to debug that way.
so the 'undefined index' problem is because of php page?
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
Not quite - it's because the PHP page is getting something other than what it can handle. Either the PHP code is incorrect, or the JSON is different than what the PHP code expects. We can't really speculate which one of these it is, but *you* can, since both the JSON and the PHP are under your control, and amenable to being changed by you.