« Back to IP Phone Services Questions

IP Phone SDK7.1.2 - Push2Phone HTTP 404 error

Combination View Flat View Tree View
Threads [ Previous | Next ]
toggle
Hi,

I was download the IP Phone SDK7.1.2 and testing the push2phone feature with CUCM8.6 but I get HTTP 404 error from wireshark trace which I captured on IIS server side,
1) HTTP client requests HTTP POST to IIS server
2) IIS server response 200 OK
3) HTTP client requests HTTP GET to IIS server
4) IIS server requests HTTP POST to CUCM
5) CUCM response HTTP 404 not found

I have CUCM8.6 and guess this issue caused the ASP files not updated for CUCM Linux platform. I'm not familar to the programming and just want to test the functionality in the LAB with default provisioning script,

Anyone can share the push2phone ASP files with reflect CUCM linux platform?
 
Thanks in advance,
John

Unfortunately the ASP push2phone sample was not updated for UCM 5+ (linux.)  At least two changes would need to be made:
 
in the /ASP/includes/axlquery.asp file, the AXL URL needs to be updated for https://ip_address:8443/axl/
 
xmlhttp.Open("POST", "http://" + cm + "/CCMApi/AXL/V1/soapisapi.dll", false);
 
As well, AXL only supports HTTPS connections, so you would need to modify the code to use HTTPS (and either validate or ignore the UCM self-signed certificate.)
 
Other minor changes might be needed as well...

If you are interested, I created an unofficial sample app which updates push2phone.asp to work with UCM 8.5 and Windows 2008 Server.  See attached, feedback appreciated.
Attachments:

I would love to get a copy of your unofficial sample app update for push2phone.  I don't see it as an attachment anymore, and the push2phone wiki in the developers section doesn't have it as an attachment to download ( http://developer.cisco.com/web/ipps/wiki?p_p_id=1_WAR_wikinavigationportlet_INSTANCE_V33b&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&p_p_col_id=column-1&p_p_col_count=1&p_r_p_185834411_nodeId=803203&p_r_p_185834411_title=Push2Phone )
 
If you can't post it, can you send me a download link or possibley email it to me?
Thanks!
Ted Walker

Re-attached to the wiki, should be working now...hope it helps!

Thank you so much!!!!