<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>MTurkDotNet Forum Rss Feed</title><link>http://www.codeplex.com/MTurkDotNet/Thread/List.aspx</link><description>MTurkDotNet Forum Rss Description</description><item><title>New Post:  Amazon Web Services AWS Products &amp; Solutions  AWS Product Information  Developers Support Sign UpMy Account / ConsoleEnglish Discussion Forums	 Welcome Logout Forums Help Discussion Forums &gt; Category: Amazon Web Services &gt; Forum: Amazon Mechanical Turk (</title><link>http://mturkdotnet.codeplex.com/discussions/346293</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;&lt;span&gt;Hi&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span&gt;I have set up a HitType and enabled notifications for all event types using the C# API however no notifications from MTurk are being received.&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span&gt;I enable notifications using the following&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;&lt;span style="color:blue"&gt;var&lt;/span&gt; notificationTypes = &lt;span style="color:blue"&gt;new&lt;/span&gt; List&amp;lt;EventType&amp;gt; {
                EventType.AssignmentAbandoned,
                EventType.AssignmentAccepted,
                EventType.AssignmentReturned,
                EventType.AssignmentSubmitted,
                EventType.HITExpired,
                EventType.HITReviewable}.ToArray();
 
            &lt;span style="color:blue"&gt;var&lt;/span&gt; notificationSpecification = &lt;span style="color:blue"&gt;new&lt;/span&gt; NotificationSpecification
                                                {
                                                    Destination = MTurkNotificationUrl,
                                                    EventType = notificationTypes,
                                                    Transport = NotificationTransport.REST,
                                                    Version = MTurkConstants.NotificationVersion
                                                };
            _client.SetHITTypeNotification(hitTypeId, notificationSpecification, &lt;span style="color:blue"&gt;true&lt;/span&gt;);
...
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;span&gt;I have tested that the REST endpoint is accessible externally and used the SendTestNotification API call to verify this.&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span&gt;There must be something wrong with either the code to enable the notifications or something at the Amazon end. Are notifications sent for sandbox HITs??&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span&gt;Any help is most appreciated!&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span&gt;rich&lt;/span&gt;&lt;br&gt;
&lt;/span&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>richhalliwell</author><pubDate>Mon, 27 Feb 2012 10:03:50 GMT</pubDate><guid isPermaLink="false">New Post:  Amazon Web Services AWS Products &amp; Solutions  AWS Product Information  Developers Support Sign UpMy Account / ConsoleEnglish Discussion Forums	 Welcome Logout Forums Help Discussion Forums &gt; Category: Amazon Web Services &gt; Forum: Amazon Mechanical Turk ( 20120227100350A</guid></item><item><title>NEW POST: help / creating external hit</title><link>http://www.codeplex.com/MTurkDotNet/Thread/View.aspx?ThreadId=21557</link><description>&lt;div class="wikidoc"&gt;
Hi there, &lt;br /&gt; &lt;br /&gt;I'm totally knew to .net and trying to create Mturk external hit with the sdk, but I can not figure what's wrong with my code : &lt;br /&gt; &lt;br /&gt;The debugger tell me I'm using a wrong type of variable, but I can not figure where after review of all my variables&lt;br /&gt;(&amp;quot;Value of type 'String' cannot be converted to '1-dimensional array of String'.&amp;quot;)&lt;br /&gt; &lt;br /&gt;Maybe someone could have a look and help me ?&lt;br /&gt; &lt;br /&gt;        Dim mt_client As New Amazon.WebServices.MechanicalTurk.SimpleClient()&lt;br /&gt;        Dim my_hit As New Amazon.WebServices.MechanicalTurk.Domain.HIT()&lt;br /&gt; &lt;br /&gt;        Dim My_hitTypeId As String&lt;br /&gt;        Dim My_title As String&lt;br /&gt;        Dim My_description As String&lt;br /&gt;        Dim My_keywords As String&lt;br /&gt;        Dim My_externalQuestion As New Amazon.WebServices.MechanicalTurk.Domain.ExternalQuestion&lt;br /&gt;        Dim My_reward As Decimal&lt;br /&gt;        Dim My_assignmentDurationInSeconds As Long&lt;br /&gt;        Dim My_autoApprovalDelayInSeconds As Long&lt;br /&gt;        Dim My_lifetimeInSeconds As Long&lt;br /&gt;        Dim My_maxAssignments As Integer&lt;br /&gt;        Dim My_requesterAnnotation As String&lt;br /&gt;        Dim My_qualificationRequirements As New System.Collections.Generic.List(Of Amazon.WebServices.MechanicalTurk.Domain.QualificationRequirement)&lt;br /&gt;        Dim My_responseGroup As String&lt;br /&gt; &lt;br /&gt;        My_hitTypeId = &amp;quot;&amp;quot;&lt;br /&gt;        My_title = &amp;quot;ALX TITRE&amp;quot;&lt;br /&gt;        My_description = &amp;quot;ALX DESCRIPTION&amp;quot;&lt;br /&gt;        My&lt;i&gt;keywords = &amp;quot;alx&lt;/i&gt;keyword1, alx_keyword2&amp;quot;&lt;br /&gt;        My_externalQuestion.ExternalURL = &amp;quot;http://www.google.com&amp;quot;&lt;br /&gt;        My_externalQuestion.FrameHeight = &amp;quot;600&amp;quot;&lt;br /&gt;        My_reward = 1&lt;br /&gt;        My_assignmentDurationInSeconds = 60 * 60&lt;br /&gt;        My_autoApprovalDelayInSeconds = 60 * 60 * 24 * 5&lt;br /&gt;        My_lifetimeInSeconds = 60 * 60&lt;br /&gt;        My_maxAssignments = 1&lt;br /&gt;        My_requesterAnnotation = &amp;quot;alx annotation&amp;quot;&lt;br /&gt;        My_qualificationRequirements.Clear()&lt;br /&gt;        My_responseGroup = &amp;quot;response groupe alx&amp;quot;&lt;br /&gt; &lt;br /&gt;        my&lt;i&gt;hit = mt&lt;/i&gt;client.CreateHIT(My&lt;i&gt;hitTypeId, My&lt;/i&gt;title, My&lt;i&gt;description, My&lt;/i&gt;keywords, My&lt;i&gt;externalQuestion, My&lt;/i&gt;reward, My&lt;i&gt;assignmentDurationInSeconds, My&lt;/i&gt;autoApprovalDelayInSeconds, My&lt;i&gt;lifetimeInSeconds, My&lt;/i&gt;maxAssignments, My&lt;i&gt;requesterAnnotation, My&lt;/i&gt;qualificationRequirements, My_responseGroup)&lt;br /&gt;        &lt;br /&gt;        MsgBox(my_hit.HITId)&lt;br /&gt;
&lt;/div&gt;</description><author>MRIQUElyon</author><pubDate>Tue, 05 Feb 2008 18:07:06 GMT</pubDate><guid isPermaLink="false">NEW POST: help / creating external hit 20080205060706P</guid></item></channel></rss>