<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Shephertz Community - Recent questions and answers in Operations and Maintenance</title>
<link>http://forum.shephertz.com/?qa=qa/general/operations+and+maintenance</link>
<description>Powered by Question2Answer</description>
<item>
<title>Answered: Leaving room works sometimes and fails other times.</title>
<link>http://forum.shephertz.com/?qa=11595/leaving-room-works-sometimes-and-fails-other-times&amp;show=11596#a11596</link>
<description>&lt;p&gt;
	I found out a good way to do this. There is probably a more efficient way, but here's the code I used.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	This method is called. RoomLis is then a Room listener I defined earlier.&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
	internal bool LeaveGame()&lt;/div&gt;
&lt;div&gt;
	&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; MyClient.LeaveRoom(roomID); //Call leave room&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for (int i = 0; i &amp;lt; 20; i++) //Loop a couple times. This is done to check if leave room was succesful. It can take a second.&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; if (RoomLis.GetInRoom() == true) //If still in room, sleep the thread and wait&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; Thread.Sleep(100);&lt;/div&gt;
&lt;div&gt;
	&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 // else successful&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; return true;&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;&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return false; //If 2 seconds past and still haven't left, assume failure.&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	Below is the code for my room listener&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	&lt;div&gt;
		internal class MyRoomListener : RoomRequestListener&lt;/div&gt;
	&lt;div&gt;
		&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; private bool inRoom;&lt;/div&gt;
	&lt;div&gt;
		&amp;nbsp;&lt;/div&gt;
	&lt;div&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public bool GetInRoom()&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; return inRoom;&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;&lt;/div&gt;
	&lt;div&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public void onJoinRoomDone(RoomEvent eventObj)&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; if (eventObj.getResult() == WarpResponseResultCode.SUCCESS)&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;Room join success&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; inRoom = true;&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;Room join fail&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; inRoom = false;&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;
		&amp;nbsp;&lt;/div&gt;
	&lt;div&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public void onLeaveRoomDone(RoomEvent eventObj)&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; if (eventObj.getResult() == WarpResponseResultCode.SUCCESS)&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; inRoom = false;&lt;/div&gt;
	&lt;div&gt;
		&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; &amp;nbsp; &amp;nbsp; inRoom = true;&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;&lt;/div&gt;
	&lt;div&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //... other handler code&lt;/div&gt;
	&lt;div&gt;
		}&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11595/leaving-room-works-sometimes-and-fails-other-times&amp;show=11596#a11596</guid>
<pubDate>Thu, 31 Dec 2020 19:10:30 +0000</pubDate>
</item>
<item>
<title>Answered: Database query Timing out</title>
<link>http://forum.shephertz.com/?qa=11519/database-query-timing-out&amp;show=11520#a11520</link>
<description>Hi Romain,&lt;br /&gt;
&lt;br /&gt;
Apologies for the inconvenience caused.&lt;br /&gt;
&lt;br /&gt;
There were some cloud infrastructure issues occurred. We are working with the cloud team on the priority basis, we will get back to you as soon as possible.&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>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11519/database-query-timing-out&amp;show=11520#a11520</guid>
<pubDate>Tue, 10 Dec 2019 06:08:25 +0000</pubDate>
</item>
<item>
<title>Answered: Missing App42Storage in unity3d SDK, cannot do paging request</title>
<link>http://forum.shephertz.com/?qa=11488/missing-app42storage-in-unity3d-sdk-cannot-paging-request&amp;show=11489#a11489</link>
<description>Hi Romain,&lt;br /&gt;
&lt;br /&gt;
Apologies for the inconvinience caused.&lt;br /&gt;
&lt;br /&gt;
Somehow we missed your query, now we have forwarded this query to our team, we will get back to you as soon as possible.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
App42 Team</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11488/missing-app42storage-in-unity3d-sdk-cannot-paging-request&amp;show=11489#a11489</guid>
<pubDate>Fri, 16 Aug 2019 04:49:21 +0000</pubDate>
</item>
<item>
<title>Change admin &amp; payment account</title>
<link>http://forum.shephertz.com/?qa=11320/change-admin-%26-payment-account</link>
<description>&lt;p&gt;
	Hi,&lt;/p&gt;
