[Tutor] Question regarding xml.dom.minidom: How do you send an unsignedByte in an wsdl request

2011-07-22 Thread Garry Bettle
Howdy all, Hope this message finds everyone well - roll on the weekend! I'm trying some calls to an wsdl API I've subscribed to. But I'm struggling to know what they want when sending an unsignedByte in a request. I'm using xml.dom.minidom so to start with I have: from xml.dom.minidom import Do

Re: [Tutor] Question regarding xml.dom.minidom: How do you send an unsignedByte in an wsdl request

2011-07-22 Thread Emile van Sebille
You'll likely get more traction on this at http://mail.python.org/mailman/listinfo/xml-sig Emile On 7/22/2011 11:18 AM Garry Bettle said... Howdy all, Hope this message finds everyone well - roll on the weekend! I'm trying some calls to an wsdl API I've subscribed to. But I'm struggling

Re: [Tutor] Question regarding xml.dom.minidom: How do you send an unsignedByte in an wsdl request

2011-07-22 Thread James Reynolds
On Fri, Jul 22, 2011 at 2:18 PM, Garry Bettle wrote: > Howdy all, > > Hope this message finds everyone well - roll on the weekend! > > I'm trying some calls to an wsdl API I've subscribed to. > > But I'm struggling to know what they want when sending an unsignedByte in a > request. > > I'm using x

Re: [Tutor] Question regarding xml.dom.minidom: How do you send an unsignedByte in an wsdl request

2011-07-22 Thread Stefan Behnel
Emile van Sebille, 22.07.2011 20:59: You'll likely get more traction on this at http://mail.python.org/mailman/listinfo/xml-sig Unlikely. Stefan ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.pytho

Re: [Tutor] Question regarding xml.dom.minidom: How do you send an unsignedByte in an wsdl request

2011-07-22 Thread Stefan Behnel
Garry Bettle, 22.07.2011 20:18: I'm trying some calls to an wsdl API I've subscribed to. You might find this interesting: http://effbot.org/zone/element-soap.htm But I'm struggling to know what they want when sending an unsignedByte in a request. That's just a number, plain old-fashioned

Re: [Tutor] Question regarding xml.dom.minidom: How do you send an unsignedByte in an wsdl request

2011-07-22 Thread Emile van Sebille
On 7/22/2011 12:09 PM Stefan Behnel said... Emile van Sebille, 22.07.2011 20:59: You'll likely get more traction on this at http://mail.python.org/mailman/listinfo/xml-sig Unlikely. Wow. Agreed. Five unanswered posts this year. Emile ___ Tutor

Re: [Tutor] OT: Drag and Drop GUI IDE ideas

2011-07-22 Thread Alan Gauld
Rance Hall wrote: We want the students to develop a small app in the process, It could be a firefox extension, mobile phone app, or any other type simple structure. ou can develop very smpleAndoid apps witout any coding using a Googletoolit. I've only read an aticle aboutit so an't sy how cl

[Tutor] Don't understand this class/constructor call syntax

2011-07-22 Thread dave
Hello, I'm trying to work on GNU Radio and having trouble understanding some of the Python code. I have a C/C++ coding background. I'm looking at the ieee802.15.4 code found on CGRAN. It's about 4 years old and runs but doesn't function anymore so I'm trying to fully understand it to fix it. I

Re: [Tutor] Don't understand this class/constructor call syntax

2011-07-22 Thread Dave Angel
On 07/22/2011 06:40 PM, dave wrote: Hello, I'm trying to work on GNU Radio and having trouble understanding some of the Python code. I have a C/C++ coding background. I'm looking at the ieee802.15.4 code found on CGRAN. It's about 4 years old and runs but doesn't function anymore so I'm tryin

Re: [Tutor] OT: Drag and Drop GUI IDE ideas

2011-07-22 Thread Walter Prins
Hi Rance, On 21 July 2011 23:17, Rance Hall wrote: > The MIS department at UNK is looking to create a course in business > app development. > > The course will be about the app life cycle and discuss problem > statement, testing, maintenance and disposal/decommissioning, etc. > > We want the stu

Re: [Tutor] Don't understand this class/constructor call syntax

2011-07-22 Thread Steven D'Aprano
dave wrote: class transmit_path(gr.top_block) [...] self.packet_transmitter = ieee802_15_4_pkt.ieee802_15_4_mod_pkts(self, spb=self._spb, msgq_limit=2) This calls the ieee802_15_4_mod_pkts initializer (not a constructor -- see below) with one posit