2011-01-07 34 views

回答

3

好吧,快速的谷歌搜索LiveMeeting API变成了this link

更具体地说,它看起来像是所有基于XML的,所以你应该可以从Java调用它。以下是最近发送我可以找到的邀请。

新建会议请求的文本在audienceInviteText/presenterInviteText的邀请在字段列表

通过创建在Live Meeting API会议不会自动生成会议邀请的电子邮件。相反,您可以请求在CreateMeetingReply消息中返回会议邀请文本。返回的文本可以粘贴到您在API之外生成的电子邮件中。返回的文本与使用Live Meeting Manager返回的创建会议的文本相同。

要在对此请求的回复中接收会议邀请文本,audienceInviteText需要包含在FieldList中。以下XML请求被发送到会议中心。

选项audienceInviteText和presenterInviteText只能包含在createMeeting请求的FieldList部分中,因为返回的信息是由会议中心自动生成的。通过回复返回的信息可以包含在电子邮件中,然后会议创建者可以将其发送给会议受众/演示者以便轻松访问会议。

<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd"> 
    <CreateMeetingRequest name="status" title="Tailspin Toys Status Meeting" maxUsers="25"> 
     <OptionList> 
     <TimeOption name="startTime" value="2006-12-01T18:00:00Z" /> 
     <DecimalOption name="duration" value="1800" /> 
     <StringOption name="audiencePassword" value="auPa$$w0rd" /> 
     <StringOption name="presenterPassword" value="prPa$$w0rd" /> 
     </OptionList> 
     <FieldList> 
     <Name>audienceInviteText</Name> 
     <Name>presenterInviteText</Name> 
     </FieldList> 
    </CreateMeetingRequest> 
</PlaceWareConfCenter> 

以下代码显示了XML回复。

<PlaceWareConfCenter> 
    <CreateMeetingReply> 
     <MeetingReply> 
     <OptionList> 
      <StringOption value="Jeff Hay has invited you to attend an online meeting using&#xD;&#xA;Microsoft Office Live Meeting.&#xD;&#xA;&#xD;&#xA;https://www.livemeeting.com/cc/contoso/join?id=name10&role=attend&pw=auPa%24%24w0rd&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;AUDIO INFORMATION&#xD;&#xA;Audio has not been set up for this meeting.&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;FIRST-TIME USERS&#xD;&#xA;To save time before the meeting, check your system to make sure it is&#xD;&#xA;ready to use Microsoft Office Live Meeting. &#xD;&#xA; http://go.microsoft.com/fwlink/?linkid=52354&#xD;&#xA;&#xD;&#xA;TROUBLESHOOTING &#xD;&#xA;Unable to join the meeting? Follow these steps:&#xD;&#xA; 1. Copy this address and paste it into your Web browser:&#xD;&#xA;  https://www.livemeeting.com/cc/contoso/join&#xD;&#xA; 2. Copy and paste the required information:&#xD;&#xA;  Meeting ID: name10&#xD;&#xA;  Entry Code: auPa$$w0rd&#xD;&#xA;  Location: https://www.livemeeting.com/cc/contoso/join&#xD;&#xA;If you still cannot enter the meeting, contact support:&#xD;&#xA;http://r.office.microsoft.com/r/rlidLiveMeeting?p1=7&p2=en_US&p3=LMInfo&p4=support" name="audienceInviteText"> 
      </StringOption> 
      <StringOption value="Jeff Hay has invited you to present an online meeting using&#xD;&#xA;Microsoft Office Live Meeting.&#xD;&#xA;&#xD;&#xA; https://www.livemeeting.com/cc/contoso/xmlapi6/join?id=name10&role=present&pw=prPa%24%24w0rd&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;AUDIO INFORMATION&#xD;&#xA;Audio has not been set up for this meeting.&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;FIRST-TIME USERS&#xD;&#xA;To save time before the meeting, check your system to make sure it is&#xD;&#xA;ready to use Microsoft Office Live Meeting. &#xD;&#xA; http://go.microsoft.com/fwlink/?linkid=52354&#xD;&#xA;&#xD;&#xA;TROUBLESHOOTING &#xD;&#xA;Unable to join the meeting? Follow these steps:&#xD;&#xA; 1. Copy this address and paste it into your Web browser:&#xD;&#xA;  https://www.livemeeting.com/cc/contoso/join&#xD;&#xA; 2. Copy and paste the required information:&#xD;&#xA;  Meeting ID: name10&#xD;&#xA;  Entry Code: prPa$$w0rd&#xD;&#xA;  Location: https://www.livemeeting.com/cc/contoso/join&#xD;&#xA;If you still cannot enter the meeting, contact support:&#xD;&#xA;http://r.office.microsoft.com/r/rlidLiveMeeting?p1=7&p2=en_US&p3=LMInfo&p4=support" name="presenterInviteText"> 
      </StringOption> 
     </OptionList> 
     </MeetingReply> 
    </CreateMeetingReply> 
</PlaceWareConfCenter> 
+0

非常好的人,谢谢。我一直用术语Java搜索,它给了我一堆关于这个applet的垃圾。谢谢! – Andy 2011-01-07 22:24:16