<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Shephertz Community - Recent questions in General</title>
<link>http://forum.shephertz.com/?qa=questions/general</link>
<description>Powered by Question2Answer</description>
<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>Support Godot engine</title>
<link>http://forum.shephertz.com/?qa=11611/support-godot-engine</link>
<description>&lt;p&gt;
	Are you thinking of supporting &lt;strong&gt;GDScript &lt;/strong&gt;for &lt;strong&gt;godot&lt;/strong&gt;?&lt;/p&gt;
&lt;p&gt;
	Because &lt;strong&gt;GDScript &lt;/strong&gt;is much easier than &lt;strong&gt;c++&lt;/strong&gt; and I can implement it inside the engine without the complications of using &lt;strong&gt;c++&lt;/strong&gt; in the &lt;strong&gt;Godot engine&lt;/strong&gt;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11611/support-godot-engine</guid>
<pubDate>Wed, 30 Jun 2021 20:30:33 +0000</pubDate>
</item>
<item>
<title>Leaving room works sometimes and fails other times.</title>
<link>http://forum.shephertz.com/?qa=11595/leaving-room-works-sometimes-and-fails-other-times</link>
<description>My Client sometimes fails to leave a room. ie I'll tell it to leave the room, and it'll act like it left, but on the server it will still say it's in the room. Anyone have a solution to handle when the client fails to leave a room? Or a way to check if a client is in a room? Thanks.</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11595/leaving-room-works-sometimes-and-fails-other-times</guid>
<pubDate>Thu, 31 Dec 2020 18:01:28 +0000</pubDate>
</item>
<item>
<title>Appwarp connectWithUsername() error.</title>
<link>http://forum.shephertz.com/?qa=11579/appwarp-connectwithusername-error</link>
<description>Issue with warpClient.connectWithUserName(name).

I called warpClient.ConnectWithUserName(Tony1234) and it connected successfully but if I close app without disconnecting warpClient and try to connect again it won't connect. It  return CONNECTION ERROR CODE 1 (AUTH_ERROR).

STEPS TO REPRODUCE THE ERROR

1. Start app, click connect = warpClient.connectWithUserName(Tony1234)=(Connection is successful)

2. Close app without disconnecting warpClient.

3. Open app again and click connect =warpClient.connectWithUserName(Tony1234)= (Connection failed with error code 1(AUTH_ERROR)).

How do we resolve this problem?</description>
<category>Discuss &amp; suggest API</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11579/appwarp-connectwithusername-error</guid>
<pubDate>Tue, 12 May 2020 21:56:23 +0000</pubDate>
</item>
<item>
<title>Cant join a room</title>
<link>http://forum.shephertz.com/?qa=11564/cant-join-a-room</link>
<description>&lt;p&gt;
	Im using Android. I have two Android devices. The first is creating a room. The second tries to&lt;/p&gt;
&lt;p&gt;
	join that room by invoking &quot;joinRoomInRange&quot;. But surprise surprise: It doesnt work somehow.&lt;/p&gt;
&lt;p&gt;
	I checked if theres any room available by invoking &quot;getAllRooms&quot;. I saw that the count of rooms is zero.&lt;/p&gt;
&lt;p&gt;
	In the function &quot;onJoinRoomDone&quot; the event code will always be 2, so it will always create a new room.&lt;/p&gt;
&lt;p&gt;
	I would really appreciate your help!&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	Heres some code:&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	The Client class:&lt;/p&gt;
&lt;pre class=&quot;brush:java;&quot;&gt;

public class Client
{

    public static WarpClient myGame;

    public static String userID = &quot;0&quot;;

    public static Runnable runConnection = new Runnable() {
        @Override
        public void run() {
            myGame.connectWithUserName(userID);
        }
    };