&lt;p&gt;
	&lt;span style=&quot;font-size: 14px;&quot;&gt;How do I change app admin to another email/account?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span style=&quot;font-size: 14px;&quot;&gt;Also, how to change payment account for my subscription?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	Thank you.&lt;/p&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11320/change-admin-%26-payment-account</guid>
<pubDate>Mon, 24 Sep 2018 18:34:54 +0000</pubDate>
</item>
<item>
<title>Answered: Where is the support team, part 2?</title>
<link>http://forum.shephertz.com/?qa=11310/where-is-the-support-team-part-2&amp;show=11314#a11314</link>
<description>Impressive,&lt;br /&gt;
&lt;br /&gt;
if I have an issue, I shouldn't open it in the corresponding channel, but in this channel. Nobody is looking at the other channels!!!&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
I am sorry to say this, but you have a terrible support team!! Also, who is going to compensate me for the damage that you did to my site?</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11310/where-is-the-support-team-part-2&amp;show=11314#a11314</guid>
<pubDate>Mon, 24 Sep 2018 13:37:43 +0000</pubDate>
</item>
<item>
<title>Answered: Connection error on facebook webhosting (HTML5)</title>
<link>http://forum.shephertz.com/?qa=11300/connection-error-on-facebook-webhosting-html5&amp;show=11302#a11302</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
Apologies for the delayed response.&lt;br /&gt;
&lt;br /&gt;
We have forwarded this query to our team, we will share an update regarding this as soon as possible.&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>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11300/connection-error-on-facebook-webhosting-html5&amp;show=11302#a11302</guid>
<pubDate>Mon, 17 Sep 2018 08:58:46 +0000</pubDate>
</item>
<item>
<title>Answered: How to enable SSL at warpApp</title>
<link>http://forum.shephertz.com/?qa=11270/how-to-enable-ssl-at-warpapp&amp;show=11282#a11282</link>
<description>&lt;p&gt;
	Hi Khaled,&lt;/p&gt;
&lt;p&gt;
	You can use &quot;&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Menlo;&quot;&gt;enableSSL&quot; method available under WarpClient to enable the SSL. This method accepts boolean parameter and you need to pass true while calling this method.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Menlo;&quot;&gt;I hope it will help.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Menlo;&quot;&gt;Thanks.&lt;/span&gt;&lt;/p&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11270/how-to-enable-ssl-at-warpapp&amp;show=11282#a11282</guid>
<pubDate>Mon, 20 Aug 2018 05:50:17 +0000</pubDate>
</item>
<item>
<title>Answered: Leaderboard - Get user's ranking after userScore is saved</title>
<link>http://forum.shephertz.com/?qa=10932/leaderboard-get-users-ranking-after-userscore-is-saved&amp;show=10933#a10933</link>
<description>&lt;p&gt;
	Hi Alex,&lt;/p&gt;
&lt;p&gt;
	You can use &lt;a rel=&quot;nofollow&quot; href=&quot;http://api.shephertz.com/app42-docs/leaderboard-service/?sdk=iOS#get-user-ranking&quot;&gt;GetUserRanking&lt;/a&gt; API to get the rank of a particular user.&lt;/p&gt;
&lt;p&gt;
	I hope this will help.&lt;/p&gt;
&lt;p&gt;
	Thanks.&lt;/p&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10932/leaderboard-get-users-ranking-after-userscore-is-saved&amp;show=10933#a10933</guid>
<pubDate>Thu, 25 Jan 2018 06:38:23 +0000</pubDate>
</item>
<item>
<title>Answered: Site problem 'Unity 3D usage guide'</title>
<link>http://forum.shephertz.com/?qa=10885/site-problem-unity-3d-usage-guide&amp;show=10886#a10886</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
Apologies for the inconvenience caused.&lt;br /&gt;
&lt;br /&gt;
Our team is working on it and will update you asap once it is fixed.&lt;br /&gt;
&lt;br /&gt;
Thanks for your continued support.&lt;br /&gt;
&lt;br /&gt;
Thanks.</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10885/site-problem-unity-3d-usage-guide&amp;show=10886#a10886</guid>
<pubDate>Tue, 02 Jan 2018 06:34:04 +0000</pubDate>
</item>
<item>
<title>Answered: where is the support team?</title>
<link>http://forum.shephertz.com/?qa=10849/where-is-the-support-team&amp;show=10851#a10851</link>
<description>&lt;p&gt;
	Hi Vasilis,&lt;/p&gt;
