Hi Chris, I'm trying to connect to the server using same machine but different user. I tried using both browser and cURL through terminal. Here are the outputs:
Client (username - arpit): curl http://localhost:5000 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <title>404 Not Found</title> <h1>Not Found</h1> <p>The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.</p> arpit@ubuntu:~$ curl http://localhost:5000/Patient <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <title>404 Not Found</title> <h1>Not Found</h1> <p>The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.</p> Server (username - gnuhealth): python run_server.py No handlers could be found for logger "party" WARNING:tornado.access:404 GET / (127.0.0.1) 21.02ms WARNING:tornado.access:404 GET /Patient (127.0.0.1) 3.08ms Thanks, Arpit On Wed, Mar 25, 2015 at 1:11 PM, Chris <[email protected]> wrote: > Hiya! > > > I installed healh_nursing module and now I'm able to run the server > > (following exactly as told in the documentation) but I still get the > > following line : > > *No handlers could be found for logger "party"* > > Yay! It seems to be running now. Mostly ignore that line - it just means > that there is no logging functionality attached, which is fine. > > > Now I'm able to send request to FHIR but for each request I get a 404 > > (requests are showing up in the server log also). I have data in the > > database and tryton client is still working fine. > > I need more info about the 404s. What endpoints? What does > http://localhost:5000 return? What urls? The standard requires 404s in > some cases - for example, for an unknown resource. > > > I'm running the server through virtualenv. > > Good! > > -C > >
