This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

FORM GET Method request issue on Custom HTML

Hi everybody,

I want to create a simple SMS Panel with solarwinds custom HTML to sending SMS directly through solarwinds to our support team when it is necessary, I do write a code that I'm sure is correct, but I don't know what is a problem when I try it on solarwinds..

Is there any solution??

<html>

<head>

</head>

<body>

<div>

<form action="applicationsrv:70/.../SendSMS" method="get" id="usrform" target="_blank">

<input type="number" name="destinationNumbers" required/>

<input type="hidden" name="applicationID" value="******" />

    <input type="hidden" name="sourceNumber" value="*******" />

<input type="submit" value="SendSMS"/>

</form>

<br>

<textarea rows="8" cols="31" name="text" form="usrform" maxlength="475">

${ticket_no} ► ${NodeName} ◄

</textarea>

</div>

</body>

</html>

  • On which type of view are you adding the custom HTML resource? If I remember correctly you should not need l tags such as <html><head><body> as these will have been declared in the view although this is unlikely to be the problem. Does the browser console show any errors?