[Tutor] Information

2012-12-14 Thread Umair Masood

How to create a server in python using SOAP? Please also tell the ports to be 
used. Kindly help me out.
Regards,Umair ___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] Information

2012-12-14 Thread Prasad, Ramit
Umair Masood wrote:
 
 How to create a server in python using SOAP? Please also tell the ports to be 
 used. Kindly help me out.
 
 Regards,
 Umair

The 4th link looks good:
http://lmgtfy.com/?q=How+to+create+a+server+in+python+using+SOAP%3F+#

First link:
http://lmgtfy.com/?q=What+ports+are+used+in+SOAP%3F


Kindly-helping-out,
~Ramit


This email is confidential and subject to important disclaimers and
conditions including on offers for the purchase or sale of
securities, accuracy and completeness of information, viruses,
confidentiality, legal privilege, and legal entity disclaimers,
available at http://www.jpmorgan.com/pages/disclosures/email.  
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


[Tutor] Information

2012-12-04 Thread Umair Masood

Hi all,
I would be working on a small project, which will include the SOAP library to 
use the web services using python. Also I want to know how to link XML to 
python. I mean suppose i am a client and i am accessing a server and suddenly 
it gives me an error which is being displayed on the website. I am working on 
something like this. I would code the client and server and when the client 
faces some problem it gets an error and uses the soap library to access the web 
services.  I hope everybody can understand, if not clear I will ask my 
professor again and tell you exactly what does he want.

Regards,
Umair
  ___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] Information

2012-12-04 Thread Alan Gauld

On 04/12/12 08:38, Umair Masood wrote:

Hi all,
I would be working on a small project, which will include the SOAP
library to use the web services using python.


This list is for teaching the basics of the Python language and standard 
library. There is no SOAP library in Python. You will need to be more 
specific about what you are trying to do and what libraries you are using.



link XML to python. I mean suppose i am a client and i am accessing a
server and suddenly it gives me an error which is being displayed on the
website. I am working on something like this. I would code the client
and server and when the client faces some problem it gets an error and
uses the soap library to access the web services.


There are libraries to call web services that you can download.
There are also libraries for parsing XML. Of the ones in the standard 
library etree is probably the best option.


If you can already program in Python you may find these useful as a starter:

http://www.diveintopython.net/soap_web_services/index.html

http://docs.python.org/3/library/xml.etree.elementtree.html#module-xml.etree.ElementTree

--
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/

___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


[Tutor] information

2007-02-14 Thread Konan Zimin Albert-Eric
Hi,i just subscribed to the python mailist. i know nothing about programming. i 
downloaded the python software but i need help to know what i'm able to do with 
it, to understand programming in general, and python in particular. So, i will 
deadly be waiting for an answer.
   
   

Thanks


-
 Nouveau : téléphonez moins cher avec Yahoo! Messenger ! Découvez les tarifs 
exceptionnels pour appeler la France et l'international.Téléchargez la version 
beta.___
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] information

2007-02-14 Thread Kent Johnson
Konan Zimin Albert-Eric wrote:
 Hi,i just subscribed to the python mailist. i know nothing about 
 programming. i downloaded the python software but i need help to know 
 what i'm able to do with it, to understand programming in general, and 
 python in particular. So, i will deadly be waiting for an answer.

Try reading one of the tutorials listed here:
http://wiki.python.org/moin/BeginnersGuide/NonProgrammers

Kent

___
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] information

2006-09-07 Thread Henry Dominik



Nice to have you around! This list is to help with 
any problem you may be having with the language and how to solve certain 
problems.

So, if you have specific questions, please do post 
them. And be warned, no one here would like to do any homework for 
you.

Enjoy you stay

Dom

  - Original Message - 
  From: 
  issa 
  karambal 
  To: tutor@python.org 
  Sent: Wednesday, September 06, 2006 10:47 
  AM
  Subject: [Tutor] information
  himy name is ISSA, from Chad, I am learning python, I want 
  to have on tutor to help me to understand this good language of 
  programmationplease, I am looking for the good answer from youregards 
  and thanks
  
  
  Yahoo! Messenger with Voice. Make 
  PC-to-Phone Calls to the US (and 30+ countries) for 2¢/min or less.
  
  

  ___Tutor maillist 
  - 
Tutor@python.orghttp://mail.python.org/mailman/listinfo/tutor
___
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] information needed to make a connection between computers

2005-12-14 Thread Tim Williams (gmail)
On 11/12/05, John Walton [EMAIL PROTECTED] wrote:
Hello again! I'm still working on that instant messenger
(for science fair), and I have been reading about networking in some
Java tutorials. In one part of it, it said to have a connection with
another computer, you need to know the IP name of the computer you want
to connect with. I don't know whether or not this is the same for
Python, but could someone please tell me what information of the
computer you want to connect with the you actually need for a
connection? In other words (or plain english), what information do I
need to get a connection with another computer (IP address, name, IP
name)? Also, could you tell me how to find it on a computer? Since I'll
be testing the instant messenger on the three computers in my house, I
just need to know how to find the information on the computer I'd
currently be on (not from any remote location). Thanks! :)

You need to know the hostname of the remote machine you are trying to
make a connection to. From this you can work out the
IP address of the machine and then connect to it
directly. You could work with just the IP address,
but these are liable to change, where as the hostname in theory won't.

 import socket
 socket.gethostbyname('www.yahoo.com')
