cancel
Showing results for 
Search instead for 
Did you mean: 

Post binary parameters to external application

Former Member
0 Kudos

Hi to all!!

I'd like to get a file using webdynpro (upload element) and pass the file to another application via HTTP protocol, so I need to use the post method. It would be like copying the HTML standar FORM tag with the option post.

Is it possible in webdynpro?

I've read that I could use the suspend plug, but I can't figure out how??

Thanks a lot.

View Entire Topic
Former Member
0 Kudos

hi!

The IWDProtocolAdapter and the IWDWebContextAdapter provides access to the post parameters.

IWDProtocolAdapter protocolAdapter = WDProtocolAdapter.getProtocolAdapter();

IWDRequest request = protocolAdapter.getRequestObject();

String context = request.getParameter();

thanks

vishal