    public static void connect()
    {
        WarpClient.initialize(&quot;c5be1255ff52056714e535960879f55f5e90c2950faf1f52b6f15c7a531fb56e&quot;,&quot;25dc5c77b767efe7ac29ac847824c72d041ed3f1f6c662050210281a3b69de17&quot;);

        try {
            myGame = WarpClient.getInstance();
            myGame.addConnectionRequestListener(new MyConnectionListener());
            myGame.addChatRequestListener(new MyChatListener());
            myGame.addZoneRequestListener(new MyZoneListener());
            myGame.addRoomRequestListener(new MyRoomRequestListener());
            myGame.addNotificationListener(new MyNotificationListener());

            createUserID();
            new Thread(runConnection).start();
        }
        catch(Exception e)
        {
            e.printStackTrace();

        }


    }
....&lt;/pre&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	Function of ConnectionRequestListener class that implements ConnectionRequestListener:&lt;/p&gt;
&lt;pre class=&quot;brush:java;&quot;&gt;
 @Override
    public void onConnectDone(ConnectEvent event) {

        if(event.getResult() == WarpResponseResultCode.SUCCESS){
            System.out.println(&quot;yipee I have connected&quot;);

            Client.myGame.getAllRooms();

            Client.myGame.joinRoomInRange(1,1,false);

            //Client.goToRoom();
        }

    }
....&lt;/pre&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	Function of RoomRequestListener class that implements RoomRequestListener:&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;pre class=&quot;brush:java;&quot;&gt;
    @Override
    public void onJoinRoomDone(RoomEvent event) {

        if (event.getResult() == WarpResponseResultCode.SUCCESS) {
            // success case
            roomId = event.getData().getId();
            Client.myGame.subscribeRoom(roomId);

        } else if (event.getResult() == WarpResponseResultCode.RESOURCE_NOT_FOUND) {
            // no such room found
            //Create new one
            HashMap&amp;lt;String, Object&amp;gt; data = new HashMap&amp;lt;String, Object&amp;gt;();
            data.put(&quot;result&quot;, &quot;&quot;);
            Client.myGame.createRoom(&quot;superjumper&quot;, &quot;shephertz&quot;, 2,data);

        } else {
            Client.myGame.disconnect();
            //handleError();

        }
    }
...&lt;/pre&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Work In Progress</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11564/cant-join-a-room</guid>
<pubDate>Fri, 27 Mar 2020 22:38:53 +0000</pubDate>
</item>
<item>
<title>Flash Api Crete Room Error</title>
<link>http://forum.shephertz.com/?qa=11538/flash-api-crete-room-error</link>
<description>&lt;p&gt;
	Hi as3 sdk has not been updated for years.&lt;/p&gt;
&lt;p&gt;
	properties appear empty when I create a room with a property.&lt;/p&gt;
&lt;div&gt;
	need to fix it with updateRoomProperties api a second time.&lt;/div&gt;
&lt;div&gt;
	please help me update sdk thank you&lt;/div&gt;</description>
<category>Work In Progress</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11538/flash-api-crete-room-error</guid>
<pubDate>Tue, 07 Jan 2020 20:28:24 +0000</pubDate>
</item>
<item>
<title>Database query Timing out</title>
<link>http://forum.shephertz.com/?qa=11519/database-query-timing-out</link>
<description>We can t load our website anymore.
About 1200 users...
Any query on the database, in the storage service is timing out.
Even on the dashboard --&amp;gt; spinning wheel for 60 seconds and then times out and show no collections in the database.

That's pretty bad. anyone ?</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11519/database-query-timing-out</guid>
<pubDate>Fri, 06 Dec 2019 17:08:26 +0000</pubDate>
</item>
<item>
<title>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</link>
<description>In my game user can create a room and then share the roomid with friends for them being able to join the room.

Once a room is created I want to display the roomid so that the user can share it.

There is NO callback that returns the roomid. How do I get it?</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11491/i-created-a-room-now-how-do-i-get-its-roomid</guid>
<pubDate>Sun, 01 Sep 2019 21:43:17 +0000</pubDate>
</item>
<item>
<title>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</link>
<description>&lt;p&gt;
	Using Unity3d and the latest SDK, i am trying to get all the documents from a collection.&lt;br&gt;
	From the documentation i read :&lt;/p&gt;
&lt;pre class=&quot;brush:csharp;&quot;&gt;
var storageService  = new App42Storage();  

storageService.findAllDocumentsByPaging(dbName,collectionName,max,offset,{    

    success: function(object)   

    {    

        var storageObj = JSON.parse(object);    

        response = storageObj.app42.response.storage;  

        console.log(&quot;dbName is &quot; + response.dbName)  

    },    

    error: function(error) {    

    }    

});&lt;/pre&gt;
&lt;p&gt;
	But this line is giving an error :&amp;nbsp; &quot; var storageService&amp;nbsp; = new App42Storage(); &quot; -- &amp;gt; &lt;strong&gt;The type or namespace App42Storage could not be found.&lt;/strong&gt;&lt;br&gt;
	&lt;br&gt;
	I do have :&lt;br&gt;
	using com.shephertz.app42.paas.sdk.csharp;&lt;br&gt;
	using com.shephertz.app42.paas.sdk.csharp.storage;&lt;br&gt;
	&lt;br&gt;
	and all my other request are working , like the FindAllDocuments and UpdateDocument.&lt;br&gt;
	&lt;br&gt;
	What am i missing ?&lt;/p&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11488/missing-app42storage-in-unity3d-sdk-cannot-paging-request</guid>
<pubDate>Wed, 24 Jul 2019 19:30:27 +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>Where is the support team, part 2?</title>
<link>http://forum.shephertz.com/?qa=11310/where-is-the-support-team-part-2</link>
<description>Hi,

 

I asked a question Javascript channel last week, and I still have not received a responce. Is the web team working on it?

 

Thank you</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11310/where-is-the-support-team-part-2</guid>
<pubDate>Mon, 24 Sep 2018 13:06:09 +0000</pubDate>
</item>
<item>
<title>Connection error on facebook webhosting (HTML5)</title>
<link>http://forum.shephertz.com/?qa=11300/connection-error-on-facebook-webhosting-html5</link>
<description>&lt;p&gt;
	I am working with a multiplayer facebook web game with JS. I am trying to link appwarp JS SDK to my JS project. It works fine on localhost but when I upload it to the facebook web hosting as HTML5 Bundle I got Mixed Content error with the full message:&amp;nbsp;&lt;/p&gt;
&lt;pre class=&quot;brush:jscript;&quot;&gt;
Mixed Content: The page at '&lt;a href=&quot;https://apps.facebook.com/&quot; rel=&quot;nofollow&quot;&gt;https://apps.facebook.com/&lt;/a&gt;' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint '&lt;a href=&quot;http://control.appwarp.shephertz.com/lookup?api=Your%20API%20Key&quot; rel=&quot;nofollow&quot;&gt;http://control.appwarp.shephertz.com/lookup?api=Your%20API%20Key&lt;/a&gt;'. This request has been blocked; the content must be served over HTTPS.
t.connect	@	appwarp.min.js:3
(anonymous)	@	index.html?signed_re…yJtaW4iOjIxfX19:131
dispatch	@	jquery-1.10.2.min.js:5
v.handle	@	jquery-1.10.2.min.js:5&lt;/pre&gt;
&lt;p&gt;
	I noticed that in &lt;em&gt;&lt;strong&gt;appwarp.min.js&lt;/strong&gt;&lt;/em&gt; file there have&amp;nbsp;&lt;em&gt;&lt;a href=&quot;http://control.appwarp.shephertz.com/&quot; rel=&quot;nofollow&quot;&gt;http://control.appwarp.shephertz.com/&lt;/a&gt; &lt;/em&gt;that is used to initialize the requests. So may be this is the reason of above error because &quot;&lt;span style=&quot;color: rgb(36, 39, 41); font-family: Arial, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, sans-serif; font-size: 15px;&quot;&gt;You can't fetch insecure (http) resources from a secure (https) origin&quot;. What should I do in this critical situation.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	I don't find any solution after searching in google and appwarp forum search option.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	Thanks&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	Md. Nirob Hasan&lt;/p&gt;</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11300/connection-error-on-facebook-webhosting-html5</guid>
<pubDate>Sun, 16 Sep 2018 05:55:55 +0000</pubDate>
</item>
<item>
<title>send a move while not passing the turn</title>
<link>http://forum.shephertz.com/?qa=11296/send-a-move-while-not-passing-the-turn</link>
<description>&lt;p style=&quot;text-align: left;&quot;&gt;
	&amp;nbsp;im trying to create a small board game, now what im trying to do here is sendingg a move using the sendmove function, i noticed it has an overload looking like this&amp;nbsp;&lt;/p&gt;
&lt;pre class=&quot;brush:csharp;&quot; style=&quot;text-align: left;&quot;&gt;
public void sendMove(string moveData, string nextTurn);&lt;/pre&gt;
&lt;p style=&quot;text-align: left;&quot;&gt;
	however when i try to send the same username in order to try and prevent the turn from passing, the turn passes still&lt;br&gt;
	what do i need to fix here?&lt;/p&gt;
&lt;pre class=&quot;brush:csharp;&quot; style=&quot;text-align: left;&quot;&gt;

&lt;/pre&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Work In Progress</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11296/send-a-move-while-not-passing-the-turn</guid>
<pubDate>Mon, 10 Sep 2018 15:14:54 +0000</pubDate>
</item>
<item>
<title>error at unity webgl sample</title>
<link>http://forum.shephertz.com/?qa=11293/error-at-unity-webgl-sample</link>
<description>&lt;p&gt;
	when trying to connect .&lt;br&gt;
	EntryPointNotFoundException: SocketCreate com.shephertz.app42.gaming.multiplayer.client.ClientChannel.Connect () (at :0) com.shephertz.app42.gaming.multiplayer.client.WarpClient.connectChannel () (at :0) com.shephertz.app42.gaming.multiplayer.client.WarpClient+d__3.MoveNext () (at :0) com.shephertz.app42.gaming.multiplayer.client.WarpClient+d__0.MoveNext () (at :0) UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) (at C:/buildslave/unity/build/Runtime/Export/Coroutines.cs:17) &lt;/p&gt;</description>
