On Thu, Mar 26, 2015 at 7:22 AM, aRkadeFR <[email protected]> wrote: > Do you have the stacktrace? Without it it's gonna be hard > to help you. > > My only guess is CORS (Cross-Origin Resource Sharing)? But > you should have the same error on local dev if you have similar > setup from your production.
There was no stacktrace. But I figured that this issue - I did not have a slash on the end of the URL. I added that, then instead of a 500 I got a 403 Forbidden, because it didn't like the CSRF token, but I am sending that. So I disabled CSRF and then I get a 400 bad request, again no stacktrace. ALLOWED_HOSTS is ['*'] so that's not the cause. > > > On 03/26/2015 02:04 AM, Larry Martell wrote: >> >> I have a webservice written in django and I want to call it from a non >> django app with ajax. Both apps run on the same host. When I call the >> webservice with curl it works fine, but when I call it with ajax from >> the other app I get a 500 internal server error. There are no errors >> in the web server log. DEBUG is True, and ALLOWED_HOSTS = ['*']. When >> I run the dev server and connect to that I get no errors, just the 500 >> error. I tried setting a breakpoint in the view, but it never makes it >> there. >> >> Anyone have any ideas as to why this is happening or how I could debug >> it further? >> > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/5513EBD8.2060809%40arkade.info. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CACwCsY5CpqVyO-MSaKOqcZ5Qnuuy0%2BVo4ruEkKuzUjAsaXBY3A%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

