Re: how to consume .NET webservice

2009-05-14 Thread Дамјан Георгиевски
 OpenOfficeXML document format AKA ODF? ;)
 
 No...Office Open XML, which is used in Microsoft Office 2007 and which
 Microsoft rammed through the ISO:
 http://en.wikipedia.org/wiki/Office_Open_XML

Even worse, Microsoft Office 2007 doesn't even implement the ISO 
standard for Open XML.

-- 
дамјан ( http://softver.org.mk/damjan/ )

Our national drug is alcohol,
we tend to regard the use any other drug with special horror.
-- William S. Burroughs


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: how to consume .NET webservice

2009-05-12 Thread Diez B. Roggisch

bav schrieb:

question from a python newbie;

  how can i consume in python language, a .NET web service, passing
  a string array as parameter in some easy steps?


Try accessing the .NET-service using a .NET client, and capture the 
traffic (it speaks volumes that the apache axis project offers a 
HTTP-proxy for exactly that purposes, tcpmon). Then use an 
XML-templating language such as genshi  create the messages yourself.


Sounds awkward and complicated? It is. As I said in another post: the 
S stands for simple...


Diez
--
http://mail.python.org/mailman/listinfo/python-list


Re: how to consume .NET webservice

2009-05-12 Thread Diez B. Roggisch

namekuseijin schrieb:

Diez B. Roggisch wrote:

namekuseijin schrieb:

bav escreveu:

question from a python newbie;

  how can i consume in python language, a .NET web service, passing
  a string array as parameter in some easy steps?


Unless Microsoft extended the standard in any way, then it should be 
just as you consume any web service, I guess. ;)


Microsoft *created* the standard.. 


No:



Yes:

http://webservices.xml.com/pub/a/ws/2001/04/04/soap.html

MS created it. That it *became* a standard of the W3C later - well, they 
did that with OOXML as well...


Diez
--
http://mail.python.org/mailman/listinfo/python-list


Re: how to consume .NET webservice

2009-05-12 Thread Diez B. Roggisch

namekuseijin schrieb:
 Diez B. Roggisch wrote:
 namekuseijin schrieb:
 bav escreveu:
 question from a python newbie;

   how can i consume in python language, a .NET web service, passing
   a string array as parameter in some easy steps?

 Unless Microsoft extended the standard in any way, then it should 
be just as you consume any web service, I guess. ;)


 Microsoft *created* the standard..

 No:


Yes:

http://webservices.xml.com/pub/a/ws/2001/04/04/soap.html

MS created it. That it *became* a standard of the W3C later - well, they 
did that with OOXML as well...


Diez
--
http://mail.python.org/mailman/listinfo/python-list


Re: how to consume .NET webservice

2009-05-12 Thread namekuseijin
On May 12, 4:12 am, Diez B. Roggisch de...@nospam.web.de wrote:
 namekuseijin schrieb:
   Diez B. Roggisch wrote:
   namekuseijin schrieb:
   bav escreveu:
   question from a python newbie;
  
     how can i consume in python language, a .NET web service, passing
     a string array as parameter in some easy steps?
  
   Unless Microsoft extended the standard in any way, then it should
 be just as you consume any web service, I guess. ;)
  
   Microsoft *created* the standard..
  
   No:

 Yes:

 http://webservices.xml.com/pub/a/ws/2001/04/04/soap.html

You are right, sorry.

 MS created it. That it *became* a standard of the W3C later - well, they
 did that with OOXML as well...

OpenOfficeXML document format AKA ODF? ;)
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: how to consume .NET webservice

2009-05-12 Thread Mike Driscoll
On May 12, 12:54 pm, namekuseijin namekusei...@gmail.com wrote:
 On May 12, 4:12 am, Diez B. Roggisch de...@nospam.web.de wrote:



  namekuseijin schrieb:
    Diez B. Roggisch wrote:
    namekuseijin schrieb:
    bav escreveu:
    question from a python newbie;
   
      how can i consume in python language, a .NET web service, passing
      a string array as parameter in some easy steps?
   
    Unless Microsoft extended the standard in any way, then it should
  be just as you consume any web service, I guess. ;)
   
    Microsoft *created* the standard..
   
    No:

  Yes:

 http://webservices.xml.com/pub/a/ws/2001/04/04/soap.html

 You are right, sorry.

  MS created it. That it *became* a standard of the W3C later - well, they
  did that with OOXML as well...

 OpenOfficeXML document format AKA ODF? ;)

No...Office Open XML, which is used in Microsoft Office 2007 and which
Microsoft rammed through the ISO: http://en.wikipedia.org/wiki/Office_Open_XML

- Mike
-- 
http://mail.python.org/mailman/listinfo/python-list


how to consume .NET webservice

2009-05-11 Thread bav
question from a python newbie;

  how can i consume in python language, a .NET web service, passing
  a string array as parameter in some easy steps?

best regards 


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: how to consume .NET webservice

2009-05-11 Thread namekuseijin

bav escreveu:

question from a python newbie;

  how can i consume in python language, a .NET web service, passing
  a string array as parameter in some easy steps?


Unless Microsoft extended the standard in any way, then it should be 
just as you consume any web service, I guess. ;)


--
a game sig: http://tinyurl.com/d3rxz9
--
http://mail.python.org/mailman/listinfo/python-list


Re: how to consume .NET webservice

2009-05-11 Thread Mike Driscoll
On May 11, 3:09 pm, bav baudewijn.verme...@skynet.be wrote:
 question from a python newbie;

   how can i consume in python language, a .NET web service, passing
   a string array as parameter in some easy steps?

 best regards

You're being pretty vague here. Try using Google first...I got plenty
of hits with python .net web service. This one sounds good:

http://www.beardygeek.com/2009/01/how-to-call-a-net-webservice-using-python/

It sounds like you consume it much like you do with other web
services...find the API and use Python to access it or create a parser
of some sort.

Mike
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: how to consume .NET webservice

2009-05-11 Thread Diez B. Roggisch

namekuseijin schrieb:

bav escreveu:

question from a python newbie;

  how can i consume in python language, a .NET web service, passing
  a string array as parameter in some easy steps?


Unless Microsoft extended the standard in any way, then it should be 
just as you consume any web service, I guess. ;)


Microsoft *created* the standard.. .and how feasible it is to work with 
it, see this :


http://72.249.21.88/nonintersecting/?year=2006monthnum=11day=15name=the-s-stands-for-simplepage=

Diez
--
http://mail.python.org/mailman/listinfo/python-list


Re: how to consume .NET webservice

2009-05-11 Thread namekuseijin

Diez B. Roggisch wrote:

namekuseijin schrieb:

bav escreveu:

question from a python newbie;

  how can i consume in python language, a .NET web service, passing
  a string array as parameter in some easy steps?


Unless Microsoft extended the standard in any way, then it should be 
just as you consume any web service, I guess. ;)


Microsoft *created* the standard.. 


No:

http://en.wikipedia.org/wiki/Web_service

It's a W3C internet standard.  Microsoft is one of many software 
companies behind the Consortium.


Here's the relevant official standards:

http://www.w3.org/2002/ws/#documents
--
http://mail.python.org/mailman/listinfo/python-list