&lt;p&gt;
	I have replied to your query on the forum. Please check and let me know if you have any other query, I will be happy to help you.&lt;/p&gt;
&lt;p&gt;
	Thanks.&lt;/p&gt;
&lt;div class=&quot;grammarly-disable-indicator&quot;&gt;
	&amp;nbsp;&lt;/div&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10849/where-is-the-support-team&amp;show=10851#a10851</guid>
<pubDate>Tue, 12 Dec 2017 12:30:00 +0000</pubDate>
</item>
<item>
<title>Answered: Weird behavior of AppHQ admin panel, this is not acceptable.</title>
<link>http://forum.shephertz.com/?qa=10674/weird-behavior-of-apphq-admin-panel-this-is-not-acceptable&amp;show=10675#a10675</link>
<description>&lt;p&gt;
	Hi Nikunj,&lt;/p&gt;
&lt;p&gt;
	Could you please add me(collaborator@shephertz.com) as a collaborator to your app from AppHQ Console?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	Please have look at our Tutorial listed below:&lt;/p&gt;
&lt;p&gt;
	1. &lt;a rel=&quot;nofollow&quot; href=&quot;http://api.shephertz.com/tutorial/Creating-User-For-Your-App/?index=user-create&quot;&gt;Creating User&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
	2. Doing &lt;a rel=&quot;nofollow&quot; href=&quot;http://api.shephertz.com/tutorial/Doing-User-Authentication/?index=user-auth&quot;&gt;User Authentication&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
	AppWarp provide APIs for &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;match making&lt;/a&gt; using which you can match make your users based on Room Properties or the number of players available inside the room.&lt;/p&gt;
&lt;p&gt;
	Private/public room creation, you can create rooms with a property say roomType=private/public. You can alway call our API joinRoomWithProperties to join a room where you pass roomType value(Private/Public) based on the type of room this user should join.&lt;/p&gt;
&lt;p&gt;
	Let me know if you have any further query, I will be happy to help.&lt;/p&gt;
&lt;p&gt;
	Thanks.&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10674/weird-behavior-of-apphq-admin-panel-this-is-not-acceptable&amp;show=10675#a10675</guid>
<pubDate>Mon, 31 Jul 2017 05:21:16 +0000</pubDate>
</item>
<item>
<title>Answered: Can't change or remove leaderboard entries in the dashboard</title>
<link>http://forum.shephertz.com/?qa=10293/cant-change-or-remove-leaderboard-entries-in-the-dashboard&amp;show=10295#a10295</link>
<description>Hi Rakka,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
Please share your app name, game name, user name and the score of user which you are trying to delete? We will check at the backend and delete it for you. Also, we will make sure that you will never face this issue again. &lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Himanshu Sharma</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10293/cant-change-or-remove-leaderboard-entries-in-the-dashboard&amp;show=10295#a10295</guid>
<pubDate>Mon, 20 Mar 2017 06:35:05 +0000</pubDate>
</item>
<item>
<title>Answered: Error accessing Leaderboard Service : Http 500</title>
<link>http://forum.shephertz.com/?qa=10115/error-accessing-leaderboard-service-http-500&amp;show=10130#a10130</link>
<description>Hi RSS,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
Apologies for getting late back to you. &lt;br /&gt;
&lt;br /&gt;
Could you please share some more information like in which API of leaderboard service you are getting the exception. It will help us to provide better support to you.&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>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10115/error-accessing-leaderboard-service-http-500&amp;show=10130#a10130</guid>
<pubDate>Mon, 30 Jan 2017 07:08:24 +0000</pubDate>
</item>
<item>
<title>Answered: Need a retail build of AppWarp SDK for Windows 10 (WinRT)</title>
<link>http://forum.shephertz.com/?qa=10056/need-a-retail-build-of-appwarp-sdk-for-windows-10-winrt&amp;show=10067#a10067</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
I have forwarded this to my SDK development team and will check and provide you the new SDK ASAP if required.&lt;br /&gt;
&lt;br /&gt;
Thanks.</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10056/need-a-retail-build-of-appwarp-sdk-for-windows-10-winrt&amp;show=10067#a10067</guid>
<pubDate>Wed, 11 Jan 2017 07:22:46 +0000</pubDate>
</item>
<item>
<title>Answered: App42/AppWarp in Windows 10 UWP</title>
<link>http://forum.shephertz.com/?qa=9988/app42-appwarp-in-windows-10-uwp&amp;show=9995#a9995</link>
<description>&lt;p&gt;
	Hi Duncan,&lt;/p&gt;
