EVE-SECURE / eveapiproxy

Automatically exported from code.google.com/p/eveapiproxy
0 stars 0 forks source link

/corp/Killlog.xml not supported #10

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Use EveHQ v1.14.2.1292
2. Configure EveHQ to use eveapiproxy
3. Use the View Killmail plugin in EveHQ and select the 'Get Corp
Killmails' option.

What is the expected output? What do you see instead?

Instead of EveHQ displaying the killmails, it goes into a loop displaying
an API error message 'A null XML document was returned'. When looking at my
appengine logs I see the following entry:

/corp/Killlog.xml.aspx 404 21ms 0cpu_ms 0kb gzip(gfe)
(Error 404, page not found)

What version of the product are you using? On what operating system?
SVN checkout 2010-02-22

Original issue reported on code.google.com by AndreFMi...@gmail.com on 22 Feb 2010 at 11:33

GoogleCodeExporter commented 9 years ago
I had this problem too but it was a case-sensitivity problem.  It has to be 
/corp/KillLog.xml.aspx (upper-case L) for it to work and EveHQ may have had it 
differently.  You could add another line in the array at the start of the 
main() method to work around this.  Just copy the existing KillLog entry but as 
"Killlog".  

I realize this issue is 2 years old, but others may be running into it still if 
they're using this proxy and EveHQ hasn't changed it on their end.

A better fix would be to make the check case-insensitive so it doesn't matter.  
There shouldn't be any collisions.

Original comment by gvi...@gmail.com on 7 Jun 2012 at 1:44