>> def hello():
>> return "Hello World"
>>
>> server = SOAP.SOAPServer(("localhost", 23000))
>> server.registerFunction(hello)
>> server.serve_forever()
>
> Have you tried running server.py? There's a glaring error in it. (Hint: SOAP
> != SOAPpy)
Actually, there's a much more glaring er
> *#server.py*
> import SOAPpy
>
>
> def hello():
> return "Hello World"
>
> server = SOAP.SOAPServer(("localhost", 23000))
> server.registerFunction(hello)
> server.serve_forever()
Hi Asrarahmed,
I also want to reiterate what Luke said: it does get a little irritating
if we see the same
Asrarahmed Kadri wrote:
> Hi,
Asrarahmed:
You posted this exact question only 4 hours ago.
Reposting questions this quickly is an abuse of the mailing list, as far
as I'm concerned.
If you don't wait at _minimum_ a full day, preferably at least 2, for an
answer, it just irritates
people and makes
* Asrarahmed Kadri <[EMAIL PROTECTED]> [061108 19:51]:
> Hi,
>
> I have successfully installed the SOAPpy module. The version is 0.11.6
>
> I am trying to run simple test program for server and cliet. The script for
> server is executing without any error; but the client script is giving me
Well
Hi,
I have successfully installed the SOAPpy module. The version is 0.11.6
I am trying to run simple test program for server and cliet. The script for server is executing without any error; but the client script is giving me the error as below.
TRACEBACK:
C:\project stuff-programs>python cli