<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
	<id>http://www.voip-info.jp/index.php?action=history&amp;feed=atom&amp;title=Aastra_XML</id>
	<title>Aastra XML - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="http://www.voip-info.jp/index.php?action=history&amp;feed=atom&amp;title=Aastra_XML"/>
	<link rel="alternate" type="text/html" href="http://www.voip-info.jp/index.php?title=Aastra_XML&amp;action=history"/>
	<updated>2026-05-01T02:12:05Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.43.3</generator>
	<entry>
		<id>http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=10165&amp;oldid=prev</id>
		<title>Takahashi: 「Aastra XML」を保護しました ([編集=管理者のみ許可] (無期限) [移動=管理者のみ許可] (無期限))</title>
		<link rel="alternate" type="text/html" href="http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=10165&amp;oldid=prev"/>
		<updated>2017-11-18T08:48:32Z</updated>

		<summary type="html">&lt;p&gt;「&lt;a href=&quot;/index.php/Aastra_XML&quot; title=&quot;Aastra XML&quot;&gt;Aastra XML&lt;/a&gt;」を保護しました ([編集=管理者のみ許可] (無期限) [移動=管理者のみ許可] (無期限))&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Aastraの多くの電話機はXMLでの制御をサポートしていますが、機種によってサポートレベルは異なります。&amp;lt;br&amp;gt;&lt;br /&gt;
