I want UIPath code to be triggered on click of a button in a html

I have a webpage (which can be accessed in any system). There is a button in the html page. On clicking that (in any system) should open the UiPath code in our local system, and output should be displayed in the UI of the html(in client system). Is this achievable?if so kindly help me with the steps. so ideally any person can open the website from any system , but the operation should happen in our local system and output should be displayed in his/her system.

Thank You

Hi @Karthik_Krishnan1

Take a look here

Thank You @rikulsilva
I saw the video and it helped me crossed 75% of my requirement. I am able to trigger the process by clicking the button in html. It is actually running the process in the same system as where html is opened. Consider there is system 1(Local) and system2(client). when client opens the html and clicks the button currently the process is triggered in client system. But i want that to be executed in local and pass only the output value to client. i used ngrok and published the url and accessed from client system since both are in different networks. Kindly help me in configuring the assistant/orchestrator as i feel this should be configuration changes only. If not let me know how this needs to be done.

IMHO it will ALWAYS run at client side.
It is in fact some kind of UiPath Assistant alternative.
This is obvious from the SDK description.

Cheers

Is there any option to run it in the server side?

I am not much experienced JavaScript programmer…
But based on following post probably not :frowning:
https://forum.uipath.com/t/developer-guide/194701/9

Cheers

Finally it is achieved and working…I wrote a javascript which will act as API endpoint and when reached it will execute the UiPath using uirobot.exe. then i wrote another js which will act as client. the client js will be triggered when button is html is clicked. The client js will call the API endpoint and thus the execution will happen in the machine where the server js is executed.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.