<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://docs.upsidewireless.com/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://docs.upsidewireless.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Administrator</id>
		<title>SMS Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://docs.upsidewireless.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Administrator"/>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Special:Contributions/Administrator"/>
		<updated>2026-04-09T04:28:22Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.22.0</generator>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts</id>
		<title>Examples And Concepts</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts"/>
				<updated>2007-08-15T18:05:12Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== SOAP API Usage ===&lt;br /&gt;
Every function of the SOAP API that requires authentication must pass in Authentication Parameters, to acquire a set of Authentication Parameters, please use the API found at: http://api.upsidewireless.com/soap/Authentication.asmx&lt;br /&gt;
&lt;br /&gt;
The two values that are returned from the function are then used for every subsequent calls to the API. The Token parameter will never change for the life of the account whereas the Signature will change if your password changes. In most applications, you will store these variables in a constant or configuration store.&lt;br /&gt;
&lt;br /&gt;
=== Sending SMS ===&lt;br /&gt;
&lt;br /&gt;
Sending an SMS can be handled by way of sending us an [[MT_SMTP_Auth| SMTP message]] or via [[MT HTTP | HTTP/SOAP Interface]].&lt;br /&gt;
&lt;br /&gt;
=== Receiving SMS ===&lt;br /&gt;
The method of receiving Inbound SMS messages is by way of HTTP POST. A few variables are passed in the body of the POST.&lt;br /&gt;
* name - Username to which SMS came (useful if you have multiple accounts with our service)&lt;br /&gt;
* sender - Mobile phone number of the sender. The number is international format (US and Canada this means 11-digit number starting with &amp;quot;1&amp;quot;)&lt;br /&gt;
* data - Text of incoming SMS&lt;br /&gt;
* [[Carrier_codes | carriercode]] - (shortcode accounts only) MCC/MNC identifying the sender's mobile network. You must store this with the number and pass it back when sending messages&lt;br /&gt;
* inboundnumber - (for short/long code accounts only) Gateway number that received the message. This is useful if you have multiple dedicated numbers associated with your account&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
==== Example 1 - No short code ====&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service.&lt;br /&gt;
&lt;br /&gt;
'''http://myurl.com/myaction?sender=17789999999&amp;amp;data=hello&amp;amp;name=username'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Example 2 - Short code ====&lt;br /&gt;
&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service. You will notice that in addition to the three standard variables, in this case carrier code as well as incoming gateway number are passed as parameters.&lt;br /&gt;
&lt;br /&gt;
'''http://myurl.com/myaction?sender=17789999999&amp;amp;data=hello&amp;amp;name=username&amp;amp;inboundnumber=987333&amp;amp;carriercode=302370'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Inbound Number:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;inboundnumber&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;inboundnumber&amp;quot; value=&amp;quot;987333&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;inboundnumber&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Carrier Code:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;carriercode&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;302370&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;carriercode&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts</id>
		<title>Examples And Concepts</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts"/>
				<updated>2007-08-15T18:04:15Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== SOAP API Usage ===&lt;br /&gt;
Every function of the SOAP API that requires authentication must pass in Authentication Parameters, to acquire a set of Authentication Parameters, please use the API found at: http://api.upsidewireless.com/soap/Authentication.asmx&lt;br /&gt;
&lt;br /&gt;
The two values that are returned from the function are then used for every subsequent calls to the API. The Token parameter will never change for the life of the account whereas the Signature will change if your password changes. In most applications, you will store these variables in a constant or configuration store.&lt;br /&gt;
&lt;br /&gt;
=== Sending SMS ===&lt;br /&gt;
&lt;br /&gt;
Sending an SMS can be handled by way of sending us an [[MT_SMTP_Auth| SMTP message]] or via HTTP/SOAP Interface.&lt;br /&gt;
&lt;br /&gt;
=== Receiving SMS ===&lt;br /&gt;
The method of receiving Inbound SMS messages is by way of HTTP POST. A few variables are passed in the body of the POST.&lt;br /&gt;
* name - Username to which SMS came (useful if you have multiple accounts with our service)&lt;br /&gt;
* sender - Mobile phone number of the sender. The number is international format (US and Canada this means 11-digit number starting with &amp;quot;1&amp;quot;)&lt;br /&gt;
* data - Text of incoming SMS&lt;br /&gt;
* [[Carrier_codes | carriercode]] - (shortcode accounts only) MCC/MNC identifying the sender's mobile network. You must store this with the number and pass it back when sending messages&lt;br /&gt;
* inboundnumber - (for short/long code accounts only) Gateway number that received the message. This is useful if you have multiple dedicated numbers associated with your account&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
==== Example 1 - No short code ====&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service.&lt;br /&gt;
&lt;br /&gt;
'''http://myurl.com/myaction?sender=17789999999&amp;amp;data=hello&amp;amp;name=username'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Example 2 - Short code ====&lt;br /&gt;
&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service. You will notice that in addition to the three standard variables, in this case carrier code as well as incoming gateway number are passed as parameters.&lt;br /&gt;
&lt;br /&gt;
'''http://myurl.com/myaction?sender=17789999999&amp;amp;data=hello&amp;amp;name=username&amp;amp;inboundnumber=987333&amp;amp;carriercode=302370'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Inbound Number:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;inboundnumber&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;inboundnumber&amp;quot; value=&amp;quot;987333&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;inboundnumber&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Carrier Code:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;carriercode&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;302370&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;carriercode&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts</id>
		<title>Examples And Concepts</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts"/>
				<updated>2007-08-15T18:03:13Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== SOAP API Usage ===&lt;br /&gt;
Every function of the SOAP API that requires authentication must pass in Authentication Parameters, to acquire a set of Authentication Parameters, please use the API found at: http://api.upsidewireless.com/soap/Authentication.asmx&lt;br /&gt;
&lt;br /&gt;
The two values that are returned from the function are then used for every subsequent calls to the API. The Token parameter will never change for the life of the account whereas the Signature will change if your password changes. In most applications, you will store these variables in a constant or configuration store.&lt;br /&gt;
&lt;br /&gt;
=== Sending SMS ===&lt;br /&gt;
&lt;br /&gt;
Sending an SMS can be handled by way of sending us an [[SMTP_MT_Auth | SMTP message]] or via HTTP/SOAP Interface.&lt;br /&gt;
&lt;br /&gt;
=== Receiving SMS ===&lt;br /&gt;
The method of receiving Inbound SMS messages is by way of HTTP POST. A few variables are passed in the body of the POST.&lt;br /&gt;
* name - Username to which SMS came (useful if you have multiple accounts with our service)&lt;br /&gt;
* sender - Mobile phone number of the sender. The number is international format (US and Canada this means 11-digit number starting with &amp;quot;1&amp;quot;)&lt;br /&gt;
* data - Text of incoming SMS&lt;br /&gt;
* [[Carrier_codes | carriercode]] - (shortcode accounts only) MCC/MNC identifying the sender's mobile network. You must store this with the number and pass it back when sending messages&lt;br /&gt;
* inboundnumber - (for short/long code accounts only) Gateway number that received the message. This is useful if you have multiple dedicated numbers associated with your account&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
==== Example 1 - No short code ====&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service.&lt;br /&gt;
&lt;br /&gt;
'''http://myurl.com/myaction?sender=17789999999&amp;amp;data=hello&amp;amp;name=username'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Example 2 - Short code ====&lt;br /&gt;
&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service. You will notice that in addition to the three standard variables, in this case carrier code as well as incoming gateway number are passed as parameters.&lt;br /&gt;
&lt;br /&gt;
'''http://myurl.com/myaction?sender=17789999999&amp;amp;data=hello&amp;amp;name=username&amp;amp;inboundnumber=987333&amp;amp;carriercode=302370'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Inbound Number:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;inboundnumber&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;inboundnumber&amp;quot; value=&amp;quot;987333&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;inboundnumber&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Carrier Code:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;carriercode&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;302370&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;carriercode&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts</id>
		<title>Examples And Concepts</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts"/>
				<updated>2007-08-15T17:59:21Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== SOAP API Usage ===&lt;br /&gt;