<category>Work In Progress</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11293/error-at-unity-webgl-sample</guid>
<pubDate>Sun, 02 Sep 2018 13:46:17 +0000</pubDate>
</item>
<item>
<title>where can i see Start Activity and End Activity time spend ?</title>
<link>http://forum.shephertz.com/?qa=11285/where-can-i-see-start-activity-and-end-activity-time-spend</link>
<description>i used app42 event service -  start activity and end activity

but i can't find time spend in app42 MA

where can i see Start Activity and End Activity time spend ?</description>
<category>Work In Progress</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11285/where-can-i-see-start-activity-and-end-activity-time-spend</guid>
<pubDate>Tue, 21 Aug 2018 14:57:35 +0000</pubDate>
</item>
<item>
<title>Incorrect Device/OS detection</title>
<link>http://forum.shephertz.com/?qa=11279/incorrect-device-os-detection</link>
<description>i create a unity android app for test app42 analytic api and install it on android phon but app42 Ma Dashboard show a web device is active and app install on web !!!!.</description>
<category>Work In Progress</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11279/incorrect-device-os-detection</guid>
<pubDate>Sat, 18 Aug 2018 12:07:47 +0000</pubDate>
</item>
<item>
<title>How to enable SSL at warpApp</title>
<link>http://forum.shephertz.com/?qa=11270/how-to-enable-ssl-at-warpapp</link>
<description>i need to publish my game to facebook but i can't because mixed content issue.
so i need sdk url to be https.</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11270/how-to-enable-ssl-at-warpapp</guid>
<pubDate>Wed, 15 Aug 2018 11:10:26 +0000</pubDate>
</item>
<item>
<title>There is little bit delay in onChatReceived, It doesn't synchronise with all connected user of room.</title>
<link>http://forum.shephertz.com/?qa=11190/there-little-onchatreceived-doesnt-synchronise-connected</link>
<description></description>
<category>Discuss &amp; suggest API</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11190/there-little-onchatreceived-doesnt-synchronise-connected</guid>
<pubDate>Thu, 21 Jun 2018 11:24:13 +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>getting Failed to generate v1 signature wen adding sdk to project</title>
<link>http://forum.shephertz.com/?qa=11137/getting-failed-to-generate-signature-wen-adding-sdk-project</link>
<description></description>
<category>Work In Progress</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11137/getting-failed-to-generate-signature-wen-adding-sdk-project</guid>
<pubDate>Wed, 23 May 2018 03:12:47 +0000</pubDate>
</item>
<item>
<title>GDPR Documentation</title>
<link>http://forum.shephertz.com/?qa=11132/gdpr-documentation</link>
<description>&lt;p&gt;
	Hi, further to the two previous threads, please could you point me in the right direction for updated docuements/proof of GDPR compliance/terms and agreeements/privacy policy.&amp;nbsp; Thanks!&lt;/p&gt;
