<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Shephertz Community - Recent questions and answers in Announcements</title>
<link>http://forum.shephertz.com/?qa=qa/general/announcements</link>
<description>Powered by Question2Answer</description>
<item>
<title>Answered: shephertz login site down</title>
<link>http://forum.shephertz.com/?qa=9875/shephertz-login-site-down&amp;show=11617#a11617</link>
<description>&lt;p&gt;
	what are you having trouble logging in, let us know so we can help you.&lt;/p&gt;
&lt;p&gt;
	&lt;a rel=&quot;nofollow&quot; href=&quot;https://flappy-bird.co&quot;&gt;&lt;span style=&quot;color:#ffffff;&quot;&gt;flappy bird&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9875/shephertz-login-site-down&amp;show=11617#a11617</guid>
<pubDate>Thu, 03 Aug 2023 14:47:20 +0000</pubDate>
</item>
<item>
<title>Answered: Support Godot engine</title>
<link>http://forum.shephertz.com/?qa=11611/support-godot-engine&amp;show=11616#a11616</link>
<description>&lt;p&gt;
	i think so too, it's much easier to use GDScript than c++ it will help you to easily deploy the work quickly, save time&lt;/p&gt;
&lt;p&gt;
	&lt;a rel=&quot;nofollow&quot; href=&quot;https://eggycar.co&quot;&gt;&lt;span style=&quot;color:#ffffff;&quot;&gt;eggy car&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11611/support-godot-engine&amp;show=11616#a11616</guid>
<pubDate>Thu, 03 Aug 2023 14:43:51 +0000</pubDate>
</item>
<item>
<title>Is this company still running ?</title>
<link>http://forum.shephertz.com/?qa=11613/is-this-company-still-running</link>
<description>Hello,

I am just wondering if ShepHertz is alive and well as i have noticed some of the SDKS have not been updated in years and the fourms have very little activity.

we are about to start a new project and wondering if shephertz is sitll a good option.

Thank you for your time,

Reagrds</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11613/is-this-company-still-running</guid>
<pubDate>Thu, 12 Aug 2021 14:20:08 +0000</pubDate>
</item>
<item>
<title>Answered: I created a room. Now, how do I get its roomid?</title>
<link>http://forum.shephertz.com/?qa=11491/i-created-a-room-now-how-do-i-get-its-roomid&amp;show=11593#a11593</link>
<description>&lt;p&gt;
	I know this is a little late. But what I did, was I used a property as a key.&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
	Dictionary&amp;lt;string, object&amp;gt; dict = new Dictionary&amp;lt;string, object&amp;gt;();&lt;/div&gt;
&lt;div&gt;
	dict.Add(&quot;CODE&quot;, randS);&lt;/div&gt;
