Commit 907f56d1 authored by Yann Garcia's avatar Yann Garcia
Browse files

Merge with STF549_NG112

parent 11926925
Loading
Loading
Loading
Loading
+13 −0
Original line number Original line Diff line number Diff line
@@ -85,6 +85,19 @@ module LibItsHttp_Templates {
          body          := p_body
          body          := p_body
        } // End of template m_http_request_post
        } // End of template m_http_request_post
        
        
        template Request mw_http_request_post(
                                              template (present) charstring p_uri := ?, 
                                              template (present) HeaderLines p_headers := ?,
                                              template HttpMessageBody p_body := *
        ) := {
          method        := "POST",
          uri           := p_uri,
          version_major := c_http_version_major,
          version_minor := c_http_version_minor,
          header        := p_headers,
          body          := p_body
        } // End of template mw_http_request_post
        
    } // End of group http_requests
    } // End of group http_requests
    
    
    group http_responses {
    group http_responses {