Hi Matthew,

Your webservice root thinks it is published at 'http://localhost:7000/
echo/', but your application is actually running on port 8080. Have a
look at the .wsdl file (at the end), it tells studs to contact the
7000 port, not 8080.

Try :
  echo = EchoService('http://localhost:8080/echo/')

Although I would suggest you give another name to your webservice
root, "ws" for example. With "echo" as a name, the rest-like url of
your echo function is /echo/echo. If your call your webservice root
"ws", it will be /ws/echo, which is cleaner in my opinion.

Regards,

Christophe

-- 
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en.

Reply via email to