CIS410-f09
From MCIS Wiki
System Design and Analysis
Texts:
- Required: http://www.amazon.com/First-Design-Patterns-Elisabeth-Freeman/dp/0596007124
- Required: http://www.amazon.com/Java-SOA-Cookbook-Eben-Hewitt/dp/0596520727/
- Optional: http://www.amazon.com/Mythical-Man-Month-Software-Engineering-Anniversary/dp/0201835959
Course Organization:
Installing Python Suds:
For Monday, November 2
- Read Head First, Chapter 2
- Be ready to finish our discussion of Brooks chapter 3
Everyone will be required to create a Java program to show how one of the design patterns works. I'll have specific patterns assigned to each of you on Sunday.
Python
- Download the python-suds* and setuptools* directories from JP's shared/410.
- (add python to the path to make your life easier: System Properties -> Advanced -> Environment Variables and add the value ;C:\python(versionnumber) and ;C:\python(versionnumber)\Scripts)
- run python ez_setup.py in the setuptools directory
- run python setup.py build and python setup.py install in the same directory
- run python setup.py build and python setup.py install in the python-suds directory
- Hope that it worked
if you have downloaded the two folders to the desktop, the following commands should work when entered into the command prompt (run -> cmd)
cd desktop\setup* c:\python*\python.exe ez_setup c:\python*\python.exe setup.py build c:\python*\python.exe setup.py install cd ../python-suds* c:\python*\python.exe setup.py build c:\python*\python.exe setup.py install
References:
Python Documentation for web service libraries