*9133i&lt;br /&gt;
:プログラマブルキー、状態によるXMLの実行&lt;br /&gt;
:テキストメッセージの表示&lt;br /&gt;
:LEDの制御は行えない&lt;br /&gt;
*57i&lt;br /&gt;
:最上位機種のため、ほぼフルコントロール&lt;br /&gt;
:メッセージ表示以外にもグラフィックも可能&lt;br /&gt;
:LEDの制御可能&lt;br /&gt;
==XMLブラウザ==&lt;br /&gt;
[[Aastra 57i]]はXMLブラウザの機能を持っているためXMLでのサービスを使用することができます。デモ用アプリケーションがAAstraから提供されています。&amp;lt;br&amp;gt;&lt;br /&gt;
http://www.aastratelecom.com/cps/rde/xchg/SID-3D8CCB73-FF4FABF6/03/hs.xsl/23485.htm&amp;lt;br&amp;gt;&lt;br /&gt;
設定方法は簡単でファンクションキーのひとつのTypeをXMLにし、ラベルを指定した後にValueにURLを設定します。&lt;br /&gt;
たとえばKey1のTypeをXML、LabelをCNN NewsとしValueに http://65.205.71.13/xml/rss/rss.php?feed=cnn を記述すれば電話機のボタンを押してCNN Newsを見ることができます。&lt;br /&gt;
==XMLによる電話機制御==&lt;br /&gt;
電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;br /&gt;
===LED制御(57i)===&lt;br /&gt;
Softkey3(左下)のLEDを制御するにはperlではこんな感じで出来ます(デベロッパ・ガイドのコードを流用)。&amp;lt;br&amp;gt;&lt;br /&gt;
 #!/usr/bin/perl&lt;br /&gt;
 # Create a user agent object&lt;br /&gt;
 use LWP::UserAgent;&lt;br /&gt;
 use LWP::ConnCache;&lt;br /&gt;
 use HTTP::Request::Common;&lt;br /&gt;
 my $ua = LWP::UserAgent-&amp;gt;new(agent =&amp;gt; &amp;#039;Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)&amp;#039;);&lt;br /&gt;
 $ua-&amp;gt;conn_cache(LWP::ConnCache-&amp;gt;new());&lt;br /&gt;
 $ua-&amp;gt;request(&lt;br /&gt;
         POST &amp;lt;nowiki&amp;gt;&amp;#039;http://電話機のIPアドレス&amp;#039;&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
                 Content_Type =&amp;gt; &amp;#039;application/x-www-form-urlencoded&amp;#039;,&lt;br /&gt;
                 Content =&amp;gt;&lt;br /&gt;
                 &amp;#039;xml=&amp;lt;AastraIPPhoneExecute&amp;gt;&lt;br /&gt;
                         &amp;lt;ExecuteItem URI=&amp;quot;Led: softkey3=slowflash&amp;quot;/&amp;gt;&lt;br /&gt;
                 &amp;lt;/AastraIPPhoneExecute&amp;gt;&amp;#039;);&lt;br /&gt;
softkey3=の部分はon,off,slowflash,fastflashが指定できます。&amp;lt;br&amp;gt;&lt;br /&gt;
なお、制御できるLEDは、そのキーの設定が&amp;#039;XML&amp;#039;になっているものだけです。他の機能を割り当てている場合にはLEDは制御できません。&lt;br /&gt;
===テキストメッセージ表示(57i,9113i)===&lt;br /&gt;
これも割りと簡単です。&lt;br /&gt;
 #!/usr/bin/perl&lt;br /&gt;
 # Create a user agent object&lt;br /&gt;
 use LWP::UserAgent;&lt;br /&gt;
 use LWP::ConnCache;&lt;br /&gt;
 use HTTP::Request::Common;&lt;br /&gt;
 my $ua = LWP::UserAgent-&amp;gt;new(agent =&amp;gt; &amp;#039;Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)&amp;#039;);&lt;br /&gt;
 $ua-&amp;gt;conn_cache(LWP::ConnCache-&amp;gt;new());&lt;br /&gt;
 $ua-&amp;gt;request(&lt;br /&gt;
         POST &amp;lt;nowiki&amp;gt;&amp;#039;http://電話機のIPアドレス&amp;#039;&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
                 Content_Type =&amp;gt; &amp;#039;application/x-www-form-urlencoded&amp;#039;,&lt;br /&gt;
                 Content =&amp;gt;&lt;br /&gt;
                 &amp;#039;xml=&amp;lt;AastraIPPhoneTextScreen beep=&amp;quot;yes&amp;quot;&amp;gt;&lt;br /&gt;
                         &amp;lt;Title&amp;gt;TEST&amp;lt;/Title&amp;gt;&lt;br /&gt;
                         &amp;lt;Text&amp;gt;This is Test&amp;lt;/Text&amp;gt;&lt;br /&gt;
                 &amp;lt;/AastraIPPhoneTextScreen&amp;gt;&amp;#039;);&lt;br /&gt;
===電話機にダイヤルさせる(57i)===&lt;br /&gt;
こんなこともできます。&lt;br /&gt;
 #!/usr/bin/perl&lt;br /&gt;
 # Create a user agent object&lt;br /&gt;
 use LWP::UserAgent;&lt;br /&gt;
 use LWP::ConnCache;&lt;br /&gt;
 use HTTP::Request::Common;&lt;br /&gt;
 my $ua = LWP::UserAgent-&amp;gt;new(agent =&amp;gt; &amp;#039;Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)&amp;#039;);&lt;br /&gt;
 $ua-&amp;gt;conn_cache(LWP::ConnCache-&amp;gt;new());&lt;br /&gt;
 $ua-&amp;gt;request(&lt;br /&gt;
         POST &amp;lt;nowiki&amp;gt;&amp;#039;http://電話機のIPアドレス&amp;#039;&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
                 Content_Type =&amp;gt; &amp;#039;application/x-www-form-urlencoded&amp;#039;,&lt;br /&gt;
                 Content =&amp;gt;&lt;br /&gt;
                 &amp;#039;xml=&amp;lt;AastraIPPhoneExecute Beep=&amp;quot;yes&amp;quot;&amp;gt;&lt;br /&gt;
                         &amp;lt;ExecuteItem URI=&amp;quot;Dial:300&amp;quot; interruptCall=&amp;quot;no&amp;quot;/&amp;gt;&lt;br /&gt;
                 &amp;lt;/AastraIPPhoneExecute&amp;gt;&amp;#039;);&lt;br /&gt;
ドキュメントではDial: 300のようにコロンの後ろに空白があるのですが、空白が入っていると&amp;#039; 300&amp;#039;にダイヤルしようとしてしまうようです。&lt;br /&gt;
&lt;br /&gt;
==ドキュメント==&lt;br /&gt;
http://www.aastratelecom.com/cps/rde/xchg/SID-3D8CCB73-0B583F03/03/hs.xsl/21880.htm&amp;lt;br&amp;gt;&lt;br /&gt;
この下の方にあるDevelopment Guideにドキュメントとサンプルコードがあります。&lt;/div&gt;</summary>
		<author><name>Takahashi</name></author>
	</entry>
	<entry>
		<id>http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=10043&amp;oldid=prev</id>
		<title>Takahashi: 「Aastra XML」を保護しました ([編集=管理者のみ許可] (無期限) [移動=管理者のみ許可] (無期限))</title>
		<link rel="alternate" type="text/html" href="http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=10043&amp;oldid=prev"/>
		<updated>2017-11-18T08:44:08Z</updated>

		<summary type="html">&lt;p&gt;「&lt;a href=&quot;/index.php/Aastra_XML&quot; title=&quot;Aastra XML&quot;&gt;Aastra XML&lt;/a&gt;」を保護しました ([編集=管理者のみ許可] (無期限) [移動=管理者のみ許可] (無期限))&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Aastraの多くの電話機はXMLでの制御をサポートしていますが、機種によってサポートレベルは異なります。&amp;lt;br&amp;gt;&lt;br /&gt;
*9133i&lt;br /&gt;
:プログラマブルキー、状態によるXMLの実行&lt;br /&gt;
:テキストメッセージの表示&lt;br /&gt;
:LEDの制御は行えない&lt;br /&gt;
*57i&lt;br /&gt;
:最上位機種のため、ほぼフルコントロール&lt;br /&gt;
:メッセージ表示以外にもグラフィックも可能&lt;br /&gt;
:LEDの制御可能&lt;br /&gt;
==XMLブラウザ==&lt;br /&gt;
[[Aastra 57i]]はXMLブラウザの機能を持っているためXMLでのサービスを使用することができます。デモ用アプリケーションがAAstraから提供されています。&amp;lt;br&amp;gt;&lt;br /&gt;
http://www.aastratelecom.com/cps/rde/xchg/SID-3D8CCB73-FF4FABF6/03/hs.xsl/23485.htm&amp;lt;br&amp;gt;&lt;br /&gt;
設定方法は簡単でファンクションキーのひとつのTypeをXMLにし、ラベルを指定した後にValueにURLを設定します。&lt;br /&gt;
たとえばKey1のTypeをXML、LabelをCNN NewsとしValueに http://65.205.71.13/xml/rss/rss.php?feed=cnn を記述すれば電話機のボタンを押してCNN Newsを見ることができます。&lt;br /&gt;
==XMLによる電話機制御==&lt;br /&gt;
電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;br /&gt;
===LED制御(57i)===&lt;br /&gt;
Softkey3(左下)のLEDを制御するにはperlではこんな感じで出来ます(デベロッパ・ガイドのコードを流用)。&amp;lt;br&amp;gt;&lt;br /&gt;
 #!/usr/bin/perl&lt;br /&gt;
 # Create a user agent object&lt;br /&gt;
 use LWP::UserAgent;&lt;br /&gt;
 use LWP::ConnCache;&lt;br /&gt;
 use HTTP::Request::Common;&lt;br /&gt;
 my $ua = LWP::UserAgent-&amp;gt;new(agent =&amp;gt; &amp;#039;Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)&amp;#039;);&lt;br /&gt;
 $ua-&amp;gt;conn_cache(LWP::ConnCache-&amp;gt;new());&lt;br /&gt;
 $ua-&amp;gt;request(&lt;br /&gt;
         POST &amp;lt;nowiki&amp;gt;&amp;#039;http://電話機のIPアドレス&amp;#039;&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
                 Content_Type =&amp;gt; &amp;#039;application/x-www-form-urlencoded&amp;#039;,&lt;br /&gt;
                 Content =&amp;gt;&lt;br /&gt;
                 &amp;#039;xml=&amp;lt;AastraIPPhoneExecute&amp;gt;&lt;br /&gt;
                         &amp;lt;ExecuteItem URI=&amp;quot;Led: softkey3=slowflash&amp;quot;/&amp;gt;&lt;br /&gt;
                 &amp;lt;/AastraIPPhoneExecute&amp;gt;&amp;#039;);&lt;br /&gt;
softkey3=の部分はon,off,slowflash,fastflashが指定できます。&amp;lt;br&amp;gt;&lt;br /&gt;
なお、制御できるLEDは、そのキーの設定が&amp;#039;XML&amp;#039;になっているものだけです。他の機能を割り当てている場合にはLEDは制御できません。&lt;br /&gt;
===テキストメッセージ表示(57i,9113i)===&lt;br /&gt;
これも割りと簡単です。&lt;br /&gt;
 #!/usr/bin/perl&lt;br /&gt;
 # Create a user agent object&lt;br /&gt;
 use LWP::UserAgent;&lt;br /&gt;
 use LWP::ConnCache;&lt;br /&gt;
 use HTTP::Request::Common;&lt;br /&gt;
 my $ua = LWP::UserAgent-&amp;gt;new(agent =&amp;gt; &amp;#039;Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)&amp;#039;);&lt;br /&gt;
 $ua-&amp;gt;conn_cache(LWP::ConnCache-&amp;gt;new());&lt;br /&gt;
 $ua-&amp;gt;request(&lt;br /&gt;
         POST &amp;lt;nowiki&amp;gt;&amp;#039;http://電話機のIPアドレス&amp;#039;&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
                 Content_Type =&amp;gt; &amp;#039;application/x-www-form-urlencoded&amp;#039;,&lt;br /&gt;
                 Content =&amp;gt;&lt;br /&gt;
                 &amp;#039;xml=&amp;lt;AastraIPPhoneTextScreen beep=&amp;quot;yes&amp;quot;&amp;gt;&lt;br /&gt;
                         &amp;lt;Title&amp;gt;TEST&amp;lt;/Title&amp;gt;&lt;br /&gt;
                         &amp;lt;Text&amp;gt;This is Test&amp;lt;/Text&amp;gt;&lt;br /&gt;
                 &amp;lt;/AastraIPPhoneTextScreen&amp;gt;&amp;#039;);&lt;br /&gt;
===電話機にダイヤルさせる(57i)===&lt;br /&gt;
こんなこともできます。&lt;br /&gt;
 #!/usr/bin/perl&lt;br /&gt;
 # Create a user agent object&lt;br /&gt;
 use LWP::UserAgent;&lt;br /&gt;
 use LWP::ConnCache;&lt;br /&gt;
 use HTTP::Request::Common;&lt;br /&gt;
 my $ua = LWP::UserAgent-&amp;gt;new(agent =&amp;gt; &amp;#039;Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)&amp;#039;);&lt;br /&gt;
 $ua-&amp;gt;conn_cache(LWP::ConnCache-&amp;gt;new());&lt;br /&gt;
 $ua-&amp;gt;request(&lt;br /&gt;
         POST &amp;lt;nowiki&amp;gt;&amp;#039;http://電話機のIPアドレス&amp;#039;&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
                 Content_Type =&amp;gt; &amp;#039;application/x-www-form-urlencoded&amp;#039;,&lt;br /&gt;
                 Content =&amp;gt;&lt;br /&gt;
                 &amp;#039;xml=&amp;lt;AastraIPPhoneExecute Beep=&amp;quot;yes&amp;quot;&amp;gt;&lt;br /&gt;
                         &amp;lt;ExecuteItem URI=&amp;quot;Dial:300&amp;quot; interruptCall=&amp;quot;no&amp;quot;/&amp;gt;&lt;br /&gt;
                 &amp;lt;/AastraIPPhoneExecute&amp;gt;&amp;#039;);&lt;br /&gt;
ドキュメントではDial: 300のようにコロンの後ろに空白があるのですが、空白が入っていると&amp;#039; 300&amp;#039;にダイヤルしようとしてしまうようです。&lt;br /&gt;
&lt;br /&gt;
==ドキュメント==&lt;br /&gt;
http://www.aastratelecom.com/cps/rde/xchg/SID-3D8CCB73-0B583F03/03/hs.xsl/21880.htm&amp;lt;br&amp;gt;&lt;br /&gt;
この下の方にあるDevelopment Guideにドキュメントとサンプルコードがあります。&lt;/div&gt;</summary>
		<author><name>Takahashi</name></author>
	</entry>
	<entry>
		<id>http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2756&amp;oldid=prev</id>
		<title>Vm-user: &quot;Aastra XML&quot; を保護しました。: SPAMが繰り返される為 [edit=autoconfirmed:move=autoconfirmed]</title>
		<link rel="alternate" type="text/html" href="http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2756&amp;oldid=prev"/>
		<updated>2008-10-16T01:51:44Z</updated>

		<summary type="html">&lt;p&gt;&amp;quot;&lt;a href=&quot;/index.php/Aastra_XML&quot; title=&quot;Aastra XML&quot;&gt;Aastra XML&lt;/a&gt;&amp;quot; を保護しました。: SPAMが繰り返される為 [edit=autoconfirmed:move=autoconfirmed]&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;2008年10月16日 (木) 10:51時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ja&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(相違点なし)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Vm-user</name></author>
	</entry>
	<entry>
		<id>http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2755&amp;oldid=prev</id>
		<title>Vm-user: 216.52.252.244 (会話) による編集を Vm-user による版へと差し戻しました。</title>
		<link rel="alternate" type="text/html" href="http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2755&amp;oldid=prev"/>
		<updated>2008-10-16T01:51:25Z</updated>

		<summary type="html">&lt;p&gt;&lt;a href=&quot;/index.php/%E7%89%B9%E5%88%A5:%E6%8A%95%E7%A8%BF%E8%A8%98%E9%8C%B2/216.52.252.244&quot; title=&quot;特別:投稿記録/216.52.252.244&quot;&gt;216.52.252.244&lt;/a&gt; (&lt;a href=&quot;/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85%E3%83%BB%E3%83%88%E3%83%BC%E3%82%AF:216.52.252.244&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;利用者・トーク:216.52.252.244 (存在しないページ)&quot;&gt;会話&lt;/a&gt;) による編集を &lt;a href=&quot;/index.php/%E5%88%A9%E7%94%A8%E8%80%85:Vm-user&quot; title=&quot;利用者:Vm-user&quot;&gt;Vm-user&lt;/a&gt; による版へと差し戻しました。&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;2008年10月16日 (木) 10:51時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l8&quot;&gt;8行目:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;8行目:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:メッセージ表示以外にもグラフィックも可能&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:メッセージ表示以外にもグラフィックも可能&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:LEDの制御可能&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:LEDの制御可能&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;asian bikini models, &amp;lt;a href&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://begone-free.aalwijn.co.cc/free-scan-spyware-norton.html&quot;&amp;gt;free scan spyware norton&amp;lt;/a&amp;gt;, [url&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://begone-free.aalwijn.co.cc/free-scan-spyware-norton.html&quot;]free scan spyware norton[/url], http://begone-free.aalwijn.co.cc/free-scan-spyware-norton.html free scan spyware norton,  6899, &amp;lt;a href&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://hair-style.aalwijn.co.cc/hairy-mature-older-woman.html&quot;&amp;gt;hairy mature older woman&amp;lt;/a&amp;gt;, [url&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://hair-style.aalwijn.co.cc/hairy-mature-older-woman.html&quot;]hairy mature older woman&lt;/del&gt;[&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/url], http://hair-style.aalwijn.co.cc/hairy-mature-older-woman.html hairy mature older woman,  8-(, &amp;lt;a href=&quot;http://cellini-lady.aalwijn.co.cc/free-line-scan-spyware.html&quot;&amp;gt;free line scan spyware&amp;lt;/a&amp;gt;, &lt;/del&gt;[&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;url=&quot;http://cellini-lady.aalwijn.co.cc/free-line-scan-spyware.html&quot;&lt;/del&gt;]&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;free line scan spyware[/url&lt;/del&gt;]&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, http://cellini-lady.aalwijn.co.cc/free-line-scan-spyware.html free line scan spyware,  9511, &lt;/del&gt;&amp;lt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;a href=&quot;http://begone-free.aalwijn.co.cc/green-review-rolex-submariner.html&quot;&lt;/del&gt;&amp;gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;green review rolex submariner&amp;lt;/a&amp;gt;, [url=&quot;&lt;/del&gt;http://&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;begone-free.aalwijn&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;co&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;green-review-rolex-submariner.html&quot;]green review rolex submariner[/url], http:&lt;/del&gt;//&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;begone-free.aalwijn.co.cc&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;green-review&lt;/del&gt;-&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rolex&lt;/del&gt;-&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;submariner.html green review rolex submariner,  oycwm, &amp;lt;a href=&quot;http:&lt;/del&gt;//&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;hair-style.aalwijn.co&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;free-mature-hardcore-porn&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;html&quot;&amp;gt;free mature hardcore porn&lt;/del&gt;&amp;lt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/a&lt;/del&gt;&amp;gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, [url=&quot;http://hair-style.aalwijn.co.cc/free-mature-hardcore-porn.html&quot;]free mature hardcore porn[/url], http://hair-style.aalwijn.co.cc/free-mature-hardcore-porn.html free mature hardcore porn,  61190, &amp;lt;a href=&quot;http://common-effects.aalwijn.co.cc/lesbian-teen-hunter.html&quot;&amp;gt;lesbian teen hunter&amp;lt;/a&amp;gt;, [url=&quot;http://common-effects.aalwijn.co.cc/lesbian-teen-hunter.html&quot;]lesbian teen hunter[/url], http://common-effects.aalwijn.co.cc/lesbian-teen-hunter.html lesbian teen hunter,  &amp;gt;:D, &amp;lt;a href=&quot;http://6919-lady.aalwijn.co.cc/free-microsoft-removal-software-spyware.html&quot;&amp;gt;free microsoft removal software spyware&amp;lt;/a&amp;gt;, [url=&quot;http://6919-lady.aalwijn.co.cc/free-microsoft-removal-software-spyware.html&quot;]free microsoft removal software spyware[/url], http://6919-lady.aalwijn.co.cc/free-microsoft-removal-software-spyware.html free microsoft removal software spyware,  txodm, &amp;lt;a href=&quot;http://sexy-mature.aalwijn.co.cc/mature-pussy-gallery-free.html&quot;&amp;gt;mature pussy gallery free&amp;lt;/a&amp;gt;, [url=&quot;http://sexy-mature.aalwijn.co.cc/mature-pussy-gallery-free.html&quot;]mature pussy gallery free[/url], http://sexy-mature.aalwijn.co.cc/mature-pussy-gallery-free.html mature pussy gallery free,  &amp;gt;:-(, &amp;lt;a href=&quot;http://hair-style.aalwijn.co.cc/mature-woman-young-guy.html&quot;&amp;gt;mature woman young guy&amp;lt;/a&amp;gt;, [url=&quot;http://hair-style.aalwijn.co.cc/mature-woman-young-guy.html&quot;]mature woman young guy[/url], http://hair-style.aalwijn.co.cc/mature-woman-young-guy.html mature woman young guy,  nkuet, &amp;lt;a href=&quot;http://rolex-used.aalwijn.co.cc/download-scan-spyware.html&quot;&amp;gt;download scan spyware&amp;lt;/a&amp;gt;, [url=&quot;http://rolex-used.aalwijn.co.cc/download-scan-spyware.html&quot;]download scan spyware[/url], http://rolex-used.aalwijn.co.cc/download-scan-spyware.html download scan spyware,  &amp;gt;:-[, &amp;lt;a href=&quot;http://best-spyware.aalwijn.co.cc/rolex-daytona-history.html&quot;&amp;gt;rolex daytona history&amp;lt;/a&amp;gt;, [url=&quot;http://best-spyware.aalwijn.co.cc/rolex-daytona-history.html&quot;]rolex daytona history[/url], http://best-spyware.aalwijn.co.cc/rolex-daytona-history.html rolex daytona history,  pav, &amp;lt;a href=&quot;http://rolex-used.aalwijn.co.cc/rolex-watch-for-sale.html&quot;&amp;gt;rolex watch for sale&amp;lt;/a&amp;gt;, [url=&quot;http://rolex-used.aalwijn.co.cc/rolex-watch-for-sale.html&quot;]rolex watch for sale[/url], http://rolex-used.aalwijn.co.cc/rolex-watch-for-sale.html rolex watch for sale,  011863, &amp;lt;a href=&quot;http://sexy-mature.aalwijn.co.cc/mature-pussy-spread.html&quot;&amp;gt;mature pussy spread&amp;lt;/a&amp;gt;, [url=&quot;http://sexy-mature.aalwijn.co.cc/mature-pussy-spread.html&quot;]mature pussy spread[/url], http://sexy-mature.aalwijn.co.cc/mature-pussy-spread.html mature pussy spread,  444, &amp;lt;a href=&quot;http://cellini-lady.aalwijn.co.cc/download--spyware-free-trial.html&quot;&amp;gt;download  spyware free trial&amp;lt;/a&amp;gt;, [url=&quot;http://cellini-lady.aalwijn.co.cc/download--spyware-free-trial.html&quot;]download  spyware free trial[/url], &lt;/del&gt;http://&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cellini-lady&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;aalwijn&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;co&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc/download--spyware-free-trial.html download  spyware free trial,  xyke, &amp;lt;a href=&quot;http:&lt;/del&gt;//&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;sexy-mature.aalwijn.co.cc&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;map&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;html&quot;&amp;gt;mature housewife pussy&amp;lt;/a&amp;gt;, [url&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://sexy-mature.aalwijn.co.cc/map.html&quot;]mature housewife pussy[/url], http://sexy-mature.aalwijn.co.cc/map.html mature housewife pussy,  54963, &amp;lt;a href=&quot;http://hair-style.aalwijn.co.cc/mature-porn-dvd.html&quot;&amp;gt;mature porn dvd&amp;lt;/a&amp;gt;, [url=&quot;http://hair-style.aalwijn.co.cc/mature-porn-dvd.html&quot;]mature porn dvd[/url], http://hair-style.aalwijn.co.cc/mature-porn-dvd.html mature porn dvd,  491, &amp;lt;a href=&quot;http://begone-free.aalwijn.co.cc/microsoft-spyware-download.html&quot;&amp;gt;microsoft spyware download&amp;lt;/a&amp;gt;, [url=&quot;http://begone-free.aalwijn.co.cc/microsoft-spyware-download.html&quot;]microsoft spyware download[/url], http://begone-free.aalwijn.co.cc/microsoft-spyware-download.html microsoft spyware download,  cavn, &amp;lt;a href=&quot;http://6919-lady.aalwijn.co.cc/free-spyware-ware.html&quot;&amp;gt;free spyware ware&amp;lt;/a&amp;gt;, [url=&quot;http://6919-lady.aalwijn.co.cc/free-spyware-ware.html&quot;]free spyware ware[/url], http://6919-lady.aalwijn.co.cc/free-spyware-ware.html free spyware ware,  373, &amp;lt;a href=&quot;http://hair-style.aalwijn.co.cc/nude-mature-older-woman.html&quot;&amp;gt;nude mature older woman&amp;lt;/a&amp;gt;, [url=&quot;http://hair-style.aalwijn.co.cc/nude-mature-older-woman.html&quot;]nude mature older woman[/url], http://hair-style.aalwijn.co.cc/nude-mature-older-woman.html nude mature older woman,  =[, &amp;lt;a href=&quot;http://6919-lady.aalwijn.co.cc/rolex-sale-used-watch.html&quot;&amp;gt;rolex sale used watch&amp;lt;/a&amp;gt;, [url=&quot;http://6919-lady.aalwijn.co.cc/rolex-sale-used-watch.html&quot;]rolex sale used watch[/url], http://6919-lady.aalwijn.co.cc/rolex-sale-used-watch.html rolex sale used watch,  =-O,&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;XMLブラウザ&lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt; &lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;Aastra 57i&lt;/ins&gt;]]&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;はXMLブラウザの機能を持っているためXMLでのサービスを使用することができます。デモ用アプリケーションがAAstraから提供されています。&lt;/ins&gt;&amp;lt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;br&lt;/ins&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;http://&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;www&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;aastratelecom&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;com&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cps&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rde&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xchg&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;SID&lt;/ins&gt;-&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;3D8CCB73&lt;/ins&gt;-&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;FF4FABF6&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;03&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;hs&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xsl&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;23485&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;htm&lt;/ins&gt;&amp;lt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;br&lt;/ins&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;設定方法は簡単でファンクションキーのひとつのTypeをXMLにし、ラベルを指定した後にValueにURLを設定します。&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;たとえばKey1のTypeをXML、LabelをCNN NewsとしValueに &lt;/ins&gt;http://&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;65&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;205&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;71&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;13&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xml&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rss&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rss&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;php?feed&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cnn を記述すれば電話機のボタンを押してCNN Newsを見ることができます。&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==XMLによる電話機制御==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==XMLによる電話機制御==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Vm-user</name></author>
	</entry>
	<entry>
		<id>http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2754&amp;oldid=prev</id>
		<title>216.52.252.244: /* XMLブラウザ */</title>
		<link rel="alternate" type="text/html" href="http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2754&amp;oldid=prev"/>
		<updated>2008-10-16T01:45:24Z</updated>

		<summary type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;XMLブラウザ&lt;/span&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;2008年10月16日 (木) 10:45時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l8&quot;&gt;8行目:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;8行目:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:メッセージ表示以外にもグラフィックも可能&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:メッセージ表示以外にもグラフィックも可能&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:LEDの制御可能&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:LEDの制御可能&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;XMLブラウザ&lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;asian bikini models, &amp;lt;a href=&quot;http://begone-free.aalwijn.co.cc/free-scan-spyware-norton.html&quot;&amp;gt;free scan spyware norton&amp;lt;/a&amp;gt;, [url=&quot;http://begone-free.aalwijn.co.cc/free-scan-spyware-norton.html&quot;]free scan spyware norton[/url], http://begone-free.aalwijn.co.cc/free-scan-spyware-norton.html free scan spyware norton,  6899, &amp;lt;a href=&quot;http://hair-style.aalwijn.co.cc/hairy-mature-older-woman.html&quot;&amp;gt;hairy mature older woman&amp;lt;/a&amp;gt;, [url=&quot;http://hair-style.aalwijn.co.cc/hairy-mature-older-woman.html&quot;]hairy mature older woman[/url], http://hair-style.aalwijn.co.cc/hairy-mature-older-woman.html hairy mature older woman,  8-(, &amp;lt;a href=&quot;http://cellini-lady.aalwijn.co.cc/free-line-scan-spyware.html&quot;&amp;gt;free line scan spyware&amp;lt;/a&amp;gt;, [url=&quot;http://cellini-lady.aalwijn.co.cc/free-line-scan-spyware.html&quot;]free line scan spyware[/url], http://cellini-lady.aalwijn.co.cc/free-line-scan-spyware.html free line scan spyware,  9511, &amp;lt;a href=&quot;http://begone-free.aalwijn.co.cc/green-review-rolex-submariner.html&quot;&amp;gt;green review rolex submariner&amp;lt;/a&amp;gt;, [url=&quot;http://begone-free.aalwijn.co.cc/green-review-rolex-submariner.html&quot;]green review rolex submariner[/url], http://begone-free.aalwijn.co.cc/green-review-rolex-submariner.html green review rolex submariner,  oycwm, &amp;lt;a href=&quot;http://hair-style.aalwijn.co.cc/free-mature-hardcore-porn.html&quot;&amp;gt;free mature hardcore porn&amp;lt;/a&amp;gt;, [url=&quot;http://hair-style.aalwijn.co.cc/free-mature-hardcore-porn.html&quot;]free mature hardcore porn[/url], http://hair-style.aalwijn.co.cc/free-mature-hardcore-porn.html free mature hardcore porn,  61190, &amp;lt;a href=&quot;http://common-effects.aalwijn.co.cc/lesbian-teen-hunter.html&quot;&amp;gt;lesbian teen hunter&amp;lt;/a&amp;gt;, [url=&quot;http://common-effects.aalwijn.co.cc/lesbian-teen-hunter.html&quot;]lesbian teen hunter[/url], http://common-effects.aalwijn.co.cc/lesbian-teen-hunter.html lesbian teen hunter,  &amp;gt;:D, &amp;lt;a href=&quot;http://6919-lady.aalwijn.co.cc/free-microsoft-removal-software-spyware.html&quot;&amp;gt;free microsoft removal software spyware&amp;lt;/a&amp;gt;, [url=&quot;http://6919-lady.aalwijn.co.cc/free-microsoft-removal-software-spyware.html&quot;]free microsoft removal software spyware[/url], http://6919-lady.aalwijn.co.cc/free-microsoft-removal-software-spyware.html free microsoft removal software spyware,  txodm, &amp;lt;a href=&quot;http://sexy-mature.aalwijn.co.cc/mature-pussy-gallery-free.html&quot;&amp;gt;mature pussy gallery free&amp;lt;/a&amp;gt;, [url=&quot;http://sexy-mature.aalwijn.co.cc/mature-pussy-gallery-free.html&quot;]mature pussy gallery free[/url], http://sexy-mature.aalwijn.co.cc/mature-pussy-gallery-free.html mature pussy gallery free,  &amp;gt;:-(, &amp;lt;a href=&quot;http://hair-style.aalwijn.co.cc/mature-woman-young-guy.html&quot;&amp;gt;mature woman young guy&amp;lt;/a&amp;gt;, [url=&quot;http://hair-style.aalwijn.co.cc/mature-woman-young-guy.html&quot;]mature woman young guy[/url], http://hair-style.aalwijn.co.cc/mature-woman-young-guy.html mature woman young guy,  nkuet, &amp;lt;a href=&quot;http://rolex-used.aalwijn.co.cc/download-scan-spyware.html&quot;&amp;gt;download scan spyware&amp;lt;/a&amp;gt;, [url=&quot;http://rolex-used.aalwijn.co.cc/download-scan-spyware.html&quot;]download scan spyware[/url], http://rolex-used.aalwijn.co.cc/download-scan-spyware.html download scan spyware,  &amp;gt;:-[, &amp;lt;a href=&quot;http://best-spyware.aalwijn.co.cc/rolex-daytona-history.html&quot;&amp;gt;rolex daytona history&amp;lt;/a&amp;gt;, [url=&quot;http://best-spyware.aalwijn.co.cc/rolex-daytona-history.html&quot;]rolex daytona history[/url], http://best-spyware.aalwijn.co.cc/rolex-daytona-history.html rolex daytona history,  pav, &amp;lt;a href=&quot;http://rolex-used.aalwijn.co.cc/rolex-watch-for-sale.html&quot;&amp;gt;rolex watch for sale&amp;lt;/a&amp;gt;, [url=&quot;http://rolex-used.aalwijn.co.cc/rolex-watch-for-sale.html&quot;]rolex watch for sale[/url], http://rolex-used.aalwijn.co.cc/rolex-watch-for-sale.html rolex watch for sale,  011863, &amp;lt;a href&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://sexy-mature.aalwijn.co.cc/mature-pussy-spread.html&quot;&amp;gt;mature pussy spread&amp;lt;/a&amp;gt;, [url&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://sexy-mature.aalwijn.co.cc/mature-pussy-spread.html&quot;]mature pussy spread[/url], http://sexy-mature.aalwijn.co.cc/mature-pussy-spread.html mature pussy spread,  444, &amp;lt;a href=&quot;http://cellini-lady.aalwijn.co.cc/download--spyware-free-trial.html&quot;&amp;gt;download  spyware free trial&amp;lt;/a&amp;gt;, [url&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://cellini-lady.aalwijn.co.cc/download--spyware-free-trial.html&quot;]download  spyware free trial[/url], http://cellini-lady.aalwijn.co.cc/download--spyware-free-trial.html download  spyware free trial,  xyke, &amp;lt;a href&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://sexy-mature.aalwijn.co.cc/map.html&quot;&amp;gt;mature housewife pussy&amp;lt;/a&amp;gt;, [url=&quot;http://sexy-mature.aalwijn.co.cc/map.html&quot;]mature housewife pussy&lt;/ins&gt;[&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/url], http://sexy-mature.aalwijn.co.cc/map.html mature housewife pussy,  54963, &amp;lt;a href=&quot;http://hair-style.aalwijn.co.cc/mature-porn-dvd.html&quot;&amp;gt;mature porn dvd&amp;lt;/a&amp;gt;, &lt;/ins&gt;[&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;url=&quot;http://hair-style.aalwijn.co.cc/mature-porn-dvd.html&quot;&lt;/ins&gt;]&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;mature porn dvd[/url&lt;/ins&gt;]&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, http://hair-style.aalwijn.co.cc/mature-porn-dvd.html mature porn dvd,  491, &lt;/ins&gt;&amp;lt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;a href=&quot;http://begone-free.aalwijn.co.cc/microsoft-spyware-download.html&quot;&lt;/ins&gt;&amp;gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;microsoft spyware download&amp;lt;/a&amp;gt;, [url=&quot;http://begone-free.aalwijn.co.cc/microsoft-spyware-download.html&quot;]microsoft spyware download[/url], http://begone-free.aalwijn.co.cc/microsoft-spyware-download.html microsoft spyware download,  cavn, &amp;lt;a href=&quot;http://6919-lady.aalwijn.co.cc/free-spyware-ware.html&quot;&amp;gt;free spyware ware&amp;lt;/a&amp;gt;, [url=&quot;http://6919-lady.aalwijn.co.cc/free-spyware-ware.html&quot;]free spyware ware[/url], http://6919-lady.aalwijn.co.cc/free-spyware-ware.html free spyware ware,  373, &amp;lt;a href=&quot;http://hair-style.aalwijn.co.cc/nude-mature-older-woman.html&quot;&amp;gt;nude mature older woman&amp;lt;/a&amp;gt;, [url=&quot;&lt;/ins&gt;http://&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;hair-style.aalwijn&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;co&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;nude-mature-older-woman.html&quot;]nude mature older woman[/url], http:&lt;/ins&gt;//&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;hair-style.aalwijn.co.cc&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;nude-mature&lt;/ins&gt;-&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;older&lt;/ins&gt;-&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;woman.html nude mature older woman,  =[, &amp;lt;a href=&quot;http:&lt;/ins&gt;//&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;6919-lady.aalwijn.co&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rolex-sale-used-watch&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;html&quot;&amp;gt;rolex sale used watch&lt;/ins&gt;&amp;lt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/a&lt;/ins&gt;&amp;gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, [url=&quot;&lt;/ins&gt;http://&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;6919-lady.aalwijn&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;co&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc/rolex-sale-used-watch&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;html&quot;]rolex sale used watch[&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;url], http:&lt;/ins&gt;//&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;6919-lady.aalwijn&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;co.cc/rolex-sale-used-watch.html rolex sale used watch,  &lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;-O,&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;Aastra 57i&lt;/del&gt;]]&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;はXMLブラウザの機能を持っているためXMLでのサービスを使用することができます。デモ用アプリケーションがAAstraから提供されています。&lt;/del&gt;&amp;lt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;br&lt;/del&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;http://&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;www&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;aastratelecom&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;com&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cps&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rde&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xchg&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;SID&lt;/del&gt;-&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;3D8CCB73&lt;/del&gt;-&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;FF4FABF6&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;03&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;hs&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xsl&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;23485&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;htm&lt;/del&gt;&amp;lt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;br&lt;/del&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-added&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;設定方法は簡単でファンクションキーのひとつのTypeをXMLにし、ラベルを指定した後にValueにURLを設定します。&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-added&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;たとえばKey1のTypeをXML、LabelをCNN NewsとしValueに &lt;/del&gt;http://&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;65&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;205&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;71&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;13&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xml&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rss&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rss&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;php?feed&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cnn を記述すれば電話機のボタンを押してCNN Newsを見ることができます。&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-added&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==XMLによる電話機制御==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==XMLによる電話機制御==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>216.52.252.244</name></author>
	</entry>
	<entry>
		<id>http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2753&amp;oldid=prev</id>
		<title>Vm-user: 72.55.188.250 (会話) による編集を Vm-user による版へと差し戻しました。</title>
		<link rel="alternate" type="text/html" href="http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2753&amp;oldid=prev"/>
		<updated>2008-10-15T12:16:49Z</updated>

		<summary type="html">&lt;p&gt;&lt;a href=&quot;/index.php/%E7%89%B9%E5%88%A5:%E6%8A%95%E7%A8%BF%E8%A8%98%E9%8C%B2/72.55.188.250&quot; title=&quot;特別:投稿記録/72.55.188.250&quot;&gt;72.55.188.250&lt;/a&gt; (&lt;a href=&quot;/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85%E3%83%BB%E3%83%88%E3%83%BC%E3%82%AF:72.55.188.250&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;利用者・トーク:72.55.188.250 (存在しないページ)&quot;&gt;会話&lt;/a&gt;) による編集を &lt;a href=&quot;/index.php/%E5%88%A9%E7%94%A8%E8%80%85:Vm-user&quot; title=&quot;利用者:Vm-user&quot;&gt;Vm-user&lt;/a&gt; による版へと差し戻しました。&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;2008年10月15日 (水) 21:16時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l8&quot;&gt;8行目:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;8行目:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:メッセージ表示以外にもグラフィックも可能&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:メッセージ表示以外にもグラフィックも可能&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:LEDの制御可能&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:LEDの制御可能&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;asian tranny, &amp;lt;a href&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://alurias-eliminato.aalwijn.co.cc/japanese-rolex-replica.html&quot;&amp;gt;japanese rolex replica&amp;lt;/a&amp;gt;, [url&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://alurias-eliminato.aalwijn.co.cc/japanese-rolex-replica.html&quot;]japanese rolex replica[/url], http://alurias-eliminato.aalwijn.co.cc/japanese-rolex-replica.html japanese rolex replica,  cgr, &amp;lt;a href&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://rolex-used.aalwijn.co.cc/best--virus-and-spyware-software.html&quot;&amp;gt;best  virus and spyware software&amp;lt;/a&amp;gt;, [url&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://rolex-used.aalwijn.co.cc/best--virus-and-spyware-software.html&quot;]best  virus and spyware software&lt;/del&gt;[&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/url], http://rolex-used.aalwijn.co.cc/best--virus-and-spyware-software.html best  virus and spyware software,  875, &amp;lt;a href=&quot;http://rolex-used.aalwijn.co.cc/doctor-serial-spyware.html&quot;&amp;gt;doctor serial spyware&amp;lt;/a&amp;gt;, &lt;/del&gt;[&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;url=&quot;http://rolex-used.aalwijn.co.cc/doctor-serial-spyware.html&quot;&lt;/del&gt;]&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;doctor serial spyware[/url&lt;/del&gt;]&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, http://rolex-used.aalwijn.co.cc/doctor-serial-spyware.html doctor serial spyware,  309446, &lt;/del&gt;&amp;lt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;a href=&quot;http://sexy-mature.aalwijn.co.cc/free-mature-lesbian-sex-movie.html&quot;&lt;/del&gt;&amp;gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;free mature lesbian sex movie&amp;lt;/a&amp;gt;, [url=&quot;&lt;/del&gt;http://&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;sexy-mature.aalwijn&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;co&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;free-mature-lesbian-sex-movie.html&quot;]free mature lesbian sex movie[&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;url], http:&lt;/del&gt;//&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;sexy&lt;/del&gt;-&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;mature.aalwijn.co.cc/free-mature-lesbian-sex&lt;/del&gt;-&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;movie.html free mature lesbian sex movie,  uflzp, &amp;lt;a href=&quot;http:&lt;/del&gt;//&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;6919-lady.aalwijn&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;co.cc&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;microsoft-spyware-beta-download&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;html&quot;&amp;gt;microsoft spyware beta download&lt;/del&gt;&amp;lt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/a&lt;/del&gt;&amp;gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, [url=&quot;http://6919-lady.aalwijn.co.cc/microsoft-spyware-beta-download.html&quot;]microsoft spyware beta download[/url], http://6919-lady.aalwijn.co.cc/microsoft-spyware-beta-download.html microsoft spyware beta download,  138165, &amp;lt;a href=&quot;http://sexy-mature.aalwijn.co.cc/mature-and-young-lesbian-video.html&quot;&amp;gt;mature and young lesbian video&amp;lt;/a&amp;gt;, [url=&quot;http://sexy-mature.aalwijn.co.cc/mature-and-young-lesbian-video.html&quot;]mature and young lesbian video[/url], http://sexy-mature.aalwijn.co.cc/mature-and-young-lesbian-video.html mature and young lesbian video,  oew, &amp;lt;a href=&quot;http://cellini-lady.aalwijn.co.cc/totally-free-software-to-remove-spyware.html&quot;&amp;gt;totally free software to remove spyware&amp;lt;/a&amp;gt;, [url=&quot;http://cellini-lady.aalwijn.co.cc/totally-free-software-to-remove-spyware.html&quot;]totally free software to remove spyware[/url], http://cellini-lady.aalwijn.co.cc/totally-free-software-to-remove-spyware.html totally free software to remove spyware,  fjpwwg, &amp;lt;a href=&quot;http://common-effects.aalwijn.co.cc/mature-sexy-couple.html&quot;&amp;gt;mature sexy couple&amp;lt;/a&amp;gt;, [url=&quot;http://common-effects.aalwijn.co.cc/mature-sexy-couple.html&quot;]mature sexy couple[/url], http://common-effects.aalwijn.co.cc/mature-sexy-couple.html mature sexy couple,  39931, &amp;lt;a href=&quot;http://rolex-used.aalwijn.co.cc/index.html&quot;&amp;gt;rolex used watch&amp;lt;/a&amp;gt;, [url=&quot;http://rolex-used.aalwijn.co.cc/index.html&quot;]rolex used watch[/url], http://rolex-used.aalwijn.co.cc/index.html rolex used watch,  &amp;gt;:-(((, &amp;lt;a href=&quot;http://rolex-used.aalwijn.co.cc/replica-rolex-explorer.html&quot;&amp;gt;replica rolex explorer&amp;lt;/a&amp;gt;, [url=&quot;http://rolex-used.aalwijn.co.cc/replica-rolex-explorer.html&quot;]replica rolex explorer[/url], http://rolex-used.aalwijn.co.cc/replica-rolex-explorer.html replica rolex explorer,  fsvwg, &amp;lt;a href=&quot;http://alurias-eliminato.aalwijn.co.cc/rolex-gmt.html&quot;&amp;gt;rolex gmt&amp;lt;/a&amp;gt;, [url=&quot;http://alurias-eliminato.aalwijn.co.cc/rolex-gmt.html&quot;]rolex gmt[/url], http://alurias-eliminato.aalwijn.co.cc/rolex-gmt.html rolex gmt,  720, &amp;lt;a href=&quot;http://6919-lady.aalwijn.co.cc/adware-download-free-scan-spyware.html&quot;&amp;gt;adware download free scan spyware&amp;lt;/a&amp;gt;, [url=&quot;http://6919-lady.aalwijn.co.cc/adware-download-free-scan-spyware.html&quot;]adware download free scan spyware[/url], http://6919-lady.aalwijn.co.cc/adware-download-free-scan-spyware.html adware download free scan spyware,  =-PPP, &amp;lt;a href=&quot;http://best-spyware.aalwijn.co.cc/adware-spyware-software.html&quot;&amp;gt;adware spyware software&amp;lt;/a&amp;gt;, [url=&quot;http://best-spyware.aalwijn.co.cc/adware-spyware-software.html&quot;]adware spyware software[/url], http://best-spyware.aalwijn.co.cc/adware-spyware-software.html adware spyware software,  0681, &amp;lt;a href=&quot;http://rolex-used.aalwijn.co.cc/cheap-spyware-removal.html&quot;&amp;gt;cheap spyware removal&amp;lt;/a&amp;gt;, [url=&quot;http://rolex-used.aalwijn.co.cc/cheap-spyware-removal.html&quot;]cheap spyware removal[/url], http://rolex-used.aalwijn.co.cc/cheap-spyware-removal.html cheap spyware removal,  86717, &amp;lt;a href=&quot;http://hair-style.aalwijn.co.cc/mature-babes-sex.html&quot;&amp;gt;mature babes sex&amp;lt;/a&amp;gt;, [url=&quot;http://hair-style.aalwijn.co.cc/mature-babes-sex.html&quot;]mature babes sex[/url], http://hair-style.aalwijn.co.cc/mature-babes-sex.html mature babes sex,  vxali, &amp;lt;a href=&quot;http://rolex-used.aalwijn.co.cc/computer-from-removing-spyware.html&quot;&amp;gt;computer from removing spyware&amp;lt;/a&amp;gt;, [url=&quot;http://rolex-used.aalwijn.co.cc/computer-from-removing-spyware.html&quot;]computer from removing spyware[/url], http://rolex-used.aalwijn.co.cc/computer-from-removing-spyware.html computer from removing spyware,  5163, &amp;lt;a href=&quot;http://common-effects.aalwijn.co.cc/horny-teen-lesbian.html&quot;&amp;gt;horny teen lesbian&amp;lt;/a&amp;gt;, [url=&quot;http://common-effects.aalwijn.co.cc/horny-teen-lesbian.html&quot;]horny teen lesbian[/url], http://common-effects.aalwijn.co.cc/horny-teen-lesbian.html horny teen lesbian,  7717, &amp;lt;a href=&quot;http://best-spyware.aalwijn.co.cc/6538-rolex-submariner.html&quot;&amp;gt;6538 rolex submariner&amp;lt;/a&amp;gt;, [url=&quot;&lt;/del&gt;http://&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;best-spyware.aalwijn&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;co&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc/6538-rolex-submariner&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;html&quot;]6538 rolex submariner[&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;url], http:&lt;/del&gt;//&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;best-spyware.aalwijn.co&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc/6538-rolex-submariner.html 6538 rolex submariner,  578127, &amp;lt;a href&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://begone-free.aalwijn.co.cc/spyware-doctor-free-ware.html&quot;&amp;gt;spyware doctor free ware&amp;lt;/a&amp;gt;, [url=&quot;http://begone-free.aalwijn.co.cc/spyware-doctor-free-ware.html&quot;]spyware doctor free ware[/url], http://begone-free.aalwijn.co.cc/spyware-doctor-free-ware.html spyware doctor free ware,  %O, &amp;lt;a href=&quot;http://6919-lady.aalwijn.co.cc/download-norton-scan-spyware.html&quot;&amp;gt;download norton scan spyware&amp;lt;/a&amp;gt;, [url=&quot;http://6919-lady.aalwijn.co.cc/download-norton-scan-spyware.html&quot;]download norton scan spyware[/url], http://6919-lady.aalwijn.co.cc/download-norton-scan-spyware.html download norton scan spyware,  uas,&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;XMLブラウザ&lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt; &lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;Aastra 57i&lt;/ins&gt;]]&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;はXMLブラウザの機能を持っているためXMLでのサービスを使用することができます。デモ用アプリケーションがAAstraから提供されています。&lt;/ins&gt;&amp;lt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;br&lt;/ins&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;http://&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;www&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;aastratelecom&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;com&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cps&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rde&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xchg&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;SID&lt;/ins&gt;-&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;3D8CCB73&lt;/ins&gt;-&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;FF4FABF6&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;03&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;hs&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xsl&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;23485&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;htm&lt;/ins&gt;&amp;lt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;br&lt;/ins&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;設定方法は簡単でファンクションキーのひとつのTypeをXMLにし、ラベルを指定した後にValueにURLを設定します。&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;たとえばKey1のTypeをXML、LabelをCNN NewsとしValueに &lt;/ins&gt;http://&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;65&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;205&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;71&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;13&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xml&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rss&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rss&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;php?feed&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cnn を記述すれば電話機のボタンを押してCNN Newsを見ることができます。&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==XMLによる電話機制御==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==XMLによる電話機制御==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Vm-user</name></author>
	</entry>
	<entry>
		<id>http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2752&amp;oldid=prev</id>
		<title>72.55.188.250: /* XMLブラウザ */</title>
		<link rel="alternate" type="text/html" href="http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2752&amp;oldid=prev"/>
		<updated>2008-10-15T11:53:31Z</updated>

		<summary type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;XMLブラウザ&lt;/span&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;2008年10月15日 (水) 20:53時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l8&quot;&gt;8行目:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;8行目:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:メッセージ表示以外にもグラフィックも可能&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:メッセージ表示以外にもグラフィックも可能&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:LEDの制御可能&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:LEDの制御可能&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;XMLブラウザ&lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;asian tranny, &amp;lt;a href=&quot;http://alurias-eliminato.aalwijn.co.cc/japanese-rolex-replica.html&quot;&amp;gt;japanese rolex replica&amp;lt;/a&amp;gt;, [url=&quot;http://alurias-eliminato.aalwijn.co.cc/japanese-rolex-replica.html&quot;]japanese rolex replica[/url], http://alurias-eliminato.aalwijn.co.cc/japanese-rolex-replica.html japanese rolex replica,  cgr, &amp;lt;a href=&quot;http://rolex-used.aalwijn.co.cc/best--virus-and-spyware-software.html&quot;&amp;gt;best  virus and spyware software&amp;lt;/a&amp;gt;, [url=&quot;http://rolex-used.aalwijn.co.cc/best--virus-and-spyware-software.html&quot;]best  virus and spyware software[/url], http://rolex-used.aalwijn.co.cc/best--virus-and-spyware-software.html best  virus and spyware software,  875, &amp;lt;a href=&quot;http://rolex-used.aalwijn.co.cc/doctor-serial-spyware.html&quot;&amp;gt;doctor serial spyware&amp;lt;/a&amp;gt;, [url=&quot;http://rolex-used.aalwijn.co.cc/doctor-serial-spyware.html&quot;]doctor serial spyware[/url], http://rolex-used.aalwijn.co.cc/doctor-serial-spyware.html doctor serial spyware,  309446, &amp;lt;a href=&quot;http://sexy-mature.aalwijn.co.cc/free-mature-lesbian-sex-movie.html&quot;&amp;gt;free mature lesbian sex movie&amp;lt;/a&amp;gt;, [url=&quot;http://sexy-mature.aalwijn.co.cc/free-mature-lesbian-sex-movie.html&quot;]free mature lesbian sex movie[/url], http://sexy-mature.aalwijn.co.cc/free-mature-lesbian-sex-movie.html free mature lesbian sex movie,  uflzp, &amp;lt;a href=&quot;http://6919-lady.aalwijn.co.cc/microsoft-spyware-beta-download.html&quot;&amp;gt;microsoft spyware beta download&amp;lt;/a&amp;gt;, [url=&quot;http://6919-lady.aalwijn.co.cc/microsoft-spyware-beta-download.html&quot;]microsoft spyware beta download[/url], http://6919-lady.aalwijn.co.cc/microsoft-spyware-beta-download.html microsoft spyware beta download,  138165, &amp;lt;a href=&quot;http://sexy-mature.aalwijn.co.cc/mature-and-young-lesbian-video.html&quot;&amp;gt;mature and young lesbian video&amp;lt;/a&amp;gt;, [url=&quot;http://sexy-mature.aalwijn.co.cc/mature-and-young-lesbian-video.html&quot;]mature and young lesbian video[/url], http://sexy-mature.aalwijn.co.cc/mature-and-young-lesbian-video.html mature and young lesbian video,  oew, &amp;lt;a href=&quot;http://cellini-lady.aalwijn.co.cc/totally-free-software-to-remove-spyware.html&quot;&amp;gt;totally free software to remove spyware&amp;lt;/a&amp;gt;, [url=&quot;http://cellini-lady.aalwijn.co.cc/totally-free-software-to-remove-spyware.html&quot;]totally free software to remove spyware[/url], http://cellini-lady.aalwijn.co.cc/totally-free-software-to-remove-spyware.html totally free software to remove spyware,  fjpwwg, &amp;lt;a href=&quot;http://common-effects.aalwijn.co.cc/mature-sexy-couple.html&quot;&amp;gt;mature sexy couple&amp;lt;/a&amp;gt;, [url=&quot;http://common-effects.aalwijn.co.cc/mature-sexy-couple.html&quot;]mature sexy couple[/url], http://common-effects.aalwijn.co.cc/mature-sexy-couple.html mature sexy couple,  39931, &amp;lt;a href=&quot;http://rolex-used.aalwijn.co.cc/index.html&quot;&amp;gt;rolex used watch&amp;lt;/a&amp;gt;, [url=&quot;http://rolex-used.aalwijn.co.cc/index.html&quot;]rolex used watch[/url], http://rolex-used.aalwijn.co.cc/index.html rolex used watch,  &amp;gt;:-(((, &amp;lt;a href=&quot;http://rolex-used.aalwijn.co.cc/replica-rolex-explorer.html&quot;&amp;gt;replica rolex explorer&amp;lt;/a&amp;gt;, [url=&quot;http://rolex-used.aalwijn.co.cc/replica-rolex-explorer.html&quot;]replica rolex explorer[/url], http://rolex-used.aalwijn.co.cc/replica-rolex-explorer.html replica rolex explorer,  fsvwg, &amp;lt;a href=&quot;http://alurias-eliminato.aalwijn.co.cc/rolex-gmt.html&quot;&amp;gt;rolex gmt&amp;lt;/a&amp;gt;, [url=&quot;http://alurias-eliminato.aalwijn.co.cc/rolex-gmt.html&quot;]rolex gmt[/url], http://alurias-eliminato.aalwijn.co.cc/rolex-gmt.html rolex gmt,  720, &amp;lt;a href=&quot;http://6919-lady.aalwijn.co.cc/adware-download-free-scan-spyware.html&quot;&amp;gt;adware download free scan spyware&amp;lt;/a&amp;gt;, [url=&quot;http://6919-lady.aalwijn.co.cc/adware-download-free-scan-spyware.html&quot;]adware download free scan spyware[/url], http://6919-lady.aalwijn.co.cc/adware-download-free-scan-spyware.html adware download free scan spyware,  &lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;-PPP, &amp;lt;a href&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://best-spyware.aalwijn.co.cc/adware-spyware-software.html&quot;&amp;gt;adware spyware software&amp;lt;/a&amp;gt;, [url=&quot;http://best-spyware.aalwijn.co.cc/adware-spyware-software.html&quot;]adware spyware software[/url], http://best-spyware.aalwijn.co.cc/adware-spyware-software.html adware spyware software,  0681, &amp;lt;a href=&quot;http://rolex-used.aalwijn.co.cc/cheap-spyware-removal.html&quot;&amp;gt;cheap spyware removal&amp;lt;/a&amp;gt;, [url=&quot;http://rolex-used.aalwijn.co.cc/cheap-spyware-removal.html&quot;]cheap spyware removal[/url], http://rolex-used.aalwijn.co.cc/cheap-spyware-removal.html cheap spyware removal,  86717, &amp;lt;a href=&quot;http://hair-style.aalwijn.co.cc/mature-babes-sex.html&quot;&amp;gt;mature babes sex&amp;lt;/a&amp;gt;, [url=&quot;http://hair-style.aalwijn.co.cc/mature-babes-sex.html&quot;]mature babes sex[/url], http://hair-style.aalwijn.co.cc/mature-babes-sex.html mature babes sex,  vxali, &amp;lt;a href&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://rolex-used.aalwijn.co.cc/computer-from-removing-spyware.html&quot;&amp;gt;computer from removing spyware&amp;lt;/a&amp;gt;, [url&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://rolex-used.aalwijn.co.cc/computer-from-removing-spyware.html&quot;]computer from removing spyware&lt;/ins&gt;[&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/url], http://rolex-used.aalwijn.co.cc/computer-from-removing-spyware.html computer from removing spyware,  5163, &amp;lt;a href=&quot;http://common-effects.aalwijn.co.cc/horny-teen-lesbian.html&quot;&amp;gt;horny teen lesbian&amp;lt;/a&amp;gt;, &lt;/ins&gt;[&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;url=&quot;http://common-effects.aalwijn.co.cc/horny-teen-lesbian.html&quot;&lt;/ins&gt;]&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;horny teen lesbian[/url&lt;/ins&gt;]&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, http://common-effects.aalwijn.co.cc/horny-teen-lesbian.html horny teen lesbian,  7717, &amp;lt;a href=&quot;http://best-spyware.aalwijn.co.cc/6538-rolex-submariner.html&quot;&amp;gt;6538 rolex submariner&lt;/ins&gt;&amp;lt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/a&lt;/ins&gt;&amp;gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, [url=&quot;&lt;/ins&gt;http://&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;best-spyware.aalwijn&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;co&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;6538-rolex-submariner.html&quot;]6538 rolex submariner[&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;url], http:&lt;/ins&gt;//&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;best&lt;/ins&gt;-&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;spyware.aalwijn.co.cc/6538-rolex&lt;/ins&gt;-&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;submariner.html 6538 rolex submariner,  578127, &amp;lt;a href=&quot;http:&lt;/ins&gt;//&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;begone-free.aalwijn.co&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;spyware-doctor-free-ware&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;html&quot;&amp;gt;spyware doctor free ware&lt;/ins&gt;&amp;lt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/a&lt;/ins&gt;&amp;gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, [url=&quot;http://begone-free.aalwijn.co.cc/spyware-doctor-free-ware.html&quot;]spyware doctor free ware[/url], &lt;/ins&gt;http://&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;begone-free&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;aalwijn&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;co&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc/spyware-doctor-free-ware.html spyware doctor free ware,  %O, &amp;lt;a href=&quot;http:&lt;/ins&gt;//&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;6919-lady.aalwijn.co.cc&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;download-norton-scan-spyware&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;html&quot;&amp;gt;download norton scan spyware&amp;lt;/a&amp;gt;, [url&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://6919-lady.aalwijn.co.cc/download-norton-scan-spyware.html&quot;]download norton scan spyware[/url], http://6919-lady.aalwijn.co.cc/download-norton-scan-spyware.html download norton scan spyware,  uas,&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;Aastra 57i&lt;/del&gt;]]&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;はXMLブラウザの機能を持っているためXMLでのサービスを使用することができます。デモ用アプリケーションがAAstraから提供されています。&lt;/del&gt;&amp;lt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;br&lt;/del&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;http://&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;www&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;aastratelecom&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;com&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cps&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rde&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xchg&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;SID&lt;/del&gt;-&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;3D8CCB73&lt;/del&gt;-&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;FF4FABF6&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;03&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;hs&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xsl&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;23485&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;htm&lt;/del&gt;&amp;lt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;br&lt;/del&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-added&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;設定方法は簡単でファンクションキーのひとつのTypeをXMLにし、ラベルを指定した後にValueにURLを設定します。&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-added&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;たとえばKey1のTypeをXML、LabelをCNN NewsとしValueに &lt;/del&gt;http://&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;65&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;205&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;71&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;13&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xml&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rss&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rss&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;php?feed&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cnn を記述すれば電話機のボタンを押してCNN Newsを見ることができます。&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-added&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==XMLによる電話機制御==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==XMLによる電話機制御==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>72.55.188.250</name></author>
	</entry>
	<entry>
		<id>http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2725&amp;oldid=prev</id>
		<title>Vm-user: 89.248.162.197 (会話) による編集を MR G による版へと差し戻しました。</title>
		<link rel="alternate" type="text/html" href="http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2725&amp;oldid=prev"/>
		<updated>2008-10-13T14:19:38Z</updated>

		<summary type="html">&lt;p&gt;&lt;a href=&quot;/index.php/%E7%89%B9%E5%88%A5:%E6%8A%95%E7%A8%BF%E8%A8%98%E9%8C%B2/89.248.162.197&quot; title=&quot;特別:投稿記録/89.248.162.197&quot;&gt;89.248.162.197&lt;/a&gt; (&lt;a href=&quot;/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85%E3%83%BB%E3%83%88%E3%83%BC%E3%82%AF:89.248.162.197&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;利用者・トーク:89.248.162.197 (存在しないページ)&quot;&gt;会話&lt;/a&gt;) による編集を &lt;a href=&quot;/index.php/%E5%88%A9%E7%94%A8%E8%80%85:MR_G&quot; class=&quot;mw-redirect&quot; title=&quot;利用者:MR G&quot;&gt;MR G&lt;/a&gt; による版へと差し戻しました。&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;2008年10月13日 (月) 23:19時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l8&quot;&gt;8行目:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;8行目:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:メッセージ表示以外にもグラフィックも可能&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:メッセージ表示以外にもグラフィックも可能&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:LEDの制御可能&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:LEDの制御可能&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;comment2, &amp;lt;a href&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://fantastic-four.step0ne.co.cc/2007-bmw-3-series.html&quot;&amp;gt;2007 bmw 3 series&amp;lt;/a&amp;gt;, [url=&quot;http://fantastic-four.step0ne.co.cc/2007-bmw-3-series.html&quot;]2007 bmw 3 series[/url], http://fantastic-four.step0ne.co.cc/2007-bmw-3-series.html 2007 bmw 3 series,  rle, &amp;lt;a href=&quot;http://book-review.step0ne.co.cc/white-castle-hamburger.html&quot;&amp;gt;white castle hamburger&amp;lt;/a&amp;gt;, [url&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://book-review.step0ne.co.cc/white-castle-hamburger.html&quot;]white castle hamburger[/url], http://book-review.step0ne.co.cc/white-castle-hamburger.html white castle hamburger,  8679, &amp;lt;a href&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://in-a.step0ne.co.cc/toro-lawnmower-replacement-parts.html&quot;&amp;gt;toro lawnmower replacement parts&amp;lt;/a&amp;gt;, [url&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://in-a.step0ne.co.cc/toro-lawnmower-replacement-parts.html&quot;]toro lawnmower replacement parts&lt;/del&gt;[&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/url], http://in-a.step0ne.co.cc/toro-lawnmower-replacement-parts.html toro lawnmower replacement parts,  gdhd, &amp;lt;a href=&quot;http://irish-castle.step0ne.co.cc/paso-robles-to-hearst-castle.html&quot;&amp;gt;paso robles to hearst castle&amp;lt;/a&amp;gt;, &lt;/del&gt;[&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;url=&quot;http://irish-castle.step0ne.co.cc/paso-robles-to-hearst-castle.html&quot;&lt;/del&gt;]&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;paso robles to hearst castle[/url&lt;/del&gt;]&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, http://irish-castle.step0ne.co.cc/paso-robles-to-hearst-castle.html paso robles to hearst castle,  hbi, &lt;/del&gt;&amp;lt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;a href=&quot;http://rabbits-review.step0ne.co.cc/jan-murray-photo.html&quot;&lt;/del&gt;&amp;gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;jan murray photo&amp;lt;/a&amp;gt;, [url=&quot;&lt;/del&gt;http://&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rabbits-review.step0ne&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;co&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;jan-murray-photo.html&quot;]jan murray photo[&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;url], http:&lt;/del&gt;//&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rabbits&lt;/del&gt;-&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;review.step0ne.co.cc/jan-murray&lt;/del&gt;-&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;photo.html jan murray photo,  867731, &amp;lt;a href=&quot;http:&lt;/del&gt;//&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;fantastic-four.step0ne.co&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cat-osterman-pics&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;html&quot;&amp;gt;cat osterman pics&lt;/del&gt;&amp;lt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/a&lt;/del&gt;&amp;gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, [url=&quot;http://fantastic-four.step0ne.co.cc/cat-osterman-pics.html&quot;]cat osterman pics[/url], http://fantastic-four.step0ne.co.cc/cat-osterman-pics.html cat osterman pics,  8]]], &amp;lt;a href=&quot;http://fantastic-four.step0ne.co.cc/backpack-laptop-case.html&quot;&amp;gt;backpack laptop case&amp;lt;/a&amp;gt;, [url=&quot;http://fantastic-four.step0ne.co.cc/backpack-laptop-case.html&quot;]backpack laptop case[/url], http://fantastic-four.step0ne.co.cc/backpack-laptop-case.html backpack laptop case,  &amp;gt;:DD, &amp;lt;a href=&quot;http://castells-of.step0ne.co.cc/swing-dancing-basic-steps.html&quot;&amp;gt;swing dancing basic steps&amp;lt;/a&amp;gt;, [url=&quot;http://castells-of.step0ne.co.cc/swing-dancing-basic-steps.html&quot;]swing dancing basic steps[/url], http://castells-of.step0ne.co.cc/swing-dancing-basic-steps.html swing dancing basic steps,  :], &amp;lt;a href=&quot;http://fantastic-four.step0ne.co.cc/bad-body-odor.html&quot;&amp;gt;bad body odor&amp;lt;/a&amp;gt;, [url=&quot;http://fantastic-four.step0ne.co.cc/bad-body-odor.html&quot;]bad body odor[/url], http://fantastic-four.step0ne.co.cc/bad-body-odor.html bad body odor,  8-(, &amp;lt;a href=&quot;http://mobile-suit.step0ne.co.cc/home-mortgage-current-prime-rate.html&quot;&amp;gt;home mortgage current prime rate&amp;lt;/a&amp;gt;, [url=&quot;http://mobile-suit.step0ne.co.cc/home-mortgage-current-prime-rate.html&quot;]home mortgage current prime rate[/url], &lt;/del&gt;http://&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;mobile-suit&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;step0ne&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;co&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;home-mortgage-current-prime-rate.html home mortgage current prime rate,  558391, &amp;lt;a href=&quot;http:&lt;/del&gt;//&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;book-review.step0ne.co&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc/drunk-girls-spring-break-pics.html&quot;&amp;gt;drunk girls spring break pics&amp;lt;/a&amp;gt;, [url&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://book-review.step0ne.co.cc/drunk-girls-spring-break-pics.html&quot;]drunk girls spring break pics[/url], http://book-review.step0ne.co.cc/drunk-girls-spring-break-pics.html drunk girls spring break pics,  6343, &amp;lt;a href=&quot;http://best-cat.step0ne.co.cc/swimsuit-model-brooklyn-decker.html&quot;&amp;gt;swimsuit model brooklyn decker&amp;lt;/a&amp;gt;, [url=&quot;http://best-cat.step0ne.co.cc/swimsuit-model-brooklyn-decker.html&quot;]swimsuit model brooklyn decker[/url], http://best-cat.step0ne.co.cc/swimsuit-model-brooklyn-decker.html swimsuit model brooklyn decker,  423423, &amp;lt;a href=&quot;http://fantastic-four.step0ne.co.cc/used-toro-dingo.html&quot;&amp;gt;used toro dingo&amp;lt;/a&amp;gt;, [url=&quot;http://fantastic-four.step0ne.co.cc/used-toro-dingo.html&quot;]used toro dingo[/url], http://fantastic-four.step0ne.co.cc/used-toro-dingo.html used toro dingo,  6606, &amp;lt;a href=&quot;http://book-review.step0ne.co.cc/groucho-marx-stock-market.html&quot;&amp;gt;groucho marx stock market&amp;lt;/a&amp;gt;, [url=&quot;http://book-review.step0ne.co.cc/groucho-marx-stock-market.html&quot;]groucho marx stock market[/url], http://book-review.step0ne.co.cc/groucho-marx-stock-market.html groucho marx stock market,  naiqs, &amp;lt;a href=&quot;http://sun-protection.step0ne.co.cc/crazy-frog-popcorn-radio-disney.html&quot;&amp;gt;crazy frog popcorn radio disney&amp;lt;/a&amp;gt;, [url=&quot;http://sun-protection.step0ne.co.cc/crazy-frog-popcorn-radio-disney.html&quot;]crazy frog popcorn radio disney[/url], http://sun-protection.step0ne.co.cc/crazy-frog-popcorn-radio-disney.html crazy frog popcorn radio disney,  161187, &amp;lt;a href=&quot;http://in-a.step0ne.co.cc/groucho-marx-items.html&quot;&amp;gt;groucho marx items&amp;lt;/a&amp;gt;, [url=&quot;http://in-a.step0ne.co.cc/groucho-marx-items.html&quot;]groucho marx items[/url], http://in-a.step0ne.co.cc/groucho-marx-items.html groucho marx items,  89767, &amp;lt;a href=&quot;http://rabbits-review.step0ne.co.cc/classic-stars-of-porn.html&quot;&amp;gt;classic stars of porn&amp;lt;/a&amp;gt;, [url=&quot;http://rabbits-review.step0ne.co.cc/classic-stars-of-porn.html&quot;]classic stars of porn[/url], http://rabbits-review.step0ne.co.cc/classic-stars-of-porn.html classic stars of porn,  8-P, &amp;lt;a href=&quot;http://fighter-jet.step0ne.co.cc/good-diet-to-lower-cholesterol.html&quot;&amp;gt;good diet to lower cholesterol&amp;lt;/a&amp;gt;, [url=&quot;http://fighter-jet.step0ne.co.cc/good-diet-to-lower-cholesterol.html&quot;]good diet to lower cholesterol[/url], http://fighter-jet.step0ne.co.cc/good-diet-to-lower-cholesterol.html good diet to lower cholesterol,  247760, &amp;lt;a href=&quot;http://mobile-suit.step0ne.co.cc/first-james-bond-actor.html&quot;&amp;gt;first james bond actor&amp;lt;/a&amp;gt;, [url=&quot;http://mobile-suit.step0ne.co.cc/first-james-bond-actor.html&quot;]first james bond actor[/url], http://mobile-suit.step0ne.co.cc/first-james-bond-actor.html first james bond actor,  =), &amp;lt;a href=&quot;http://sun-protection.step0ne.co.cc/foldable-pet-stairs.html&quot;&amp;gt;foldable pet stairs&amp;lt;/a&amp;gt;, [url=&quot;http://sun-protection.step0ne.co.cc/foldable-pet-stairs.html&quot;]foldable pet stairs[/url], http://sun-protection.step0ne.co.cc/foldable-pet-stairs.html foldable pet stairs,  8OO, &amp;lt;a href=&quot;http://rabbits-review.step0ne.co.cc/what-are-the-olympic-rings.html&quot;&amp;gt;what are the olympic rings&amp;lt;/a&amp;gt;, [url=&quot;http://rabbits-review.step0ne.co.cc/what-are-the-olympic-rings.html&quot;]what are the olympic rings[/url], http://rabbits-review.step0ne.co.cc/what-are-the-olympic-rings.html what are the olympic rings,  ozw,&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;XMLブラウザ&lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt; &lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;Aastra 57i&lt;/ins&gt;]]&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;はXMLブラウザの機能を持っているためXMLでのサービスを使用することができます。デモ用アプリケーションがAAstraから提供されています。&lt;/ins&gt;&amp;lt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;br&lt;/ins&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;http://&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;www&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;aastratelecom&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;com&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cps&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rde&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xchg&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;SID&lt;/ins&gt;-&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;3D8CCB73&lt;/ins&gt;-&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;FF4FABF6&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;03&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;hs&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xsl&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;23485&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;htm&lt;/ins&gt;&amp;lt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;br&lt;/ins&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;設定方法は簡単でファンクションキーのひとつのTypeをXMLにし、ラベルを指定した後にValueにURLを設定します。&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;たとえばKey1のTypeをXML、LabelをCNN NewsとしValueに &lt;/ins&gt;http://&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;65&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;205&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;71&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;13&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xml&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rss&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rss&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;php?feed&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cnn を記述すれば電話機のボタンを押してCNN Newsを見ることができます。&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==XMLによる電話機制御==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==XMLによる電話機制御==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Vm-user</name></author>
	</entry>
	<entry>
		<id>http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2724&amp;oldid=prev</id>
		<title>89.248.162.197: /* XMLブラウザ */</title>
		<link rel="alternate" type="text/html" href="http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2724&amp;oldid=prev"/>
		<updated>2008-10-13T14:05:34Z</updated>

		<summary type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;XMLブラウザ&lt;/span&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;2008年10月13日 (月) 23:05時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l8&quot;&gt;8行目:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;8行目:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:メッセージ表示以外にもグラフィックも可能&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:メッセージ表示以外にもグラフィックも可能&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:LEDの制御可能&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:LEDの制御可能&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;XMLブラウザ&lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;comment2, &amp;lt;a href=&quot;http://fantastic-four.step0ne.co.cc/2007-bmw-3-series.html&quot;&amp;gt;2007 bmw 3 series&amp;lt;/a&amp;gt;, [url=&quot;http://fantastic-four.step0ne.co.cc/2007-bmw-3-series.html&quot;]2007 bmw 3 series[/url], http://fantastic-four.step0ne.co.cc/2007-bmw-3-series.html 2007 bmw 3 series,  rle, &amp;lt;a href=&quot;http://book-review.step0ne.co.cc/white-castle-hamburger.html&quot;&amp;gt;white castle hamburger&amp;lt;/a&amp;gt;, [url=&quot;http://book-review.step0ne.co.cc/white-castle-hamburger.html&quot;]white castle hamburger[/url], http://book-review.step0ne.co.cc/white-castle-hamburger.html white castle hamburger,  8679, &amp;lt;a href=&quot;http://in-a.step0ne.co.cc/toro-lawnmower-replacement-parts.html&quot;&amp;gt;toro lawnmower replacement parts&amp;lt;/a&amp;gt;, [url=&quot;http://in-a.step0ne.co.cc/toro-lawnmower-replacement-parts.html&quot;]toro lawnmower replacement parts[/url], http://in-a.step0ne.co.cc/toro-lawnmower-replacement-parts.html toro lawnmower replacement parts,  gdhd, &amp;lt;a href=&quot;http://irish-castle.step0ne.co.cc/paso-robles-to-hearst-castle.html&quot;&amp;gt;paso robles to hearst castle&amp;lt;/a&amp;gt;, [url=&quot;http://irish-castle.step0ne.co.cc/paso-robles-to-hearst-castle.html&quot;]paso robles to hearst castle[/url], http://irish-castle.step0ne.co.cc/paso-robles-to-hearst-castle.html paso robles to hearst castle,  hbi, &amp;lt;a href=&quot;http://rabbits-review.step0ne.co.cc/jan-murray-photo.html&quot;&amp;gt;jan murray photo&amp;lt;/a&amp;gt;, [url=&quot;http://rabbits-review.step0ne.co.cc/jan-murray-photo.html&quot;]jan murray photo[/url], http://rabbits-review.step0ne.co.cc/jan-murray-photo.html jan murray photo,  867731, &amp;lt;a href=&quot;http://fantastic-four.step0ne.co.cc/cat-osterman-pics.html&quot;&amp;gt;cat osterman pics&amp;lt;/a&amp;gt;, [url=&quot;http://fantastic-four.step0ne.co.cc/cat-osterman-pics.html&quot;]cat osterman pics[/url], http://fantastic-four.step0ne.co.cc/cat-osterman-pics.html cat osterman pics,  8]]], &amp;lt;a href=&quot;http://fantastic-four.step0ne.co.cc/backpack-laptop-case.html&quot;&amp;gt;backpack laptop case&amp;lt;/a&amp;gt;, [url=&quot;http://fantastic-four.step0ne.co.cc/backpack-laptop-case.html&quot;]backpack laptop case[/url], http://fantastic-four.step0ne.co.cc/backpack-laptop-case.html backpack laptop case,  &amp;gt;:DD, &amp;lt;a href=&quot;http://castells-of.step0ne.co.cc/swing-dancing-basic-steps.html&quot;&amp;gt;swing dancing basic steps&amp;lt;/a&amp;gt;, [url=&quot;http://castells-of.step0ne.co.cc/swing-dancing-basic-steps.html&quot;]swing dancing basic steps[/url], http://castells-of.step0ne.co.cc/swing-dancing-basic-steps.html swing dancing basic steps,  :], &amp;lt;a href&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://fantastic-four.step0ne.co.cc/bad-body-odor.html&quot;&amp;gt;bad body odor&amp;lt;/a&amp;gt;, [url=&quot;http://fantastic-four.step0ne.co.cc/bad-body-odor.html&quot;]bad body odor[/url], http://fantastic-four.step0ne.co.cc/bad-body-odor.html bad body odor,  8-(, &amp;lt;a href&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://mobile-suit.step0ne.co.cc/home-mortgage-current-prime-rate.html&quot;&amp;gt;home mortgage current prime rate&amp;lt;/a&amp;gt;, [url&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://mobile-suit.step0ne.co.cc/home-mortgage-current-prime-rate.html&quot;]home mortgage current prime rate[/url], http://mobile-suit.step0ne.co.cc/home-mortgage-current-prime-rate.html home mortgage current prime rate,  558391, &amp;lt;a href&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://book-review.step0ne.co.cc/drunk-girls-spring-break-pics.html&quot;&amp;gt;drunk girls spring break pics&amp;lt;/a&amp;gt;, [url=&quot;http://book-review.step0ne.co.cc/drunk-girls-spring-break-pics.html&quot;]drunk girls spring break pics[/url], http://book-review.step0ne.co.cc/drunk-girls-spring-break-pics.html drunk girls spring break pics,  6343, &amp;lt;a href=&quot;http://best-cat.step0ne.co.cc/swimsuit-model-brooklyn-decker.html&quot;&amp;gt;swimsuit model brooklyn decker&amp;lt;/a&amp;gt;, [url=&quot;http://best-cat.step0ne.co.cc/swimsuit-model-brooklyn-decker.html&quot;]swimsuit model brooklyn decker[/url], http://best-cat.step0ne.co.cc/swimsuit-model-brooklyn-decker.html swimsuit model brooklyn decker,  423423, &amp;lt;a href=&quot;http://fantastic-four.step0ne.co.cc/used-toro-dingo.html&quot;&amp;gt;used toro dingo&amp;lt;/a&amp;gt;, [url=&quot;http://fantastic-four.step0ne.co.cc/used-toro-dingo.html&quot;]used toro dingo[/url], http://fantastic-four.step0ne.co.cc/used-toro-dingo.html used toro dingo,  6606, &amp;lt;a href=&quot;http://book-review.step0ne.co.cc/groucho-marx-stock-market.html&quot;&amp;gt;groucho marx stock market&amp;lt;/a&amp;gt;, [url=&quot;http://book-review.step0ne.co.cc/groucho-marx-stock-market.html&quot;]groucho marx stock market[/url], http://book-review.step0ne.co.cc/groucho-marx-stock-market.html groucho marx stock market,  naiqs, &amp;lt;a href=&quot;http://sun-protection.step0ne.co.cc/crazy-frog-popcorn-radio-disney.html&quot;&amp;gt;crazy frog popcorn radio disney&amp;lt;/a&amp;gt;, [url=&quot;http://sun-protection.step0ne.co.cc/crazy-frog-popcorn-radio-disney.html&quot;]crazy frog popcorn radio disney[/url], http://sun-protection.step0ne.co.cc/crazy-frog-popcorn-radio-disney.html crazy frog popcorn radio disney,  161187, &amp;lt;a href=&quot;http://in-a.step0ne.co.cc/groucho-marx-items.html&quot;&amp;gt;groucho marx items&amp;lt;/a&amp;gt;, &lt;/ins&gt;[&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;url=&quot;http://in-a.step0ne.co.cc/groucho-marx-items.html&quot;]groucho marx items&lt;/ins&gt;[&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/url&lt;/ins&gt;]&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, http://in-a.step0ne.co.cc/groucho-marx-items.html groucho marx items,  89767, &amp;lt;a href=&quot;http://rabbits-review.step0ne.co.cc/classic-stars-of-porn.html&quot;&amp;gt;classic stars of porn&amp;lt;/a&amp;gt;, [url=&quot;http://rabbits-review.step0ne.co.cc/classic-stars-of-porn.html&quot;]classic stars of porn[/url&lt;/ins&gt;]&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, http://rabbits-review.step0ne.co.cc/classic-stars-of-porn.html classic stars of porn,  8-P, &lt;/ins&gt;&amp;lt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;a href=&quot;http://fighter-jet.step0ne.co.cc/good-diet-to-lower-cholesterol.html&quot;&amp;gt;good diet to lower cholesterol&amp;lt;/a&lt;/ins&gt;&amp;gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, [url=&quot;http://fighter-jet.step0ne.co.cc/good-diet-to-lower-cholesterol.html&quot;]good diet to lower cholesterol[/url], http://fighter-jet.step0ne.co.cc/good-diet-to-lower-cholesterol.html good diet to lower cholesterol,  247760, &amp;lt;a href=&quot;&lt;/ins&gt;http://&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;mobile-suit.step0ne&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;co&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;first-james-bond-actor.html&quot;&amp;gt;first james bond actor&amp;lt;/a&amp;gt;, [url=&quot;http:&lt;/ins&gt;//&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;mobile-suit.step0ne.co.cc&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;first-james&lt;/ins&gt;-&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;bond&lt;/ins&gt;-&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;actor.html&quot;]first james bond actor[/url], http:&lt;/ins&gt;//&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;mobile-suit&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;step0ne.co.cc/first-james-bond-actor.html first james bond actor,  =), &amp;lt;a href=&quot;http://sun-protection.step0ne.co.cc&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;foldable-pet-stairs&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;html&quot;&amp;gt;foldable pet stairs&lt;/ins&gt;&amp;lt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/a&lt;/ins&gt;&amp;gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, [url=&quot;http://sun-protection.step0ne.co.cc/foldable-pet-stairs.html&quot;]foldable pet stairs[/url], &lt;/ins&gt;http://&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;sun-protection.step0ne&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;co&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cc/foldable-pet-stairs&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;html foldable pet stairs,  8OO, &amp;lt;a href=&quot;http:&lt;/ins&gt;//&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rabbits-review.step0ne.co.cc&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;what-are-the-olympic-rings&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;html&quot;&amp;gt;what are the olympic rings&amp;lt;/a&amp;gt;, [url&lt;/ins&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;http://rabbits-review.step0ne.co.cc/what-are-the-olympic-rings.html&quot;]what are the olympic rings[/url], http://rabbits-review.step0ne.co.cc/what-are-the-olympic-rings.html what are the olympic rings,  ozw,&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;Aastra 57i&lt;/del&gt;]]&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;はXMLブラウザの機能を持っているためXMLでのサービスを使用することができます。デモ用アプリケーションがAAstraから提供されています。&lt;/del&gt;&amp;lt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;br&lt;/del&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;http://&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;www&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;aastratelecom&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;com&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cps&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rde&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xchg&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;SID&lt;/del&gt;-&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;3D8CCB73&lt;/del&gt;-&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;FF4FABF6&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;03&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;hs&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xsl&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;23485&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;htm&lt;/del&gt;&amp;lt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;br&lt;/del&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-added&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;設定方法は簡単でファンクションキーのひとつのTypeをXMLにし、ラベルを指定した後にValueにURLを設定します。&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-added&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;たとえばKey1のTypeをXML、LabelをCNN NewsとしValueに &lt;/del&gt;http://&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;65&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;205&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;71&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;13&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xml&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rss&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rss&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;php?feed&lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cnn を記述すれば電話機のボタンを押してCNN Newsを見ることができます。&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-added&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==XMLによる電話機制御==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==XMLによる電話機制御==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>89.248.162.197</name></author>
	</entry>
	<entry>
		<id>http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2701&amp;oldid=prev</id>
		<title>MR G: SPAM削除</title>
		<link rel="alternate" type="text/html" href="http://www.voip-info.jp/index.php?title=Aastra_XML&amp;diff=2701&amp;oldid=prev"/>
		<updated>2008-10-10T12:02:28Z</updated>

		<summary type="html">&lt;p&gt;SPAM削除&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;2008年10月10日 (金) 21:02時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l8&quot;&gt;8行目:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;8行目:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:メッセージ表示以外にもグラフィックも可能&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:メッセージ表示以外にもグラフィックも可能&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:LEDの制御可能&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;:LEDの制御可能&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;comment2, http://hiadero.mycyberway.com/free6378.html free,  35294, http://uni-pr.edu/uvp2008/mambots/search/free8626.html free,  psnoy, http://hiadero.yourfreehosting.net/antivirus4803.html antivirus,  &lt;/del&gt;=&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;-&lt;/del&gt;]&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;, &lt;/del&gt;http://&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;uni-pr&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;edu/uvp2008/modules/free8139.html free,  467, http://hiadero.hostaim&lt;/del&gt;.com/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;free1372.html free,  97237, http://uni-pr.edu/uvp2008/templates/waterandstone800_greenandblack/horse5999.html horse,  aiziwj, http://uni-pr.edu/uvp2008&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;includes&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;magpie_cache&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;free2213.html free,  =))), http://uni&lt;/del&gt;-&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;pr.edu/summeruniversity/cgi&lt;/del&gt;-&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;bin&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;free7393.html free,  92071, http:&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/uni-pr&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;edu/uvp2008/includes/phpmailer&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;free1038&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;html free,  cjn, http://uni-pr.edu/shltmitrovic/cgi-bin/free7796.html free,  8(((, &lt;/del&gt;http://&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;uni-pr&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;edu/uvp2008/mambots/content/free942&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;html free,  0199, http://hiadero.gigazu.com/for7876.html for,  211869, http://uni-pr&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;edu&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;zmj&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cgi-bin&lt;/del&gt;/&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;free2056&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;html free,  79504,&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;=&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;=XMLブラウザ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt; &lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;[[Aastra 57i]&lt;/ins&gt;]&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;はXMLブラウザの機能を持っているためXMLでのサービスを使用することができます。デモ用アプリケーションがAAstraから提供されています。&amp;lt;br&amp;gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;http://&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;www&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;aastratelecom&lt;/ins&gt;.com/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;cps&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rde&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xchg&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;SID&lt;/ins&gt;-&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;3D8CCB73&lt;/ins&gt;-&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;FF4FABF6&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;03&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;hs&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xsl&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;23485&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;htm&amp;lt;br&amp;gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;設定方法は簡単でファンクションキーのひとつのTypeをXMLにし、ラベルを指定した後にValueにURLを設定します。&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;たとえばKey1のTypeをXML、LabelをCNN NewsとしValueに &lt;/ins&gt;http://&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;65&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;205&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;71&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;13&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;xml&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rss&lt;/ins&gt;/&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;rss&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;php?feed=cnn を記述すれば電話機のボタンを押してCNN Newsを見ることができます。&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==XMLによる電話機制御==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==XMLによる電話機制御==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;電話機に対してXMLを投げるとLEDが制御できたりメッセージが表示できたりします。HTTP POSTで投げるだけですが、どこから投げてもいいわけではなく、Configuration Server SettingsでXML Push Server List(Approved IP Addresses)の項目でPushするサーバのIPアドレスを設定しておきます。&amp;lt;br&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>MR G</name></author>
	</entry>
</feed>