User Guide for Cisco UC Phone 7937

Can anyone supply me with a URL for downloading a basic user's guide for the UC 7937 Phone?

Hello ttrovato 1,
Here are some links where you will be able to find the information about the conference ip phone 7937G.
Administration guide:
Link:http://www.cisco.com/c/dam/en/us/td/docs/voice_ip_comm/cuipph/7937g/6_0/english/administration/guide/37adm60.pdf
Phone guide:
Link:http://www.msl.ubc.ca/sites/default/files/cisco-teleconference-phone-userguide.pdf
Latest Firmwares:
Link:https://software.cisco.com/download/release.html?mdfid=281433475&softwareid=282074289&release=1.4%285%29&relind=AVAILABLE&rellifecycle=&reltype=all
Specifications Overview:
Link: http://www.cisco.com/c/en/us/support/collaboration-endpoints/unified-ip-conference-station-7937g/model.html
Enjoy it.
Regards,
Gerson

Similar Messages

  • RTP for Cisco IP Phones

    Hello friends!
    I'm developing an application for Cisco IP Phones that whorks with JMF. Since there are some programmers in this forum that knows Cisco IP phones, I send my question here.
    I was send succefully the XML message to phone (CiscoIPPhoneExecute), I was customized the paket's size to 160, etc. All works aparently. But audio stream does not reach to phone. Can anyone tell me why??
    Below I write my source code.
    Tanks!
    Max.
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import org.apache.xerces.impl.dv.util.Base64;
    import javax.media.*;
    import javax.media.control.*;
    import javax.media.format.*;
    import javax.media.protocol.*;
    * @author  Administrator
    public class MMHTTPPost {
        /** Creates a new instance of MMHTTPPost */
        public MMHTTPPost() {
            try {
                 * Envia el CiscoIPPhoneExecute al telefono
                String xml = new String("<CiscoIPPhoneExecute>"+
                                            "<ExecuteItem Priority=\"0\" URL=\"RTPRx:Stop\"/>"+"<ExecuteItem Priority=\"1\" URL=\"RTPRx:10.1.15.10:23480\"/>"+
                                            "</CiscoIPPhoneExecute>");
                String  userId      = "Max",
                        password    = "12345",           
                        basicAuth   = "Basic ",           
                        params      = "XML=" + URLEncoder.encode(xml, "ISO-8859-1" );    
                byte[]  bytes       = params.getBytes();
                // Create a URL pointing to the servlet or CGI script and open an HttpURLConnection on that URL       
                URL url = new URL( "http://10.1.15.56/CGI/Execute" );       
                HttpURLConnection con = ( HttpURLConnection ) url.openConnection();       
                // Indicate that you will be doing input and output, that the method is POST, and that the content       
                // length is the length of the byte array       
                con.setDoOutput( true );       
                con.setDoInput( true );       
                con.setRequestMethod( "POST" );       
                con.setRequestProperty( "Content-length", String.valueOf( bytes.length ) );
                // Create the Basic Auth Header       
                Base64 encoder = new Base64();
                basicAuth = (String)encoder.encode( ((String)(userId + ":" + password)).getBytes() );
                System.out.println("Codificado: " + basicAuth);
                con.setRequestProperty( "Authorization", "Basic " + basicAuth.trim() );
                // Write the parameters to the URL output stream       
                OutputStream output = con.getOutputStream();       
                output.write( bytes );       
                output.flush();       
                // Read the response       
                BufferedReader input = new BufferedReader( new InputStreamReader( con.getInputStream() ) );       
                while ( true ) {           
                    String line = input.readLine();           
                    if ( line == null )                
                        break;           
                    System.out.println( line );       
                input.close();       
                output.close();       
                con.disconnect();
                 * Aca empieza la parte RTP/JMF
                // Create a Processor for the selected file. Exit if the       
                // Processor cannot be created.       
                Processor processor = null;       
                try {           
                    String mediaUrl = "file:\\C:\\pruebas execute\\spacemusic.au";
                    processor = Manager.createProcessor( new MediaLocator(mediaUrl));       
                } catch (IOException e){           
                    System.out.println("Exception occured (1a): " + e);       
                } catch (NoProcessorException e){           
                    System.out.println("Exception occured (1b): " + e);       
                // configure the processor       
                //processor.configure();       
                //Espera el estado Processor.Configured
                boolean result = waitForState(processor, Processor.Configured);
                if (result == false)
                    System.out.println("No se pudo configurar el procesador...");
                // Block until the Processor has been configured       
                TrackControl track[] = processor.getTrackControls();       
                boolean encodingOk = false;       
                // Go through the tracks and try to program one of them to       
                // output ulaw data.       
                for (int i = 0; i < track.length; i++)        
                    if (!encodingOk && track[i] instanceof FormatControl)            
                        if (((FormatControl)track).setFormat( new AudioFormat(AudioFormat.ULAW_RTP,8000,8,1)) == null)
    track[i].setEnabled(false);
    else
    encodingOk = true;
    else
    // we could not set this track to ulaw, so disable it
    track[i].setEnabled(false);
    *Aqu? se cambia el tama?o del paquete a 160
    if (((TrackControl)track[i]).isEnabled()) {
    try {
    System.out.println("Cambiando la lista de codecs...");
    Codec codec[] = new Codec[3];
    codec[0] = new com.ibm.media.codec.audio.rc.RCModule();
    codec[1] = new com.ibm.media.codec.audio.ulaw.JavaEncoder();
    //codec[2] = new com.ibm.media.codec.audio.ulaw.Packetizer();
    codec[2] = new com.sun.media.codec.audio.ulaw.Packetizer();
    ((com.sun.media.codec.audio.ulaw.Packetizer)codec[2]).setPacketSize(160);
    ((TrackControl)track[i]).setCodecChain(codec);
    catch (Exception e){
    System.out.println("Error al cambiar el tamano del paquete: " + e);
    System.out.println("Encoding ok?: " + encodingOk );
    // At this point, we have determined where we can send out
    // ulaw data or not.
    // realize the processor
    if (encodingOk)
    //processor.realize();
    // block until realized.
    // get the output datasource of the processor and exit
    // if we fail
    //Espera el estado Processor.Realized
    result = waitForState(processor, Processor.Realized);
    if (result == false)
    System.out.println("No se pudo realizar el procesador...");
    DataSource ds = null;
    try
    ds = processor.getDataOutput();
    catch (NotRealizedError e)
    System.out.println("Exception occured(2): "+e);
    // hand this datasource to manager for creating an RTP
    // datasink.
    // our RTP datasink will multicast the audio
    try
    String mediaUrl= "rtp://10.1.15.56:23480/audio/1";
    MediaLocator m = new MediaLocator(mediaUrl);
    DataSink d = Manager.createDataSink(ds, m);
    d.open();
    d.start();
    catch (Exception e)
    System.out.println("Exception occured(3): "+e);
    catch ( MalformedURLException murlex )
    System.out.println( murlex );
    catch ( IOException ioex )
    System.out.println( ioex );
    * @param args the command line arguments
    public static void main(String[] args) {
    new MMHTTPPost();
    * Convenience methods to handle processor's state changes.
    private Integer stateLock = new Integer(0);
    private boolean failed = false;
    Integer getStateLock() {
         return stateLock;
    void setFailed() {
         failed = true;
    private synchronized boolean waitForState(Processor p, int state) {
         p.addControllerListener(new StateListener());
         failed = false;
         // Call the required method on the processor
         if (state == Processor.Configured) {
         p.configure();
         } else if (state == Processor.Realized) {
         p.realize();
         // Wait until we get an event that confirms the
         // success of the method, or a failure event.
         // See StateListener inner class
         while (p.getState() < state && !failed) {
         synchronized (getStateLock()) {
              try {
              getStateLock().wait();
              } catch (InterruptedException ie) {
              return false;
         if (failed)
         return false;
         else
         return true;
    * Inner Classes
    class StateListener implements ControllerListener {
         public void controllerUpdate(ControllerEvent ce) {
         // If there was an error during configure or
         // realize, the processor will be closed
         if (ce instanceof ControllerClosedEvent)
              setFailed();
         // All controller events, send a notification
         // to the waiting thread in waitForState method.
         if (ce instanceof ControllerEvent) {
              synchronized (getStateLock()) {
              getStateLock().notifyAll();

    ignore my last post.. I didn't properly read the source code.
    Anyway, I got g.711 streaming to work. I started out using the AVTransmit2 sample, but set the audio output format to what is used in the source code posted here. I've also applied the same codec chain described above, and that was it.
    I could never get streaming to work using the first RTP streaming method described in the JMF Programmers guide (and this is the method used in the source posted above), but using the RTPManager, things work just fine.

  • Need Step by step installation guide for Cisco ISE in distributed environment.

                 Hi Friends,
    If anyone is having  step by step installation guide for Cisco ISE in distributed environment please shere!
    I have user guide from Cisco, but does someone have created at the time of actual installation.
    Thanks,
    Sachin

    There is a trustsec 2.1 how to guide on cisco's website. There is also a TrustSec 2.0 ISE Guide floating around that has step by step instructions for setting up ISE 1.0.4. Which is still pretty accurate for the 1.1.1 guide. But if you go through the below site it should give you all the info you need.
    http://www.cisco.com/en/US/solutions/ns340/ns414/ns742/ns744/landing_DesignZone_TrustSec.html

  • User Guide for Droidx

    .What is the site for the User Guide for the Droidx? Thanks

    twonascar wrote:
    .What is the site for the User Guide for the Droidx? Thanks
    It is really not that hard to find.  I think my little laptop took longer to fire up than it took to find this links both in this website and on Motorola's.
    http://support.vzw.com/clc/devices/index.html?p=5369&m=
    http://www.motorola.com/Support/US-EN/Consumer-Support/Mobile-Phones/Motorola+DROID+X

  • How can i obtain a user guide for the ipod nano 16GB 5th gen. with out printing it off the computor

    How can i obtain a user guide for the ipod nano 16GB 5th gen. without printing it off the computor.

    You can't, at least not the one provided by Apple.
    B-rock

  • Where can I find a user guide for Lightroom 5?

    Where can I find a user guide for Lightroom 5?

    If you go to the "Lightroom Help" menu in LR this document is referenced near the top of the page.  I agree it is hard to find using internet searches. 

  • Where can I find a user guide for iMovie 11?

    Where can I find a user guide for iMovie 11, if one exists.
    <Re-Titled By Host>

    Greetings Lori2323,
    You can find a helpful iMovie guide by following the link below. Have fun learning iMovie!
    http://help.apple.com/imovie/
    Thank you for contributing to Apple Support Communities.
    Best,
    Bobby_D

  • Where can I find a user guide for my brand new macbook pro?

    Where can I find a user guide for my brand new 15" MacBook Pro?

    You didnt mention which Pro you had so this link includes the retina..
    http://support.apple.com/manuals/#macbookpro

  • Where can I find a user-guide for the awfull Text-Editor used to enter/edit these forums entries?

    I am desesperate to understand how quite basic functions (just as one of many examples: how can I paste text, that I have formatted in MS Word and want to paste into a Forum Post-Entry?) can be done with the primitive and awful Text Editor used to enter/edit Forum Entries. Notice, that like many other Adobe users, I am not familiar at all with HTML and it is therefore a description of the badly named "Full Editor" that I am looking for.
    Where can I find a User-Guide for this Text Editor?
    My recommendation to Adobe: exercise enough  brute pressure on the developers of this primitive Text Editor to force them to provide something more reasonable, more powerful and more intuitive.

    Thank You Jochem
    I was trying to understand how I could do things as simple as inserting text that I had previously copied. Since there are neither command menüs nor buttons for the Insert of previously copied text, I was trying a mouse right click.....and was being offered in the context menu the choice between "Insert Link", "Insert Image", "Alignement", and "Insert Table"....... but no possibility of a plain insert of previously copied text.
    Now, I realize, that Clearstream supports at least the keyword shortcut of "Ctrl V" ........that I am not using in any other software (I never use any keyboard shortcuts).
    Since Clearstream does not support reasonable choices in the contextual menus, I will need to memorize the most important keyword shortcuts.
    By the way: I detected now, that the "Ctrl V" keyboard shortcut allows me to insert formatted text.
    Even, if I will now begin to be able to use reasonably Clearstream, I am quite surprised to see that such a software provides neither reasonable Contextual Menus, nor a User Guide, nor........
    Thank you again Jochem for your patience with me.

  • How do i download a user guide for a samsung lll ?

    How do I download a user guide for my samsung lll ?

    ^That's a Samsung Intensity user guide. This is a Galaxy S III forum.
    Here's the link for the SIII user guide from Samsung. A quick google search found it. http://downloadcenter.samsung.com/content/UM/201207/20120706131108550/VZW_SCH-i535_English_User_Manual_LG1_F5.pdf

  • I have just bought my ipad and have downloaded numbers software. I am having difficulty finding a user guide for numbers on ipad. Can anyone Eli

    I Have just bought my ipad and downloaded numbers for spreadsheet work but finding it difficult to locate a good user guide for numbers on ipad. Can anyone make a suggestion.

    http://www.apple.com/support/ios/numbers/

  • How can I get a "user guide" for Elements 8?

    How can I get a "user guide" for Elements 8?

    See here (scroll down.):
    http://muvipix.com/products.php?subcat_id=44http://muvipix.com/products.php?subcat_id=44http://muvipix.com/products.php?subcat_id=44
    and here (Scroll to the bottom of page 2):
    http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A5%2Cp_27%3ASteve+Gri setti&page=2&ie=UTF8&qid=1370352322

  • Any end user guides for Oracle Financials?

    Hi,
    I am looking for a very simple end user guide for oracle financials with lots os screenshots and process steps... any help will be appreciated

    Hi,
    You could also refer to the documentation.
    Applications Releases 11i and 12
    http://www.oracle.com/technetwork/documentation/applications-089559.html
    Thanks,
    Hussein

  • SAP user guide for change request management 4.0

    Hi,
    does anybody know where i can find SAP user guide for change request management 4.0?
    Thanks in advance..
    MERAL

    Hi
    You can use this as a reference
    Regular corr
    https://websmp201.sap-ag.de/~sapidb/011000358700000872582009E/index.htm
    Urg corr
    https://websmp201.sap-ag.de/~sapidb/011000358700000872612009E/index.htm
    Hope it helps
    Regards
    Prakhar
    Edited by: Prakhar Saxena on Oct 15, 2009 10:05 AM

  • User guide for creation of types of tables in repository of oracle BI

    Hi all
    I am using Oracle Business Intelligence Enterprise Edition and I have downloaded guides from this site: http://download.oracle.com/docs/cd/E21764_01/bi.htm
    These are all technical guides and I am interested one more theoretical user guide, for example what are fact tables, how to identify them in my specific database, which is the best practice on identifying fact tables, how to identify which are the dimension tables etc.
    Please help me with some documentation which includes this knowledge
    Thank you and best regards

    Check here:
    http://obiee101.blogspot.com/2009/07/obiee-how-to-get-started.html
    regards
    John
    http://obiee101.blogspot.com/
    http://obiee11g.com/

Maybe you are looking for

  • Mac Book Pro constantly displays spinning wheel of death HELP!!!

    My Mac Book Pro (after installing Mavericks) displays the spinning wheel of death multiple times per day. I thought it was my Google Chrome, but now it has been happening no matter what application I am using. I used Etrecheck to see what is going on

  • OBIEE variables in custom java script

    Hello all Can I use OBIEE variables like presentation and session variables in my custom java script code that I am writing in text view on a dashboard page. Is it possible to do that. please me soon if somebody knows the solution to do that. Thanks

  • Where can I find a video message recorded using Skype on my iPhone 5?

    I recorded a video message in Sype and would like to forward to someone else.  I am hoping that since I used my iPhone to record the message that the message would have been saved somewhere on my phone.  Thanks for any help or suggestions.

  • How to get script to save up one level

    Here is my basic script so far: if (activeDocument.width > activeDocument.height) doAction("WalletName H_Right","X-Key Logos.atn"); else if (activeDocument.width < activeDocument.height) doAction("WalletName V_Right","X-Key Logos.atn"); I want a scri

  • Why can I only "Save as Other... Reduce File Size" a single time for an Adobe X file?

    We are struggling with our form editing in that anytime we make a change and save the file size is doubled.  As a work around we started using the ...Reduce File Size save as.   However, we can only use that once per file.    Some of our forms contai