cancel
Showing results for 
Search instead for 
Did you mean: 

How to get sapwfcburl in java.

Former Member
0 Kudos

HI experts

I configured webflow service.

WF_Dialog_servie be gotten callback url (sapwfcburl) using METHOD cl_swf_ifs_ws_export=>launch_callback in BSP page.

But How can WF_Dialog_service get callback url in JSP or JAVA.

JSP page can't return confirm result to asynchronous Dialog service because it's doesn't have callback url.

JSP page be included in EP server.

Did you get that. Sorry I'm not used write in english.

Please help me.

Thanks.

Message was edited by:

haeun kim

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member184112
Active Contributor
0 Kudos

Hi,

Please POST your question in BSP form.

Thanks and Regards,

Prabhakar Dharmala

Former Member
0 Kudos

BSP page and JSP page have different service URL.

JSP page is located in EP server.

""

CHECK sapwfcburl IS NOT INITIAL.

TRY.

CALL METHOD cl_swf_ifs_ws_export=>launch_callback

EXPORTING

callback_url = <b>sapwfcburl</b> * <u> I want to get this URL in JSP PAGE</u>

http_method = cl_swf_ifs_ws_export=>c_http_method_get

exp_params_nvp = lt_formfields.

CATCH cx_swf_ifs_exception INTO lh_exception.

error_flag = 'X'.

RETURN.

ENDTRY.

""