<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Shephertz Community - Recent questions and answers in Windows</title>
<link>http://forum.shephertz.com/?qa=qa/products/appwarp/windows</link>
<description>Powered by Question2Answer</description>
<item>
<title>https://appwarp.shephertz.com is down?</title>
<link>http://forum.shephertz.com/?qa=11619/https-appwarp-shephertz-com-is-down</link>
<description>&lt;p&gt;
	Hey, what happend to the site? Im trying to access the unity documents there to help me with my project, but the site is down please help&lt;/p&gt;
&lt;p&gt;
	i get this error:&amp;nbsp;&lt;/p&gt;
&lt;h1 style=&quot;color: rgb(0, 0, 0); font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;
	Error establishing a database connection&lt;/h1&gt;</description>
<category>Windows</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11619/https-appwarp-shephertz-com-is-down</guid>
<pubDate>Tue, 12 Sep 2023 07:40:27 +0000</pubDate>
</item>
<item>
<title>Convert Photon to appwarp</title>
<link>http://forum.shephertz.com/?qa=11580/convert-photon-to-appwarp</link>
<description>Hello I wanted to convert the photon to the appwarp, how do I do that? it will take a long time?</description>
<category>Windows</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=11580/convert-photon-to-appwarp</guid>
<pubDate>Tue, 19 May 2020 15:11:55 +0000</pubDate>
</item>
<item>
<title>Answered: Unwanted shot of second player</title>
<link>http://forum.shephertz.com/?qa=10927/unwanted-shot-of-second-player&amp;show=10929#a10929</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
Apologies for late reply.&lt;br /&gt;
&lt;br /&gt;
We have gone through the code you have shared and we are not able to find the code written for shooting the player so that we can find the trigger point.&lt;br /&gt;
&lt;br /&gt;
Could you please check the trigger point for this shooting and let us know if it is triggered from any of the AppWarp listener methods? &lt;br /&gt;
&lt;br /&gt;
It will help us to debug the problem.&lt;br /&gt;
&lt;br /&gt;
Thanks.</description>
<category>Windows</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=10927/unwanted-shot-of-second-player&amp;show=10929#a10929</guid>
<pubDate>Tue, 23 Jan 2018 05:57:48 +0000</pubDate>
</item>
<item>
<title>Unable to connect- Please help!</title>
<link>http://forum.shephertz.com/?qa=9591/unable-to-connect-please-help</link>
<description>&lt;p&gt;
	Hi all.. fairly new to programming and have just found out about AppWarp. Will be very useful for a project I am working on, however I am unable to connect app when running my program. I have been prodding at the issue and looking for solutions online for hours now and I can not figure out what is going wrong here. I am programming a Windows Forms application in c# using visual studio. Any help is appreciated. I'll note that I also was unable to connect the sample webpage chat aswell.&lt;/p&gt;
&lt;p&gt;
	My connection request listener spits out: &quot;Unkown Error&quot;.&lt;/p&gt;
&lt;p&gt;
	Here is my full code:&lt;/p&gt;
&lt;pre class=&quot;brush:java;&quot;&gt;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using com.shephertz.app42.gaming.multiplayer.client;
using com.shephertz.app42.gaming.multiplayer.client.events;
using com.shephertz.app42.gaming.multiplayer.client.command;
using com.shephertz.app42.gaming.multiplayer.client.listener;  

namespace WindowsFormsApplication1
{
    public partial class MainForm : Form
    {
        private int loggedInID;
        private string loggedInUser;
        public WarpClient _warpClient;

        public MainForm(int userIDInput, string usernameInput)
        {
            InitializeComponent();
            loggedInID = userIDInput;
            loggedInUser = usernameInput;
            nameDisplayLbl.Text = loggedInUser;
        }

        private void MainForm_Load(object sender, EventArgs e)
        {
        }

        private void matchQueueBtn_Click(object sender, EventArgs e)
        {
            WarpClient.initialize(&quot;api redacted for question&quot;, &quot;secretkey redacted for question&quot;);
            _warpClient = WarpClient.GetInstance();
            _warpClient.AddConnectionRequestListener(new MyConnectionListener());
            _warpClient.Connect(loggedInUser);
            _warpClient.JoinRoom(&quot;Gamelobbytest&quot;);
        }
        
        public class MyConnectionListener : ConnectionRequestListener
        {
            public MyConnectionListener()
            {

            }

            public void onConnectDone(ConnectEvent eventObj)
            {
                switch (eventObj.getResult())
                {
                    case WarpResponseResultCode.SUCCESS:
                        System.Diagnostics.Debug.WriteLine(&quot;connection success&quot;);
                        break;
                    case WarpResponseResultCode.AUTH_ERROR:
                        System.Diagnostics.Debug.WriteLine(&quot;Auth Error&quot;);
                        break;
                    case WarpResponseResultCode.BAD_REQUEST:
                        System.Diagnostics.Debug.WriteLine(&quot;Bad Request&quot;);
                        break;
                    case WarpResponseResultCode.CONNECTION_ERR:
                        System.Diagnostics.Debug.WriteLine(&quot;Connection Error&quot;);
                        break;
                    case WarpResponseResultCode.CONNECTION_ERROR_RECOVERABLE:
                        System.Diagnostics.Debug.WriteLine(&quot;Connection Error Recoverable&quot;);
                        break;
                    case WarpResponseResultCode.RESOURCE_MOVED:
                        System.Diagnostics.Debug.WriteLine(&quot;Resource moved&quot;);
                        break;
                    case WarpResponseResultCode.RESOURCE_NOT_FOUND:
                        System.Diagnostics.Debug.WriteLine(&quot;Resource not found&quot;);
                        break;
                    case WarpResponseResultCode.RESULT_SIZE_ERROR:
                        System.Diagnostics.Debug.WriteLine(&quot;Size Error&quot;);
                        break;
                    case WarpResponseResultCode.SUCCESS_RECOVERED:
                        System.Diagnostics.Debug.WriteLine(&quot;Success recoeverd&quot;);
                        break;
                    case WarpResponseResultCode.UNKNOWN_ERROR:
                        System.Diagnostics.Debug.WriteLine(&quot;Unknown Error&quot;);
                        break;
                    default:
                        System.Diagnostics.Debug.WriteLine(&quot;Any error&quot;);
                        break;
                }
            }

            public void onDisconnectDone(ConnectEvent eventObj)
            {
                // handle Disconnect here
            }

            public void onInitUDPDone(byte resultCode)
            {
                // handle onInitUDPDone here
            }
        }
    }
}
&lt;/pre&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Windows</category>
<guid isPermaLink="true">http://forum.shephertz.com/?qa=9591/unable-to-connect-please-help</guid>
<pubDate>Mon, 19 Sep 2016 03:39:06 +0000</pubDate>
</item>
</channel>
</rss>