Re: [web2py] XML Webservice

2012-10-01 Thread Derek
I think there should be some kind of encoding mentioned in the file, especially if you want to output valid XML. It assumes UTF-8 if an encoding isnt' provided, but since this is an international software, with translations, ISO-8859-1 would be a good default. It should be configurable though,

Re: [web2py] XML Webservice

2012-10-01 Thread Massimo Di Pierro
Done. In trunk. On Monday, 1 October 2012 13:47:50 UTC-5, Derek wrote: I think there should be some kind of encoding mentioned in the file, especially if you want to output valid XML. It assumes UTF-8 if an encoding isnt' provided, but since this is an international software, with

Re: [web2py] XML Webservice

2012-09-28 Thread Derek
https://web2py.com/books/default/chapter/29/10#HTML,-XML,-and-JSON I didn't see your response, sorry. Read this chapter. Notice the generic.xml code: {{ try: from gluon.serializers import xml response.write(xml(response._vars),escape=False) response.headers['Content-Type']='text/xml'

Re: [web2py] XML Webservice

2012-09-28 Thread Massimo Di Pierro
Should this line be there in the default generic.xml? On Friday, 28 September 2012 20:02:26 UTC-5, Derek wrote: https://web2py.com/books/default/chapter/29/10#HTML,-XML,-and-JSON I didn't see your response, sorry. Read this chapter. Notice the generic.xml code: {{ try: from

Re: [web2py] XML Webservice

2012-09-05 Thread hasan alnator
Dear Derek , What should i do then ?? Best Regards, On Wed, Sep 5, 2012 at 2:01 AM, Derek sp1d...@gmail.com wrote: It is XML, but it doesn't have a doctype. So, when it gets to this character: *’* it fails to validate against UTF-8. It should probably be this: charset=ISO-8859-1 On

Re: [web2py] XML Webservice

2012-09-05 Thread Derek
Create a template with xmlservice.xml and add the appropriate fields. On Wednesday, September 5, 2012 12:50:28 AM UTC-7, Hassan Alnatour wrote: Dear Derek , What should i do then ?? Best Regards, On Wed, Sep 5, 2012 at 2:01 AM, Derek sp1...@gmail.com javascript:wrote: It is XML, but

Re: [web2py] XML Webservice

2012-09-05 Thread hasan alnator
Dear derek, This is my first time useing web service .. Can you please give me a simple example of what you are talking about .. How to creat a template .. And how fo add fields .. Thank you a lot. On Sep 5, 2012 11:21 PM, Derek sp1d...@gmail.com wrote: Create a template with xmlservice.xml

Re: [web2py] XML Webservice

2012-09-04 Thread hasan alnator
Dear ALec , when i go to the link i gave you before , i can see some XML data but i dont understand what is the viewing problem you are talking about ? and why wold a table filed interrupter Viewing as XML as long as i am returning an object that has all the date ? Best Regards, On Sun, Sep 2,

Re: [web2py] XML Webservice

2012-09-04 Thread Derek
It is XML, but it doesn't have a doctype. So, when it gets to this character: *’* it fails to validate against UTF-8. It should probably be this: charset=ISO-8859-1 On Tuesday, September 4, 2012 2:15:11 AM UTC-7, Hassan Alnatour wrote: Dear ALec , when i go to the link i gave you

Re: [web2py] XML Webservice

2012-09-02 Thread Alec Taylor
Just add the @service.xml decorator to your controller. Tutorial: https://web2py.com/books/default/chapter/29/10 On Sun, Sep 2, 2012 at 5:57 PM, Hassan Alnatour halna...@gardeniatelco.comwrote: Dear ALL, I want to create a web service that returns an xml of the some recorders in a table ?

Re: [web2py] XML Webservice

2012-09-02 Thread hasan alnator
Dear Alec , Is the the right way : in the controller i added def call(): session.forget() return service() @service.run def xmlservice(): solutoins = db().select(db.solutions.ALL) return locals() then i get this : http://gardeniatelco.com/call/xml/xmlservice On Sun, Sep

Re: [web2py] XML Webservice

2012-09-02 Thread Alec Taylor
Yeah, that's right. Sounds like you'll need to do some preprocessing before posting it out though. Share your models.py and we'll work from there On Sun, Sep 2, 2012 at 6:22 PM, hasan alnator halna...@gardeniatelco.comwrote: Dear Alec , Is the the right way : in the controller i added

Re: [web2py] XML Webservice

2012-09-02 Thread hasan alnator
Dear Alec , What Do you mean with preprocessing ? this is my db.py : # -*- coding: utf-8 -*- # ## This scaffolding model makes your app work on Google App Engine too ## File is released under public domain and you can use

Re: [web2py] XML Webservice

2012-09-02 Thread Alec Taylor
Hmm, try lower-case 'description'. Otherwise not sure what's causing the XML viewer problem. Also nowadays JSON is prefered over XML, as it's much less verbose; thus has a much lower overhead On Sun, Sep 2, 2012 at 7:39 PM, hasan alnator halna...@gardeniatelco.com wrote: Dear Alec , What Do

Re: [web2py] XML Webservice

2012-09-02 Thread hasan alnator
Dear ALec , when i go to the link i gave you before , i can see some XML data but i dont understand what is the viewing problem you are talking about ? and why wold a table filed interrupter Viewing as XML as long as i am returning an object that has all the date ? Best Regards, On Sun, Sep