Re: Python SUDS issue

2013-03-15 Thread VGNU Linux
Able to fix issue by including 'location' as parameter in client constructor arguments. client = Client(url=wsdlurl,doctor=schemadoctor, location=' https://46.51.221.138/PBExternalServices/v1/soap?wsdl') Thanks for helping me out. Regards, VGNU On Thu, Mar 7, 2013 at 10:07 AM, VGNU Linux wrote:

Re: Python SUDS issue

2013-03-06 Thread Dieter Maurer
VGNU Linux wrote at 2013-3-7 10:07 +0530: >Not aware what "import" here is and what it will do. XML-schema has an "import" facility to modularize schema descriptions. It is very similar to the "import" facilities you know from Python (and a lot of other languages) -- and has very similar purpose.

Re: Python SUDS issue

2013-03-06 Thread VGNU Linux
Hi Guys, Not aware what "import" here is and what it will do. But going through some google search result page found that there is something called doctor in suds. so tried changing code and it did fix the issue. suds.TypeNotFound: Type not found: '(GetAccountBalanceFaultResponse, http://www.paybac

Re: Python SUDS issue

2013-03-04 Thread dieter
VGNU Linux writes: > ... > Here is my code: > from suds.client import Client > wsdlurl = 'https://46.51.221.138/PBExternalServices/v1/soap?wsdl' > client = Client(wsdlurl) > print client > > And following is the error that occurs on trying to print client. > Traceback (most recent call last): > .

Re: Python SUDS issue

2013-03-04 Thread VGNU Linux
Hi, Typing URL in the browser displays document tree as a web page. Is it right or there is something wrong with it ? Regards, VGNU On Mon, Mar 4, 2013 at 6:45 PM, Joel Goldstick wrote: > > > > On Mon, Mar 4, 2013 at 5:37 AM, VGNU Linux wrote: > >> Hi Guys, >> I am pretty new to web services.

Re: Python SUDS issue

2013-03-04 Thread Joel Goldstick
On Mon, Mar 4, 2013 at 5:37 AM, VGNU Linux wrote: > Hi Guys, > I am pretty new to web services. > After some googling found that python suds is a suitable module to create > web service client. I am trying to create a client but its giving me an > error which is quite confusing for me. > > Here i

Python SUDS issue

2013-03-04 Thread VGNU Linux
Hi Guys, I am pretty new to web services. After some googling found that python suds is a suitable module to create web service client. I am trying to create a client but its giving me an error which is quite confusing for me. Here is my code: from suds.client import Client wsdlurl = 'https://46.5