Every function of the SOAP API that requires authentication must pass in Authentication Parameters, to acquire a set of Authentication Parameters, please use the API found at: http://api.upsidewireless.com/soap/Authentication.asmx&lt;br /&gt;
&lt;br /&gt;
The two values that are returned from the function are then used for every subsequent calls to the API. The Token parameter will never change for the life of the account whereas the Signature will change if your password changes. In most applications, you will store these variables in a constant or configuration store.&lt;br /&gt;
&lt;br /&gt;
=== Sending SMS ===&lt;br /&gt;
&lt;br /&gt;
Sending an SMS can be handled by way of sending us an SMTP message or via HTTP/SOAP Interface.&lt;br /&gt;
&lt;br /&gt;
=== Receiving SMS ===&lt;br /&gt;
The method of receiving Inbound SMS messages is by way of HTTP POST. A few variables are passed in the body of the POST.&lt;br /&gt;
* name - Username to which SMS came (useful if you have multiple accounts with our service)&lt;br /&gt;
* sender - Mobile phone number of the sender. The number is international format (US and Canada this means 11-digit number starting with &amp;quot;1&amp;quot;)&lt;br /&gt;
* data - Text of incoming SMS&lt;br /&gt;
* [[Carrier_codes | carriercode]] - (shortcode accounts only) MCC/MNC identifying the sender's mobile network. You must store this with the number and pass it back when sending messages&lt;br /&gt;
* inboundnumber - (for short/long code accounts only) Gateway number that received the message. This is useful if you have multiple dedicated numbers associated with your account&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
==== Example 1 - No short code ====&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service.&lt;br /&gt;
&lt;br /&gt;
'''http://myurl.com/myaction?sender=17789999999&amp;amp;data=hello&amp;amp;name=username'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Example 2 - Short code ====&lt;br /&gt;
&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service. You will notice that in addition to the three standard variables, in this case carrier code as well as incoming gateway number are passed as parameters.&lt;br /&gt;
&lt;br /&gt;
'''http://myurl.com/myaction?sender=17789999999&amp;amp;data=hello&amp;amp;name=username&amp;amp;inboundnumber=987333&amp;amp;carriercode=302370'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Inbound Number:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;inboundnumber&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;inboundnumber&amp;quot; value=&amp;quot;987333&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;inboundnumber&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Carrier Code:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;carriercode&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;302370&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;carriercode&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts</id>
		<title>Examples And Concepts</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts"/>
				<updated>2007-08-15T17:58:06Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: /* Receiving SMS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== SOAP API Usage ===&lt;br /&gt;
Every function of the SOAP API that requires authentication must pass in Authentication Parameters, to acquire a set of Authentication Parameters, please use the API found at: http://api.upsidewireless.com/soap/Authentication.asmx&lt;br /&gt;
&lt;br /&gt;
The two values that are returned from the function are then used for every subsequent calls to the API. The Token parameter will never change for the life of the account whereas the Signature will change if your password changes. In most applications, you will store these variables in a constant or configuration store.&lt;br /&gt;
&lt;br /&gt;
=== Sending SMS ===&lt;br /&gt;
&lt;br /&gt;
Sending an SMS can be handled by way of sending us an SMTP message or via HTTP/SOAP Interface.&lt;br /&gt;
&lt;br /&gt;
=== Receiving SMS ===&lt;br /&gt;
The method of receiving Inbound SMS messages is by way of HTTP POST. A few variables are passed in the body of the POST.&lt;br /&gt;
* name - Username to which SMS came (useful if you have multiple accounts with our service)&lt;br /&gt;
* sender - Mobile phone number of the sender. The number is international format (US and Canada this means 11-digit number starting with &amp;quot;1&amp;quot;)&lt;br /&gt;
* data - Text of incoming SMS&lt;br /&gt;
* [[Carrier_codes carriercode]] - (shortcode accounts only) MCC/MNC identifying the sender's mobile network. You must store this with the number and pass it back when sending messages&lt;br /&gt;
* inboundnumber - (for short/long code accounts only) Gateway number that received the message. This is useful if you have multiple dedicated numbers associated with your account&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
==== Example 1 - No short code ====&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service.&lt;br /&gt;
&lt;br /&gt;
'''http://myurl.com/myaction?sender=17789999999&amp;amp;data=hello&amp;amp;name=username'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Example 2 - Short code ====&lt;br /&gt;
&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service. You will notice that in addition to the three standard variables, in this case carrier code as well as incoming gateway number are passed as parameters.&lt;br /&gt;
&lt;br /&gt;
'''http://myurl.com/myaction?sender=17789999999&amp;amp;data=hello&amp;amp;name=username&amp;amp;inboundnumber=987333&amp;amp;carriercode=302370'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Inbound Number:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;inboundnumber&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;inboundnumber&amp;quot; value=&amp;quot;987333&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;inboundnumber&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Carrier Code:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;carriercode&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;302370&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;carriercode&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts</id>
		<title>Examples And Concepts</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts"/>
				<updated>2007-08-15T17:54:59Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== SOAP API Usage ===&lt;br /&gt;
Every function of the SOAP API that requires authentication must pass in Authentication Parameters, to acquire a set of Authentication Parameters, please use the API found at: http://api.upsidewireless.com/soap/Authentication.asmx&lt;br /&gt;
&lt;br /&gt;
The two values that are returned from the function are then used for every subsequent calls to the API. The Token parameter will never change for the life of the account whereas the Signature will change if your password changes. In most applications, you will store these variables in a constant or configuration store.&lt;br /&gt;
&lt;br /&gt;
=== Sending SMS ===&lt;br /&gt;
&lt;br /&gt;
Sending an SMS can be handled by way of sending us an SMTP message or via HTTP/SOAP Interface.&lt;br /&gt;
&lt;br /&gt;
=== Receiving SMS ===&lt;br /&gt;
The method of receiving Inbound SMS messages is by way of HTTP POST. A few variables are passed in the body of the POST.&lt;br /&gt;
* name - Username to which SMS came (useful if you have multiple accounts with our service)&lt;br /&gt;
* sender - Mobile phone number of the sender. The number is international format (US and Canada this means 11-digit number starting with &amp;quot;1&amp;quot;)&lt;br /&gt;
* data - Text of incoming SMS&lt;br /&gt;
* carriercode - (shortcode accounts only) MCC/MNC identifying the sender's mobile network. You must store this with the number and pass it back when sending messages&lt;br /&gt;
* inboundnumber - (for short/long code accounts only) Gateway number that received the message. This is useful if you have multiple dedicated numbers associated with your account&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
==== Example 1 - No short code ====&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service.&lt;br /&gt;
&lt;br /&gt;
'''http://myurl.com/myaction?sender=17789999999&amp;amp;data=hello&amp;amp;name=username'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Example 2 - Short code ====&lt;br /&gt;
&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service. You will notice that in addition to the three standard variables, in this case carrier code as well as incoming gateway number are passed as parameters.&lt;br /&gt;
&lt;br /&gt;
'''http://myurl.com/myaction?sender=17789999999&amp;amp;data=hello&amp;amp;name=username&amp;amp;inboundnumber=987333&amp;amp;carriercode=302370'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Inbound Number:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;inboundnumber&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;inboundnumber&amp;quot; value=&amp;quot;987333&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;inboundnumber&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Carrier Code:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;carriercode&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;302370&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;carriercode&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts</id>
		<title>Examples And Concepts</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts"/>
				<updated>2007-08-15T17:52:11Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== SOAP API Usage ===&lt;br /&gt;
Every function of the SOAP API that requires authentication must pass in Authentication Parameters, to acquire a set of Authentication Parameters, please use the API found at: http://api.upsidewireless.com/soap/Authentication.asmx&lt;br /&gt;
&lt;br /&gt;
The two values that are returned from the function are then used for every subsequent calls to the API. The Token parameter will never change for the life of the account whereas the Signature will change if your password changes. In most applications, you will store these variables in a constant or configuration store.&lt;br /&gt;
&lt;br /&gt;
=== Sending SMS ===&lt;br /&gt;
&lt;br /&gt;
Sending an SMS can be handled by way of sending us an SMTP message or via HTTP/SOAP Interface.&lt;br /&gt;
&lt;br /&gt;
=== Receiving SMS ===&lt;br /&gt;
The method of receiving Inbound SMS messages is by way of HTTP POST. A few variables are passed in the body of the POST.&lt;br /&gt;
* name - Username to which SMS came (useful if you have multiple accounts with our service)&lt;br /&gt;
* sender - Mobile phone number of the sender. The number is international format (US and Canada this means 11-digit number starting with &amp;quot;1&amp;quot;)&lt;br /&gt;
* data - Text of incoming SMS&lt;br /&gt;
* carriercode - (shortcode accounts only) MCC/MNC identifying the sender's mobile network. You must store this with the number and pass it back when sending messages&lt;br /&gt;
* inboundnumber - (for short/long code accounts only) Gateway number that received the message. This is useful if you have multiple dedicated numbers associated with your account&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
==== Example 1 - No short code ====&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example 2 - Short code ==&lt;br /&gt;
&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Inbound Number:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;inboundnumber&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;inboundnumber&amp;quot; value=&amp;quot;987333&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;inboundnumber&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Carrier Code:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;carriercode&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;302333&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;carriercode&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts</id>
		<title>Examples And Concepts</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts"/>
				<updated>2007-08-15T17:51:38Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== SOAP API Usage ===&lt;br /&gt;
Every function of the SOAP API that requires authentication must pass in Authentication Parameters, to acquire a set of Authentication Parameters, please use the API found at: http://api.upsidewireless.com/soap/Authentication.asmx&lt;br /&gt;
&lt;br /&gt;
The two values that are returned from the function are then used for every subsequent calls to the API. The Token parameter will never change for the life of the account whereas the Signature will change if your password changes. In most applications, you will store these variables in a constant or configuration store.&lt;br /&gt;
&lt;br /&gt;
=== Sending SMS ===&lt;br /&gt;
&lt;br /&gt;
Sending an SMS can be handled by way of sending us an SMTP message or via HTTP/SOAP Interface.&lt;br /&gt;
&lt;br /&gt;
=== Receiving SMS ===&lt;br /&gt;
The method of receiving Inbound SMS messages is by way of HTTP POST. A few variables are passed in the body of the POST.&lt;br /&gt;
* name - Username to which SMS came (useful if you have multiple accounts with our service)&lt;br /&gt;
* sender - Mobile phone number of the sender. The number is international format (US and Canada this means 11-digit number starting with &amp;quot;1&amp;quot;)&lt;br /&gt;
* data - Text of incoming SMS&lt;br /&gt;
* carriercode - (shortcode accounts only) MCC/MNC identifying the sender's mobile network. You must store this with the number and pass it back when sending messages&lt;br /&gt;
* inboundnumber - (for short/long code accounts only) Gateway number that received the message. This is useful if you have multiple dedicated numbers associated with your account&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
== Example 1 - No short code ==&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example 2 - Short code ==&lt;br /&gt;
&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789999999&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;Account_Name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Inbound Number:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;inboundnumber&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;inboundnumber&amp;quot; value=&amp;quot;987333&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;inboundnumber&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Carrier Code:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;carriercode&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;302333&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;carriercode&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=SMS_Wiki:Privacy_policy</id>
		<title>SMS Wiki:Privacy policy</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=SMS_Wiki:Privacy_policy"/>
				<updated>2007-08-11T05:36:25Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please refer to our [http://reseller.upsidewireless.com/DisplayContent.do?page=privacyPolicy privacy policy]:&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=SMS_Wiki:Privacy_policy</id>
		<title>SMS Wiki:Privacy policy</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=SMS_Wiki:Privacy_policy"/>
				<updated>2007-08-11T05:35:48Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: New page:  Please refer to our [privacy policy]:&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Please refer to our [privacy policy]:&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Carrier_codes</id>
		<title>Carrier codes</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Carrier_codes"/>
				<updated>2007-08-09T20:37:32Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Carrier codes are needed when sending MT messages to US or Canadian telecom carriers in conjuction with a Short Code. The list below presents currently recognized codes that your application must pass as a parameter when requesting MT using EnterpriseSMS API:&lt;br /&gt;
&lt;br /&gt;
'''Canada'''&lt;br /&gt;
&lt;br /&gt;
* BELL = 302651&lt;br /&gt;
* FIDO = 302370&lt;br /&gt;
* ROGERS = 302720&lt;br /&gt;
* MTS = 302655&lt;br /&gt;
* NB TEL = 302701&lt;br /&gt;
* QUEBECTEL = 302657&lt;br /&gt;
* SASK TEL = 302654&lt;br /&gt;
* TELUS = 302653&lt;br /&gt;
* VIRGIN =302001&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''USA'''&lt;br /&gt;
* AT&amp;amp;T = 310980&lt;br /&gt;
* Alaska Wireless = 310190&lt;br /&gt;
* ALLTEL = 310500&lt;br /&gt;
* CINCINNATI BELL = 310420&lt;br /&gt;
* CINGULAR = 310180&lt;br /&gt;
* CRICKET = 310016&lt;br /&gt;
* DOBSON = 310560&lt;br /&gt;
* NEXTEL = 316010&lt;br /&gt;
* SPRINT = 316110&lt;br /&gt;
* TMOBILE USA = 310660&lt;br /&gt;
* TESTING = 310014&lt;br /&gt;
* VERIZON = 310012&lt;br /&gt;
&lt;br /&gt;
Note: While all effort is made to keep the list up-to-date, changes in telecom ownership may invalidate this list. Please contact us for latest changes.&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Carrier_codes</id>
		<title>Carrier codes</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Carrier_codes"/>
				<updated>2007-08-09T20:35:55Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Carrier codes are needed when sending MT messages to US or Canadian telecom carriers in conjuction with a Short Code. The list below presents currently recognized codes that your application must pass as a parameter when requesting MT using EnterpriseSMS API:&lt;br /&gt;
&lt;br /&gt;
'''Canada'''&lt;br /&gt;
BELL = 302651&lt;br /&gt;
FIDO = 302370&lt;br /&gt;
ROGERS = 302720&lt;br /&gt;
MTS = 302655&lt;br /&gt;
NB TEL = 302701&lt;br /&gt;
QUEBECTEL = 302657&lt;br /&gt;
SASK TEL = 302654&lt;br /&gt;
TELUS = 302653&lt;br /&gt;
VIRGIN =302001&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''USA'''&lt;br /&gt;
AT&amp;amp;T = 310980&lt;br /&gt;
Alaska Wireless = 310190&lt;br /&gt;
ALLTEL = 310500&lt;br /&gt;
CINCINNATI BELL = 310420&lt;br /&gt;
CINGULAR = 310180&lt;br /&gt;
CRICKET = 310016&lt;br /&gt;
DOBSON = 310560&lt;br /&gt;
NEXTEL = 316010&lt;br /&gt;
SPRINT = 316110&lt;br /&gt;
TMOBILE USA = 310660&lt;br /&gt;
TESTING = 310014&lt;br /&gt;
VERIZON = 310012&lt;br /&gt;
&lt;br /&gt;
Note: While all effort is made to keep the list up-to-date, changes in telecom ownership may invalidate this list. Please contact us for latest changes.&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Tariff</id>
		<title>Tariff</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Tariff"/>
				<updated>2007-08-09T20:27:49Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: New page: Tariff is used when sending premium SMS messages. This is a floating point value in currency as per the country of your Short Code. For example, if you have a US short code and set tariff ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Tariff is used when sending premium SMS messages. This is a floating point value in currency as per the country of your Short Code. For example, if you have a US short code and set tariff = 0.50, the user will be billed US$ 0.50 by his/her service provider.&lt;br /&gt;
&lt;br /&gt;
'''Requirements/Notes:'''&lt;br /&gt;
* You must have a premium enabled Short Code assigned to your account to use this option&lt;br /&gt;
* You can bill on MT only&lt;br /&gt;
* You cannot bill on [[ mandatory_keywords| Mandatory Keywords]]. For example, when someone sends message with content HELP, you must reply with standard help text as per your Short Code application. This message is free (standard carrier charges apply)&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=APIs</id>
		<title>APIs</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=APIs"/>
				<updated>2007-08-09T20:22:02Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Upside Wireless HTTP APIs are located at [http://api.upsidewireless.com/ http://api.upsidewireless.com/]&lt;br /&gt;
&lt;br /&gt;
* [[MOIntro | Intro to MO APIs (Mobile Originated - incoming from a mobile phone)]]&lt;br /&gt;
** [[MO POP3]]&lt;br /&gt;
** [[MO HTTP]]&lt;br /&gt;
** [[MO HTTPS]]&lt;br /&gt;
* [[MTIntro | Intro to MT APIs (Mobile Terminated - outgoing to a mobile phone)]]&lt;br /&gt;
** [[MT HTTP]]&lt;br /&gt;
** [[MT SMTP]]&lt;br /&gt;
*** [[MT SMTP Auth]]&lt;br /&gt;
*** [[MT Web Text]]&lt;br /&gt;
*** [[MT IP Address]]&lt;br /&gt;
* [[User Management]]&lt;br /&gt;
* [[Settings]]&lt;br /&gt;
* [[Examples And Concepts | Examples and General Concepts]]&lt;br /&gt;
** PHP&lt;br /&gt;
*** [[PHP Sending SMS | Sending SMS via HTTP POST]]&lt;br /&gt;
*** [[PHP Sending SMS via SMTP | Sending SMS via SMTP]]&lt;br /&gt;
*** [[PHP Receiving SMS | Receiving SMS]]&lt;br /&gt;
** Java&lt;br /&gt;
*** [[Java Sending SMS via SOAP | Sending SMS via SOAP]]&lt;br /&gt;
*** [[Java Sending SMS via SMTP | Sending SMS via SMTP]]&lt;br /&gt;
*** Receiving SMS&lt;br /&gt;
** [[CSharp_Overview | C# (Overview)]]&lt;br /&gt;
*** [[CSharp Sending SMS | Sending SMS]]&lt;br /&gt;
*** [[CSharp Sending SMS via SMTP | Sending SMS via SMTP]]&lt;br /&gt;
*** [[CSharp Receiving SMS | Receiving SMS]]&lt;br /&gt;
&lt;br /&gt;
*PremiumSMS Messages&lt;br /&gt;
**[[ Carrier_codes | Carrier Codes]]&lt;br /&gt;
**[[ Tariff | Tariff]]&lt;br /&gt;
&lt;br /&gt;
This is a patrolled change&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Carrier_codes</id>
		<title>Carrier codes</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Carrier_codes"/>
				<updated>2007-08-09T20:13:41Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: New page: Carrier codes are needed when sending MT messages to US or Canadian telecom carriers in conjuction with a Short Code. The list below presents currently recognized codes that your applicati...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Carrier codes are needed when sending MT messages to US or Canadian telecom carriers in conjuction with a Short Code. The list below presents currently recognized codes that your application must pass as a parameter when requesting MT using EnterpriseSMS API:&lt;br /&gt;
&lt;br /&gt;
'''Canada'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''USA'''&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=APIs</id>
		<title>APIs</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=APIs"/>
				<updated>2007-08-09T20:11:03Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Upside Wireless HTTP APIs are located at [http://api.upsidewireless.com/ http://api.upsidewireless.com/]&lt;br /&gt;
&lt;br /&gt;
* [[MOIntro | Intro to MO APIs (Mobile Originated - incoming from a mobile phone)]]&lt;br /&gt;
** [[MO POP3]]&lt;br /&gt;
** [[MO HTTP]]&lt;br /&gt;
** [[MO HTTPS]]&lt;br /&gt;
* [[MTIntro | Intro to MT APIs (Mobile Terminated - outgoing to a mobile phone)]]&lt;br /&gt;
** [[MT HTTP]]&lt;br /&gt;
** [[MT SMTP]]&lt;br /&gt;
*** [[MT SMTP Auth]]&lt;br /&gt;
*** [[MT Web Text]]&lt;br /&gt;
*** [[MT IP Address]]&lt;br /&gt;
* [[User Management]]&lt;br /&gt;
* [[Settings]]&lt;br /&gt;
* [[Examples And Concepts | Examples and General Concepts]]&lt;br /&gt;
** PHP&lt;br /&gt;
*** [[PHP Sending SMS | Sending SMS via HTTP POST]]&lt;br /&gt;
*** [[PHP Sending SMS via SMTP | Sending SMS via SMTP]]&lt;br /&gt;
*** [[PHP Receiving SMS | Receiving SMS]]&lt;br /&gt;
** Java&lt;br /&gt;
*** [[Java Sending SMS via SOAP | Sending SMS via SOAP]]&lt;br /&gt;
*** [[Java Sending SMS via SMTP | Sending SMS via SMTP]]&lt;br /&gt;
*** Receiving SMS&lt;br /&gt;
** [[CSharp_Overview | C# (Overview)]]&lt;br /&gt;
*** [[CSharp Sending SMS | Sending SMS]]&lt;br /&gt;
*** [[CSharp Sending SMS via SMTP | Sending SMS via SMTP]]&lt;br /&gt;
*** [[CSharp Receiving SMS | Receiving SMS]]&lt;br /&gt;
&lt;br /&gt;
*PremiumSMS Messages&lt;br /&gt;
**[[ Carrier_codes | Carrier Codes]]&lt;br /&gt;
&lt;br /&gt;
This is a patrolled change&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Main_Page"/>
				<updated>2007-05-20T05:22:56Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Upside Wireless offers EnterpriseSMS API for the purpose of easy integration of your business appliactions with the global text messaging network. The API is build to hide the complexities of telecom networks while providing you with a flexible connection for your applications. In most cases, full integration can be completed within only a few hours. &lt;br /&gt;
&lt;br /&gt;
EnterpriseSMS API offers high throughput, global connectivity and two-way messaging. Several integration methods are available to satisfy various integration needs of our customers. This document explains three integration methods for sending (Mobile Terminated SMS or MT) and two integration methods for receiving messages (Mobile Originated SMS or MO).&lt;br /&gt;
&lt;br /&gt;
EnterpriseSMS API offers:&lt;br /&gt;
* High throughput (up to 100 messages per second)&lt;br /&gt;
* Complete global coverage&lt;br /&gt;
* Two-way capability (MT/MO)&lt;br /&gt;
* Simple and quick integration&lt;br /&gt;
* Full transaction auditing&lt;br /&gt;
&lt;br /&gt;
The process of setting up an account is simple:&lt;br /&gt;
* Go to [http://www.upsidewireless.com to create an account]&lt;br /&gt;
* Click on the Contact Us link in your account to request account upgrade&lt;br /&gt;
* Depending on your location and application other requirements may be needed - we will discuss them with you and advise&lt;br /&gt;
&lt;br /&gt;
For full documentation and examples of the API please refer to [[APIs | Upside Wireless APIs]]&lt;br /&gt;
&lt;br /&gt;
To see a complete list of supported networks, please see [http://reseller.upsidewireless.com/networkList.do  Global Network Coverage List]&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MT_SMTP</id>
		<title>MT SMTP</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MT_SMTP"/>
				<updated>2007-05-14T05:01:24Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: New page: EnterpriseSMS API offers three different types of SMTP interfaces for sending SMS messages to any network. With all of them the process is as follows: * Your application sends email with r...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;EnterpriseSMS API offers three different types of SMTP interfaces for sending SMS messages to any network. With all of them the process is as follows:&lt;br /&gt;
* Your application sends email with relevant authentication and messaging parameters&lt;br /&gt;
* Our service authenticates this requests, creates SMS message and sends it&lt;br /&gt;
* Your account is billed for this transaction&lt;br /&gt;
&lt;br /&gt;
The difference in these three methods is in the authentication used. &lt;br /&gt;
* SMTP server authentication - your application connects to our SMTP service and sends email with the request&lt;br /&gt;
* WebText (or PIN) authentication - in some cases, you do not have the ability to connect to our SMTP server. PIN authentication provides a secure and reliable alternative. You simply send email using any SMTP server and in the subject of this message you specify PIN code.&lt;br /&gt;
* IP address authentication - We can record the IP address of your mail server and use this for authentication. This method is, however, not recommended.&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Main_Page"/>
				<updated>2007-05-14T04:49:28Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Upside Wireless offer EnterpriseSMS API for the purpose of easy integration of your business appliactions with the global text messaging network. The API is build to hide all of the complexities while providing you with a flexible connection for your applications. In most cases, full integration can be completed within only a few hours. &lt;br /&gt;
&lt;br /&gt;
EnterpriseSMS API offers high throughput, global connectivity and two-way messaging. Several integration methods are available to satisfy various integration needs of our customers. This document explains three integration methods for sending and two integration methods for receiving messages.&lt;br /&gt;
&lt;br /&gt;
These accounts offer:&lt;br /&gt;
* High throughput (up to 100 messages per second)&lt;br /&gt;
* Complete global coverage&lt;br /&gt;
* Two-way capability (MT/MO)&lt;br /&gt;
* Simple and quick integration&lt;br /&gt;
* Full transaction auditing&lt;br /&gt;
&lt;br /&gt;
The process of setting up an account is simple:&lt;br /&gt;
* Go to [http://www.upsidewireless.com to create an account]&lt;br /&gt;
* Click on the Contact Us link in your account to request account upgrade&lt;br /&gt;
&lt;br /&gt;
For full documentation and examples of the API please refer to [[APIs | Upside Wireless APIs]]&lt;br /&gt;
&lt;br /&gt;
To see a complete list of supported networks, please see [http://reseller.upsidewireless.com/networkList.do  Global Network Coverage List]&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=CSharp_Sending_SMS_via_SMTP</id>
		<title>CSharp Sending SMS via SMTP</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=CSharp_Sending_SMS_via_SMTP"/>
				<updated>2007-05-11T22:53:01Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: New page: &amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; using System; using System.Collections.Generic; using System.Text; using System.Net.Mail; using System.Net;  namespace ConsoleApplication1 {     class Program     { ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections.Generic;&lt;br /&gt;
using System.Text;&lt;br /&gt;
using System.Net.Mail;&lt;br /&gt;
using System.Net;&lt;br /&gt;
&lt;br /&gt;
namespace ConsoleApplication1&lt;br /&gt;
{&lt;br /&gt;
    class Program&lt;br /&gt;
    {&lt;br /&gt;
        static void Main(string[] args)&lt;br /&gt;
        {&lt;br /&gt;
            SmtpClient client = new SmtpClient(&amp;quot;smtp.upsidewireless.com&amp;quot;);&lt;br /&gt;
            client.Credentials = new NetworkCredential(&amp;quot;yourusername&amp;quot;, &amp;quot;yourpassword&amp;quot;);&lt;br /&gt;
            client.Send(&amp;quot;yourusername@smtp.upsidewireless.com&amp;quot;, &amp;quot;+11111111@sms.upsidewireless.com&amp;quot;, &amp;quot;&amp;quot;, &amp;quot;Your Message&amp;quot;);&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=APIs</id>
		<title>APIs</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=APIs"/>
				<updated>2007-05-11T22:52:33Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Upside Wireless HTTP APIs are located at [http://api.upsidewireless.com/ http://api.upsidewireless.com/]&lt;br /&gt;
&lt;br /&gt;
* [[MOIntro | Intro to MO APIs (Mobile Originated - incoming from a mobile phone)]]&lt;br /&gt;
** [[MO POP3]]&lt;br /&gt;
** [[MO HTTP]]&lt;br /&gt;
** [[MO HTTPS]]&lt;br /&gt;
* [[MTIntro | Intro to MT APIs (Mobile Terminated - outgoing to a mobile phone)]]&lt;br /&gt;
** [[MT HTTP]]&lt;br /&gt;
** [[MT SMTP]]&lt;br /&gt;
*** [[MT SMTP Auth]]&lt;br /&gt;
*** [[MT Web Text]]&lt;br /&gt;
*** [[MT IP Address]]&lt;br /&gt;
* [[User Management]]&lt;br /&gt;
* [[Settings]]&lt;br /&gt;
* [[Examples And Concepts | Examples and General Concepts]]&lt;br /&gt;
** PHP&lt;br /&gt;
*** [[PHP Sending SMS | Sending SMS via HTTP POST]]&lt;br /&gt;
*** [[PHP Sending SMS via SMTP | Sending SMS via SMTP]]&lt;br /&gt;
*** [[PHP Receiving SMS | Receiving SMS]]&lt;br /&gt;
** Java&lt;br /&gt;
*** Sending SMS&lt;br /&gt;
*** [[Java Sending SMS via SMTP | Sending SMS via SMTP]]&lt;br /&gt;
*** Receiving SMS&lt;br /&gt;
** [[CSharp_Overview | C# (Overview)]]&lt;br /&gt;
*** [[CSharp Sending SMS | Sending SMS]]&lt;br /&gt;
*** [[CSharp Sending SMS via SMTP | Sending SMS via SMTP]]&lt;br /&gt;
*** [[CSharp Receiving SMS | Receiving SMS]]&lt;br /&gt;
&lt;br /&gt;
This is a patrolled change&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Java_Sending_SMS_via_SMTP</id>
		<title>Java Sending SMS via SMTP</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Java_Sending_SMS_via_SMTP"/>
				<updated>2007-05-11T22:44:54Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
import java.util.Date;&lt;br /&gt;
import java.util.Properties;&lt;br /&gt;
&lt;br /&gt;
import javax.mail.Message;&lt;br /&gt;
import javax.mail.MessagingException;&lt;br /&gt;
import javax.mail.Session;&lt;br /&gt;
import javax.mail.Transport;&lt;br /&gt;
import javax.mail.internet.AddressException;&lt;br /&gt;
import javax.mail.internet.InternetAddress;&lt;br /&gt;
import javax.mail.internet.MimeMessage;&lt;br /&gt;
&lt;br /&gt;
public class SendSmsViaSmtp {&lt;br /&gt;
&lt;br /&gt;
	/**&lt;br /&gt;
	 * @param args&lt;br /&gt;
	 * @throws MessagingException &lt;br /&gt;
	 * @throws AddressException &lt;br /&gt;
	 */&lt;br /&gt;
	public static void main(String[] args) throws AddressException, MessagingException {&lt;br /&gt;
		SendSmsViaSmtp smtpSend = new SendSmsViaSmtp();&lt;br /&gt;
		smtpSend.msgsend();&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	/**&lt;br /&gt;
	 * @throws AddressException&lt;br /&gt;
	 * @throws MessagingException&lt;br /&gt;
	 */&lt;br /&gt;
	public void msgsend() throws AddressException, MessagingException {&lt;br /&gt;
		String username = &amp;quot;yourusername&amp;quot;;&lt;br /&gt;
		String password = &amp;quot;yourpassword&amp;quot;;&lt;br /&gt;
		String smtphost = &amp;quot;smtp.upsidewireless.com&amp;quot;;&lt;br /&gt;
		String compression = &amp;quot;&amp;quot;; // insert compression option here if desired&lt;br /&gt;
		String from = &amp;quot;yourusername@smtp.upsidewireless.com&amp;quot;;&lt;br /&gt;
		String to = &amp;quot;DestinationPhoneNumber@sms.upsidewireless.com&amp;quot;;&lt;br /&gt;
		String body = &amp;quot;Your Message&amp;quot;;&lt;br /&gt;
		Transport tr = null;&lt;br /&gt;
&lt;br /&gt;
		Properties props = System.getProperties();&lt;br /&gt;
		props.put(&amp;quot;mail.smtp.auth&amp;quot;, &amp;quot;true&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
		// Get a Session object&lt;br /&gt;
		Session mailSession = Session.getDefaultInstance(props, null);&lt;br /&gt;
&lt;br /&gt;
		// construct the message&lt;br /&gt;
		Message msg = new MimeMessage(mailSession);&lt;br /&gt;
&lt;br /&gt;
		// Set message attributes&lt;br /&gt;
		msg.setFrom(new InternetAddress(from));&lt;br /&gt;
		InternetAddress[] address = { new InternetAddress(to) };&lt;br /&gt;
		msg.setRecipients(Message.RecipientType.TO, address);&lt;br /&gt;
		msg.setSubject(compression);&lt;br /&gt;
		msg.setText(body);&lt;br /&gt;
		msg.setSentDate(new Date());&lt;br /&gt;
&lt;br /&gt;
		tr = mailSession.getTransport(&amp;quot;smtp&amp;quot;);&lt;br /&gt;
		tr.connect(smtphost, username, password);&lt;br /&gt;
		msg.saveChanges();&lt;br /&gt;
		tr.sendMessage(msg, msg.getAllRecipients());&lt;br /&gt;
		tr.close();&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Java_Sending_SMS_via_SMTP</id>
		<title>Java Sending SMS via SMTP</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Java_Sending_SMS_via_SMTP"/>
				<updated>2007-05-11T22:38:50Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: New page: Required JAR files * mail.jar - from JavaMail - http://java.sun.com/products/javamail/downloads/index.html  * activation.jar - http://java.sun.com/products/javabeans/jaf/downloads/index.ht...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Required JAR files&lt;br /&gt;
* mail.jar - from JavaMail - http://java.sun.com/products/javamail/downloads/index.html &lt;br /&gt;
* activation.jar - http://java.sun.com/products/javabeans/jaf/downloads/index.html&lt;br /&gt;
&lt;br /&gt;
Be sure to set your classpath to the location where the files are stored.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
import java.io.*;&lt;br /&gt;
import java.net.InetAddress;&lt;br /&gt;
import java.util.Properties;&lt;br /&gt;
import java.util.Date; &lt;br /&gt;
import javax.mail.*;&lt;br /&gt;
import javax.mail.internet.*;&lt;br /&gt;
import javax.activation.*;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
public class SMTPSend {&lt;br /&gt;
&lt;br /&gt;
    public SMTPSend() {&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    public void msgsend() {&lt;br /&gt;
        String username = &amp;quot;YoureIPIPIUsername&amp;quot;;&lt;br /&gt;
        String password = &amp;quot;YourPassword&amp;quot;;&lt;br /&gt;
        String smtphost = &amp;quot;ipipi.com&amp;quot;;&lt;br /&gt;
        String compression = &amp;quot;Compression Option goes here - find out more&amp;quot;;&lt;br /&gt;
        String from = &amp;quot;YoureIPIPIUsername@ipipi.com&amp;quot;;&lt;br /&gt;
        String to = &amp;quot;DestinationPhoneNumber@sms.ipipi.com&amp;quot;;&lt;br /&gt;
        String body = &amp;quot;Your Message&amp;quot;;&lt;br /&gt;
        Transport tr = null;&lt;br /&gt;
&lt;br /&gt;
        try {&lt;br /&gt;
         Properties props = System.getProperties();&lt;br /&gt;
         props.put(&amp;quot;mail.smtp.auth&amp;quot;, &amp;quot;true&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
         // Get a Session object&lt;br /&gt;
         Session mailSession = Session.getDefaultInstance(props, null);&lt;br /&gt;
&lt;br /&gt;
         // construct the message&lt;br /&gt;
         Message msg = new MimeMessage(mailSession);&lt;br /&gt;
&lt;br /&gt;
         //Set message attributes&lt;br /&gt;
         msg.setFrom(new InternetAddress(from));&lt;br /&gt;
         InternetAddress[] address = {new InternetAddress(to)};&lt;br /&gt;
         msg.setRecipients(Message.RecipientType.TO, address);&lt;br /&gt;
         msg.setSubject(compression);&lt;br /&gt;
         msg.setText(body);&lt;br /&gt;
         msg.setSentDate(new Date());&lt;br /&gt;
&lt;br /&gt;
         tr = mailSession.getTransport(&amp;quot;smtp&amp;quot;);&lt;br /&gt;
         tr.connect(smtphost, username, password);&lt;br /&gt;
         msg.saveChanges();&lt;br /&gt;
         tr.sendMessage(msg, msg.getAllRecipients());&lt;br /&gt;
         tr.close();&lt;br /&gt;
         } catch (Exception e) {&lt;br /&gt;
             e.printStackTrace();&lt;br /&gt;
         }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
      public static void main(String[] argv) {&lt;br /&gt;
          SMTPSend smtpSend = new SMTPSend();&lt;br /&gt;
          smtpSend.msgsend();&lt;br /&gt;
      }&lt;br /&gt;
} &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=APIs</id>
		<title>APIs</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=APIs"/>
				<updated>2007-05-11T22:36:12Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Upside Wireless HTTP APIs are located at [http://api.upsidewireless.com/ http://api.upsidewireless.com/]&lt;br /&gt;
&lt;br /&gt;
* [[MOIntro | Intro to MO APIs (Mobile Originated - incoming from a mobile phone)]]&lt;br /&gt;
** [[MO POP3]]&lt;br /&gt;
** [[MO HTTP]]&lt;br /&gt;
** [[MO HTTPS]]&lt;br /&gt;
* [[MTIntro | Intro to MT APIs (Mobile Terminated - outgoing to a mobile phone)]]&lt;br /&gt;
** [[MT HTTP]]&lt;br /&gt;
** [[MT SMTP]]&lt;br /&gt;
*** [[MT SMTP Auth]]&lt;br /&gt;
*** [[MT Web Text]]&lt;br /&gt;
*** [[MT IP Address]]&lt;br /&gt;
* [[User Management]]&lt;br /&gt;
* [[Settings]]&lt;br /&gt;
* [[Examples And Concepts | Examples and General Concepts]]&lt;br /&gt;
** PHP&lt;br /&gt;
*** [[PHP Sending SMS | Sending SMS via HTTP POST]]&lt;br /&gt;
*** [[PHP Sending SMS via SMTP | Sending SMS via SMTP]]&lt;br /&gt;
*** [[PHP Receiving SMS | Receiving SMS]]&lt;br /&gt;
** Java&lt;br /&gt;
*** Sending SMS&lt;br /&gt;
*** [[Java Sending SMS via SMTP | Sending SMS via SMTP]]&lt;br /&gt;
*** Receiving SMS&lt;br /&gt;
** [[CSharp_Overview | C# (Overview)]]&lt;br /&gt;
*** [[CSharp Sending SMS | Sending SMS]]&lt;br /&gt;
*** [[CSharp Receiving SMS | Receiving SMS]]&lt;br /&gt;
&lt;br /&gt;
This is a patrolled change&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=PHP_Sending_SMS_via_SMTP</id>
		<title>PHP Sending SMS via SMTP</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=PHP_Sending_SMS_via_SMTP"/>
				<updated>2007-05-11T22:35:01Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Example code to send text messages written in php. This code requires phpmailer class. You can download free phpmailer from http://phpmailer.sourceforge.net/&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
require(&amp;quot;class.phpmailer.php&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
$mail = new PHPMailer();&lt;br /&gt;
&lt;br /&gt;
$mail-&amp;gt;IsSMTP(); // set mailer to use SMTP&lt;br /&gt;
$mail-&amp;gt;Host = &amp;quot;smtp.upsidewireless.com&amp;quot;; // specify main and backup server&lt;br /&gt;
$mail-&amp;gt;SMTPAuth = true; // turn on SMTP authentication&lt;br /&gt;
$mail-&amp;gt;Port =25;&lt;br /&gt;
$mail-&amp;gt;Username = &amp;quot;yourusername&amp;quot;;&lt;br /&gt;
$mail-&amp;gt;Password = &amp;quot;yourpassword&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
$mail-&amp;gt;From = &amp;quot;yourusername@smtp.upsidewireless.com&amp;quot;;&lt;br /&gt;
$mail-&amp;gt;FromName = &amp;quot;Your Name&amp;quot;;&lt;br /&gt;
$mail-&amp;gt;AddAddressTo(&amp;quot;DestinationPhoneNumber@sms.upsidewireless.com&amp;quot;, &amp;quot;Receiver Name&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
$mail-&amp;gt;Subject = &amp;quot;&amp;quot;; // insert compression options if desired&lt;br /&gt;
$mail-&amp;gt;Body = &amp;quot;Your Message&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
if($mail-&amp;gt;Send())&lt;br /&gt;
{&lt;br /&gt;
  // Success&lt;br /&gt;
} else {&lt;br /&gt;
  // Failure&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=PHP_Sending_SMS_via_SMTP</id>
		<title>PHP Sending SMS via SMTP</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=PHP_Sending_SMS_via_SMTP"/>
				<updated>2007-05-11T22:32:02Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: New page: Example code to send text messages written in php. This code requires phpmailer class. You can download free phpmailer from http://phpmailer.sourceforge.net/. This code is provided as samp...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Example code to send text messages written in php. This code requires phpmailer class. You can download free phpmailer from http://phpmailer.sourceforge.net/. This code is provided as sample only. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
require(&amp;quot;class.phpmailer.php&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
$mail = new PHPMailer();&lt;br /&gt;
&lt;br /&gt;
$mail-&amp;gt;IsSMTP(); // set mailer to use SMTP&lt;br /&gt;
$mail-&amp;gt;Host = &amp;quot;smtp.upsidewireless.com&amp;quot;; // specify main and backup server&lt;br /&gt;
$mail-&amp;gt;SMTPAuth = true; // turn on SMTP authentication&lt;br /&gt;
$mail-&amp;gt;Port =25;&lt;br /&gt;
$mail-&amp;gt;Username = &amp;quot;yourusername&amp;quot;;&lt;br /&gt;
$mail-&amp;gt;Password = &amp;quot;yourpassword&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
$mail-&amp;gt;From = &amp;quot;yourusername@smtp.upsidewireless.com&amp;quot;;&lt;br /&gt;
$mail-&amp;gt;FromName = &amp;quot;Your Name&amp;quot;;&lt;br /&gt;
$mail-&amp;gt;AddAddressTo(&amp;quot;DestinationPhoneNumber@sms.upsidewireless.com&amp;quot;, &amp;quot;Receiver Name&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
$mail-&amp;gt;Subject = &amp;quot;&amp;quot;; // insert compression options if desired&lt;br /&gt;
$mail-&amp;gt;Body = &amp;quot;Your Message&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
if($mail-&amp;gt;Send())&lt;br /&gt;
{&lt;br /&gt;
  // Success&lt;br /&gt;
} else {&lt;br /&gt;
  // Failure&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=APIs</id>
		<title>APIs</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=APIs"/>
				<updated>2007-05-11T22:27:46Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Upside Wireless HTTP APIs are located at [http://api.upsidewireless.com/ http://api.upsidewireless.com/]&lt;br /&gt;
&lt;br /&gt;
* [[MOIntro | Intro to MO APIs (Mobile Originated - incoming from a mobile phone)]]&lt;br /&gt;
** [[MO POP3]]&lt;br /&gt;
** [[MO HTTP]]&lt;br /&gt;
** [[MO HTTPS]]&lt;br /&gt;
* [[MTIntro | Intro to MT APIs (Mobile Terminated - outgoing to a mobile phone)]]&lt;br /&gt;
** [[MT HTTP]]&lt;br /&gt;
** [[MT SMTP]]&lt;br /&gt;
*** [[MT SMTP Auth]]&lt;br /&gt;
*** [[MT Web Text]]&lt;br /&gt;
*** [[MT IP Address]]&lt;br /&gt;
* [[User Management]]&lt;br /&gt;
* [[Settings]]&lt;br /&gt;
* [[Examples And Concepts | Examples and General Concepts]]&lt;br /&gt;
** PHP&lt;br /&gt;
*** [[PHP Sending SMS | Sending SMS via HTTP POST]]&lt;br /&gt;
*** [[PHP Sending SMS via SMTP | Sending SMS via SMTP]]&lt;br /&gt;
*** [[PHP Receiving SMS | Receiving SMS]]&lt;br /&gt;
** Java&lt;br /&gt;
*** Sending SMS&lt;br /&gt;
*** Receiving SMS&lt;br /&gt;
** [[CSharp_Overview | C# (Overview)]]&lt;br /&gt;
*** [[CSharp Sending SMS | Sending SMS]]&lt;br /&gt;
*** [[CSharp Receiving SMS | Receiving SMS]]&lt;br /&gt;
&lt;br /&gt;
This is a patrolled change&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts</id>
		<title>Examples And Concepts</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Examples_And_Concepts"/>
				<updated>2007-05-11T22:23:52Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: /* Sending SMS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== SOAP API Usage ===&lt;br /&gt;
Every function of the SOAP API that requires authentication must pass in Authentication Parameters, to acquire a set of Authentication Parameters, please use the API found at: http://api.upsidewireless.com/soap/Authentication.asmx&lt;br /&gt;
&lt;br /&gt;
The two values that are returned from the function are then used for every subsequent calls to the API. The Token parameter will never change for the life of the account whereas the Signature will change if your password changes. In most applications, you will store these variables in a constant or configuration store.&lt;br /&gt;
&lt;br /&gt;
=== Sending SMS ===&lt;br /&gt;
&lt;br /&gt;
Sending an SMS can be handled by way of sending us an SMTP message or via our HTTP Interface.&lt;br /&gt;
&lt;br /&gt;
=== Receiving SMS ===&lt;br /&gt;
The method of receiving Inbound SMS messages is by way of HTTP POST. A few variables are passed in the body of the POST.&lt;br /&gt;
* name&lt;br /&gt;
* sender&lt;br /&gt;
* data&lt;br /&gt;
* carriercode &amp;lt;&amp;lt; For shortcode accounts only&lt;br /&gt;
* inboundnumber &amp;lt;&amp;lt; For Dedicated accounts only&lt;br /&gt;
&lt;br /&gt;
In order to receive an SMS you must first register a URL in your account. Your account must be enabled to allow adding of URLs. Once your account has the registered URL set up, you will then need to forward all inbound SMS messages to that URL.&lt;br /&gt;
&lt;br /&gt;
You can use the following HTML to emulate what our server will send your service.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
		&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;Received SMS Emulator (Via HTTP POST)&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
		&amp;lt;form id=&amp;quot;emulator&amp;quot; name=&amp;quot;emulator&amp;quot; method=&amp;quot;post&amp;quot; action=&amp;quot;http://sms.yourdomain.com/incoming.php&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;table&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Sender:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;sender&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;sender&amp;quot; value=&amp;quot;17789964283&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;sender&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Message:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;data&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;data&amp;quot; value=&amp;quot;Hello&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;data&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;User Name:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;name&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; value=&amp;quot;cjensen&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Inbound Number:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;inboundnumber&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;inboundnumber&amp;quot; value=&amp;quot;16047807002&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;inboundnumber&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;Carrier Code:&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&lt;br /&gt;
						&amp;lt;input name=&amp;quot;carriercode&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;carriercode&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;carriercode&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
				&amp;lt;tr&amp;gt;&lt;br /&gt;
					&amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/td&amp;gt;&lt;br /&gt;
					&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
				&amp;lt;/tr&amp;gt;&lt;br /&gt;
			&amp;lt;/table&amp;gt;&lt;br /&gt;
		&amp;lt;/form&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MT_HTTP</id>
		<title>MT HTTP</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MT_HTTP"/>
				<updated>2007-05-11T22:22:12Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Sending an SMS via SOAP, HTTP POST or HTTP GET ==&lt;br /&gt;
&lt;br /&gt;
* Get your token and signature&lt;br /&gt;
* Send message&lt;br /&gt;
&lt;br /&gt;
To get your token visit or make a call to: http://api.upsidewireless.com/soap/Authentication.asmx?op=GetParameters&lt;br /&gt;
&lt;br /&gt;
To send your message visit or make a call to: http://api.upsidewireless.com/soap/SMS.asmx?op=Send_Plain&lt;br /&gt;
&lt;br /&gt;
Sending VIA SOAP is the recommended method as the input and output variables are strongly typed, however at times using HTTP POST or GET is the only option. HTTP GET should be fiercely avoided as it is fraught with problems (string length, encoding issues, etc).&lt;br /&gt;
&lt;br /&gt;
When using HTTP POST, be certain to retrieve the result of the request as it will contain valuable data that will assist in determining the message state.&lt;br /&gt;
&lt;br /&gt;
To see a full set of functions that are available for sending SMS, please visit http://api.upsidewireless.com/soap/SMS.asmx&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MT_HTTP</id>
		<title>MT HTTP</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MT_HTTP"/>
				<updated>2007-05-11T22:20:00Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: New page:  == Sending an SMS via SOAP, HTTP POST or HTTP GET ==  1. Get your token and signature 2. Send message  To get your token visit or make a call to: http://api.upsidewireless.com/soap/Authen...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Sending an SMS via SOAP, HTTP POST or HTTP GET ==&lt;br /&gt;
&lt;br /&gt;
1. Get your token and signature&lt;br /&gt;
2. Send message&lt;br /&gt;
&lt;br /&gt;
To get your token visit or make a call to: http://api.upsidewireless.com/soap/Authentication.asmx?op=GetParameters&lt;br /&gt;
To send your message visit or make a call to: http://api.upsidewireless.com/soap/SMS.asmx?op=Send_Plain&lt;br /&gt;
&lt;br /&gt;
Sending VIA SOAP is the recommended method as the input and output variables are strongly typed, however at times using HTTP POST or GET is the only option. HTTP GET should be fiercely avoided as it is fraught with problems (string length, encoding issues).&lt;br /&gt;
&lt;br /&gt;
When using HTTP POST, be certain to retrieve the result of the request as it will contain valuable data that will assist in determining the message state.&lt;br /&gt;
&lt;br /&gt;
To see a full set of functions that are available for sending SMS, please visit http://api.upsidewireless.com/soap/SMS.asmx&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MT_IP_Address</id>
		<title>MT IP Address</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MT_IP_Address"/>
				<updated>2007-05-11T22:03:36Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== IP Based SMTP Authentication ==&lt;br /&gt;
&lt;br /&gt;
Using IP based authentication is not recommended as your IP address may change and cause you to not be authenticated. Additionally, this is not a self administerable method therefore there may be a delay in getting your account changes made.&lt;br /&gt;
&lt;br /&gt;
* To: SMS_number_in_international_format@sms.ipipi.com&lt;br /&gt;
* cc: Leave empty &lt;br /&gt;
* bcc: Leave empty &lt;br /&gt;
* Subject: Leave empty or use one or all of the [[SMS_compression_options | compression options]]. &lt;br /&gt;
* Message: Write the text of your SMS message. Please note that there is a maximum number of characters that you can write (160 Characters) .&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MT_Web_Text</id>
		<title>MT Web Text</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MT_Web_Text"/>
				<updated>2007-05-11T21:58:42Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PIN based SMTP authentication ==&lt;br /&gt;
Sending text messages using PIN based authentication is a two step process, first you must set up your account, then send your message. The system will look up the email address you are sending from and check the subject of the message. If the email address has been set up with the system and the PIN matches, then the message will be considered to be authentic and will then be processed for sending.&lt;br /&gt;
&lt;br /&gt;
== Account Setup ==&lt;br /&gt;
* Ensure that you registered you email address. Check if you have done so on the Registered Devices screen in your account.&lt;br /&gt;
* Go to your SMS Settings page to define your WebText Code. Your WebText Code should be 6 to 12 characters long and is case insensitive. Because Confirm Code acts like a password, it's highly recommended to change it frequently.&lt;br /&gt;
&lt;br /&gt;
== Sending Text Messages ==&lt;br /&gt;
&lt;br /&gt;
* Compose a new email message&lt;br /&gt;
* Set the subject of the message to be the PIN code that is entered on your account&lt;br /&gt;
* The email address for the &amp;quot;To:&amp;quot; field is similar to '+18887776666@opensms.upsidewireless.com' (replace the number with the mobile number you wish to send to).&lt;br /&gt;
&lt;br /&gt;
http://www.ipipi.com/images/help/SMS_Settings_screenshot.jpg&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MT_Web_Text</id>
		<title>MT Web Text</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MT_Web_Text"/>
				<updated>2007-05-11T21:56:14Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PIN based SMTP authentication ==&lt;br /&gt;
&lt;br /&gt;
== Account Setup ==&lt;br /&gt;
* Ensure that you registered you email address. Check if you have done so on the Registered Devices screen in your account.&lt;br /&gt;
* Go to your SMS Settings page to define your WebText Code. Your WebText Code should be 6 to 12 characters long and is case insensitive. Because Confirm Code acts like a password, it's highly recommended to change it frequently.&lt;br /&gt;
&lt;br /&gt;
== Sending Text Messages ==&lt;br /&gt;
&lt;br /&gt;
* Compose a new email message&lt;br /&gt;
* Set the subject of the message to be the PIN code that is entered on your account&lt;br /&gt;
* The email address for the &amp;quot;To:&amp;quot; field is similar to '+18887776666@opensms.upsidewireless.com' (replace the number with the mobile number you wish to send to).&lt;br /&gt;
&lt;br /&gt;
http://www.ipipi.com/images/help/SMS_Settings_screenshot.jpg&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Main_Page"/>
				<updated>2007-05-11T21:42:24Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;EnterpriseSMS API is used to incorporate SMS text messaging into your large scale enterprise application. Several integration methods are available to satisfy various integration needs of our customers. This document explains three integration methods for sending and two integration methods for receiving messages.&lt;br /&gt;
&lt;br /&gt;
These accounts offer:&lt;br /&gt;
* High throughput (up to 100 messages per second)&lt;br /&gt;
* Complete global coverage&lt;br /&gt;
* Two-way capability (MT/MO)&lt;br /&gt;
* Simple and quick integration&lt;br /&gt;
* Full transaction auditing&lt;br /&gt;
&lt;br /&gt;
For full documentation and examples of the API please refer to [[APIs | Upside Wireless APIs]]&lt;br /&gt;
&lt;br /&gt;
To see a complete list of supported networks, please see [http://reseller.upsidewireless.com/networkList.do  Global Network Coverage List]&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MediaWiki:Sidebar</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MediaWiki:Sidebar"/>
				<updated>2007-05-11T21:39:30Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Site Navigation&lt;br /&gt;
** mainpage|EnterpriseSMS API&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** APIs|APIs&lt;br /&gt;
** http://reseller.upsidewireless.com/ContactUs.do|Contact Us&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MO_POP3</id>
		<title>MO POP3</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MO_POP3"/>
				<updated>2007-05-11T19:16:04Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To receive your messages via POP3, connect your application using the following settings:&lt;br /&gt;
&lt;br /&gt;
* Host: pop3.upsidewireless.com&lt;br /&gt;
* Username: {your account username}&lt;br /&gt;
* Password: {your account password}&lt;br /&gt;
&lt;br /&gt;
In general, receiving messages via POP3 is best suited whenever Humans will be reading the messages using a mail reader application. If you develop an application that needs to respond to incoming messages, the HTTP interface is recommended over POP3.&lt;br /&gt;
&lt;br /&gt;
POP3 message access is similar to email forwarding in many respects.&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MO_POP3</id>
		<title>MO POP3</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MO_POP3"/>
				<updated>2007-05-11T19:15:25Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To receive your messages via POP3, connect your application using the following settings:&lt;br /&gt;
&lt;br /&gt;
Host: pop3.upsidewireless.com&lt;br /&gt;
Username: {your account username}&lt;br /&gt;
Password: {your account password}&lt;br /&gt;
&lt;br /&gt;
In general, receiving messages via POP3 is best suited whenever Humans will be reading the messages using a mail reader application. If you develop an application that needs to respond to incoming messages, the HTTP interface is recommended over POP3.&lt;br /&gt;
&lt;br /&gt;
POP3 message access is similar to email forwarding in many respects.&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MO_POP3</id>
		<title>MO POP3</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MO_POP3"/>
				<updated>2007-05-11T19:07:14Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://www.ipipi.com/help/connectusingmailclient.htm&lt;br /&gt;
&lt;br /&gt;
To receive your messages via POP3, connect your application using the following settings:&lt;br /&gt;
&lt;br /&gt;
Host: pop3.upsidewireless.com&lt;br /&gt;
Username: {your account username}&lt;br /&gt;
Password: {your account password}&lt;br /&gt;
&lt;br /&gt;
In general, receiving messages via POP3 is best suited whenever Humans will be reading the messages using a mail reader application. If you develop an application that needs to respond to incoming messages, the HTTP interface is recommended over POP3.&lt;br /&gt;
&lt;br /&gt;
POP3 message access is similar to email forwarding in many respects.&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MO_HTTPS</id>
		<title>MO HTTPS</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MO_HTTPS"/>
				<updated>2007-05-11T18:52:40Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: New page: Coming Soon&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Coming Soon&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MediaWiki:Sidebar</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MediaWiki:Sidebar"/>
				<updated>2007-05-11T18:51:00Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Site Navigation&lt;br /&gt;
** mainpage|mainpage&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** APIs|APIs&lt;br /&gt;
** http://reseller.upsidewireless.com/ContactUs.do|Contact Us&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MediaWiki:Sidebar</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MediaWiki:Sidebar"/>
				<updated>2007-05-11T18:50:44Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Site Navigation&lt;br /&gt;
** mainpage|mainpage&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** [[APIs|APIs]]&lt;br /&gt;
** http://reseller.upsidewireless.com/ContactUs.do|Contact Us&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MediaWiki:Sidebar</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MediaWiki:Sidebar"/>
				<updated>2007-05-11T18:50:14Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Site Navigation&lt;br /&gt;
** mainpage|mainpage&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** [[APIs]]&lt;br /&gt;
** http://reseller.upsidewireless.com/ContactUs.do|Contact Us&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MediaWiki:Sidebar</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MediaWiki:Sidebar"/>
				<updated>2007-05-11T18:48:51Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Site Navigation&lt;br /&gt;
** mainpage|mainpage&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** http://reseller.upsidewireless.com/ContactUs.do|Contact Us&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=MediaWiki:Sidebar</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=MediaWiki:Sidebar"/>
				<updated>2007-05-11T18:47:41Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: New page: * Site Navigation ** mainpage|mainpage ** recentchanges-url|recentchanges ** [http://reseller.upsidewireless.com/ContactUs.do Contact Us]&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Site Navigation&lt;br /&gt;
** mainpage|mainpage&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** [http://reseller.upsidewireless.com/ContactUs.do Contact Us]&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=CSharp_Sending_SMS</id>
		<title>CSharp Sending SMS</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=CSharp_Sending_SMS"/>
				<updated>2007-03-09T01:12:05Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: /* Sending a Plain SMS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following sample code is running at [http://api.upsidewireless.com/samples/csharp/  SOAP Sampler]&lt;br /&gt;
&lt;br /&gt;
=== Sending a Plain SMS ===&lt;br /&gt;
&lt;br /&gt;
The basis of sending a message is to pass in the authentication token and signature along with the message parameters. A SoapException will be thrown if a serious error occurs and an SMS result object will be returned in less serious conditions.&lt;br /&gt;
&lt;br /&gt;
Default.aspx.cs&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
using System;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Configuration;&lt;br /&gt;
using System.Collections;&lt;br /&gt;
using System.Web;&lt;br /&gt;
using System.Web.Security;&lt;br /&gt;
using System.Web.UI;&lt;br /&gt;
using System.Web.UI.WebControls;&lt;br /&gt;
using System.Web.UI.WebControls.WebParts;&lt;br /&gt;
using System.Web.UI.HtmlControls;&lt;br /&gt;
using com.upsidewireless.api.sms;&lt;br /&gt;
using System.Web.Services.Protocols;&lt;br /&gt;
&lt;br /&gt;
public partial class SMS_Default : System.Web.UI.Page&lt;br /&gt;
{&lt;br /&gt;
    protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
&lt;br /&gt;
    }&lt;br /&gt;
    protected void sendButton_Click(object sender, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
        SMS sms = new SMS();&lt;br /&gt;
&lt;br /&gt;
        string token = &amp;quot;&amp;quot;;&lt;br /&gt;
        if (Session[&amp;quot;token&amp;quot;] != null)&lt;br /&gt;
        {&lt;br /&gt;
            token = (string)Session[&amp;quot;token&amp;quot;];&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        string signature = &amp;quot;&amp;quot;;&lt;br /&gt;
        if (Session[&amp;quot;signature&amp;quot;] != null)&lt;br /&gt;
        {&lt;br /&gt;
            signature = (string)Session[&amp;quot;signature&amp;quot;];&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        string recipient = recipientTextBox.Text;&lt;br /&gt;
&lt;br /&gt;
        string message = messageTextBox.Text;&lt;br /&gt;
&lt;br /&gt;
        SmsEncoding encoding = SmsEncoding.Seven;&lt;br /&gt;
        switch (encodingDropDownList.SelectedValue)&lt;br /&gt;
        {&lt;br /&gt;
            case &amp;quot;Seven&amp;quot;:&lt;br /&gt;
                encoding = SmsEncoding.Seven;&lt;br /&gt;
                break;&lt;br /&gt;
&lt;br /&gt;
            case &amp;quot;Sixteen&amp;quot;:&lt;br /&gt;
                encoding = SmsEncoding.Sixteen;&lt;br /&gt;
                break;&lt;br /&gt;
        }&lt;br /&gt;
        try&lt;br /&gt;
        {&lt;br /&gt;
            SMSSendResult result = sms.Send_Plain(token, signature, recipient, message, encoding);&lt;br /&gt;
&lt;br /&gt;
            if (result.isOk)&lt;br /&gt;
            {&lt;br /&gt;
                resultsMultiView.SetActiveView(resultSuccessView);&lt;br /&gt;
                trackingIdLabel.Text = result.trackingId;&lt;br /&gt;
            }&lt;br /&gt;
            else&lt;br /&gt;
            {&lt;br /&gt;
                resultsMultiView.SetActiveView(resultsSMSErrorView);&lt;br /&gt;
&lt;br /&gt;
                blockedLabel.Text = result.BlockedReason;&lt;br /&gt;
                invalidCountryCodeCheckBox.Checked = result.invalidCountryCode;&lt;br /&gt;
                emptyMessageCheckBox.Checked = result.messageIsEmpty;&lt;br /&gt;
                tooManySplitsCheckBox.Checked = result.tooManyMessages;&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
        catch (SoapException error)&lt;br /&gt;
        {&lt;br /&gt;
            resultsMultiView.SetActiveView(resultsErrorView);&lt;br /&gt;
            errorLabel.Text = error.Detail.InnerText;&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Default.aspx&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;%@ Page Language=&amp;quot;C#&amp;quot; MasterPageFile=&amp;quot;~/MasterPage.master&amp;quot; AutoEventWireup=&amp;quot;true&amp;quot;&lt;br /&gt;
    CodeFile=&amp;quot;Default.aspx.cs&amp;quot; Inherits=&amp;quot;SMS_Default&amp;quot; Title=&amp;quot;Send Plain SMS&amp;quot; %&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;asp:Content ID=&amp;quot;Content1&amp;quot; ContentPlaceHolderID=&amp;quot;ContentPlaceHolder1&amp;quot; runat=&amp;quot;Server&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;table&amp;gt;&lt;br /&gt;
        &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;asp:Label ID=&amp;quot;recipientLabel&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Recipient:&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td&amp;gt;&lt;br /&gt;
                &amp;lt;asp:TextBox ID=&amp;quot;recipientTextBox&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&amp;lt;/asp:TextBox&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;/tr&amp;gt;&lt;br /&gt;
        &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;asp:Label ID=&amp;quot;Label1&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Message:&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td&amp;gt;&lt;br /&gt;
                &amp;lt;asp:TextBox ID=&amp;quot;messageTextBox&amp;quot; runat=&amp;quot;server&amp;quot; Rows=&amp;quot;6&amp;quot; TextMode=&amp;quot;MultiLine&amp;quot;&amp;gt;&amp;lt;/asp:TextBox&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;/tr&amp;gt;&lt;br /&gt;
        &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;asp:Label ID=&amp;quot;Label2&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Encoding:&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td&amp;gt;&lt;br /&gt;
                &amp;lt;asp:DropDownList ID=&amp;quot;encodingDropDownList&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;asp:ListItem Value=&amp;quot;Seven&amp;quot;&amp;gt;Seven (GSM7)&amp;lt;/asp:ListItem&amp;gt;&lt;br /&gt;
                    &amp;lt;asp:ListItem Value=&amp;quot;Sixteen&amp;quot;&amp;gt;Unicode&amp;lt;/asp:ListItem&amp;gt;&lt;br /&gt;
                &amp;lt;/asp:DropDownList&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;/tr&amp;gt;&lt;br /&gt;
        &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;asp:Button ID=&amp;quot;sendButton&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Send&amp;quot; OnClick=&amp;quot;sendButton_Click&amp;quot; /&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;asp:MultiView ID=&amp;quot;resultsMultiView&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;asp:View ID=&amp;quot;resultSuccessView&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
            Operation Successful&amp;lt;br /&amp;gt;&lt;br /&gt;
            Message Tracking ID:&amp;lt;asp:Label ID=&amp;quot;trackingIdLabel&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Label&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&amp;lt;/asp:View&amp;gt;&lt;br /&gt;
        &amp;lt;asp:View ID=&amp;quot;resultsSMSErrorView&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;div style=&amp;quot;border: solid 1px #c00; padding: 20px; margin: 10px;&amp;quot;&amp;gt;&lt;br /&gt;
                The operation was not successful for the following reasons:&amp;lt;br /&amp;gt;&lt;br /&gt;
                &amp;lt;asp:Label ID=&amp;quot;blockedLabel&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Label&amp;quot; Font-Bold=&amp;quot;True&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
                &amp;lt;asp:CheckBox ID=&amp;quot;invalidCountryCodeCheckBox&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Invalid Country Code&amp;quot; /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
                &amp;lt;asp:CheckBox ID=&amp;quot;tooManySplitsCheckBox&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Message too long&amp;quot; /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
                &amp;lt;asp:CheckBox ID=&amp;quot;emptyMessageCheckBox&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Message is Empty&amp;quot; /&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/asp:View&amp;gt;&lt;br /&gt;
        &amp;lt;asp:View ID=&amp;quot;resultsErrorView&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;div style=&amp;quot;border: solid 1px #c00; padding: 20px; margin: 10px;&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;asp:Label ID=&amp;quot;Label3&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;An error has occurred when calling this function:&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&lt;br /&gt;
                &amp;lt;asp:Label ID=&amp;quot;errorLabel&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Label&amp;quot; Font-Bold=&amp;quot;True&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/asp:View&amp;gt;&lt;br /&gt;
    &amp;lt;/asp:MultiView&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;/asp:Content&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=CSharp_Sending_SMS</id>
		<title>CSharp Sending SMS</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=CSharp_Sending_SMS"/>
				<updated>2007-03-09T01:10:31Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: New page: The following sample code is running at [http://api.upsidewireless.com/samples/csharp/  SOAP Sampler]  === Sending a Plain SMS ===  The basis of sending a message is to pass in the authent...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following sample code is running at [http://api.upsidewireless.com/samples/csharp/  SOAP Sampler]&lt;br /&gt;
&lt;br /&gt;
=== Sending a Plain SMS ===&lt;br /&gt;
&lt;br /&gt;
The basis of sending a message is to pass in the authentication token and signature along with the message parameters. A SOAPException will be thrown if a serious error occurs and an SMS result object will be returned in less serious conditions.&lt;br /&gt;
&lt;br /&gt;
Default.aspx.cs&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
using System;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Configuration;&lt;br /&gt;
using System.Collections;&lt;br /&gt;
using System.Web;&lt;br /&gt;
using System.Web.Security;&lt;br /&gt;
using System.Web.UI;&lt;br /&gt;
using System.Web.UI.WebControls;&lt;br /&gt;
using System.Web.UI.WebControls.WebParts;&lt;br /&gt;
using System.Web.UI.HtmlControls;&lt;br /&gt;
using com.upsidewireless.api.sms;&lt;br /&gt;
using System.Web.Services.Protocols;&lt;br /&gt;
&lt;br /&gt;
public partial class SMS_Default : System.Web.UI.Page&lt;br /&gt;
{&lt;br /&gt;
    protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
&lt;br /&gt;
    }&lt;br /&gt;
    protected void sendButton_Click(object sender, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
        SMS sms = new SMS();&lt;br /&gt;
&lt;br /&gt;
        string token = &amp;quot;&amp;quot;;&lt;br /&gt;
        if (Session[&amp;quot;token&amp;quot;] != null)&lt;br /&gt;
        {&lt;br /&gt;
            token = (string)Session[&amp;quot;token&amp;quot;];&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        string signature = &amp;quot;&amp;quot;;&lt;br /&gt;
        if (Session[&amp;quot;signature&amp;quot;] != null)&lt;br /&gt;
        {&lt;br /&gt;
            signature = (string)Session[&amp;quot;signature&amp;quot;];&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        string recipient = recipientTextBox.Text;&lt;br /&gt;
&lt;br /&gt;
        string message = messageTextBox.Text;&lt;br /&gt;
&lt;br /&gt;
        SmsEncoding encoding = SmsEncoding.Seven;&lt;br /&gt;
        switch (encodingDropDownList.SelectedValue)&lt;br /&gt;
        {&lt;br /&gt;
            case &amp;quot;Seven&amp;quot;:&lt;br /&gt;
                encoding = SmsEncoding.Seven;&lt;br /&gt;
                break;&lt;br /&gt;
&lt;br /&gt;
            case &amp;quot;Sixteen&amp;quot;:&lt;br /&gt;
                encoding = SmsEncoding.Sixteen;&lt;br /&gt;
                break;&lt;br /&gt;
        }&lt;br /&gt;
        try&lt;br /&gt;
        {&lt;br /&gt;
            SMSSendResult result = sms.Send_Plain(token, signature, recipient, message, encoding);&lt;br /&gt;
&lt;br /&gt;
            if (result.isOk)&lt;br /&gt;
            {&lt;br /&gt;
                resultsMultiView.SetActiveView(resultSuccessView);&lt;br /&gt;
                trackingIdLabel.Text = result.trackingId;&lt;br /&gt;
            }&lt;br /&gt;
            else&lt;br /&gt;
            {&lt;br /&gt;
                resultsMultiView.SetActiveView(resultsSMSErrorView);&lt;br /&gt;
&lt;br /&gt;
                blockedLabel.Text = result.BlockedReason;&lt;br /&gt;
                invalidCountryCodeCheckBox.Checked = result.invalidCountryCode;&lt;br /&gt;
                emptyMessageCheckBox.Checked = result.messageIsEmpty;&lt;br /&gt;
                tooManySplitsCheckBox.Checked = result.tooManyMessages;&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
        catch (SoapException error)&lt;br /&gt;
        {&lt;br /&gt;
            resultsMultiView.SetActiveView(resultsErrorView);&lt;br /&gt;
            errorLabel.Text = error.Detail.InnerText;&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Default.aspx&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;%@ Page Language=&amp;quot;C#&amp;quot; MasterPageFile=&amp;quot;~/MasterPage.master&amp;quot; AutoEventWireup=&amp;quot;true&amp;quot;&lt;br /&gt;
    CodeFile=&amp;quot;Default.aspx.cs&amp;quot; Inherits=&amp;quot;SMS_Default&amp;quot; Title=&amp;quot;Send Plain SMS&amp;quot; %&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;asp:Content ID=&amp;quot;Content1&amp;quot; ContentPlaceHolderID=&amp;quot;ContentPlaceHolder1&amp;quot; runat=&amp;quot;Server&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;table&amp;gt;&lt;br /&gt;
        &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;asp:Label ID=&amp;quot;recipientLabel&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Recipient:&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td&amp;gt;&lt;br /&gt;
                &amp;lt;asp:TextBox ID=&amp;quot;recipientTextBox&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&amp;lt;/asp:TextBox&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;/tr&amp;gt;&lt;br /&gt;
        &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;asp:Label ID=&amp;quot;Label1&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Message:&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td&amp;gt;&lt;br /&gt;
                &amp;lt;asp:TextBox ID=&amp;quot;messageTextBox&amp;quot; runat=&amp;quot;server&amp;quot; Rows=&amp;quot;6&amp;quot; TextMode=&amp;quot;MultiLine&amp;quot;&amp;gt;&amp;lt;/asp:TextBox&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;/tr&amp;gt;&lt;br /&gt;
        &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;asp:Label ID=&amp;quot;Label2&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Encoding:&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td&amp;gt;&lt;br /&gt;
                &amp;lt;asp:DropDownList ID=&amp;quot;encodingDropDownList&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;asp:ListItem Value=&amp;quot;Seven&amp;quot;&amp;gt;Seven (GSM7)&amp;lt;/asp:ListItem&amp;gt;&lt;br /&gt;
                    &amp;lt;asp:ListItem Value=&amp;quot;Sixteen&amp;quot;&amp;gt;Unicode&amp;lt;/asp:ListItem&amp;gt;&lt;br /&gt;
                &amp;lt;/asp:DropDownList&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;/tr&amp;gt;&lt;br /&gt;
        &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td colspan=&amp;quot;2&amp;quot; align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;asp:Button ID=&amp;quot;sendButton&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Send&amp;quot; OnClick=&amp;quot;sendButton_Click&amp;quot; /&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;asp:MultiView ID=&amp;quot;resultsMultiView&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;asp:View ID=&amp;quot;resultSuccessView&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
            Operation Successful&amp;lt;br /&amp;gt;&lt;br /&gt;
            Message Tracking ID:&amp;lt;asp:Label ID=&amp;quot;trackingIdLabel&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Label&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&amp;lt;/asp:View&amp;gt;&lt;br /&gt;
        &amp;lt;asp:View ID=&amp;quot;resultsSMSErrorView&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;div style=&amp;quot;border: solid 1px #c00; padding: 20px; margin: 10px;&amp;quot;&amp;gt;&lt;br /&gt;
                The operation was not successful for the following reasons:&amp;lt;br /&amp;gt;&lt;br /&gt;
                &amp;lt;asp:Label ID=&amp;quot;blockedLabel&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Label&amp;quot; Font-Bold=&amp;quot;True&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
                &amp;lt;asp:CheckBox ID=&amp;quot;invalidCountryCodeCheckBox&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Invalid Country Code&amp;quot; /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
                &amp;lt;asp:CheckBox ID=&amp;quot;tooManySplitsCheckBox&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Message too long&amp;quot; /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
                &amp;lt;asp:CheckBox ID=&amp;quot;emptyMessageCheckBox&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Message is Empty&amp;quot; /&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/asp:View&amp;gt;&lt;br /&gt;
        &amp;lt;asp:View ID=&amp;quot;resultsErrorView&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;div style=&amp;quot;border: solid 1px #c00; padding: 20px; margin: 10px;&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;asp:Label ID=&amp;quot;Label3&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;An error has occurred when calling this function:&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&lt;br /&gt;
                &amp;lt;asp:Label ID=&amp;quot;errorLabel&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Label&amp;quot; Font-Bold=&amp;quot;True&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/asp:View&amp;gt;&lt;br /&gt;
    &amp;lt;/asp:MultiView&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;/asp:Content&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=APIs</id>
		<title>APIs</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=APIs"/>
				<updated>2007-03-09T01:01:46Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* API Security&lt;br /&gt;
* Ease of Use&lt;br /&gt;
* Restrictions&lt;br /&gt;
* Intro to MO APIs (Mobile Originated - incoming from a mobile phone)&lt;br /&gt;
** MO POP3&lt;br /&gt;
** [[MO HTTP]]&lt;br /&gt;
** MO HTTPS&lt;br /&gt;
* Intro to MT APIs (Mobile Terminated - outgoing to a mobile phone)&lt;br /&gt;
** MT HTTP&lt;br /&gt;
** MT SMTP&lt;br /&gt;
*** [[MT SMTP Auth]]&lt;br /&gt;
*** MT Web Text&lt;br /&gt;
*** MT IP Address&lt;br /&gt;
* User Management&lt;br /&gt;
* Settings&lt;br /&gt;
* Examples&lt;br /&gt;
** PHP&lt;br /&gt;
*** Sending SMS&lt;br /&gt;
*** Receiving SMS&lt;br /&gt;
** Java&lt;br /&gt;
*** Sending SMS&lt;br /&gt;
*** Receiving SMS&lt;br /&gt;
** C#&lt;br /&gt;
*** [[CSharp_Sending SMS | Sending SMS]]&lt;br /&gt;
*** Receiving SMS&lt;br /&gt;
&lt;br /&gt;
This is a patrolled change&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=APIs</id>
		<title>APIs</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=APIs"/>
				<updated>2007-03-01T20:29:31Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* API Security&lt;br /&gt;
* Ease of Use&lt;br /&gt;
* Restrictions&lt;br /&gt;
* MO APIs (Mobile Originated - incoming from a mobile phone)&lt;br /&gt;
** MO POP3&lt;br /&gt;
** [[MO HTTP]]&lt;br /&gt;
** MO HTTPS&lt;br /&gt;
* MT APIs (Mobile Terminated - outgoing to a mobile phone)&lt;br /&gt;
** MT HTTP&lt;br /&gt;
** MT SMTP&lt;br /&gt;
*** [[MT SMTP Auth]]&lt;br /&gt;
*** MT Web Text&lt;br /&gt;
*** MT IP Address&lt;br /&gt;
* User Management&lt;br /&gt;
* Settings&lt;br /&gt;
* Examples&lt;br /&gt;
** PHP&lt;br /&gt;
*** Sending SMS&lt;br /&gt;
*** Receiving SMS&lt;br /&gt;
** Java&lt;br /&gt;
*** Sending SMS&lt;br /&gt;
*** Receiving SMS&lt;br /&gt;
** C#&lt;br /&gt;
*** Sending SMS&lt;br /&gt;
*** Receiving SMS&lt;br /&gt;
&lt;br /&gt;
This is a patrolled change&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=Main_Page"/>
				<updated>2007-03-01T00:12:12Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[APIs]]&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	<entry>
		<id>http://docs.upsidewireless.com/index.php?title=APIs</id>
		<title>APIs</title>
		<link rel="alternate" type="text/html" href="http://docs.upsidewireless.com/index.php?title=APIs"/>
				<updated>2007-02-28T23:53:19Z</updated>
		
		<summary type="html">&lt;p&gt;Administrator: Initial Version&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* API Security&lt;br /&gt;
* Ease of Use&lt;br /&gt;
* Restrictions&lt;br /&gt;
* MO APIs (Mobile Originated - incoming from a mobile phone)&lt;br /&gt;
** MO POP3&lt;br /&gt;
** MO HTTP&lt;br /&gt;
** MO HTTPS&lt;br /&gt;
* MT APIs (Mobile Terminated - outgoing to a mobile phone)&lt;br /&gt;
** MT HTTP&lt;br /&gt;
** MT SMTP&lt;br /&gt;
*** MT SMTP Auth&lt;br /&gt;
*** MT Web Text&lt;br /&gt;
*** MT IP Address&lt;br /&gt;
* User Management&lt;br /&gt;
* Settings&lt;br /&gt;
* Examples&lt;br /&gt;
** PHP&lt;br /&gt;
*** Sending SMS&lt;br /&gt;
*** Receiving SMS&lt;br /&gt;
** Java&lt;br /&gt;
*** Sending SMS&lt;br /&gt;
*** Receiving SMS&lt;br /&gt;
** C#&lt;br /&gt;
*** Sending SMS&lt;br /&gt;
*** Receiving SMS&lt;/div&gt;</summary>
		<author><name>Administrator</name></author>	</entry>

	</feed>