Re: Django channels on IIS

2019-05-24 Thread Roger Gammans
On Thu, 2019-05-23 at 22:17 -0700, Daniel Butler wrote: > It looks like I found my key I had to install the application module > CGI then use this library to get everything to work! > https://pypi.org/project/wfastcgi/ Does that support websockets? IIS itself seems to ( https://docs.microsoft.c

having probem with using signal with channels in django

2019-05-24 Thread Aditya Bohra
Not able to send real time data to client when a post signal is generated -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.

Re: having probem with using signal with channels in django

2019-05-24 Thread prem yadav
Hi Aditya, Can you tell me below things, In which format you are passing the data? Are you trying with real IP address or local ip address? Thanks & Regards, Premkumar Ch. On Fri, May 24, 2019 at 3:01 PM Aditya Bohra wrote: > Not able to send real time data to client when a post signal is g

Re: having probem with using signal with channels in django

2019-05-24 Thread Aditya Bohra
Text format and in local ip -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to djang

Re: having probem with using signal with channels in django

2019-05-24 Thread Kasper Laudrup
On May 24, 2019 11:30:51 AM GMT+02:00, Aditya Bohra wrote: >Not able to send real time data to client when a post signal is >generated Hi Aditya, Try to change some code and see if that solves your problem. If not, try to change something else. Eventually, I'm sure that will solve your probem

Re: having probem with using signal with channels in django

2019-05-24 Thread prem yadav
which application are you using to send the data? If you are using postman you cannot run the local ip in postman, it wont work you have to run the application with ip address of your pc or system On Fri, May 24, 2019 at 8:52 PM Kasper Laudrup wrote: > On May 24, 2019 11:30:51 AM GMT+02:00, Adi

Re: having probem with using signal with channels in django

2019-05-24 Thread Aditya Bohra
can i use postman for websocket? I am trying to create a real time dashboard using channels -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr

Rails to Django Application Architecture Question

2019-05-24 Thread Steve R
Hi All - I am a new Django user, coming from RoR. I am having some difficulty wrapping my head around the whole 'apps' thing. Here is my specific use case, and I would appreciate feedback on if I am thinking about this correctly, and if not, how to think about it. I have a project management

Re: having probem with using signal with channels in django

2019-05-24 Thread Aditya Bohra
i am talking about channels(websocket) can they be connected to postman they main problem is that i need to create real time app like real time dashboard which update the data as soon as there is any crud event occurs in db -- You received this message because you are subscribed to the Google

Fine-tuning rich text displays

2019-05-24 Thread Tim Johnson
django 2.1.5 python 3.7.2 My django website is used to display articles in rich text format with embedded images created by copying and pasting from libreoffice documents. I have no major roadblock to complain about, but there are a number of details that I'd like to clean up. Things are coming

Create a real small business website with Django as soon as possible!!

2019-05-24 Thread Siavash Siavashi
I am new to Django and I want to create a personal business site using this platform. I should say that i have some experience working with python and html. In general in my business , customers on home page click on the type of services that they want.Next, they should register some information

Re: Rails to Django Application Architecture Question

2019-05-24 Thread Alex Heyden
What you're describing is how you'd lay out the models in an app. It sounds like you may have one Django app. If I were writing this in Django, I might try to spin the workflow and task logic off into its own application if I thought that the core ideas of users and projects might feed some other b

Re: Rails to Django Application Architecture Question

2019-05-24 Thread Steve R
Thank you! On Friday, May 24, 2019 at 3:08:33 PM UTC-5, Alex Heyden wrote: > > What you're describing is how you'd lay out the models in an app. It > sounds like you may have one Django app. If I were writing this in Django, > I might try to spin the workflow and task logic off into its own > a