&lt;p&gt;
	The AppWarp SDK compatible with Windows 10 is available &lt;a rel=&quot;nofollow&quot; href=&quot;https://github.com/shephertz/AppWarpWinRT/tree/master/v_1.10.1&quot;&gt;here&lt;/a&gt;. Please let me know if you have any queries.&lt;/p&gt;
&lt;p&gt;
	Thanks.&lt;/p&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9988/app42-appwarp-in-windows-10-uwp&amp;show=9995#a9995</guid>
<pubDate>Mon, 26 Dec 2016 18:50:10 +0000</pubDate>
</item>
<item>
<title>Answered: Changelog isn't updated</title>
<link>http://forum.shephertz.com/?qa=9946/changelog-isnt-updated&amp;show=9949#a9949</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
We have updated the SDK as well as the changelog. You can go ahead and download the updated SDK with requested feature.&lt;br /&gt;
&lt;br /&gt;
Let me know if you have any queries,&lt;br /&gt;
&lt;br /&gt;
Thanks.</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9946/changelog-isnt-updated&amp;show=9949#a9949</guid>
<pubDate>Tue, 13 Dec 2016 12:46:04 +0000</pubDate>
</item>
<item>
<title>Answered: Android sdk version check</title>
<link>http://forum.shephertz.com/?qa=9259/android-sdk-version-check&amp;show=9262#a9262</link>
<description>Hi W.ajdl,&lt;br /&gt;
&lt;br /&gt;
Greetings!!!!!!&lt;br /&gt;
&lt;br /&gt;
You can only check the version of SDK when you have download it. We provides the SDK versioning there.&lt;br /&gt;
&lt;br /&gt;
Let me know if more queries are concern.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;br /&gt;
Vishnu Garg</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9259/android-sdk-version-check&amp;show=9262#a9262</guid>
<pubDate>Wed, 13 Jul 2016 11:58:36 +0000</pubDate>
</item>
<item>
<title>not receiving push notification</title>
<link>http://forum.shephertz.com/?qa=9075/not-receiving-push-notification</link>
<description>&lt;p&gt;
	&lt;strong&gt;hi&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;
	i impelimented app42 push notification and recieve on android devices&amp;nbsp;succesfully but after few days is not receive push notification.&lt;/p&gt;
&lt;p&gt;
	&lt;span style=&quot;font-size: 14px; line-height: 21px; color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif;&quot;&gt;i checked the push logs is showing below error:&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; line-height: 21px;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Monaco, Menlo, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 13px; line-height: 1.42857; white-space: pre-wrap; background-color: rgb(245, 245, 245);&quot;&gt;Push Android Worker Exception : com.google.android.gcm.server.InvalidRequestException: HTTP Status Code: &lt;/span&gt;&lt;span class=&quot;number&quot; style=&quot;font-family: Monaco, Menlo, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 13px; line-height: 1.42857; white-space: pre-wrap; box-sizing: border-box; color: rgb(255, 140, 0);&quot;&gt;401&lt;/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;&quot;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	later change the key on google cloud messenging credential and update key on push setting but problem exist yet.&lt;/p&gt;
&lt;p&gt;
	please help me to slove this problem&lt;/p&gt;
&lt;p&gt;
	thanks&lt;/p&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9075/not-receiving-push-notification</guid>
<pubDate>Fri, 17 Jun 2016 21:10:55 +0000</pubDate>
</item>
<item>
<title>Answered: persian character issue in Insert JSON With File Using JSONObject</title>
<link>http://forum.shephertz.com/?qa=8402/persian-character-issue-insert-with-file-using-jsonobject&amp;show=8407#a8407</link>
<description>&lt;p&gt;
	Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	At the time of inserting non-english character, first you encode them into base64 encoding and insert into App42 database. &amp;nbsp;Once you retrieve it on the client side, decode it back. Please have a look at &lt;a rel=&quot;nofollow&quot; href=&quot;http://api.shephertz.com/tutorial/FAQ/?index=faq&quot;&gt;this&lt;/a&gt; link for the code snippet to encode and decode in base64 encoding and let me know if it helps.&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>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=8402/persian-character-issue-insert-with-file-using-jsonobject&amp;show=8407#a8407</guid>
