Soap web services with Soaplib in Django

2012-04-25 Thread Meenakshi Ithape
I used the Soap web services with Soaplib in Django, for that i take the help from below link http://djangosnippets.org/snippets/979/ When i run this code through command prompt it runs properly, but when i run it on browser it shows nothing, Can anybody please help me, what should i done wrong?

Re: Soap web services with Soaplib in Django

2012-04-26 Thread Meenakshi Ithape
what you're passing to the template or what > you have in your template. You should supply some actual code from your > view and your template. > > -m > > On 25 April 2012 15:01, Meenakshi Ithape wrote: > >> I used the Soap web services with Soaplib in Django,

Re: serving SOAP service with soaplib, consuming with suds

2012-04-26 Thread Meenakshi Ithape
I done this & successfully run the code. I want to ask that, can it possible to create client through view instead of command prompt? On Sunday, 24 October 2010 07:54:15 UTC+5:30, Scott Hebert wrote: > > Ricko - > > You may have already gotten your answer. I believe your problem is > related t

Soap webservice with soaplib & suds

2012-04-26 Thread Meenakshi Ithape
I use soap webservices with soaplib & create client from command prompt using suds, This working properly. Can anybody tell me how to create client through view instead of command prompt? How to pass oject to @rpc() or @soap() method of soaplib? How to display webservice response in template or b

Re: Soap webservice with soaplib & suds

2012-04-26 Thread Meenakshi Ithape
hu, Apr 26, 2012 at 8:02 AM, Meenakshi Ithape < > meenakshi.ith...@gmail.com> wrote: > >> I use soap webservices with soaplib & create client from command prompt >> using suds, >> This working properly. >> Can anybody tell me how to create client through vie

Re: Soap webservice with soaplib & suds

2012-04-27 Thread Meenakshi Ithape
hu, Apr 26, 2012 at 8:02 AM, Meenakshi Ithape wrote: > >> I use soap webservices with soaplib & create client from command prompt >> using suds, >> This working properly. >> Can anybody tell me how to create client through view instead of command >> prompt

Re: Soap web services with Soaplib in Django

2012-04-27 Thread Meenakshi Ithape
't advise you on that. > > Also, there is another great SOAP client for python you may want to look > at https://fedorahosted.org/suds/ if you're having issues with this one. > > Cheers, > > -m > > On 26 April 2012 19:26, Meenakshi Ithape wrote: > >> Tha

Re: Soap webservice with soaplib & suds

2012-04-27 Thread Meenakshi Ithape
I done this, thanks for the reply On Friday, 27 April 2012 12:31:50 UTC+5:30, Meenakshi Ithape wrote: > > Thanks for the reply, i already done this, & my problem is solved. > But now i have another issue, > how to send the object to the web_service method or how to chec

Re: Soap web services with Soaplib in Django

2012-04-27 Thread Meenakshi Ithape
I solve this issue On Friday, 27 April 2012 12:39:59 UTC+5:30, Meenakshi Ithape wrote: > > Thanks for the reply, > I already done this & i create client using suds,& also create the view > for that client, display message on the browser. > But now i have another issue,

Re: Import csv file in admin

2012-10-23 Thread Meenakshi Ithape
On Wednesday, 3 November 2010 09:34:38 UTC+5:30, Jorge wrote: > > Jirka & Everybody > > Back to basics is always a good advice. With your help and this guy: > http://www.beardygeek.com/2010/03/adding-views-to-the-django-admin/ > I can create a form to upload csv files and input their records int

Import data from csv file to database from django admin

2012-10-23 Thread Meenakshi Ithape
Hi! I tried to import the data from csv file to database. I refer below link https://groups.google.com/forum/#!msg/django-users/usjC-X9-p5E/94bf4tw3Ni8J I have create the models and view same like above link. I have create the "import" buttom on admin side by changing "app/change_list" html. On