Click here to Skip to main content
15,887,683 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: Change the wallpaper Pin
Weli055-Jun-12 21:53
Weli055-Jun-12 21:53 
GeneralRe: Change the wallpaper Pin
enhzflep6-Jun-12 0:19
enhzflep6-Jun-12 0:19 
AnswerRe: Change the wallpaper Pin
Weli056-Jun-12 6:31
Weli056-Jun-12 6:31 
QuestionHTML 5 Tutorial Pin
pix_programmer1-Jun-12 20:56
pix_programmer1-Jun-12 20:56 
AnswerRe: HTML 5 Tutorial Pin
Ali Al Omairi(Abu AlHassan)3-Jun-12 20:08
professionalAli Al Omairi(Abu AlHassan)3-Jun-12 20:08 
AnswerRe: HTML 5 Tutorial Pin
berba4-Jun-12 21:43
berba4-Jun-12 21:43 
Questionpassing argument from javascript Pin
dineshbabub1-Jun-12 0:55
dineshbabub1-Jun-12 0:55 
AnswerRe: passing argument from javascript Pin
Manfred Rudolf Bihy1-Jun-12 3:11
professionalManfred Rudolf Bihy1-Jun-12 3:11 
We need a little bit more precision. The tool you are mentioning ssh-client-g3.exe is not mentioned in the documentation I found here: Tectia-Client-6.2-User.pdf
[^] and you also forgot to tell us which version you are using.

Another thing is that none of the command line tools on that Tectia site use /ARG to signifiy any parameters. All parameters I saw are of the typical kind that are started with a - followed by one or more characters. The way you are constructing your command string is also faulty:

var command = "ssh-client-g3.exe /script /arg \" + ipaddress + \"  /ARG \" + node + \" /ARG dinesh /ARG xxxxxx";


would yield this true:

C#
command == "ssh-client-g3.exe /script /arg \" + ipaddress + \"  /ARG \" + node + \" /ARG dinesh /ARG xxxxxx


you probably meant to say this:

var command = "ssh-client-g3.exe /script /arg " + ipaddress + "  /ARG " + node + " /ARG dinesh /ARG xxxxxx"


which would yield true for an IP of 192.168.0.1 and a node named ERLM5ZGA

command == "ssh-client-g3.exe /script /arg 192.168.0.1  /ARG ERLM5ZGA /ARG dinesh /ARG xxxxxx"


Anyhow until you tell us your version of Tectia - Client you are using and the exact name of the command line tool, we won't be able to help you.

Regards,

Manfred

"With sufficient thrust, pigs fly just fine."
Ross Callon, The Twelve Networking Truths, RFC1925


GeneralRe: passing argument from javascript Pin
dineshbabub3-Jun-12 18:13
dineshbabub3-Jun-12 18:13 
GeneralRe: passing argument from javascript Pin
dineshbabub3-Jun-12 21:06
dineshbabub3-Jun-12 21:06 
GeneralRe: passing argument from javascript Pin
Manfred Rudolf Bihy4-Jun-12 1:51
professionalManfred Rudolf Bihy4-Jun-12 1:51 
GeneralRe: passing argument from javascript Pin
Manfred Rudolf Bihy3-Jun-12 21:43
professionalManfred Rudolf Bihy3-Jun-12 21:43 
GeneralRe: passing argument from javascript Pin
dineshbabub3-Jun-12 22:14
dineshbabub3-Jun-12 22:14 
GeneralRe: passing argument from javascript Pin
Manfred Rudolf Bihy4-Jun-12 1:48
professionalManfred Rudolf Bihy4-Jun-12 1:48 
GeneralRe: passing argument from javascript Pin
Manfred Rudolf Bihy4-Jun-12 2:02
professionalManfred Rudolf Bihy4-Jun-12 2:02 
GeneralRe: passing argument from javascript Pin
dineshbabub4-Jun-12 16:08
dineshbabub4-Jun-12 16:08 
GeneralRe: passing argument from javascript Pin
Manfred Rudolf Bihy4-Jun-12 22:24
professionalManfred Rudolf Bihy4-Jun-12 22:24 
QuestionFormatting Numbers to Local Settings Pin
Nagy Vilmos31-May-12 1:33
professionalNagy Vilmos31-May-12 1:33 
AnswerRe: Formatting Numbers to Local Settings Pin
Manfred Rudolf Bihy31-May-12 3:02
professionalManfred Rudolf Bihy31-May-12 3:02 
GeneralRe: Formatting Numbers to Local Settings Pin
Nagy Vilmos31-May-12 4:06
professionalNagy Vilmos31-May-12 4:06 
GeneralRe: Formatting Numbers to Local Settings Pin
Manfred Rudolf Bihy31-May-12 4:19
professionalManfred Rudolf Bihy31-May-12 4:19 
QuestionExtJS Pin
RameshChTulal29-May-12 1:28
RameshChTulal29-May-12 1:28 
AnswerRe: ExtJS Pin
thatraja4-Jun-12 17:18
professionalthatraja4-Jun-12 17:18 
QuestionUpdate DIV text by Javascript Pin
iucaa27-May-12 10:06
iucaa27-May-12 10:06 
AnswerRe: Update DIV text by Javascript Pin
Sandeep Mewara27-May-12 19:58
mveSandeep Mewara27-May-12 19:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.