<pubDate>Thu, 24 Mar 2016 20:12:53 +0000</pubDate>
</item>
<item>
<title>Answered: Command Line Interface (CLI) to work with App42 Cloud</title>
<link>http://forum.shephertz.com/?qa=8230/command-line-interface-cli-to-work-with-app42-cloud&amp;show=8231#a8231</link>
<description>Hi Jitesh,&lt;br /&gt;
&lt;br /&gt;
No, the command line interface is only available for App42 PaaS. Please let me know if you need any other help from my side.&lt;br /&gt;
&lt;br /&gt;
I will be Happy to assist you!!&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>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=8230/command-line-interface-cli-to-work-with-app42-cloud&amp;show=8231#a8231</guid>
<pubDate>Wed, 24 Feb 2016 11:26:30 +0000</pubDate>
</item>
<item>
<title>Answered: get files from JSON document</title>
<link>http://forum.shephertz.com/?qa=8126/get-files-from-json-document&amp;show=8132#a8132</link>
<description>&lt;p&gt;
	Hello,&lt;/p&gt;
&lt;p&gt;
	When you save a json document with file then the json doc will have the file details like file name, file url etc. When you query for the docs using our different APIs such &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-id&quot;&gt;&lt;strong&gt;findDocumentById&lt;/strong&gt;&lt;/a&gt; or any other get apis listed in our documnetation then you get the json document along with the file details if any. NOw you can download the attched file using the file URL available in the file details.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;Let me know if you have any further queries.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span&gt;Thanks.&lt;/span&gt;&lt;/p&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=8126/get-files-from-json-document&amp;show=8132#a8132</guid>
<pubDate>Fri, 05 Feb 2016 07:16:54 +0000</pubDate>
</item>
<item>
<title>Answered: offline caching available for as3?</title>
<link>http://forum.shephertz.com/?qa=7699/offline-caching-available-for-as3&amp;show=7700#a7700</link>
<description>Hello Wouter,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
Yes, you are right caching is not available in AS3 SDK as of now. We have recorded your request of providing Caching in AS3 SDK. However timeline is not decided yet, once it will available in the SDK will let you know for the same. &lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Himanshu Sharma</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=7699/offline-caching-available-for-as3&amp;show=7700#a7700</guid>
<pubDate>Thu, 19 Nov 2015 18:34:09 +0000</pubDate>
</item>
<item>
<title>Answered: support@shephertz.com not working?</title>
<link>http://forum.shephertz.com/?qa=7530/support%40shephertz-com-not-working&amp;show=7532#a7532</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: 12px; line-height: 20px;&quot;&gt;Madarina,&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: 12px; line-height: 20px;&quot;&gt;There was some issue which is resolved, you can send your email now.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	regards,&lt;/p&gt;
&lt;p&gt;
	Himanshu Sharma&lt;/p&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=7530/support%40shephertz-com-not-working&amp;show=7532#a7532</guid>
<pubDate>Fri, 23 Oct 2015 10:17:26 +0000</pubDate>
</item>
<item>
<title>Answered: How to add Static Room</title>
<link>http://forum.shephertz.com/?qa=7038/how-to-add-static-room&amp;show=7039#a7039</link>
<description>&lt;p&gt;
	Hi,&lt;/p&gt;
&lt;p&gt;
	To create static rooms, login to &lt;a rel=&quot;nofollow&quot; href=&quot;https://apphq.shephertz.com/service/deployApp?appwarp=true&quot;&gt;AppWarp Dasboard&lt;/a&gt;-&amp;gt; Select AppWarp Cloud from the left menu -&amp;gt; Select Manage Rooms -&amp;gt; click on Add Rooms button -&amp;gt; Fill the room details in the pop up and click on submit and you are done.&lt;/p&gt;
&lt;p&gt;
	I am attaching reference screen as well. Let me know if you face any problem.&lt;/p&gt;
&lt;p&gt;
	Thanks.&lt;a rel=&quot;nofollow&quot; href=&quot;http://cdn.shephertz.com/repository/files/cad2bfab6310acd9696187b98682925125e469ab0d0d585db0b00609f461b791/5e182276ba3446f5a37e2f33a0b45abe3918598d/StaticRoomCreation.png&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://cdn.shephertz.com/repository/files/cad2bfab6310acd9696187b98682925125e469ab0d0d585db0b00609f461b791/5e182276ba3446f5a37e2f33a0b45abe3918598d/StaticRoomCreation.png&quot;&gt;&lt;/a&gt;&lt;/p&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=7038/how-to-add-static-room&amp;show=7039#a7039</guid>
