How get data from Angular to Core JSP?










-1















I got null value in JSP when I try to send data from angular service
export class AllService {



 url: any;
cpHeaders = new Headers( 'Content-Type': 'application/json' );
options = new RequestOptions( headers: this.cpHeaders );

constructor(private _http: Http)

register(data)
console.log(data);
return
this._http.post('http://localhost:8080/client_api/register.jsp',data)
.pipe(map((res: Response)=> return res.json()));



This is my angular service, I have to read data in jsp page



<%@ page import ="java.sql.*" %>
<%@ page import ="javax.sql.*" %>
<%
String name=request.getParameter("name");
String email=request.getParameter("email");
String mobile=request.getParameter("mobile");
String password=request.getParameter("password");
String address=request.getParameter("address");
out.println(name);
out.println(email);
out.println(mobile);
out.println(password);
out.println(address);
%>


It returns null value










share|improve this question
























  • You have you printed the data before sending it to JSP, Does it has all the values or the value you are expecting?

    – mallikarjun
    Nov 15 '18 at 12:26












  • why on earth a JSP? This is way easier with say Resteasy or the like. Have you checked parameters passed to JSP?

    – Gyro Gearless
    Nov 15 '18 at 12:32











  • why are you using the servlet tag if you are not using any servlets?

    – Jonathan Laliberte
    Nov 15 '18 at 12:34











  • i check values before pass to jsp i got expected values in request header as parameters

    – Gopal Singh Thakur
    Nov 15 '18 at 12:43















-1















I got null value in JSP when I try to send data from angular service
export class AllService {



 url: any;
cpHeaders = new Headers( 'Content-Type': 'application/json' );
options = new RequestOptions( headers: this.cpHeaders );

constructor(private _http: Http)

register(data)
console.log(data);
return
this._http.post('http://localhost:8080/client_api/register.jsp',data)
.pipe(map((res: Response)=> return res.json()));



This is my angular service, I have to read data in jsp page



<%@ page import ="java.sql.*" %>
<%@ page import ="javax.sql.*" %>
<%
String name=request.getParameter("name");
String email=request.getParameter("email");
String mobile=request.getParameter("mobile");
String password=request.getParameter("password");
String address=request.getParameter("address");
out.println(name);
out.println(email);
out.println(mobile);
out.println(password);
out.println(address);
%>


It returns null value










share|improve this question
























  • You have you printed the data before sending it to JSP, Does it has all the values or the value you are expecting?

    – mallikarjun
    Nov 15 '18 at 12:26












  • why on earth a JSP? This is way easier with say Resteasy or the like. Have you checked parameters passed to JSP?

    – Gyro Gearless
    Nov 15 '18 at 12:32











  • why are you using the servlet tag if you are not using any servlets?

    – Jonathan Laliberte
    Nov 15 '18 at 12:34











  • i check values before pass to jsp i got expected values in request header as parameters

    – Gopal Singh Thakur
    Nov 15 '18 at 12:43













-1












-1








-1








I got null value in JSP when I try to send data from angular service
export class AllService {



 url: any;
cpHeaders = new Headers( 'Content-Type': 'application/json' );
options = new RequestOptions( headers: this.cpHeaders );

constructor(private _http: Http)

register(data)
console.log(data);
return
this._http.post('http://localhost:8080/client_api/register.jsp',data)
.pipe(map((res: Response)=> return res.json()));



This is my angular service, I have to read data in jsp page



<%@ page import ="java.sql.*" %>
<%@ page import ="javax.sql.*" %>
<%
String name=request.getParameter("name");
String email=request.getParameter("email");
String mobile=request.getParameter("mobile");
String password=request.getParameter("password");
String address=request.getParameter("address");
out.println(name);
out.println(email);
out.println(mobile);
out.println(password);
out.println(address);
%>


It returns null value










share|improve this question
















I got null value in JSP when I try to send data from angular service
export class AllService {



 url: any;
cpHeaders = new Headers( 'Content-Type': 'application/json' );
options = new RequestOptions( headers: this.cpHeaders );

constructor(private _http: Http)

register(data)
console.log(data);
return
this._http.post('http://localhost:8080/client_api/register.jsp',data)
.pipe(map((res: Response)=> return res.json()));



This is my angular service, I have to read data in jsp page



<%@ page import ="java.sql.*" %>
<%@ page import ="javax.sql.*" %>
<%
String name=request.getParameter("name");
String email=request.getParameter("email");
String mobile=request.getParameter("mobile");
String password=request.getParameter("password");
String address=request.getParameter("address");
out.println(name);
out.println(email);
out.println(mobile);
out.println(password);
out.println(address);
%>


It returns null value







java angular jsp servlets






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 15 '18 at 12:24









Ploppy

6,12622139




6,12622139










asked Nov 15 '18 at 12:13









Gopal Singh ThakurGopal Singh Thakur

136




136












  • You have you printed the data before sending it to JSP, Does it has all the values or the value you are expecting?

    – mallikarjun
    Nov 15 '18 at 12:26












