I'm attempting to modify the AvPhone3 example out of the NetMeeting 3 SDK to
connect to a MCU.  

The following HTML code will direct NetMeeting to connect to the conference
specified on a MeetingPoint conference server.

<A HREF ="callto:10.1.1.215+conference=1744%2520Alpha">Alpha</A>


This translates as

        IP Address:             10.1.1.215
        Conference Name 1744 Alpha

The "%2520" indicates a space ... this all works fine when I want to launch
NetMeeting from a web page.



I need to translate the "CallTo" syntax to work with the AvPhone3 example

This is how the AvPhone3 sample makes a connection.

        BSTRING bstrName("10.1.1.215");
        hr = m_pINmMgr->CreateCall(&m_pINmCall, NM_CALL_H323,
NM_ADDR_MACHINENAME, bstrName, NULL);

The SDK documentation leads me to believe the following should make the same
connection as the HTML code above.

        BSTRING
bstrName("callto:10.1.1.215+type=ip+conference=1744%2520Type%25203");
        BSTRING bstrConfName("");
        BSTRING bstrPassword("");
        
        hr = m_pINmMgr->CallConference(&m_pINmCall, NM_CALL_DEFAULT,
NM_ADDR_CALLTO ,
                        bstrName, bstrConfName, bstrPassword);
 


I've tried a number of similar strings for bstrName but can't get it to
work.

Any help or suggestions would be appreciated.
-----------------------------------------------------------------------
http://www.meetingbywire.com/Mailinglist.htm for unsubscribe information
-----------------------------------------------------------------------

Reply via email to