<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Success! <br>
<br>
Based on the comments in this thread, I was able to use the following
HTML form to create a new ticket:<br>
<br>
&lt;form method="POST"
action="<a class="moz-txt-link-freetext" href="https://support">https://support</a>.&lt;myservernamehere&gt;.com/REST/1.0/ticket/new/"&gt;<br>
&nbsp; User: &lt;input type="text" name="user" size="20"&gt;&lt;br&gt;<br>
&nbsp; Pass: &lt;input type="text" name="pass" size="20"&gt;&lt;br&gt;<br>
&nbsp; Content: &lt;textarea rows="10" name="content" cols="30"&gt;id: new<br>
Text: This is the ticket text<br>
Subject: This is my ticket<br>
Queue: General&lt;/textarea&gt;&lt;br&gt;<br>
&nbsp; &lt;p&gt;&lt;input type="submit" value="Submit"
name="B1"&gt;&lt;input type="reset" value="Reset"
name="B2"&gt;&lt;/p&gt;<br>
&lt;/form&gt;<br>
<br>
Interestingly, the Queue field had to be at the end of the list or it
didn't work.<br>
<br>
Thanks again for the excellent help! I'll start the integration via php
using the code Tim supplied (thanks Tim!)<br>
<br>
M2<br>
<br>
<br>
Frank F. Smith wrote:
<blockquote cite="mid:49342940.8020701@cornell.edu" type="cite">
  <pre wrap="">Tim Coles wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">I think simple forms fail because the REST interface is quite particular
about carriage return/line feed combinations. IIRC it requires a CF/LF
between each http field but within the http field called "content"
(where you pass it all of your ticket fields) it will just accept a \n
between each one. Something like that anyway.

Either way having or not having the right combination was the difference
between success and failure for me on several occasions (and was the
main problem our .NET devs had when doing their test forms).
  
    </pre>
  </blockquote>
  <pre wrap=""><!---->Sounds about right to me, though I've not tested all the combinations.

Mike: In the sample content I sent moments ago, I failed to note that 
what _I_ am sending (based on my understanding of the RT::Client::REST 
modules) has CrLf after each line _except_ the field: value lines, which 
all end with just Lf.

Frank
  </pre>
  <blockquote type="cite">
    <pre wrap="">Tim

  
    </pre>
  </blockquote>
  <pre wrap=""><!---->&lt;snip&gt;

  </pre>
</blockquote>
</body>
</html>