&lt;p&gt;
	As a processor/subprocessor of data we also need to have in place a data processing agreement - please could you advise on this?&lt;/p&gt;
&lt;p&gt;
	(&lt;span style=&quot;color: rgb(20, 15, 15); font-family: &amp;quot;Open Sans&amp;quot;, Helvetica, Arial, sans-serif; font-size: 14px;&quot;&gt;Under Article 28(4) of the GDPR, processors have an obligation to impose upon sub-processors &quot;the same&quot; obligations as those imposed upon the processor in the controller-processor contract.)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	Many thanks!&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11132/gdpr-documentation</guid>
<pubDate>Mon, 21 May 2018 15:03:34 +0000</pubDate>
</item>
<item>
<title>Is Local Play Supported</title>
<link>http://forum.shephertz.com/?qa=11085/is-local-play-supported</link>
<description>Can you have an option to play locally rather online?</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11085/is-local-play-supported</guid>
<pubDate>Tue, 01 May 2018 16:56:31 +0000</pubDate>
</item>
<item>
<title>Appwarp GDPR ready?</title>
<link>http://forum.shephertz.com/?qa=11081/appwarp-gdpr-ready</link>
<description>&lt;p&gt;
	In the EU new data regulations come into force in May. Is Appwarp compliant with the EU General Data Protection Regulation ( GDPR)?&amp;nbsp;&amp;nbsp;I mean a lot of users would have to take their service offline if not.&lt;/p&gt;
&lt;p&gt;
	And if so where do I find&amp;nbsp;&lt;span style=&quot;font-family: Helvetica;&quot;&gt;Documents / Proof of GDPR Compliance / Terms and Agreements / Privacy Policies?&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=11081/appwarp-gdpr-ready</guid>
<pubDate>Sun, 29 Apr 2018 20:05:28 +0000</pubDate>
</item>
<item>
<title>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</link>
<description>Hi,

on May, 25th - 2018 the new European Data Security Guideline will be in place. This policy is also valid for NON-Eu companies - if they have European users.

Since my Games uses a Login procedure at App42 Servers - where Username, eMail and Passwords of the individual users are saved - I need to know what kind of Privacy Policy is for App42 in place - so I can refere to it.

Best regards

Werner Schmidtberg</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11060/upcoming-european-data-security-guideline-at-may-25th-2018</guid>
<pubDate>Mon, 09 Apr 2018 09:47:29 +0000</pubDate>
</item>
<item>
<title>Modify / Add a new column for Leaderboards + Digits display limit extension</title>
<link>http://forum.shephertz.com/?qa=11027/modify-column-leaderboards-digits-display-limit-extension</link>
<description>I have been trying the Leaderboards for one of our games and I was wondering

 

1. if we can we add an extra column in leaderboards section ? We would like to add &quot;unique user id&quot; ?

 

2. In leaderboards score column can we add upto 50 digits ? right now we are able to add only 20 digits but our game requires us to have more than 40 digits. We have several games with good DAU's if this can be done we would definitely be subscribing to your service. Thanks!</description>
<category>Discuss &amp; suggest API</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11027/modify-column-leaderboards-digits-display-limit-extension</guid>
<pubDate>Thu, 22 Mar 2018 12:03:14 +0000</pubDate>
</item>
<item>
<title>Add min / max CCU in the Statistics section</title>
<link>http://forum.shephertz.com/?qa=10995/add-min-max-ccu-in-the-statistics-section</link>
<description>In the statistics section I can see the average CCU and the sum of messages per day. Although the average CCU is a nice to have feature, it is not at all useful, as it does not tell me how many users my app really has. The live stat is certainly more important, but, this is only for now,

What I need to have is a way to compare the performance of my app in different days. The average CCU does not help in this. The sum of msg does offer a benchmark, but the combination of these two is by far the more important benchmark.

Thus, is it possible to add the min and the max CCU per day? With that information, I can monitor the performance of my app

 

Thank you</description>
<category>Discuss &amp; suggest API</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10995/add-min-max-ccu-in-the-statistics-section</guid>
<pubDate>Tue, 27 Feb 2018 09:59:57 +0000</pubDate>
</item>
<item>
<title>Delete a room after given time</title>
<link>http://forum.shephertz.com/?qa=10957/delete-a-room-after-given-time</link>
<description>&lt;div&gt;
	hi,&lt;/div&gt;
&lt;div&gt;
	There is one use case where admin can create a private room and invite a users to play in that room.&lt;/div&gt;
&lt;div&gt;
	here admin can set a time limit for that particular room after time limit reached it will automatically destroy even users are still in the room.&lt;/div&gt;
&lt;div&gt;
	so how can I achieve that?&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;</description>
<category>Discuss &amp; suggest API</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10957/delete-a-room-after-given-time</guid>
<pubDate>Mon, 12 Feb 2018 14:15:36 +0000</pubDate>
</item>
<item>
<title>where i see my app api calls count?</title>
<link>http://forum.shephertz.com/?qa=10940/where-i-see-my-app-api-calls-count</link>
<description>where i see my app api calls count?&lt;br /&gt;
&lt;br /&gt;
Is the api hits the same api calls?</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10940/where-i-see-my-app-api-calls-count</guid>
<pubDate>Mon, 29 Jan 2018 08:53:49 +0000</pubDate>
</item>
<item>
<title>how to return value from onSuccess to other function in android?</title>
<link>http://forum.shephertz.com/?qa=10935/how-to-return-value-from-onsuccess-other-function-in-android</link>
<description>&lt;pre style=&quot;background-color:#2b2b2b;color:#a9b7c6;font-family:'Source Code Pro';font-size:11.3pt;&quot;&gt;
&lt;span style=&quot;color:#cc7832;&quot;&gt;public &lt;/span&gt;String &lt;span style=&quot;color:#ffc66d;&quot;&gt;getSessionID&lt;/span&gt;(String user) {
    String userName = user&lt;span style=&quot;color:#cc7832;&quot;&gt;;
