Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

send data to an url

dmi
Participant
0 Kudos
267

Hello Experts

I have to send an internal table to an url, sounds strange, I know!

The problem is a printer with an url address and I have to send data to this printer

It's possible and what are the steps?

Can I use the class CL_GUI_HTML_VIEWER ?

Thanks for any good idea

Daniel

1 ACCEPTED SOLUTION

rajendra_sv
Explorer
0 Kudos
76

Hello,

CL_GUI_HTML_VIEWER is HTML Control. This control is a wrapper around Microsoft WebBrowser.

HTML Control will only navigate to the specified url. You cannot use this control to transfer the data. You can use method Load_data and give the data, this will return an url, if you navigate to this url, that data are displayed. But you cannot use this control to manuplate data or use to send a data to an url.

Best Regards

Rajendra

2 REPLIES 2

Former Member
0 Kudos
76

rajendra_sv
Explorer
0 Kudos
77

Hello,

CL_GUI_HTML_VIEWER is HTML Control. This control is a wrapper around Microsoft WebBrowser.

HTML Control will only navigate to the specified url. You cannot use this control to transfer the data. You can use method Load_data and give the data, this will return an url, if you navigate to this url, that data are displayed. But you cannot use this control to manuplate data or use to send a data to an url.

Best Regards

Rajendra