sami nathan wrote at 2010-11-29 12:30 +0530: >---------- Forwarded message ---------- >From: sami nathan <[email protected]> >Date: Sun, Nov 28, 2010 at 12:11 AM >Subject: Re: WEB SERVICE IN DJANGO USING ZSI >To: [email protected] > > >To generate my server.py i am using following command but its shows error >wsdl2dispatch --extended --file=ZonedD;/location/FlyppSms.wsdl.wsdl >SyntaxError: unexpected character after line continuation character
Strange. The "SyntaxError" may come either from parsing the WSDL or its (potential) referenced documents, from the Python code or from the shell. Neither XML documents nor WSDL or its dependent standards define the concept of a continuation line. Python does define a line continuation character but, to my knowledge, does not check the character after a continuation character. In both cases above, you should get a traceback with details where in the code the "SyntaxError" was detected. Thus, I expect the message comes from the (command line) shell you are using. Apparently, some kind of Windows shell (I am happy that I do not need to know them). Check your shell documentation for "line continuation character" and verify whether your command contains one. -- Dieter _______________________________________________ Soap mailing list [email protected] http://mail.python.org/mailman/listinfo/soap