  • why on earth a JSP? This is way easier with say Resteasy or the like. Have you checked parameters passed to JSP?

    – Gyro Gearless
    Nov 15 '18 at 12:32











  • why are you using the servlet tag if you are not using any servlets?

    – Jonathan Laliberte
    Nov 15 '18 at 12:34











  • i check values before pass to jsp i got expected values in request header as parameters

    – Gopal Singh Thakur
    Nov 15 '18 at 12:43

















  • You have you printed the data before sending it to JSP, Does it has all the values or the value you are expecting?

    – mallikarjun
    Nov 15 '18 at 12:26












  • why on earth a JSP? This is way easier with say Resteasy or the like. Have you checked parameters passed to JSP?

    – Gyro Gearless
    Nov 15 '18 at 12:32











  • why are you using the servlet tag if you are not using any servlets?

    – Jonathan Laliberte
    Nov 15 '18 at 12:34











  • i check values before pass to jsp i got expected values in request header as parameters

    – Gopal Singh Thakur
    Nov 15 '18 at 12:43
















You have you printed the data before sending it to JSP, Does it has all the values or the value you are expecting?

– mallikarjun
Nov 15 '18 at 12:26






You have you printed the data before sending it to JSP, Does it has all the values or the value you are expecting?

– mallikarjun
Nov 15 '18 at 12:26














why on earth a JSP? This is way easier with say Resteasy or the like. Have you checked parameters passed to JSP?

– Gyro Gearless
Nov 15 '18 at 12:32





why on earth a JSP? This is way easier with say Resteasy or the like. Have you checked parameters passed to JSP?

– Gyro Gearless
Nov 15 '18 at 12:32













why are you using the servlet tag if you are not using any servlets?

– Jonathan Laliberte
Nov 15 '18 at 12:34





why are you using the servlet tag if you are not using any servlets?

– Jonathan Laliberte
Nov 15 '18 at 12:34













i check values before pass to jsp i got expected values in request header as parameters

– Gopal Singh Thakur
Nov 15 '18 at 12:43





i check values before pass to jsp i got expected values in request header as parameters

– Gopal Singh Thakur
Nov 15 '18 at 12:43












1 Answer
1






active

oldest

votes


















0














Your Angular code sends your data as a JSON object within the request body, but your JSP code expects url-encoded body content.



You can change request body format by turning second argument of _http.post into HttpParams instance and setting correct request header like this:



import HttpClient, HttpParams, HttpHeaders from '@angular/common/http';

...

this._http.post(
'/client_api/register.jsp',
new HttpParams( fromObject: data ),
headers: new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded')
).pipe(map((res: Response)=> return res.json()));





share|improve this answer






















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53319262%2fhow-get-data-from-angular-to-core-jsp%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Your Angular code sends your data as a JSON object within the request body, but your JSP code expects url-encoded body content.



    You can change request body format by turning second argument of _http.post into HttpParams instance and setting correct request header like this:



    import HttpClient, HttpParams, HttpHeaders from '@angular/common/http';

    ...

    this._http.post(
    '/client_api/register.jsp',
    new HttpParams( fromObject: data ),
    headers: new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded')
    ).pipe(map((res: Response)=> return res.json()));





    share|improve this answer



























      0














      Your Angular code sends your data as a JSON object within the request body, but your JSP code expects url-encoded body content.



      You can change request body format by turning second argument of _http.post into HttpParams instance and setting correct request header like this:



      import HttpClient, HttpParams, HttpHeaders from '@angular/common/http';

      ...

      this._http.post(
      '/client_api/register.jsp',
      new HttpParams( fromObject: data ),
      headers: new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded')
      ).pipe(map((res: Response)=> return res.json()));





      share|improve this answer

























        0












        0








        0







        Your Angular code sends your data as a JSON object within the request body, but your JSP code expects url-encoded body content.



        You can change request body format by turning second argument of _http.post into HttpParams instance and setting correct request header like this:



        import HttpClient, HttpParams, HttpHeaders from '@angular/common/http';

        ...

        this._http.post(
        '/client_api/register.jsp',
        new HttpParams( fromObject: data ),
        headers: new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded')
        ).pipe(map((res: Response)=> return res.json()));





        share|improve this answer













        Your Angular code sends your data as a JSON object within the request body, but your JSP code expects url-encoded body content.



        You can change request body format by turning second argument of _http.post into HttpParams instance and setting correct request header like this:



        import HttpClient, HttpParams, HttpHeaders from '@angular/common/http';

        ...

        this._http.post(
        '/client_api/register.jsp',
        new HttpParams( fromObject: data ),
        headers: new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded')
        ).pipe(map((res: Response)=> return res.json()));






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 15 '18 at 15:04









        adosanadosan

        12617




        12617





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53319262%2fhow-get-data-from-angular-to-core-jsp%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            這個網誌中的熱門文章

            Barbados

            How to read a connectionString WITH PROVIDER in .NET Core?

            Node.js Script on GitHub Pages or Amazon S3