diff --git a/README.md b/README.md
index 82785a36..0a4e705d 100644
--- a/README.md
+++ b/README.md
@@ -51,14 +51,9 @@ Install with [abapGit](https://abapgit.org) .
-
DATA(lv_resp) = SWITCH #( server->request->get_method( )
WHEN 'GET' THEN z2ui5_cl_http_handler=>http_get( )
- WHEN 'POST' THEN z2ui5_cl_http_handler=>http_post(
- body = server->request->get_cdata( )
- path_info = lt_header[ name = `~path_info` ]-value ) ).
+ WHEN 'POST' THEN z2ui5_cl_http_handler=>http_post( server->request->get_cdata( ) ).
server->response->set_header_field( name = `cache-control` value = `no-cache` ).
server->response->set_cdata( lv_resp ).
@@ -70,21 +65,16 @@ ENDMETHOD.
```abap
METHOD if_http_service_extension~handle_request.
- DATA(lt_header) = request->get_header_fields( ).
-
DATA(lv_resp) = SWITCH #( request->get_method( )
WHEN 'GET' THEN z2ui5_cl_http_handler=>http_get( )
- WHEN 'POST' THEN z2ui5_cl_http_handler=>http_post(
- body = request->get_text( )
- path_info = lt_header[ name = `~path_info` ]-value ) ).
+ WHEN 'POST' THEN z2ui5_cl_http_handler=>http_post( request->get_text( ) ).
- response->set_header_field( i_name = `cache-control` i_value = `no-cache` ).
- response->set_status( 200 )->set_text( lv_resp ).
+ response->set_status( 200 )->set_text( lv_resp
+ )->set_header_field( i_name = `cache-control` i_value = `no-cache` ).
ENDMETHOD.
```
#### FAQ
* check out this [documentation](https://blogs.sap.com/2023/04/14/abap2ui5-6-7-installation-configuration-debugging/) for detailed installation guidelines
-* read these [instructions](https://blogs.sap.com/2023/02/22/abap2ui5-development-of-ui5-apps-in-pure-abap-1-3/) when you develop your first app
* want to configure the theme, bootstrapping, language and title? see [configuration & debugging](https://blogs.sap.com/2023/04/14/abap2ui5-6-7-installation-configuration-debugging/)
* as always - your comments, questions, wishes and bugs are welcome, please create an [issue](https://github.com/abap2UI5/abap2UI5/issues)
diff --git a/src/z2ui5_cl_http_handler.clas.abap b/src/z2ui5_cl_http_handler.clas.abap
index 96ddceb5..1d57e008 100644
--- a/src/z2ui5_cl_http_handler.clas.abap
+++ b/src/z2ui5_cl_http_handler.clas.abap
@@ -16,7 +16,6 @@ CLASS z2ui5_cl_http_handler DEFINITION
CLASS-METHODS http_post
IMPORTING
body TYPE string
- path_info TYPE string OPTIONAL
RETURNING
VALUE(result) TYPE string.
@@ -27,7 +26,7 @@ ENDCLASS.
-CLASS Z2UI5_CL_HTTP_HANDLER IMPLEMENTATION.
+CLASS z2ui5_cl_http_handler IMPLEMENTATION.
METHOD http_get.
@@ -52,6 +51,7 @@ CLASS Z2UI5_CL_HTTP_HANDLER IMPLEMENTATION.
ENDIF.
z2ui5_lcl_fw_db=>cleanup( ).
+
r_result = `` && |\n| &&
`