<pubDate>Sun, 16 Aug 2015 16:51:07 +0000</pubDate>
</item>
<item>
<title>Answered: API Service Request Drops</title>
<link>http://forum.shephertz.com/?qa=6643/api-service-request-drops&amp;show=6644#a6644</link>
<description>&lt;p&gt;
	Services has been brought back to normal condition.&lt;br&gt;
	This was because of AWS downtime occurred &lt;span style=&quot;color: rgb(0, 0, 0); font-family: sans-serif;&quot;&gt;Between 5:25 PM and 6:07 PM PDT&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;span style=&quot;color: rgb(0, 0, 0); font-family: sans-serif;&quot;&gt;See Status Page of AWS for more details&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://status.aws.amazon.com/&quot; rel=&quot;nofollow&quot;&gt;http://status.aws.amazon.com/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;br&gt;
	Thanks for your patience and Support.&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=6643/api-service-request-drops&amp;show=6644#a6644</guid>
<pubDate>Wed, 01 Jul 2015 01:52:53 +0000</pubDate>
</item>
<item>
<title>Answered: AppHQ is slow and not responding sometimes</title>
<link>http://forum.shephertz.com/?qa=6583/apphq-is-slow-and-not-responding-sometimes&amp;show=6585#a6585</link>
<description>THis has been fixed however you might experience some data lag that we are corrently working on.</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=6583/apphq-is-slow-and-not-responding-sometimes&amp;show=6585#a6585</guid>
<pubDate>Sun, 21 Jun 2015 18:21:52 +0000</pubDate>
</item>
<item>
<title>Answered: Delay in getUserRanking and GetTopNRankers</title>
<link>http://forum.shephertz.com/?qa=6581/delay-in-getuserranking-and-gettopnrankers&amp;show=6584#a6584</link>
<description>Hi ,&lt;br /&gt;
&lt;br /&gt;
This issue has been resloved from our side . But while using dashboard you will face some issue, we are looking into it.&lt;br /&gt;
&lt;br /&gt;
Once done will update this thread .&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
Thanks &amp;amp; Regards&lt;br /&gt;
&lt;br /&gt;
App42API Team</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=6581/delay-in-getuserranking-and-gettopnrankers&amp;show=6584#a6584</guid>
<pubDate>Sun, 21 Jun 2015 18:19:02 +0000</pubDate>
</item>
<item>
<title>Push Notifications Delayed</title>
<link>http://forum.shephertz.com/?qa=6578/push-notifications-delayed</link>
<description>Few of the applications experienced delay in Push Notification Delivery between 11:45 AM UTC to 01:00 PM UTC on June 19. Service is back to normal.</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=6578/push-notifications-delayed</guid>
<pubDate>Fri, 19 Jun 2015 14:33:52 +0000</pubDate>
</item>
<item>
<title>Answered: Storage Service Rquest Drops</title>
<link>http://forum.shephertz.com/?qa=6095/storage-service-rquest-drops&amp;show=6096#a6096</link>
<description>This has been fixed and it is working fine now. Thanks for your support and patience. &lt;br /&gt;
&lt;br /&gt;
App42 Support Team</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=6095/storage-service-rquest-drops&amp;show=6096#a6096</guid>
<pubDate>Tue, 14 Apr 2015 04:10:35 +0000</pubDate>
</item>
<item>
<title>Answered: Event Service - Important Update</title>
<link>http://forum.shephertz.com/?qa=5367/event-service-important-update&amp;show=5368#a5368</link>
<description>This has been resolved now. &lt;br /&gt;
&lt;br /&gt;
Thanks for your support.&lt;br /&gt;
&lt;br /&gt;
App42 Support Team</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=5367/event-service-important-update&amp;show=5368#a5368</guid>
<pubDate>Sat, 07 Feb 2015 03:31:26 +0000</pubDate>
</item>
<item>
<title>Answered: Storage Service - Important Update</title>
<link>http://forum.shephertz.com/?qa=5286/storage-service-important-update&amp;show=5288#a5288</link>
<description>&lt;p&gt;
	This process is completed at 4:00 PM UTC and all updates are applied on all the nodes. &amp;nbsp;There was very few request drops reported and impact on app performance was negligible.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;Thanks for your Support and patience.&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; line-height: 21px;&quot;&gt;App42 Support Team&lt;/span&gt;&lt;/p&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=5286/storage-service-important-update&amp;show=5288#a5288</guid>