&lt;/span&gt;&lt;span style=&quot;color:#cc7832;&quot;&gt;    &lt;/span&gt;App42API.&lt;span style=&quot;font-style:italic;&quot;&gt;initialize&lt;/span&gt;(getContext()&lt;span style=&quot;color:#cc7832;&quot;&gt;,
&lt;/span&gt;&lt;span style=&quot;color:#cc7832;&quot;&gt;            &lt;/span&gt;&lt;span style=&quot;color:#6a8759;&quot;&gt;&quot;******&quot;&lt;/span&gt;&lt;span style=&quot;color:#cc7832;&quot;&gt;,
&lt;/span&gt;&lt;span style=&quot;color:#cc7832;&quot;&gt;            &lt;/span&gt;&lt;span style=&quot;color:#6a8759;&quot;&gt;&quot;******&quot;&lt;/span&gt;)&lt;span style=&quot;color:#cc7832;&quot;&gt;;
&lt;/span&gt;&lt;span style=&quot;color:#cc7832;&quot;&gt;    &lt;/span&gt;SessionService sessionService = App42API.&lt;span style=&quot;font-style:italic;&quot;&gt;buildSessionManager&lt;/span&gt;()&lt;span style=&quot;color:#cc7832;&quot;&gt;;
&lt;/span&gt;&lt;span style=&quot;color:#cc7832;&quot;&gt;    &lt;/span&gt;sessionService.getSession(userName&lt;span style=&quot;color:#cc7832;&quot;&gt;,new &lt;/span&gt;App42CallBack() {
        &lt;span style=&quot;color:#cc7832;&quot;&gt;public void &lt;/span&gt;&lt;span style=&quot;color:#ffc66d;&quot;&gt;onSuccess&lt;/span&gt;(&lt;span style=&quot;color:#cc7832;&quot;&gt;final &lt;/span&gt;Object response)
        {
            Session session = (Session)response&lt;span style=&quot;color:#cc7832;&quot;&gt;;
&lt;/span&gt;&lt;span style=&quot;color:#cc7832;&quot;&gt;            &lt;/span&gt;&lt;span style=&quot;color:#9876aa;&quot;&gt;s_id &lt;/span&gt;= session.getSessionId()&lt;span style=&quot;color:#cc7832;&quot;&gt;;
&lt;/span&gt;&lt;span style=&quot;color:#cc7832;&quot;&gt;        &lt;/span&gt;}
        &lt;span style=&quot;color:#cc7832;&quot;&gt;public void &lt;/span&gt;&lt;span style=&quot;color:#ffc66d;&quot;&gt;onException&lt;/span&gt;(Exception ex)
        {
            System.&lt;span style=&quot;color:#9876aa;font-style:italic;&quot;&gt;out&lt;/span&gt;.println(&lt;span style=&quot;color:#6a8759;&quot;&gt;&quot;Exception Message&quot;&lt;/span&gt;+ex.getMessage())&lt;span style=&quot;color:#cc7832;&quot;&gt;;
&lt;/span&gt;&lt;span style=&quot;color:#cc7832;&quot;&gt;        &lt;/span&gt;}
    })&lt;span style=&quot;color:#cc7832;&quot;&gt;;
&lt;/span&gt;&lt;span style=&quot;color:#cc7832;&quot;&gt;    return &lt;/span&gt;&lt;span style=&quot;color:#9876aa;&quot;&gt;s_id&lt;/span&gt;&lt;span style=&quot;color:#cc7832;&quot;&gt;;
&lt;/span&gt;}&lt;/pre&gt;</description>
<category>Announce Your App</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10935/how-to-return-value-from-onsuccess-other-function-in-android</guid>
<pubDate>Sun, 28 Jan 2018 22:29:01 +0000</pubDate>
</item>
<item>
<title>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</link>
<description>&lt;p&gt;
	&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px;&quot;&gt;Hi All&lt;/span&gt;&lt;br style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px;&quot;&gt;
	&lt;br style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px;&quot;&gt;
	&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px;&quot;&gt;I need APIs for leaderboard to get&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-size:14px;&quot;&gt;user's ranking after userScore is saved&amp;nbsp;&lt;/span&gt;&lt;br style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px;&quot;&gt;
	&lt;br style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px;&quot;&gt;
	&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px;&quot;&gt;Can you please send me related API links to solve above questions.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;br style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px;&quot;&gt;
	&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px;&quot;&gt;Thanks&lt;/span&gt;&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</guid>
<pubDate>Tue, 23 Jan 2018 15:26:31 +0000</pubDate>
</item>
<item>
<title>no-English problem:  I got '????' when I fetch userName which is saved in Chinese.</title>
<link>http://forum.shephertz.com/?qa=10924/english-problem-got-when-fetch-username-which-saved-chinese</link>
<description>using Leaderboard Service to save userData. I got '????' when I fetch my userName which is saved in Chinese.

How to fix this?</description>
<category>Work In Progress</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10924/english-problem-got-when-fetch-username-which-saved-chinese</guid>
<pubDate>Thu, 18 Jan 2018 06:49:55 +0000</pubDate>
</item>
<item>
<title>I want to know how can I add multiple checks like where conditions in NoSql to get the date</title>
<link>http://forum.shephertz.com/?qa=10918/want-know-multiple-checks-like-where-conditions-nosql-date</link>
<description>Hello 

I want to know how can I add multiple checks like where conditions in NoSql to get the date.
Like in your storage service find-document-by-key-value but I want multiple key values to check.