&lt;div&gt;
	MyClient.CreateRoom(name, owner, maxUsers, dict);&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	As you can see, I used a dictionary to add a CODE key.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	Next I used the next line to search for rooms with specific propetys, aka which for now would only be CODE.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	&lt;div&gt;
		MyClient.GetRoomWithProperties(dict);&lt;/div&gt;
	&lt;div&gt;
		&amp;nbsp;&lt;/div&gt;
	&lt;div&gt;
		Now you can use a ZoneRequestListener to get the actual room id. Below is a onGetMatchedRoomsDone method. This is run whenever GetRoomWithProperties is run. I used a bunch of comments to explain the below code more&lt;/div&gt;
	&lt;div&gt;
		&amp;nbsp;&lt;/div&gt;
	&lt;div&gt;
		&lt;div&gt;
			public void onGetMatchedRoomsDone(MatchedRoomsEvent matchedRoomsEvent)&lt;/div&gt;
		&lt;div&gt;
			&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/div&gt;
		&lt;div&gt;
			&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; RoomData[] rdArr = matchedRoomsEvent.getRoomsData(); //return the data of all the rooms&lt;/div&gt;
		&lt;div&gt;
			&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (rdArr.Length &amp;gt; 0) //if the array is longer than 1 we found at least one room&lt;/div&gt;
		&lt;div&gt;
			&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/div&gt;
		&lt;div&gt;
			&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Console.WriteLine(&quot;Found rooms&quot;);&lt;/div&gt;
		&lt;div&gt;
			&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String roomID = rdArr[0].getId(); //I'm still early in development, so for now I'm just assuming I got one room.&lt;/div&gt;
		&lt;div&gt;
			&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //You could check here to see if you got more than one room which in that case throw an error or something.&amp;nbsp;&lt;/div&gt;
		&lt;div&gt;
			&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; WarpClient.GetInstance().JoinRoom(roomID); //Now you can join the room based on the ID.&lt;/div&gt;
		&lt;div&gt;
			&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/div&gt;
		&lt;div&gt;
			&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else&lt;/div&gt;
		&lt;div&gt;
			&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/div&gt;
		&lt;div&gt;
			&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Console.WriteLine(&quot;Can't find rooms&quot;);&amp;nbsp;&lt;/div&gt;
		&lt;div&gt;
			&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/div&gt;
		&lt;div&gt;
			&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/div&gt;
	&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;
	I hope this helps, it's been over a year since OP asked, so maybe someone else who needs help will stumble upon this. I'm pretty new to App warp, so there may definetly be a better way to do this.&amp;nbsp;&amp;nbsp;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11491/i-created-a-room-now-how-do-i-get-its-roomid&amp;show=11593#a11593</guid>
<pubDate>Tue, 29 Dec 2020 20:51:59 +0000</pubDate>
</item>
<item>
<title>I can't initialise Appwarp in cocos2d-x Project</title>
<link>http://forum.shephertz.com/?qa=11185/i-cant-initialise-appwarp-in-cocos2d-x-project</link>
<description>&lt;pre class=&quot;brush:cpp;&quot;&gt;
//This is how i am trying to initialise this.

void GameLayer::connectToAppWarp()
{
        AppWarp::Client::initialize(APPWARP_APP_KEY,APPWARP_SECRET_KEY);
        AppWarp::Client::getInstance()-&amp;gt;setRecoveryAllowance(60);
        AppWarp::Client::getInstance()-&amp;gt;setConnectionRequestListener(this);
        AppWarp::Client::getInstance()-&amp;gt;setNotificationListener(this);
        AppWarp::Client::getInstance()-&amp;gt;setRoomRequestListener(this);
        AppWarp::Client::getInstance()-&amp;gt;setZoneRequestListener(this);
        playerName = (isFirstPlayer ? &quot;hero&quot; : &quot;monster&quot;);
        AppWarp::Client::getInstance()-&amp;gt;connect(playerName);
        isFirstPlayer = !isFirstPlayer;
}&lt;/pre&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	// I am getting this error.&lt;/p&gt;
&lt;p&gt;
	&lt;br&gt;
	Undefined symbols for architecture x86_64:&lt;br&gt;
	&amp;nbsp; &quot;AppWarp::Client::initialize(std::__1::basic_string&amp;lt;char, std::__1::char_traits&amp;lt;char&amp;gt;, std::__1::allocator&amp;lt;char&amp;gt; &amp;gt;, std::__1::basic_string&amp;lt;char, std::__1::char_traits&amp;lt;char&amp;gt;, std::__1::allocator&amp;lt;char&amp;gt; &amp;gt;, std::__1::basic_string&amp;lt;char, std::__1::char_traits&amp;lt;char&amp;gt;, std::__1::allocator&amp;lt;char&amp;gt; &amp;gt;)&quot;, referenced from:&lt;br&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GameLayer::connectToAppWarp() in GameLayer.o&lt;br&gt;
	ld: symbol(s) not found for architecture x86_64&lt;br&gt;
	clang: error: linker command failed with exit code 1 (use -v to see invocation)&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11185/i-cant-initialise-appwarp-in-cocos2d-x-project</guid>
<pubDate>Tue, 19 Jun 2018 14:24:39 +0000</pubDate>
</item>
<item>
<title>Answered: GDPR Documentation</title>
<link>http://forum.shephertz.com/?qa=11132/gdpr-documentation&amp;show=11144#a11144</link>
<description>&lt;p&gt;
	Hi Mark,&lt;/p&gt;
&lt;p&gt;
	Apologies for the delayed response.&lt;/p&gt;
&lt;p&gt;
	We have updated our policies with respect to GDPR compliance. The complete information can be found &lt;a rel=&quot;nofollow&quot; href=&quot;http://www.shephertz.com/legal/gdpr-resources.php&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;
	Please let me know in case of any further queries.&lt;/p&gt;
&lt;p&gt;
	Thanks.&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11132/gdpr-documentation&amp;show=11144#a11144</guid>
<pubDate>Mon, 28 May 2018 07:26:00 +0000</pubDate>
</item>
<item>
<title>Answered: Is Local Play Supported</title>
<link>http://forum.shephertz.com/?qa=11085/is-local-play-supported&amp;show=11086#a11086</link>
<description>&lt;p&gt;
	Hi Yazan,&lt;/p&gt;
&lt;p&gt;
	Greetings!!!&lt;/p&gt;
&lt;p&gt;
	Our &lt;a rel=&quot;nofollow&quot; href=&quot;http://appwarp.shephertz.com/&quot;&gt;AppWarp &lt;/a&gt;service works on WAN, not on the LAN. That's why it is not supporting to play the game locally.&lt;/p&gt;
&lt;p&gt;
	In case if you have any other queries please do feel free to reach out to us.&lt;/p&gt;
&lt;p&gt;
	We will be happy to help you.&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	Regards,&lt;/p&gt;
&lt;p&gt;
	Priyanka Singh&lt;/p&gt;
&lt;p&gt;
	App42 Team&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11085/is-local-play-supported&amp;show=11086#a11086</guid>
<pubDate>Wed, 02 May 2018 08:17:50 +0000</pubDate>
</item>
<item>
<title>Answered: Appwarp GDPR ready?</title>
<link>http://forum.shephertz.com/?qa=11081/appwarp-gdpr-ready&amp;show=11084#a11084</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
AppWarp does not store any type of user data on the server so GDPR complience should not apply in this case. However, our team is already working on creating the compliance documents for GDPR, which wil be published soon.&lt;br /&gt;
&lt;br /&gt;
I will update you once it will be published on our website.&lt;br /&gt;
&lt;br /&gt;
Meanwhile, if you have any further query, please do let me know, I will be happy to help.&lt;br /&gt;
&lt;br /&gt;
Thanks.</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11081/appwarp-gdpr-ready&amp;show=11084#a11084</guid>
<pubDate>Mon, 30 Apr 2018 12:39:30 +0000</pubDate>
</item>
<item>
<title>Answered: Upcoming European Data Security Guideline at May, 25th 2018</title>
<link>http://forum.shephertz.com/?qa=11060/upcoming-european-data-security-guideline-at-may-25th-2018&amp;show=11062#a11062</link>
<description>&lt;p&gt;
	Hello&amp;nbsp;&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px;&quot;&gt;Priyanka Singh,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px;&quot;&gt;first of all I would like to state that I find your product cool and very professional.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px;&quot;&gt;And many thanks for your answer, but my question is from more formal nature: Securing user data by ACL technology is the one thing - but it's not sufficient to fullfill the European Data Security Guideline 2018. Now, to cut a long story short: this guideline forsees, that every part of an IT-Service (App or the underlying third party services - like i.e. App42, Flurry, Google, Apple iCloud) - who manage individualized personal user data (i.e. names, addresses, eMail etc) must ensure complete data transperency what and how they're doing things with the data (thanks to Facebook &lt;img alt=&quot;angry&quot; height=&quot;20&quot; src=&quot;http://forum.shephertz.com/qa-plugin/wysiwyg-editor/plugins/smiley/images/angry_smile.gif&quot; title=&quot;angry&quot; width=&quot;20&quot;&gt;) . And without the dedicated consent of the user, such companies are not allowed to sell any of this data. All this things are now handled by this guideline and all IT-companies or indie developers like me - must have a Privacy Policy which refers to it. Apple, Google, Dropbox, Flurry have already adjusted their guidelines to fullfill requirements.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px;&quot;&gt;&lt;strong&gt;Therefore I need also a reference to AppShepertz Privacy Policy to incoporate this reference into my Privacy Policy. &lt;/strong&gt;Believe me, here in Europe, but also in the US most companies and indies have underestimated that thing (me too)... and now they all are in a complete trouble to match the due date May 25th.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px;&quot;&gt;Best regards&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px;&quot;&gt;Werner&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11060/upcoming-european-data-security-guideline-at-may-25th-2018&amp;show=11062#a11062</guid>
<pubDate>Tue, 10 Apr 2018 08:46:00 +0000</pubDate>
</item>
<item>
<title>Answered: where i see my app api calls count?</title>
<link>http://forum.shephertz.com/?qa=10940/where-i-see-my-app-api-calls-count&amp;show=10941#a10941</link>
<description>&lt;p&gt;
	Hi Happybabyhame,&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	You can see your api count in the App42 Cloud API dashboard. Please follow the below steps for the same:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;
		Login to AppHQ Management Console&lt;/li&gt;
	&lt;li&gt;
		Select App42 Cloud API - &amp;gt; App Manager - Dashboard&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
	P.S API count shows in dashboard for last day.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	Regards,&lt;/p&gt;
&lt;p&gt;
	Himanshu Sharma&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10940/where-i-see-my-app-api-calls-count&amp;show=10941#a10941</guid>
<pubDate>Mon, 29 Jan 2018 09:40:23 +0000</pubDate>
</item>
<item>
<title>Answered: Email service not working for me</title>
<link>http://forum.shephertz.com/?qa=10831/email-service-not-working-for-me&amp;show=10832#a10832</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
Greetings!!!&lt;br /&gt;
&lt;br /&gt;
Could you please let us know which port no. are you using in email configuration setting? If you are using the port no.465 please replace it with port no.587.&lt;br /&gt;
&lt;br /&gt;
If you are still facing any issues please do feel free to reach out to us.&lt;br /&gt;
&lt;br /&gt;
We will be happy to help you.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Priyanka Singh&lt;br /&gt;
&lt;br /&gt;
App42 Team</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10831/email-service-not-working-for-me&amp;show=10832#a10832</guid>
<pubDate>Wed, 29 Nov 2017 06:19:14 +0000</pubDate>
</item>
<item>
<title>Answered: Session id not valid / bad request ?</title>
<link>http://forum.shephertz.com/?qa=10818/session-id-not-valid-bad-request&amp;show=10819#a10819</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
If we are correct then you are getting the session id by using user/session service and the session which you are using is in invalidated. If you want to verify the session of the user on the server, then please use this method(&lt;a href=&quot;http://api.shephertz.com/app42-docs/session-management-service/#get-session-create&quot; rel=&quot;nofollow&quot;&gt;http://api.shephertz.com/app42-docs/session-management-service/#get-session-create&lt;/a&gt; ) which will give the session id which exists on the backend, &lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
Please have a look into it and let me know if you still face any issue. &lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Himanshu Sharma</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10818/session-id-not-valid-bad-request&amp;show=10819#a10819</guid>
<pubDate>Wed, 15 Nov 2017 06:15:14 +0000</pubDate>
</item>
<item>
<title>Answered: Does Shepherds will create the game for me or I have to do it my self?</title>
<link>http://forum.shephertz.com/?qa=10680/does-shepherds-will-create-the-game-for-me-have-to-do-it-my-self&amp;show=10681#a10681</link>
<description>&lt;p&gt;
	Hello Marcello,&lt;/p&gt;
&lt;p&gt;
	&lt;strong&gt;Greetings!!!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;
	We provide backend services for your game on cloud.&lt;/p&gt;
&lt;p&gt;
	You can use our&lt;a rel=&quot;nofollow&quot; href=&quot;http://appwarp.shephertz.com/&quot;&gt; AppWarp&lt;/a&gt; product, which is a &lt;a rel=&quot;nofollow&quot; href=&quot;http://appwarp.shephertz.com/realtime-multiplayer-game-engine-overview/&quot;&gt;RealTime &lt;/a&gt;and &lt;a rel=&quot;nofollow&quot; href=&quot;http://appwarp.shephertz.com/game-development-center/turn-based-games/&quot;&gt;Turn Based&lt;/a&gt; multiplayer gaming platform. It helps you to create MMO games with real-time communication, &lt;a rel=&quot;nofollow&quot; href=&quot;http://appwarp.shephertz.com/game-development-center/matchmaking-basic-concept/#matchmaking-based-on-the-properties-of-a-room&quot;&gt;Matchmaking &lt;/a&gt;and &lt;a rel=&quot;nofollow&quot; href=&quot;http://appwarp.shephertz.com/game-development-center/matchmaking-basic-concept/#room-properties&quot;&gt;Room Properties &lt;/a&gt;along with&lt;a rel=&quot;nofollow&quot; href=&quot;http://appwarp.shephertz.com/game-development-center/connection-resiliency/&quot;&gt; Connection Resillency&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;
	For using our services you don't require any previous knowledge or skills, but you should have the game development knowledge on the platform(Android, iOS etc) on which you are planning to make your game.&lt;/p&gt;
&lt;p&gt;
	If you have any other queries please let us know.&lt;/p&gt;
&lt;p&gt;
	We will be happy to help you.&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10680/does-shepherds-will-create-the-game-for-me-have-to-do-it-my-self&amp;show=10681#a10681</guid>
<pubDate>Thu, 10 Aug 2017 06:47:53 +0000</pubDate>
</item>
<item>
<title>Answered: Corona Sdk multiple notification listeners</title>
<link>http://forum.shephertz.com/?qa=10620/corona-sdk-multiple-notification-listeners&amp;show=10623#a10623</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
Could you please share the source code you have implemented to create new notification listener which is not working?&lt;br /&gt;
&lt;br /&gt;
It will help us to understand the problem you are facing.&lt;br /&gt;
&lt;br /&gt;
Thanks.</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10620/corona-sdk-multiple-notification-listeners&amp;show=10623#a10623</guid>
<pubDate>Sun, 09 Jul 2017 07:26:39 +0000</pubDate>
</item>
<item>
<title>Answered: Why whenever 2nd User enters the game,the existing user get two notifications of that user?</title>
<link>http://forum.shephertz.com/?qa=10601/whenever-user-enters-game-existing-user-notifications-user&amp;show=10603#a10603</link>
<description>&lt;p&gt;
	Hi,&lt;/p&gt;
&lt;p&gt;
	&lt;strong&gt;Greetings!!!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;
	Could you please let us know, in which callback function you are facing this problem of getting two notification to the user.&lt;/p&gt;
&lt;p&gt;
	It will help us to provide better support to you from our end.&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10601/whenever-user-enters-game-existing-user-notifications-user&amp;show=10603#a10603</guid>
<pubDate>Wed, 05 Jul 2017 06:58:42 +0000</pubDate>
</item>
<item>
<title>Answered: GeoService Return</title>
<link>http://forum.shephertz.com/?qa=10589/geoservice-return&amp;show=10590#a10590</link>
<description>&lt;p&gt;
	Hi Sebastiao,&lt;/p&gt;
&lt;p&gt;
	Greetings!!!&lt;/p&gt;
&lt;p&gt;
	As of now, we do not provide any API in Geo Service which return single Marker Name, If you want to achieve this functionality you can use &lt;a rel=&quot;nofollow&quot; href=&quot;http://api.shephertz.com/app42-docs/nosql-storage-service/#insert-json-with-geotag&quot;&gt;Insert Json With Geo Tag API &lt;/a&gt;in Storage Services in which you can fetch the documnent associated with single Geo Tag on query basis.&lt;/p&gt;
&lt;p&gt;
	In case if you have any other queries please let us know.&lt;/p&gt;
&lt;p&gt;
	We will be happy to help you.&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10589/geoservice-return&amp;show=10590#a10590</guid>
<pubDate>Thu, 29 Jun 2017 09:55:53 +0000</pubDate>
</item>
<item>
<title>Answered: Users are not logging Out from appwarp server.</title>
<link>http://forum.shephertz.com/?qa=10578/users-are-not-logging-out-from-appwarp-server&amp;show=10579#a10579</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
We have checked the server from our end everything is fine.&lt;br /&gt;
&lt;br /&gt;
Could you please share your API_Key so that we can further look into it.&lt;br /&gt;
&lt;br /&gt;
Thanks.</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10578/users-are-not-logging-out-from-appwarp-server&amp;show=10579#a10579</guid>
<pubDate>Fri, 23 Jun 2017 12:07:53 +0000</pubDate>
</item>
<item>
<title>Answered: Login to Management Console via Shephertz Account often fails</title>
<link>http://forum.shephertz.com/?qa=10576/login-management-console-via-shephertz-account-often-fails&amp;show=10577#a10577</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
Greetings!!!&lt;br /&gt;
&lt;br /&gt;
Apologies for the inconvenience.&lt;br /&gt;
&lt;br /&gt;
Yesterday, there was some issue in our platform. Now, it's completely resolved from our end. So could you please check the same at your end and please let us know if you are still facing this issue.&lt;br /&gt;
&lt;br /&gt;
We will be happy to help you.</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10576/login-management-console-via-shephertz-account-often-fails&amp;show=10577#a10577</guid>
<pubDate>Thu, 22 Jun 2017 05:29:53 +0000</pubDate>
</item>
<item>
<title>Answered: Message limit for testing</title>
<link>http://forum.shephertz.com/?qa=10318/message-limit-for-testing&amp;show=10324#a10324</link>
<description>&lt;p&gt;
	Hi there Nick,&lt;/p&gt;
&lt;p&gt;
	Greetings from &lt;strong&gt;ShepHertz&lt;/strong&gt;!&lt;/p&gt;
&lt;p&gt;
	Our free plan limits does allow you to use up to 2 Million messages for a trial period of 1 month while you develop your app and test &lt;strong&gt;ShepHertz &lt;/strong&gt;platform services.&lt;/p&gt;
&lt;p&gt;
	Could you further elaborate on your estimated usage for number of messages? I might be able to help you better then?&lt;/p&gt;
&lt;p&gt;
	Feel free to contact me at &lt;span style=&quot;text-decoration: underline;&quot;&gt;&lt;strong&gt;nailesh.nebhnani@shephertz.com&lt;/strong&gt;&lt;/span&gt; and I am happy to further assist.&lt;/p&gt;
&lt;p&gt;
	Regards,&lt;/p&gt;
&lt;p&gt;
	Nailesh Nebhnani&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10318/message-limit-for-testing&amp;show=10324#a10324</guid>
<pubDate>Mon, 27 Mar 2017 06:50:38 +0000</pubDate>
</item>
<item>
<title>Answered: Send question to room Android quiz app (AppwarpS2)</title>
<link>http://forum.shephertz.com/?qa=10176/send-question-to-room-android-quiz-app-appwarps2&amp;show=10177#a10177</link>
<description>&lt;p&gt;
	Hi Jishnu,&lt;/p&gt;
&lt;p&gt;
	Greetings from &lt;strong&gt;ShepHertz&lt;/strong&gt;!!!!!&lt;/p&gt;
&lt;p&gt;
	There are many ways to achieve this it again depends on your game busniess logic how you want to achieve this.&lt;/p&gt;
&lt;ul&gt;
	&lt;li style=&quot;text-align: justify;&quot;&gt;
		You can use &lt;strong&gt;gameRoom.BroadcastChat &lt;/strong&gt;function in your RoomAdapter to send questions to all the users in the game.You can write it in &lt;strong&gt;onTimerTick &lt;/strong&gt;function&lt;strong&gt;. &lt;/strong&gt;Player can answer using RoomRPC API so that you can record the same on the server.&lt;/li&gt;
	&lt;li style=&quot;text-align: justify;&quot;&gt;
		You can also send questions to specific user using&lt;strong&gt; iUser.SendChatNotification function&lt;/strong&gt; to send questions to a specific user and using RoomRPC you can record the answers.&lt;/li&gt;
	&lt;li style=&quot;text-align: justify;&quot;&gt;
		You can use only RoomRPC API to send question and for answers on server. You can create to function for that and player can call accordingly.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
	Let me know if it helps.&lt;/p&gt;
&lt;p&gt;
	Thanks&lt;/p&gt;
&lt;p&gt;
	Vishnu Garg&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10176/send-question-to-room-android-quiz-app-appwarps2&amp;show=10177#a10177</guid>
<pubDate>Wed, 08 Feb 2017 08:42:17 +0000</pubDate>
</item>
<item>
<title>Answered: Hi, is the quizup-like app only for Windows Phone? Does it support iOS/Android? :)</title>
<link>http://forum.shephertz.com/?qa=10113/quizup-like-only-for-windows-phone-does-support-ios-android&amp;show=10122#a10122</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
The sample is made for Windows platform. You can go ahead and replicate the same for other platforms too. AppWarpS2 server works for multiple platform including iOS, Android, Windows etc. You just need to integrate our client side SDK into your project.&lt;br /&gt;
&lt;br /&gt;
Let me know if you have queries, I will be happy to help.&lt;br /&gt;
&lt;br /&gt;
Thanks.</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10113/quizup-like-only-for-windows-phone-does-support-ios-android&amp;show=10122#a10122</guid>
<pubDate>Sat, 28 Jan 2017 07:33:27 +0000</pubDate>
</item>
<item>
<title>Answered: How can i make a timeline / post system ?</title>
<link>http://forum.shephertz.com/?qa=9958/how-can-i-make-a-timeline-post-system&amp;show=9967#a9967</link>
<description>&lt;p&gt;
	Hi,&lt;/p&gt;
&lt;p&gt;
	You can use &lt;a rel=&quot;nofollow&quot; href=&quot;http://api.shephertz.com/app42-docs/nosql-storage-service/&quot;&gt;Storage Service&lt;/a&gt; of App42 Cloud API to &lt;a rel=&quot;nofollow&quot; href=&quot;http://api.shephertz.com/tutorial/Saving-App-Data/?index=storage-data&quot;&gt;save&lt;/a&gt; or &lt;a rel=&quot;nofollow&quot; href=&quot;http://api.shephertz.com/tutorial/Querying-Your-App-Data/?index=query-appdata&quot;&gt;get&lt;/a&gt; the timeline data from cloud. You can save all the post related data such as Likes, Comments, Message etc as JSON in key value format. You can even add userID to the doc to uniquely identify the doc while querying for the user's timeine docs.&lt;/p&gt;
&lt;p&gt;
	Please have a look at above tutorial links and let me know if you have any queries, I will be happy to help you.&lt;/p&gt;
&lt;p&gt;
	Thanks.&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9958/how-can-i-make-a-timeline-post-system&amp;show=9967#a9967</guid>
<pubDate>Thu, 15 Dec 2016 17:13:37 +0000</pubDate>
</item>
<item>
<title>Answered: suddenly MyCustomCode build failed</title>
<link>http://forum.shephertz.com/?qa=9925/suddenly-mycustomcode-build-failed&amp;show=9930#a9930</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
Could you please deploy the custom code through AppHQ Management Console and let us know if you still face any issue. &lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Himanshu Sharma</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9925/suddenly-mycustomcode-build-failed&amp;show=9930#a9930</guid>
<pubDate>Mon, 05 Dec 2016 10:15:53 +0000</pubDate>
</item>
<item>
<title>Answered: how to get specific data from cocos2dx App42CustomCodeResponse?</title>
<link>http://forum.shephertz.com/?qa=9874/how-specific-data-from-cocos2dx-app42customcoderesponse&amp;show=9881#a9881</link>
<description>&lt;p&gt;
	Hi,&lt;/p&gt;
&lt;p&gt;
	Apologies for late reply,&lt;/p&gt;
&lt;p&gt;
	In custom code, we give the response returned from the custom which you have written that can be fetched as follows:&lt;/p&gt;
&lt;p class=&quot;p1&quot;&gt;
	&lt;span class=&quot;s1&quot;&gt;customCodeResponse-&amp;gt;&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;getBody&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;().&lt;/span&gt;&lt;span class=&quot;s3&quot;&gt;c_str&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;();&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;p1&quot;&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p class=&quot;p1&quot;&gt;
	&lt;span style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px;&quot;&gt;This will give json string which you need to parse to get the inside fields.&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;p1&quot;&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p class=&quot;p1&quot;&gt;
	&lt;span style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px;&quot;&gt;Please let me know if you have any queries.&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;p1&quot;&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p class=&quot;p1&quot;&gt;
	&lt;span style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px;&quot;&gt;Regards,&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;p1&quot;&gt;
	&lt;span style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px;&quot;&gt;Rajeev&lt;/span&gt;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9874/how-specific-data-from-cocos2dx-app42customcoderesponse&amp;show=9881#a9881</guid>
<pubDate>Tue, 22 Nov 2016 07:47:40 +0000</pubDate>
</item>
<item>
<title>Answered: Once onUserResumed() invoked all the user in the lobby start getting all notification ,who are not in the current room</title>
<link>http://forum.shephertz.com/?qa=9866/onuserresumed-invoked-lobby-getting-notification-current&amp;show=9870#a9870</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
onUserResumed will be received by the subscribers of the user's current location. For example, if user is in lobby then lobby subscribers will get the notification and if user is in room then room subscribers will get that notification.&lt;br /&gt;
&lt;br /&gt;
Also, could you please let me know which SDK you are using? You can also check the isLobby flag which you get onUserResumed callback and share.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Rajeev</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9866/onuserresumed-invoked-lobby-getting-notification-current&amp;show=9870#a9870</guid>
<pubDate>Thu, 17 Nov 2016 06:05:28 +0000</pubDate>
</item>
<item>
<title>Answered: reconnectivity issue ,sometimes recovered sometimes give badrequest error</title>
<link>http://forum.shephertz.com/?qa=9791/reconnectivity-sometimes-recovered-sometimes-badrequest&amp;show=9800#a9800</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
Could you please share the code snippets for onConnectDone callback?&lt;br /&gt;
&lt;br /&gt;
It will help us to understand the problem you are facing.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Rajeev</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9791/reconnectivity-sometimes-recovered-sometimes-badrequest&amp;show=9800#a9800</guid>
<pubDate>Sat, 22 Oct 2016 10:08:37 +0000</pubDate>
</item>
<item>
<title>Answered: How can I use appwarp / appwarp 42 with flash pro?</title>
<link>http://forum.shephertz.com/?qa=9585/how-can-i-use-appwarp-appwarp-42-with-flash-pro&amp;show=9632#a9632</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
This is already answered in a thread on support.&lt;br /&gt;
&lt;br /&gt;
Please let me know if you have any other queries.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Rajeev</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9585/how-can-i-use-appwarp-appwarp-42-with-flash-pro&amp;show=9632#a9632</guid>
<pubDate>Thu, 22 Sep 2016 12:30:03 +0000</pubDate>
</item>
<item>
<title>Answered: internet rechability</title>
<link>http://forum.shephertz.com/?qa=9472/internet-rechability&amp;show=9476#a9476</link>
<description>Hi Bhardwaj,&lt;br /&gt;
&lt;br /&gt;
Could you please provide some more details regarding your query? &amp;nbsp;It will help us to understand the query in better way.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Rajeev</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9472/internet-rechability&amp;show=9476#a9476</guid>
<pubDate>Tue, 16 Aug 2016 11:35:43 +0000</pubDate>
</item>
<item>
<title>Answered: sendchat() doesnt do anything, not even getting callback</title>
<link>http://forum.shephertz.com/?qa=9349/sendchat-doesnt-do-anything-not-even-getting-callback&amp;show=9350#a9350</link>
<description>&lt;p&gt;
	Hi EnthuGame,&lt;/p&gt;
&lt;p&gt;
	Greetings!!!!!&lt;/p&gt;
&lt;p&gt;
	While calling &lt;strong&gt;sendChat &lt;/strong&gt;API in &lt;strong&gt;AppWarp &lt;/strong&gt;you will be getting callback in &lt;strong&gt;onChatReceived &lt;/strong&gt;method of &lt;strong&gt;NotifyListener. &lt;/strong&gt;You need to add it using&lt;strong&gt; addNotificationListener &lt;/strong&gt;API&lt;strong&gt;. &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;
	If you have already added Notification Listener on your WarpClient, then please share more details that can help us to trace the exact problem like which SDK you are using.&lt;/p&gt;
&lt;p&gt;
	Let me know the details.&lt;/p&gt;
&lt;p&gt;
	Thanks&lt;/p&gt;
&lt;p&gt;
	Vishnu Garg&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9349/sendchat-doesnt-do-anything-not-even-getting-callback&amp;show=9350#a9350</guid>
<pubDate>Tue, 02 Aug 2016 04:27:02 +0000</pubDate>
</item>
<item>
<title>Answered: Failed build the Push Notification for iOS project</title>
<link>http://forum.shephertz.com/?qa=9124/failed-build-the-push-notification-for-ios-project&amp;show=9131#a9131</link>
<description>&lt;p&gt;
	Hi,&lt;/p&gt;
&lt;p&gt;
	To integrate iOS push notification, you just need to use the plugin folder from this &lt;a href=&quot;https://github.com/shephertz/App42iOSUnity3DPushPlugin/tree/master/PlugIn&quot; rel=&quot;nofollow&quot;&gt;repo&lt;/a&gt;&amp;nbsp;in your project. You can also go through this &lt;a href=&quot;http://blogs.shephertz.com/2013/08/08/steps-to-integrate-push-notification-with-unity3d-on-ios/&quot; rel=&quot;nofollow&quot;&gt;blog&lt;/a&gt; for more info about the integration.&lt;/p&gt;
&lt;p&gt;
	I will also check this sample and update you as soon as possible.&lt;/p&gt;
&lt;p&gt;
	Regards,&lt;/p&gt;
&lt;p&gt;
	Rajeev&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9124/failed-build-the-push-notification-for-ios-project&amp;show=9131#a9131</guid>
<pubDate>Sun, 26 Jun 2016 14:02:55 +0000</pubDate>
</item>
<item>
<title>Answered: How to send push notification after custom time of inactivity?</title>
<link>http://forum.shephertz.com/?qa=9106/how-to-send-push-notification-after-custom-time-inactivity&amp;show=9125#a9125</link>
<description>&lt;p&gt;
	Hi,&lt;/p&gt;
&lt;p&gt;
	You can use our Marketing Automation product to achieve this. You need to create campaigns using the segments based on events made by users. For example, you can send push to the users who have done AppSession-End but not done AppSession-Start within some hours. Please have a look at our tutorials for more details about &lt;a rel=&quot;nofollow&quot; href=&quot;http://api.shephertz.com/tutorial/Push-Campaign/?index=analytics-pushcampaign&quot;&gt;Marketing Automation&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;
	Let me know if you have any further queries.&lt;/p&gt;
&lt;p&gt;
	Regards,&lt;/p&gt;
&lt;p&gt;
	Rajeev&amp;nbsp;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9106/how-to-send-push-notification-after-custom-time-inactivity&amp;show=9125#a9125</guid>
<pubDate>Sat, 25 Jun 2016 19:29:01 +0000</pubDate>
</item>
<item>
<title>Answered: Sometimes push notifications don't come</title>
<link>http://forum.shephertz.com/?qa=9107/sometimes-push-notifications-dont-come&amp;show=9108#a9108</link>
<description>&lt;p&gt;
	Hi Xero,&lt;/p&gt;
&lt;p&gt;
	Greetings!!!!!!&lt;/p&gt;
&lt;p&gt;
	Sometime there may be a delay form Google side, so you can receive the same after a time interval.&lt;/p&gt;
&lt;p&gt;
	We have recently updated our sample application with following enhancements.&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;
		You will be able to send extra data as Json format.&lt;/li&gt;
	&lt;li&gt;
		You can also configure for No notification in Bar if application is opened.&lt;/li&gt;
	&lt;li&gt;
		It will be able to show Notification if application is fully closed.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
	Please download latest &lt;a rel=&quot;nofollow&quot; href=&quot;https://github.com/shephertz/App42_Push_Sample_Unity&quot;&gt;Unity Push Sample&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;
	Let me know if you have any queries regarding this.&lt;/p&gt;
&lt;p&gt;
	Thanks&lt;/p&gt;
&lt;p&gt;
	Vishnu Garg&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9107/sometimes-push-notifications-dont-come&amp;show=9108#a9108</guid>
<pubDate>Fri, 24 Jun 2016 06:52:13 +0000</pubDate>
</item>
<item>
<title>Answered: How to increase the push badge when we push to a group in ios</title>
<link>http://forum.shephertz.com/?qa=9095/how-to-increase-the-push-badge-when-we-push-to-a-group-in-ios&amp;show=9104#a9104</link>
<description>Hi Josh,&lt;br /&gt;
&lt;br /&gt;
You can achieve this by setting the badge key on auto increment by passing badge value as &amp;quot;increment&amp;quot; in the push payload.&lt;br /&gt;
&lt;br /&gt;
Let me know if you have any queries.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Rajeev</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9095/how-to-increase-the-push-badge-when-we-push-to-a-group-in-ios&amp;show=9104#a9104</guid>
<pubDate>Thu, 23 Jun 2016 08:50:34 +0000</pubDate>
</item>
<item>
<title>Answered: Problem with custom key for push</title>
<link>http://forum.shephertz.com/?qa=8927/problem-with-custom-key-for-push&amp;show=8930#a8930</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
Could you please let us know in which platform and SDK you are working on? Also, please share internal logs of App42 method and your custom key, secret key and app name with us at support@shephertz.com. It will help us to provide better support to you.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Himanshu Sharma</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=8927/problem-with-custom-key-for-push&amp;show=8930#a8930</guid>
<pubDate>Sat, 28 May 2016 18:59:30 +0000</pubDate>
</item>
<item>
<title>Answered: GetFacebookProfile Issue</title>
<link>http://forum.shephertz.com/?qa=8912/getfacebookprofile-issue&amp;show=8920#a8920</link>
<description>Hello Waha,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
This type of exception occurs when there are some wrong arguments in the method request. So could you please check and let me know what are logs you are getting at the time of calling this method? It will help me to provide better support to you.&lt;br /&gt;
&lt;br /&gt;
To print internal logs, put the below line of code just after the key initialization:&lt;br /&gt;
&lt;br /&gt;
App42Log.SetDebug(true);&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Himanshu Sharma</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=8912/getfacebookprofile-issue&amp;show=8920#a8920</guid>
<pubDate>Fri, 27 May 2016 05:36:03 +0000</pubDate>
</item>
<item>
<title>Answered: You changed app42 pricing plan?</title>
<link>http://forum.shephertz.com/?qa=8817/you-changed-app42-pricing-plan&amp;show=8833#a8833</link>
<description>Hi Hackan&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
We have added several new features and upgraded the infra for better performance which will compensate for $100 hike. We have not increased the pricing but have introduced a new pricing plan for $300 with more features and retired $199 plan.&lt;br /&gt;
&lt;br /&gt;
But still if you are an old registered user of the platform and you have some pricing question, you can get in touch with your Account Manager and he will help you answering them.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Himanshu Sharma</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=8817/you-changed-app42-pricing-plan&amp;show=8833#a8833</guid>
<pubDate>Fri, 13 May 2016 05:44:19 +0000</pubDate>
</item>
<item>
<title>Answered: how can i find get all hero data?</title>
<link>http://forum.shephertz.com/?qa=8806/how-can-i-find-get-all-hero-data&amp;show=8813#a8813</link>
<description>&lt;p&gt;
	Hi,&lt;/p&gt;
&lt;p&gt;
	Yes , there is a limitation on the number of documents which can be fetched in single go. You can use &lt;span&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://api.shephertz.com/app42-docs/nosql-storage-service/?sdk=android#find-document-by-query-paging&quot;&gt;findDocumentsByQueryWithPaging&lt;/a&gt; API to get the data page-wise. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;Please let me know if you have any other queries.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;P.S. Max 100 records are allowed to find documents from App42 database in all methods.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;Thanks.&lt;/span&gt;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=8806/how-can-i-find-get-all-hero-data&amp;show=8813#a8813</guid>
<pubDate>Thu, 12 May 2016 07:35:30 +0000</pubDate>
</item>
<item>
<title>Answered: How to create tokens for custom authentication?</title>
<link>http://forum.shephertz.com/?qa=8787/how-to-create-tokens-for-custom-authentication&amp;show=8789#a8789</link>
<description>&lt;p&gt;
	Hi,&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	You can use session id to manage the session on Android device. How? At the time of authenticating the user, you have the &lt;a rel=&quot;nofollow&quot; href=&quot;http://api.shephertz.com/app42-docs/user-management-service/#authenticate&quot;&gt;session id&lt;/a&gt; in method response which you can save in local storage. Once you save the session id successfully, you can put the validation on the login screen. If session id exists then login into App else move him/her to a login screen.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	Let me know if it helps.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	&lt;br&gt;
	Regards,&lt;/p&gt;
&lt;p&gt;
	Himanshu Sharma&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=8787/how-to-create-tokens-for-custom-authentication&amp;show=8789#a8789</guid>
<pubDate>Tue, 10 May 2016 05:52:37 +0000</pubDate>
</item>
<item>
<title>Answered: I follow the link to download AppWarp JS SDK but I can't find it. Could you please told me where can I find it?</title>
<link>http://forum.shephertz.com/?qa=8345/follow-download-appwarp-cant-find-could-please-told-where-find&amp;show=8351#a8351</link>
<description>&lt;p&gt;
	Hi MTense,&lt;/p&gt;
&lt;p&gt;
	Will you please try it again. You can &lt;a href=&quot;http://www.shephertz.com/downloads/appwarp-downloads.php&quot; rel=&quot;nofollow&quot;&gt;Download&lt;/a&gt; HTML5/JS SDK from here.&lt;/p&gt;
&lt;p&gt;
	Let me know if you face any problem.&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	Thanks&lt;/p&gt;
&lt;p&gt;
	Vishnu Garg&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=8345/follow-download-appwarp-cant-find-could-please-told-where-find&amp;show=8351#a8351</guid>
<pubDate>Wed, 16 Mar 2016 05:40:13 +0000</pubDate>
</item>
<item>
<title>Answered: AppWarpS2 server Deployment fail</title>
<link>http://forum.shephertz.com/?qa=7643/appwarps2-server-deployment-fail&amp;show=7644#a7644</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
There was some issue from the backend while deployment.&lt;br /&gt;
&lt;br /&gt;
Problem has been resolved now. Could you please check and confirm if you are able to deploy it or now?&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;br /&gt;
Vivek Soni</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=7643/appwarps2-server-deployment-fail&amp;show=7644#a7644</guid>
<pubDate>Sun, 08 Nov 2015 05:50:03 +0000</pubDate>
</item>
<item>
<title>Answered: AppWarpS2 JoinRoomWithProperties error code 1</title>
<link>http://forum.shephertz.com/?qa=7633/appwarps2-joinroomwithproperties-error-code-1&amp;show=7636#a7636</link>
<description>&lt;p&gt;
	Hi,&lt;/p&gt;
&lt;p&gt;
	Can you please provide the code snippet &lt;strong&gt;of handleAddUserRequest&lt;/strong&gt;() function that you are overriding on AppWarpS2 side.&lt;/p&gt;
&lt;p&gt;
	It will help us to trace the exact problem you are facing&lt;strong&gt;.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;
	Let me know.&lt;/p&gt;
&lt;p&gt;
	Thanks&lt;/p&gt;
&lt;p&gt;
	Vishnu Garg&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=7633/appwarps2-joinroomwithproperties-error-code-1&amp;show=7636#a7636</guid>
<pubDate>Fri, 06 Nov 2015 13:41:41 +0000</pubDate>
</item>
<item>
<title>Answered: Bad_Request connection error in Unity</title>
<link>http://forum.shephertz.com/?qa=7626/bad_request-connection-error-in-unity&amp;show=7628#a7628</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
Error code 4 comes if the parameter passed in the request is invalid. In case of connect API, it might come if the userName passed is null or empty. Also if you are already connected on this device and trying to connect again then error code 4 will come.&lt;br /&gt;
&lt;br /&gt;
Please check and let me know if this is not the case.&lt;br /&gt;
&lt;br /&gt;
Thanks.</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=7626/bad_request-connection-error-in-unity&amp;show=7628#a7628</guid>
<pubDate>Thu, 05 Nov 2015 06:43:36 +0000</pubDate>
</item>
<item>
<title>Answered: Getting App42BadParameterException half a time on same request, same input data. What might be the problem?</title>
<link>http://forum.shephertz.com/?qa=7346/getting-app42badparameterexception-request-might-problem&amp;show=7349#a7349</link>
<description>&lt;p&gt;
	Hi &lt;span class=&quot;qa-q-item-avatar-meta&quot;&gt;&lt;span class=&quot;qa-q-item-meta&quot;&gt;&lt;span class=&quot;qa-q-item-who&quot;&gt;&lt;span class=&quot;qa-q-item-who-data&quot;&gt;&lt;span class=&quot;qa-user-link&quot;&gt;axenoieugen1&lt;/span&gt;&lt;/span&gt;,&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	Can you please tell us in which method are you getting this exception. Please write to us @support@shephertz.com, so that we can create a dedicated ticket for your query and handle it as early as possible.&lt;/p&gt;
&lt;p&gt;
	Happy to help you.&lt;/p&gt;
&lt;p&gt;
	Regards,&lt;br&gt;
	Nishant&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=7346/getting-app42badparameterexception-request-might-problem&amp;show=7349#a7349</guid>
<pubDate>Tue, 22 Sep 2015 12:19:30 +0000</pubDate>
</item>
<item>
<title>Answered: Change from 3G to WIFI and vice versa causes connection drop</title>
<link>http://forum.shephertz.com/?qa=7280/change-from-3g-to-wifi-and-vice-versa-causes-connection-drop&amp;show=7281#a7281</link>
<description>Hi Kiaan,&lt;br /&gt;
&lt;br /&gt;
What is the error code coming on onConnectDone? How much time you have set as RecoveryAllowance?&lt;br /&gt;
&lt;br /&gt;
Also, are you able to reconnect using recoverConnection?&lt;br /&gt;
&lt;br /&gt;
Thanks.</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=7280/change-from-3g-to-wifi-and-vice-versa-causes-connection-drop&amp;show=7281#a7281</guid>
<pubDate>Tue, 08 Sep 2015 04:46:58 +0000</pubDate>
</item>
<item>
<title>AppWarp S2 new server side sdk release</title>
<link>http://forum.shephertz.com/?qa=2539/appwarp-s2-new-server-side-sdk-release</link>
<description>We've been working on enhancing the server side capabilities. In this update (1.0.9) we have added &lt;br /&gt;
&lt;br /&gt;
* Ability to allow new users to connect with same name as an existing connection (discarding the older one).&lt;br /&gt;
&lt;br /&gt;
Now you will get&lt;br /&gt;
&lt;br /&gt;
handleAddUserRequest in your zone adaptor extension, even if a user with the same name is already connected. You can then control whether you want to accept this (will lead to old user being disconnected) or reject it. &lt;br /&gt;
&lt;br /&gt;
Similarly when you are doing async authentication using the &lt;br /&gt;
&lt;br /&gt;
sendAddUserResponse method of IZone interface, if you decide to send a successful response and another user with the same name is already connected, it will get disconnected and the incoming user will be added.</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=2539/appwarp-s2-new-server-side-sdk-release</guid>
<pubDate>Tue, 01 Jul 2014 05:12:49 +0000</pubDate>
</item>
<item>
<title>Earn ShepHertz Discounts on Referrals!</title>
<link>http://forum.shephertz.com/?qa=304/earn-shephertz-discounts-on-referrals</link>
<description>&lt;div&gt;
	Invite your friends to join ShepHertz Cloud Ecosystem and you get discounts upto $100 on our Subscription Plans. Many more rewards to follow. Your friend also earns $20 of discount on Registration.&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	Visit&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	&lt;a href=&quot;https://apphq.shephertz.com/reference/invite&quot; rel=&quot;nofollow&quot;&gt;https://apphq.shephertz.com/reference/invite&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	Login for more details&lt;/div&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=304/earn-shephertz-discounts-on-referrals</guid>
<pubDate>Sat, 08 Mar 2014 02:57:31 +0000</pubDate>
</item>
<item>
<title>Introduction to App42 Backend API Forum</title>
<link>http://forum.shephertz.com/?qa=8/introduction-to-app42-backend-api-forum</link>
<description>&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	We are pleased to announce App42 forum - a place for the App42developer community to learn and share their experiences.&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	This forum is a friendly place to ask questions and get help from other users on every aspect of &amp;nbsp;App42 backend APIs. A set of forum rules and regulations have been created to ensure that everyone is treated fairly by members, moderators and administrators.&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	The following are NOT tolerated within the App42 Forum;&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	a. Discussions on political issues as well as grey areas including but not limited to; religion, race and sex.&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	b. Spamming, including duplicate threads or posts and advertising.&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	c. Abuse, threatening or discriminating behaviour.&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	d. The use of offensive language in any form.&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	e. Discussions on pirated software or illegal activity.&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	f. Trolling or off topic discussions.&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	g. Hijacking threads.&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	h. Posting personal information of any user.&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	i. Pointless necro posting.&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	j. Posting of embargoed or NDA closed beta information.&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	k. Posting of confidential sales information provided by the sales team.&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	The do’s&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	a. Stay on topic – If you want to change the subject, start a new thread.&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	b. Post in the correct forum&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	c. Be friendly and helpful&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	d. Search before you post&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	e. Add relevant thread titles&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	f. Good spelling and grammar&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	g. When posting about an issue include the version of the SDK, platform and environment you are using and machine or device specs.&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	h. Report Posts – Use these rules to report any violations across the forum. Make sure you provide usernames and an accurate description. This is especially helpful in lengthy discussions.&lt;/div&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=8/introduction-to-app42-backend-api-forum</guid>
<pubDate>Wed, 19 Feb 2014 07:44:42 +0000</pubDate>
</item>
<item>
<title>Introduction to App42 PaaS forum</title>
<link>http://forum.shephertz.com/?qa=7/introduction-to-app42-paas-forum</link>
<description>We are pleased to announce App42 PaaS forum - a place for the App42 PaaS developer community to learn and share their experiences.&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
This forum is a friendly place to ask questions and get help from other users on every aspect of deployment using App42 PaaS. A set of forum rules and regulations have been created to ensure that everyone is treated fairly by members, moderators and administrators.&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
The following are NOT tolerated within the App42 PaaS Forum;&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
a. Discussions on political issues as well as grey areas including but not limited to; religion, race and sex.&lt;br /&gt;
b. Spamming, including duplicate threads or posts and advertising.&lt;br /&gt;
c. Abuse, threatening or discriminating behaviour.&lt;br /&gt;
d. The use of offensive language in any form.&lt;br /&gt;
e. Discussions on pirated software or illegal activity.&lt;br /&gt;
f. Trolling or off topic discussions.&lt;br /&gt;
g. Hijacking threads.&lt;br /&gt;
h. Posting personal information of any user.&lt;br /&gt;
i. Pointless necro posting.&lt;br /&gt;
j. Posting of embargoed or NDA closed beta information.&lt;br /&gt;
k. Posting of confidential sales information provided by the sales team.&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
The do’s&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
a. Stay on topic – If you want to change the subject, start a new thread.&lt;br /&gt;
b. Post in the correct forum&lt;br /&gt;
c. Be friendly and helpful&lt;br /&gt;
d. Search before you post&lt;br /&gt;
e. Add relevant thread titles&lt;br /&gt;
f. Good spelling and grammar&lt;br /&gt;
g. When posting about an issue include the version of the CLI, platform and environment you are using.&lt;br /&gt;
h. Report Posts – Use these rules to report any violations across the App42 PaaS Developer Network. Make sure you provide usernames and an accurate description. This is especially helpful in lengthy discussions.</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=7/introduction-to-app42-paas-forum</guid>
<pubDate>Mon, 17 Feb 2014 06:57:52 +0000</pubDate>
</item>
<item>
<title>Introduction to AppWarp forum</title>
<link>http://forum.shephertz.com/?qa=1/introduction-to-appwarp-forum</link>
<description>&lt;div&gt;
	We are pleased to announce AppWarp forum - a place for the AppWarp developer community to learn and share their experiences.&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	This forum is a friendly place to ask questions and get help from other users on every aspect of Multiplayer development using AppWarp. A set of forum rules and regulations have been created to ensure that everyone is treated fairly by members, moderators and administrators.&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	&lt;div&gt;
		&lt;strong&gt;The do’s&lt;/strong&gt;&lt;/div&gt;
	&lt;div&gt;
		&amp;nbsp;&lt;/div&gt;
	&lt;div&gt;
		a. Stay on topic – If you want to change the subject, start a new thread.&lt;/div&gt;
	&lt;div&gt;
		b. Post in the correct forum&lt;/div&gt;
	&lt;div&gt;
		c. Be friendly and helpful&lt;/div&gt;
	&lt;div&gt;
		d. We have lots of useful documentation and samples available in the dev-center on our site. Go through them before posting.&lt;/div&gt;
	&lt;div&gt;
		d. Search before you post and check if your question has already been answered before.&lt;/div&gt;
	&lt;div&gt;
		e. Add relevant thread titles and be as specific as you can regarding the scenario or error you are trying to solve.&lt;/div&gt;
	&lt;div&gt;
		f. Good spelling and grammar so that all members of the community can clearly understand the question.&lt;/div&gt;
	&lt;div&gt;
		g. When posting about an issue include the version of the SDK, platform and environment you are using and machine or device specs.&lt;/div&gt;
	&lt;div&gt;
		h. Report Posts – Use these rules to report any violations across the forum. Make sure you provide usernames and an accurate description. This is especially helpful in lengthy discussions.&lt;/div&gt;
	&lt;div&gt;
		&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
	&lt;strong&gt;The following are NOT tolerated within the Forum;&lt;/strong&gt;&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	a. Discussions on political issues as well as grey areas including but not limited to; religion, race and sex.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	b. Spamming, including duplicate threads or posts and advertising.&lt;/div&gt;
&lt;div&gt;
	c. Abuse, threatening or discriminating behaviour.&lt;/div&gt;
&lt;div&gt;
	d. The use of offensive language in any form.&lt;/div&gt;
&lt;div&gt;
	e. Discussions on pirated software or illegal activity.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	f. Trolling or off topic discussions.&lt;/div&gt;
&lt;div&gt;
	g. Hijacking threads.&lt;/div&gt;
&lt;div&gt;
	h. Posting personal information of any user.&lt;/div&gt;
&lt;div&gt;
	i. Pointless necro posting.&lt;/div&gt;
&lt;div&gt;
	j. Posting of embargoed or NDA closed beta information.&lt;/div&gt;
&lt;div&gt;
	k. Posting of confidential sales information provided by the sales team.&lt;/div&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=1/introduction-to-appwarp-forum</guid>
<pubDate>Fri, 14 Feb 2014 12:19:40 +0000</pubDate>
</item>
</channel>
</rss>