• Hi,
    i want to send data from forms gravity to Servlet Java.

    https://@IP:8181/projet/ws/AddDb?Name=ALLON&NameLast=LEVY
    => this wordk from browser

    Now with this fubction in wordpress is not working

    add_action('gform_after_submission_1', 'post_to_third_party', 10, 2);
    function post_to_third_party($entry, $form) {
     $post_url = 'https://@IP:8181/projet/ws/AddDb?Name=ALLON&NameLast=LEVY';
     $body = array(
    'Name' => 'test2',
    'NameLast' => 'test2',
    );
    $request = new WP_Http();
    $response = $request->post($post_url, array('body' => $body));
    }

    How i fixe it ?!

  • The topic ‘Send data from forms gravity to Servlet Java’ is closed to new replies.