<pubDate>Fri, 30 Jan 2015 15:58:15 +0000</pubDate>
</item>
<item>
<title>Latency and Request Time Out</title>
<link>http://forum.shephertz.com/?qa=4523/latency-and-request-time-out</link>
<description>We had some latency and few request timeout at our gateway between 00:30 AM UTC and 1: 30 AM UTC today. This issue has been resolved and all services are working to normal condition.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;Thanks for your support and patience.</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=4523/latency-and-request-time-out</guid>
<pubDate>Mon, 24 Nov 2014 04:38:41 +0000</pubDate>
</item>
<item>
<title>Important Upgrade at 1:00 AM UTC/GMT (26th Oct 2014)</title>
<link>http://forum.shephertz.com/?qa=4170/important-upgrade-at-1-00-am-utc-gmt-26th-oct-2014</link>
<description>&lt;p&gt;
	Dear App42 Users.&lt;/p&gt;
&lt;p&gt;
	On October 16th, Oracle announced security vulnerabilities and associated software patches affecting MySQL 5.5 and 5.6: &lt;a rel=&quot;nofollow&quot; href=&quot;http://www.oracle.com/technetwork/topics/security/cpuoct2014-1972960.html#AppendixMSQL&quot;&gt;http://www.oracle.com/technetwork/topics/security/cpuoct2014-1972960.html#AppendixMSQL&lt;/a&gt;.&lt;br&gt;
	&lt;br&gt;
	To address these vulnerabilities, &amp;nbsp;our Amazon RDS instances will go through upgrade process on 26th Oct&amp;nbsp;2014 at 01:00 AM UTC/GMT . &amp;nbsp;This upgrade may result in down time across all our products and services for few minutes. All apps using our services might also be effected because of the upgrade. Please see &lt;a rel=&quot;nofollow&quot; href=&quot;https://aws.amazon.com/security/security-bulletins/&quot;&gt;Amazon security bulletin&lt;/a&gt; for more details about this mandatory and urgent upgrade.&lt;/p&gt;
&lt;p&gt;
	Incase you have any further queries, feel free to reach to us at &lt;a rel=&quot;nofollow&quot; href=&quot;mailto:support@shephertz.com&quot;&gt;support@shephertz.com&lt;/a&gt; or through our forum &lt;a rel=&quot;nofollow&quot; href=&quot;http://forum.shephertz.com&quot;&gt;http://forum.shephertz.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	Sincerely,&lt;/p&gt;
&lt;p&gt;
	ShepHertz Support Team&lt;/p&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=4170/important-upgrade-at-1-00-am-utc-gmt-26th-oct-2014</guid>
<pubDate>Wed, 22 Oct 2014 09:13:41 +0000</pubDate>
</item>
<item>
<title>Answered: We will be doing some Upgrade at 2:00 PM UTC (16 Apr 2014)</title>
<link>http://forum.shephertz.com/?qa=1182/we-will-be-doing-some-upgrade-at-2-00-pm-utc-16-apr-2014&amp;show=1188#a1188</link>
<description>Upgradation was done with the impact of few seconds only. Thanks for your support.&lt;br /&gt;
&lt;br /&gt;
Ajay Tiwari&lt;br /&gt;
&lt;br /&gt;
App42 Platform</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=1182/we-will-be-doing-some-upgrade-at-2-00-pm-utc-16-apr-2014&amp;show=1188#a1188</guid>
<pubDate>Wed, 16 Apr 2014 16:48:45 +0000</pubDate>
</item>
<item>
<title>Answered: App42 backend API service status</title>
<link>http://forum.shephertz.com/?qa=450/app42-backend-api-service-status&amp;show=468#a468</link>
<description>All the services are restored to normal at 5:30 PM UTC. Thank you all for your support and patience. A detail analysis of the situation will be posted on blogs.shephertz.com</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=450/app42-backend-api-service-status&amp;show=468#a468</guid>
<pubDate>Wed, 12 Mar 2014 18:53:49 +0000</pubDate>
</item>
</channel>
</rss>