Thanks
Akash</description>
<category>Work In Progress</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10918/want-know-multiple-checks-like-where-conditions-nosql-date</guid>
<pubDate>Fri, 12 Jan 2018 12:29:40 +0000</pubDate>
</item>
<item>
<title>Site problem 'Unity 3D usage guide'</title>
<link>http://forum.shephertz.com/?qa=10885/site-problem-unity-3d-usage-guide</link>
<description>&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	&lt;span style=&quot;color: rgb(33, 33, 33); font-family: arial, sans-serif; font-size: 16px; white-space: pre-wrap;&quot;&gt;Hello good evening, I'm developing my game with AppWarp, when using the 'Unity 3D usage guide' page the texts were scrambled by the page being impossible to read, I'm in need of this resource, if it's a problem on the site I hope it corrects fast&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	&lt;span style=&quot;color: rgb(33, 33, 33); font-family: arial, sans-serif; font-size: 16px; white-space: pre-wrap;&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;https://image.prntscr.com/image/tWi1fV5VTf6lfhYtoutE4A.png&quot;&gt;&lt;/span&gt;&lt;/p&gt;

	&lt;p&gt;
		&lt;span style=&quot;color: rgb(33, 33, 33); font-family: arial, sans-serif; font-size: 16px; white-space: pre-wrap;&quot;&gt;Hello good evening, I'm developing my game with AppWarp, when using the 'Unity 3D usage guide' page the texts were scrambled by the page being impossible to read, I'm in need of this resource, if it's a problem on the site I hope it corrects fast&lt;/span&gt;&lt;/p&gt;
</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10885/site-problem-unity-3d-usage-guide</guid>
<pubDate>Mon, 01 Jan 2018 06:27:25 +0000</pubDate>
</item>
<item>
<title>where is the support team?</title>
<link>http://forum.shephertz.com/?qa=10849/where-is-the-support-team</link>
<description>Hi,

I do not appreciate the fact that you do not reply to my emails nor you answer my questions here on this forum.

Why is that? Are you working on the opened issues or are you hiding?

 

Vasilis</description>
<category>Operations and Maintenance</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10849/where-is-the-support-team</guid>
<pubDate>Tue, 12 Dec 2017 12:25:50 +0000</pubDate>
</item>
<item>
<title>Email service not working for me</title>
<link>http://forum.shephertz.com/?qa=10831/email-service-not-working-for-me</link>
<description>Hello! First off, thank for the great product - I really can't believe how simple it is to get my app up and running :)

I'm having some trouble setting up the email service for my app. I'm receiving a successful callback when sending an email, but I'm not receiving the email in my account. I saw similar issues on the forums, and tried the following:

Checked my email information in App42 HQ (Unified Notifications&amp;gt;Settings&amp;gt;Email&amp;gt;Update), and all appear to be correct.
Set &quot;allow less secure apps&quot; to ON in my gmail account. 
Attempted to send email from App42 HQ (Unified Notifications&amp;gt;Email&amp;gt;Compose), but did not recieve email.
Attempted to send email via App42 API (Corona, iPhone), recieved &quot;success:true&quot;, but did not recieve email. 

App Name: SetcoCalculator

Please let me know what else I can provide to help debug this. Again, thanks for the wonderful platform!</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10831/email-service-not-working-for-me</guid>
<pubDate>Tue, 28 Nov 2017 18:42:25 +0000</pubDate>
</item>
<item>
<title>Session id not valid / bad request ?</title>
<link>http://forum.shephertz.com/?qa=10818/session-id-not-valid-bad-request</link>
<description>I am passing valid data/request but i am getting session id not valid,becuase i restart my laptop it is working some times.Please any one can we hellp me</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10818/session-id-not-valid-bad-request</guid>
<pubDate>Tue, 14 Nov 2017 10:38:17 +0000</pubDate>
</item>
<item>
<title>SDK for .NET Core</title>
<link>http://forum.shephertz.com/?qa=10790/sdk-for-net-core</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
We are &amp;nbsp;building our backend for our new game using .NET Core. We tried to use the C# SDK but it doesn't seem to be compatible with .NET Core. Do you have plans on releasing a version of the SDK that works with .NET Core? If yes, when? If no, do you have any suggestion on what we should do to get this to work?&lt;br /&gt;
&lt;br /&gt;
Thanks in advance!</description>
<category>Discuss &amp; suggest API</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10790/sdk-for-net-core</guid>
<pubDate>Wed, 11 Oct 2017 19:29:48 +0000</pubDate>
</item>
<item>
<title>Its possible run custom code with python in the App42 Cloud API?</title>
<link>http://forum.shephertz.com/?qa=10782/its-possible-run-custom-code-with-python-the-app42-cloud-api</link>
<description>&lt;p&gt;
	&lt;span id=&quot;result_box&quot; lang=&quot;en&quot;&gt;&lt;span&gt;I'm new to Shephertz and I need to run a server code in the cloud using python.&lt;/span&gt; &lt;span&gt;Is there an api for python in the App42 Cloud API?&lt;/span&gt; &lt;span&gt;If not, is there any other way to do this processing in the cloud with python language?&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;</description>
<category>Discuss &amp; suggest API</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10782/its-possible-run-custom-code-with-python-the-app42-cloud-api</guid>
<pubDate>Tue, 03 Oct 2017 15:04:06 +0000</pubDate>
</item>
<item>
<title>Sakousha: a fun turn-based game</title>
<link>http://forum.shephertz.com/?qa=10749/sakousha-a-fun-turn-based-game</link>
<description>A turn-based fun game, you can play against the computer as well as against your facebook friends. Try it out please:

&lt;a href=&quot;https://itunes.apple.com/us/app/sakousha/id1197922872?ls=1&amp;amp;mt=8&quot; rel=&quot;nofollow&quot;&gt;https://itunes.apple.com/us/app/sakousha/id1197922872?ls=1&amp;amp;mt=8&lt;/a&gt;</description>
<category>Announce Your App</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10749/sakousha-a-fun-turn-based-game</guid>
<pubDate>Tue, 12 Sep 2017 05:05:09 +0000</pubDate>
</item>
<item>
<title>joinRoomWithProperties with given number of users</title>
<link>http://forum.shephertz.com/?qa=10748/joinroomwithproperties-with-given-number-of-users</link>
<description>&lt;p&gt;
	Hi,&lt;/p&gt;
&lt;p&gt;
	I'm developing a game and I have public and private rooms, so each room I create has a &quot;privacy&quot; property that's set to either &quot;public&quot; or &quot;private&quot;, how do I search for a &quot;public&quot; room that has exactly one user?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	Using &quot;joinRoomWithProperties&quot; I can only search for the desired peoperties,&amp;nbsp;&lt;span style=&quot;color: rgb(0, 0, 0); font-family: Roboto;&quot;&gt;&amp;nbsp;using joinRoomInRangeBetweenMinUsers I can search for rooms with the desired number of users; I need to do both,&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
	Thanks in advance&lt;/p&gt;</description>
<category>Discuss &amp; suggest API</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10748/joinroomwithproperties-with-given-number-of-users</guid>
<pubDate>Mon, 11 Sep 2017 14:52:50 +0000</pubDate>
</item>
<item>
<title>How to re-authentication with appWarp server when got AuthError result code when do connecting?</title>
<link>http://forum.shephertz.com/?qa=10743/authentication-appwarp-server-autherror-result-connecting</link>
<description>Situation (in Unity 3D):

I got one device, I do connecting to appwarp server (using .connect(string username1) ). Everything is OK!

But, when I use other device, and also do connecting with same username1 (using .connect(string username1) ), I would receive result code = 1 (auth_error).

In this way, how can I do to do connecting with same username (cause this is my account username, just connect on other device). I don't understand how to re-authentication with server if I was be in this situation

Please help me! Thanks a lot ^^</description>
<category>Discuss &amp; suggest API</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10743/authentication-appwarp-server-autherror-result-connecting</guid>
<pubDate>Fri, 08 Sep 2017 05:38:11 +0000</pubDate>
</item>
<item>
<title>Leaderboard Tutorial</title>
<link>http://forum.shephertz.com/?qa=10732/leaderboard-tutorial</link>
<description>Helllo Guys, can anyone provided Facebook leaderboard unity step by step tutorial for integrating in unity game facebook friend leaderboard. I found some tutorials bu they are out dated so I can't us them. thanks</description>
<category>Work In Progress</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10732/leaderboard-tutorial</guid>
<pubDate>Mon, 04 Sep 2017 13:20:17 +0000</pubDate>
</item>
<item>
<title>Support for emails with new top-level-domains</title>
<link>http://forum.shephertz.com/?qa=10711/support-for-emails-with-new-top-level-domains</link>
<description>&lt;p&gt;
	At the moment, there are a lot of issues with emails using newer generation top-level-domains such as the one I use would like to use with App42&amp;nbsp;&lt;strong&gt;(e.g. gal.peric@12b3.games).&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;strong&gt;I cannot create users with an email address ending with a TLD such as .games, neither can I send out emails from my account using the Email Service API or the User Interface&lt;/strong&gt;&amp;nbsp;(the email address I am trying to use is noreply@12b3.games).&lt;/p&gt;
&lt;p&gt;
	Creating a user with such an email address returns an internal error with the API, whereas sending out the Email simply returns an &quot;OK&quot; without ever sending out the mail. My configuration is correct, I triple checked it before posting here and it should work. I tested it using plain Java with the same settings.&lt;/p&gt;
&lt;p&gt;
	I would like to request that you make &lt;a rel=&quot;nofollow&quot; href=&quot;https://en.wikipedia.org/wiki/List_of_Internet_top-level_domains&quot;&gt;new top level domains&lt;/a&gt; accessible please.&lt;/p&gt;</description>
<category>Discuss &amp; suggest API</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10711/support-for-emails-with-new-top-level-domains</guid>
<pubDate>Mon, 28 Aug 2017 13:55:19 +0000</pubDate>
</item>
<item>
<title>What is difference between AppWarp and AppWarpS2</title>
<link>http://forum.shephertz.com/?qa=10698/what-is-difference-between-appwarp-and-appwarps2</link>
<description>Hi,

What is the difference between AppWarp and AppWarpS2? I have developed my game with Unity AppWarpS2 SDK and I have created server side code with your server SDK and hosted on Amazon server. can I migrate AppWarpS2 to AppWarp? I have an issue with ipv6 in ios. which is better for casino game AppWarp or AppWarpS2?

Thank you.</description>
<category>Discuss &amp; suggest API</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10698/what-is-difference-between-appwarp-and-appwarps2</guid>
<pubDate>Thu, 24 Aug 2017 11:16:06 +0000</pubDate>
</item>
<item>
<title>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</link>
<description>Do I need any previews skills to create a game on this plataform ?</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</guid>
<pubDate>Tue, 08 Aug 2017 13:05:38 +0000</pubDate>
</item>
<item>
<title>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</link>
<description>&lt;p&gt;
	&lt;strong&gt;I have registered recently with appwarp and added one demo app to admin panel without any client implementation, and next day admin panel shows 19 message count &quot;WHAT IS THIS&quot;, how can i trust these services, because the price is based on message count.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;strong&gt;Is there any example for describing all service of ShepHeartz services for Unity ?&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;
		user management(authentication,social operations),&lt;/li&gt;
	&lt;li&gt;
		multiplayer(auto match, create private room with friend invite).&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
	I did not found any single line of guide anywhere, got some unity tutorials but it's too old, its look like shephertz is not have any good guid about these services.&lt;/p&gt;
