cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
721
Views
0
Helpful
1
Replies

Need help with cucm tools extension mobility

Anyone used this tool CUCM  sampleloginapp.jsp to remotely login users? What should I put on the fields appid, device name, device profile, user id and password? I have tried different combinations but getting error:

<response><failure>

<error code="3">Application Authentication Error: Could not authenticate
</error></failure></response>

1 Accepted Solution

Accepted Solutions

ok, finally figure it out: appid is ur admin username to login to cucm, password is password to login to cucm , dev profile and username related to user we  need to login. Pin code will be taken from cucm database automatically.

http://cucm_ip/emservice/jsp/Tools/sampleloginapp.jsp 

But if u have xxx numbers of users /phones then use curl script , on the windows install cygwin with curl -> create script and run it. THis is my way. Example of the script:

curl -v "http://cucm_ip/emapp/EMAppServlet?device=SEPxxxxx&doLogout=true"

sleep 5

curl -v "http://cucm_ip/emapp/EMAppServlet?device=SEPxxxxx&userid=xxxx&devProf=xxxx_8851&seq=pin_code"

sleep 5

 

here we go 

View solution in original post

1 Reply 1

ok, finally figure it out: appid is ur admin username to login to cucm, password is password to login to cucm , dev profile and username related to user we  need to login. Pin code will be taken from cucm database automatically.

http://cucm_ip/emservice/jsp/Tools/sampleloginapp.jsp 

But if u have xxx numbers of users /phones then use curl script , on the windows install cygwin with curl -> create script and run it. THis is my way. Example of the script:

curl -v "http://cucm_ip/emapp/EMAppServlet?device=SEPxxxxx&doLogout=true"

sleep 5

curl -v "http://cucm_ip/emapp/EMAppServlet?device=SEPxxxxx&userid=xxxx&devProf=xxxx_8851&seq=pin_code"

sleep 5

 

here we go