1

Can I send a large string in url as parameter in carte url when calling a transformation that create a file as content is the string sent, i want something like: https://cluster:cluster@[host]:[port]/kettle/executeTrans/trans=[repo_of_transf]/&filename=[my_small_string]&contentfile=[my_large_string] or there is another strategy that send in post method a big string with carte web service.

Mostav
  • 2,203
  • 15
  • 27
  • You cant sent lot of data using URL (Maximum URL length is 2,083 characters) – rev_dihazum Apr 27 '16 at 10:22
  • check this stuf http://stackoverflow.com/questions/4203686/how-can-i-deal-with-http-get-query-string-length-limitations-and-still-want-to-b – HASNI Faiçal Apr 27 '16 at 10:30
  • also I ask if there is a way to execute transformation with carte server and set parameters to carte in post method – Mostav Apr 27 '16 at 13:13

1 Answers1

2

You should use POST method to pass long parameters

Fiil
  • 1,680
  • 11
  • 11
  • please how can i do it in pentaho kettle, particularly when sending this string in carte server?? – Mostav Apr 27 '16 at 11:13