&lt;p&gt;
	And forum also not able to attach image file, so i have uploaded somewhere else&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	&lt;a rel=&quot;nofollow&quot; href=&quot;https://ibb.co/hjBWs5&quot;&gt;https://ibb.co/hjBWs5&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&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</guid>
<pubDate>Sat, 29 Jul 2017 09:59:54 +0000</pubDate>
</item>
<item>
<title>Corona Sdk multiple notification listeners</title>
<link>http://forum.shephertz.com/?qa=10620/corona-sdk-multiple-notification-listeners</link>
<description>Hi i've been trying to create a messaging app with Corona sdk and appwarp. First i created this notification listener appWarpClient.addNotificationListener(&amp;quot;onPrivateChatReceived&amp;quot;, mOnChatReceivedFunc) and it works fine, i used it to send friend requests to other people using the app but, now i need another notification listener beacuse i need to make a chatroom in the app as well. When i create a new notification listener it simply won't call the function after i have send a private chat and it worked perfectly fine with the other notification listener but when i try to make a new notification listener it dosen't work. I'm happy to hear from you thanks.</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10620/corona-sdk-multiple-notification-listeners</guid>
<pubDate>Fri, 07 Jul 2017 18:33:19 +0000</pubDate>
</item>
<item>
<title>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</link>
<description></description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10601/whenever-user-enters-game-existing-user-notifications-user</guid>
<pubDate>Wed, 05 Jul 2017 05:49:40 +0000</pubDate>
</item>
<item>
<title>GeoService Return</title>
<link>http://forum.shephertz.com/?qa=10589/geoservice-return</link>
<description>&lt;div class=&quot;g-unit&quot; id=&quot;gt-res-c&quot; style=&quot;zoom: 1; width: 640px; margin: 0px; float: right; position: relative; color: rgb(119, 119, 119); font-family: arial, sans-serif; font-size: 13px;&quot;&gt;
	&lt;div id=&quot;gt-res-p&quot; style=&quot;padding-bottom: 20px; margin-left: 4px;&quot;&gt;
		&lt;div id=&quot;gt-res-data&quot;&gt;
			&lt;div id=&quot;gt-res-wrap&quot; style=&quot;border: 1px solid whitesmoke; margin: 0px 0px 8px; background: whitesmoke;&quot;&gt;
				&lt;div id=&quot;gt-res-content&quot; style=&quot;position: relative;&quot;&gt;
					&lt;div class=&quot;trans-verified-button-small&quot; dir=&quot;ltr&quot; id=&quot;gt-res-dir-ctr&quot; style=&quot;zoom: 1; min-height: 89px; padding: 8px;&quot;&gt;
						&lt;div class=&quot;g-unit&quot; style=&quot;zoom: 1; width: 640px; margin: 0px; float: right; position: relative;&quot;&gt;
							&lt;div style=&quot;padding-bottom: 20px; margin-left: 4px;&quot;&gt;
								&lt;div&gt;
									&lt;div style=&quot;border: 1px solid whitesmoke; margin: 0px 0px 8px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;&quot;&gt;
										&lt;div style=&quot;position: relative;&quot;&gt;
											&lt;div class=&quot;trans-verified-button-small&quot; dir=&quot;ltr&quot; style=&quot;zoom: 1; min-height: 89px; padding: 8px;&quot;&gt;
												&lt;span lang=&quot;en&quot; style=&quot;font-size: 16px; color: rgb(34, 34, 34); min-height: 89px; position: relative; z-index: 2; word-wrap: break-word;&quot;&gt;Hello Guys&lt;br&gt;
												&lt;br&gt;
												My name is Sebastiao, I have a question.&lt;br&gt;
												&lt;span&gt;I use C # unity3D, so I want the server to return only one value instead of all the Markers Names of the (GEO POINTS).&lt;/span&gt;&amp;nbsp;&lt;span&gt;When I write geoService.&quot;GetAllPoints (storageName, new UnityCallBackGet ());&quot;&lt;/span&gt;&amp;nbsp;&lt;span&gt;It returns all the values, I want it to return only a specific VALUE, inserted by the Client.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
											&lt;div class=&quot;trans-verified-button-small&quot; dir=&quot;ltr&quot; style=&quot;zoom: 1; min-height: 89px; padding: 8px;&quot;&gt;
												&lt;span style=&quot;color: rgb(34, 34, 34); font-size: 16px;&quot;&gt;Someone please?&lt;/span&gt;&lt;/div&gt;
										&lt;/div&gt;
									&lt;/div&gt;
								&lt;/div&gt;
							&lt;/div&gt;
						&lt;/div&gt;
					&lt;/div&gt;
				&lt;/div&gt;
			&lt;/div&gt;
		&lt;/div&gt;
	&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10589/geoservice-return</guid>
<pubDate>Wed, 28 Jun 2017 20:25:43 +0000</pubDate>
</item>
<item>
<title>Users are not logging Out from appwarp server.</title>
<link>http://forum.shephertz.com/?qa=10578/users-are-not-logging-out-from-appwarp-server</link>
<description>My game user are not logging out .</description>
<category>Announcements</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10578/users-are-not-logging-out-from-appwarp-server</guid>
<pubDate>Fri, 23 Jun 2017 11:18:21 +0000</pubDate>
</item>
</channel>
</rss>