From Chad_Cooper at SWN.COM Mon Jul 7 22:18:46 2008 From: Chad_Cooper at SWN.COM (Chad Cooper) Date: Mon, 7 Jul 2008 15:18:46 -0500 Subject: [PyAR2] Using ZSI's wsdl2py to generate client stub code Message-ID: Hey all...has anyone had any experience using ZSI to create Python stubs for use with a web service?? The service I am attempting to connect to requires my credentials to be passed in thru the SOAP headers for authentication, and I cannot get that part to work. Basically, I cant get the SOAP headers constructed properly. Any ideas? Thanks chad Notice: This e-mail may contain privileged and/or confidential information and is intended only for the addressee. If you are not the addressee or the person responsible for delivering it to the addressee, you may not copy or distribute this communication to anyone else. If you received this communication in error, please notify us immediately by telephone or return e-mail and promptly delete the original message from your system. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Chad_Cooper at SWN.COM Tue Jul 8 17:26:29 2008 From: Chad_Cooper at SWN.COM (Chad Cooper) Date: Tue, 8 Jul 2008 10:26:29 -0500 Subject: [PyAR2] Using ZSI's wsdl2py to generate client stub code In-Reply-To: <4ddeef130807080813y7383d1a9o2a392d891a0c1618@mail.gmail.com> References: <4ddeef130807080813y7383d1a9o2a392d891a0c1618@mail.gmail.com> Message-ID: Thanks, I'll give that a shot. chad -----Original Message----- From: Derek Horton [mailto:derek.k.horton at gmail.com] Sent: Tuesday, July 08, 2008 10:14 AM To: Chad Cooper Subject: Re: [PyAR2] Using ZSI's wsdl2py to generate client stub code I've done that, buts it been a while. Here's what I have in my notes: from Xyz_services import * from ZSI.auth import AUTH ... ... proxy = XyzSOAP(url, auth=(AUTH.httpbasic, username, password)) Also, for debugging you can also do this: proxy = XyzSOAP(url, auth=(AUTH.httpbasic, username, password), tracefile=sys.stderr) That should send some debug info to standard error. Sorry, if you've already made it that far. Hope that helps! --Derek On Mon, Jul 7, 2008 at 3:18 PM, Chad Cooper wrote: > Hey all...has anyone had any experience using ZSI to create Python > stubs for use with a web service?? The service I am attempting to > connect to requires my credentials to be passed in thru the SOAP > headers for authentication, and I cannot get that part to work. > Basically, I cant get the SOAP headers constructed properly. Any ideas? > > Thanks > > chad > > Notice: This e-mail may contain privileged and/or confidential > information and is intended only for the addressee. If you are not the > addressee or the person responsible for delivering it to the > addressee, you may not copy or distribute this communication to anyone > else. If you received this communication in error, please notify us > immediately by telephone or return e-mail and promptly delete the original message from your system. > > _______________________________________________ > PyAR2 mailing list > PyAR2 at python.org > http://mail.python.org/mailman/listinfo/pyar2 > > Notice: This e-mail may contain privileged and/or confidential information and is intended only for the addressee. If you are not the addressee or the person responsible for delivering it to the addressee, you may not copy or distribute this communication to anyone else. If you received this communication in error, please notify us immediately by telephone or return e-mail and promptly delete the original message from your system. From Chad_Cooper at SWN.COM Thu Jul 24 15:09:02 2008 From: Chad_Cooper at SWN.COM (Chad Cooper) Date: Thu, 24 Jul 2008 08:09:02 -0500 Subject: [PyAR2] FW: [dfwPython] 4th Saturday DFW Pythoneers Meeting Topic Message-ID: This is from the DFW Pythoneers listserv....maybe we could get Jeff Rush to come to PyArkansas to teach an intro class(?) At the least, this could be a good outline for an intro class. chad -----Original Message----- From: dfwpython-bounces at dfwpython.org [mailto:dfwpython-bounces at dfwpython.org] On Behalf Of Jeff Rush Sent: Thursday, July 24, 2008 4:33 AM To: dfwpython; members at dfwuug.org; General Announcement List (Low-Traffic) Subject: [dfwPython] 4th Saturday DFW Pythoneers Meeting Topic This coming Saturday is the 4th Saturday for the DFW Pythoneers. As usual we meet at Nerdbooks.com from 2pm until 5pm. However, on this Saturday I'll be there at 1pm to teach a "Beginners to Python" class for those who have been wanting to get into Python but haven't had the time to do so. Bring a laptop so you can follow along on the exercises. And then at 2pm we'll move into more advanced Python learning, independent of the problem domain of web programming or databases. This will be a first use of this material so it will be improved with feedback and the presentation given again at a near-future date if you cannot make it this time. Some material we'll cover: The concepts on which Python is based, why is it easy to learn yet powerful. How Python is scalable in terms of learnability, source complexity, runtime performance, developer collaboration, design documentation and programming paradigms. When at the prompt, where are you really and how did you get there? Names, values and namespaces: the foundation of the language. Organizing source code, from simple projects to complex ones. Callables, comprehensions, iterables and generators Object orientation and duck typing Sequence slicing, multilevel unpacking, packing and matching Uses of early binding to simplify and speed up your code Cool uses of functional-style programming to clean up your code Introspection: what is it and why would I want to use it? That would be a lot of topics to cover in-depth and I'm not going to, in-depth that is. These are concepts that are part of the vocabulary of a Python programmer. I'll explain them and provide examples of their usage. We'll spend time at the Python prompt trying out actual code. The 1pm to 2pm timeslot is definitely beginner friendly, starting with -no- assumed knowledge of Python at all, although you should know how to program in some language, to get the most benefit. Hope to see you there! -Jeff _______________________________________________ dfwPython mailing list dfwPython at dfwpython.org http://dfwpython.org/mailman/listinfo/dfwpython Notice: This e-mail may contain privileged and/or confidential information and is intended only for the addressee. If you are not the addressee or the person responsible for delivering it to the addressee, you may not copy or distribute this communication to anyone else. If you received this communication in error, please notify us immediately by telephone or return e-mail and promptly delete the original message from your system. From gslindstrom at gmail.com Thu Jul 24 17:54:46 2008 From: gslindstrom at gmail.com (Greg Lindstrom) Date: Thu, 24 Jul 2008 10:54:46 -0500 Subject: [PyAR2] My First Website Message-ID: Hey all, I just got my first Django website up and running on WebFaction. It's just to mess around with, though after I get things filled out better Sonshine (sic) Academy is going to open an account and put it up "for real". We are starting very simple, but I hope to add to it over the next few months. Check it out at gslindstrom.webfactional.com --greg From Chad_Cooper at SWN.COM Thu Jul 24 18:58:20 2008 From: Chad_Cooper at SWN.COM (Chad Cooper) Date: Thu, 24 Jul 2008 11:58:20 -0500 Subject: [PyAR2] My First Website In-Reply-To: References: Message-ID: How long have you been with Webfaction? I've been with them for about 3-4 months now and really like it. the control panel is kinda lame, but the performance of the servers is blazing fast compared to other shared hosts I've been with in the past. I want to set up something with Django to play with, but just can't find the time. chad -----Original Message----- From: pyar2-bounces at python.org [mailto:pyar2-bounces at python.org] On Behalf Of Greg Lindstrom Sent: Thursday, July 24, 2008 10:55 AM To: pyar2 at python.org Subject: [PyAR2] My First Website Hey all, I just got my first Django website up and running on WebFaction. It's just to mess around with, though after I get things filled out better Sonshine (sic) Academy is going to open an account and put it up "for real". We are starting very simple, but I hope to add to it over the next few months. Check it out at gslindstrom.webfactional.com --greg _______________________________________________ PyAR2 mailing list PyAR2 at python.org http://mail.python.org/mailman/listinfo/pyar2 Notice: This e-mail may contain privileged and/or confidential information and is intended only for the addressee. If you are not the addressee or the person responsible for delivering it to the addressee, you may not copy or distribute this communication to anyone else. If you received this communication in error, please notify us immediately by telephone or return e-mail and promptly delete the original message from your system. From gslindstrom at gmail.com Tue Jul 29 20:19:52 2008 From: gslindstrom at gmail.com (Greg Lindstrom) Date: Tue, 29 Jul 2008 13:19:52 -0500 Subject: [PyAR2] Python at OSCON Message-ID: I received a note concerning OCSON (the BIG open source convention held in Portland this year) and the second item was the following: =================== Python is coming on strong. Python's stability and readability are legendary. Now it's gone mainstream. WXPython in Action got plenty of looks, and several applauded the Python-based approach of Hello World! Computer Programming for Kids. One booth raffle winner picked IronPython in Action, and Google App Engine looks promising. What did you ask? "What are you doing for Python 3000?" Our answer? Watch this space... =================== From marissa at imo.im Thu Jul 31 19:37:21 2008 From: marissa at imo.im (Marissa Huang) Date: Thu, 31 Jul 2008 10:37:21 -0700 Subject: [PyAR2] Software Engineer/Engineering Intern for imo.im, Palo Alto, CA Message-ID: Imo strives to develop amazing products that people will love. Located in Palo Alto, CA, we are a startup founded (and funded) by one of the first ten employees at Google and advised by several early Googlers. We currently have 4 engineers on staff, but we are looking to increase the size of our team to about 20-30 this year. We are working on a variety of projects that are enhancements to our current instant messaging application, as well as other non-IM products (not listed on our site) that will help people communicate and collaborate more easily. We have tons of ideas, and we are looking for outstanding software engineers who are interested in making products for our users all around the world. Our ideal candidate would not only have a strong background in not only algorithms and design, but also coding; this is very important for our company as our engineers are in charge of all aspects of a project from start to finish. We also offer competitive stipends for internships year-round. Requirements: * BS/MS/PhD in computer science (or the equivalent). * Strong grasp of data structures and algorithms. Extra credit: * Experience building and designing scalable distributed systems. * Ability to design and implement systems in Python. * Extensive experience writing networking code in C/C++. * Thorough understanding of TCP/IP and network programming. * Adept at hacking open source software. * Experience with HTML, CSS, Javascript, MySQL a plus. * Know Linux better than you can sing Britney lyrics. Compensation: The usual ... competitive salary, stock, snacks, gym membership, health insurance, $25,000 starting bonus, and a housing stipend for living in close proximity to our office. From marissa at imo.im Thu Jul 31 19:39:06 2008 From: marissa at imo.im (Marissa Huang) Date: Thu, 31 Jul 2008 10:39:06 -0700 Subject: [PyAR2] Software Engineer/Engineering Intern for imo.im, Palo Alto, CA In-Reply-To: References: Message-ID: Imo strives to develop amazing products that people will love. Located in Palo Alto, CA, we are a startup founded (and funded) by one of the first ten employees at Google and advised by several early Googlers. We currently have 4 engineers on staff, but we are looking to increase the size of our team to about 20-30 this year. We are working on a variety of projects that are enhancements to our current instant messaging application, as well as other non-IM products (not listed on our site) that will help people communicate and collaborate more easily. We have tons of ideas, and we are looking for outstanding software engineers who are interested in making products for our users all around the world. Our ideal candidate would not only have a strong background in not only algorithms and design, but also coding; this is very important for our company as our engineers are in charge of all aspects of a project from start to finish. We also offer competitive stipends for internships year-round. Requirements: * BS/MS/PhD in computer science (or the equivalent). * Strong grasp of data structures and algorithms. Extra credit: * Experience building and designing scalable distributed systems. * Ability to design and implement systems in Python. * Extensive experience writing networking code in C/C++. * Thorough understanding of TCP/IP and network programming. * Adept at hacking open source software. * Experience with HTML, CSS, Javascript, MySQL a plus. * Know Linux better than you can sing Britney lyrics. Compensation: The usual ... competitive salary, stock, snacks, gym membership, health insurance, $25,000 starting bonus, and a housing stipend for living in close proximity to our office. Please email marissa at imo.im if you are interested. Thanks!