Re: Integrating Java(web servlets) into django as front end.

2018-03-26 Thread prince gosavi
Ok thanks for the suggestions I will try them all and see which fits my requirements and provide a feedback. Regards On Monday, March 26, 2018 at 12:03:28 AM UTC+5:30, prince gosavi wrote: > > Hi, > > I am working on a project where the framework used is django and most of > the frontend is don

Re: Integrating Java(web servlets) into django as front end.

2018-03-26 Thread zubair alam
One solution would be as following: 1. Let Java EE application consume the Rest API provided by Django (using DRF library which uses Django Models, its own serializers and viewsets). 2. You have to maintain a mapping of services and views provided by Java EE application with Djan

Re: Integrating Java(web servlets) into django as front end.

2018-03-26 Thread Jason
Or have the servelet call the django api endpoints and incorporate the data before rendering the html response -- 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 d

Re: Integrating Java(web servlets) into django as front end.

2018-03-25 Thread Cictani
Models from Django? That won't work. You should recreate the functionality of the servlet in Django. -- 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-use

Re: Integrating Java(web servlets) into django as front end.

2018-03-25 Thread prince gosavi
I want to use the data from the models and then display it using the html from servlet. On Monday, March 26, 2018 at 12:54:54 AM UTC+5:30, Cictani wrote: > > And they should be displayed as they are generated or do you need a > different design? > -- You received this message because you are s

Re: Integrating Java(web servlets) into django as front end.

2018-03-25 Thread Cictani
And they should be displayed as they are generated or do you need a different design? -- 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...@g

Re: Integrating Java(web servlets) into django as front end.

2018-03-25 Thread prince gosavi
They return html pages as ouput On Monday, March 26, 2018 at 12:42:59 AM UTC+5:30, Cictani wrote: > > What do these servlet output? Html, Json, xml? > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop recei

Re: Integrating Java(web servlets) into django as front end.

2018-03-25 Thread Cictani
What do these servlet output? Html, Json, xml? -- 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,

Integrating Java(web servlets) into django as front end.

2018-03-25 Thread prince gosavi
Hi, I am working on a project where the framework used is django and most of the frontend is done in java. I need a way to integrate both of them so that my system works. Converting java code to python is not an option.As I do not have time to start learning Java now. Any help is appreciated.