'216.109.117.207'
 

If the machine is on your network, using its name (eg 'JohnW'  ) should give the same result

HTH :)


___
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] information needed to make a connection between computers

2005-12-12 Thread Pujo Aji
yes you can do that in python.But I recommend to use pyro.http://pyro.sourceforge.net/pujoOn 12/11/05, 
John Walton [EMAIL PROTECTED] wrote:
Hello again! I'm still working on that  instant messenger (for science fair), and I have been reading about  networking in some Java tutorials. In one part of it, it said to have a  connection with another computer, you need to know the IP name of the  computer you want to connect with. I don't know whether or not this is  the same for Python, but could someone please tell me what information  of the computer you want to connect with the you actually need for a  connection? In other words (or plain english), what information do I  need to get a connection with another computer (IP address, name, IP  name)? Also, could you tell me how to find it on a computer? Since I'll  be testing the instant messenger on the three computers in my house, I  just need to know how to find the information on the computer I'd  currently be on (not from any remote location). Thanks! :)
  -John  
	
		Yahoo! Shopping 
Find Great Deals on Holiday Gifts at 
Yahoo! Shopping 
___Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor
___
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] information needed to make a connection between computers

2005-12-12 Thread Kent Johnson
John Walton wrote:
 please tell me what information of the computer you want to connect with 
 the you actually need for a connection? In other words (or plain 
 english), what information do I need to get a connection with another 
 computer (IP address, name, IP name)? Also, could you tell me how to 
 find it on a computer?

You need the IP address or domain name. On Windows you can find out the 
IP address by typing the command
   ipconfig
in a command window.

Kent

___
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor


[Tutor] information needed to make a connection between computers

2005-12-11 Thread John Walton
Hello again! I'm still working on that  instant messenger (for science fair), and I have been reading about  networking in some Java tutorials. In one part of it, it said to have a  connection with another computer, you need to know the IP name of the  computer you want to connect with. I don't know whether or not this is  the same for Python, but could someone please tell me what information  of the computer you want to connect with the you actually need for a  connection? In other words (or plain english), what information do I  need to get a connection with another computer (IP address, name, IP  name)? Also, could you tell me how to find it on a computer? Since I'll  be testing the instant messenger on the three computers in my house, I  just need to know how to find the information on the computer I'd  currently be on (not from any remote location). Thanks! :)  -John  
	
		Yahoo! Shopping 
Find Great Deals on Holiday Gifts at Yahoo! Shopping ___
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] information needed to make a connection between computers

2005-12-11 Thread Danny Yoo

[Taking catalog-sig and python-list out of CC.]

John, please don't crosspost.  catalog-sig in particular is off-topic of
your question.  When we crosspost, we add noise to those lists and
frustrate members of the community.  It's generally a bad thing to do.
See:

http://catb.org/~esr/faqs/smart-questions.html

and:

http://www.gweep.ca/~edmonds/usenet/ml-etiquette.html

for more details about this.  Please make sure your replies are only going
to a single mailing list unless you really have overriding reasons for
crossposting.

In fact, you've been called on this behavior back in August:

http://mail.python.org/pipermail/catalog-sig/2005-August/692.html

Ian Bicking there was fairly civil, but you need to pick up on the clue:
he didn't give you much help besides saying, in effect: you're posting on
the wrong mailing list, and he and others on catalog-sig won't even bother
responding to you if you ignore his request for topicality.


It look like you didn't really hear what he said, so let me say it
explicitely: crossposting is considered inconsiderate behavior.  If you
continue to do so, people will respond in kind by ignoring your questions,
and that will be bad.  So avoid getting people annoyed: don't crosspost.
Thanks.



Anyway, to your question.


 I don't know whether or not this is the same for Python, but could
 someone please tell me what information of the computer you want to
 connect with the you actually need for a connection?


Computers on the internet all have an IP address in the form of dotted
numbers.  For example,

82.94.237.218

is an example of an IP address.


Many computers on the Internet can register to get a nice, mnemonic name,
like:

python.org



 In other words (or plain english), what information do I need to get a
 connection with another computer (IP address, name, IP name)? Also,
 could you tell me how to find it on a computer?

Either IP address or name should be sufficient.  For example, here's a
little snippet of code that shows how we might contact the web server on
Python.org.  (Note that in real life, we'd probably use the 'urllib'
library instead.):

##
 import socket
 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
 s.connect((python.org, 80))
 s.send(GET /\n)
6
 s.recv(20)
'!DOCTYPE html PUBLI'
##

Here, we're able to pass 'python.org', which the network will use to find
the Python.org webserver.  We also tell the system to talk to port 80; a
single computer has a bunch of numeric ports, each which is dedicated to a
job.  Port 80 is reserved for web serving.



Let me see if I can pull some resources for you... Ok, there's a tutorial
on low-level networking from Gordon McMillan's Socket Programming HOWTO:

http://www.amk.ca/python/howto/sockets

You may also want to look at high-level modules like Twisted, which
provide some extra support for network programming:

http://twistedmatrix.com/projects/twisted
http://twistedmatrix.com/projects/core/documentation/howto/index.html


If you are looking for more introductory information on network
programming, please feel free to ask, and I'm sure on of us can find
something useful for you.


Good luck.

___
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor