<!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">
Hi<br>
<br>
That was obvious ! Sorry I missed it. I had assumes it wasn't a ssl
connection but it obviously is. Will try and get the ssl dll files for
indy.<br>
<br>
Cheers<br>
Rob
<div class="moz-signature">
<div class="Section1"><br>
<p class="MsoNormal"><span style="color: rgb(255, 153, 0);" lang="EN-NZ"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="" lang="EN-NZ"><o:p> </o:p></span></p>
</div>
</div>
<br>
On 26/02/2010 11:33 a.m., Jolyon Smith wrote:
<blockquote cite="mid:004d01cab66a$83a1ad40$8ae507c0$@co.nz" type="cite">
<meta http-equiv="Content-Type"
content="text/html; charset=ISO-8859-1">
<meta name="Generator" content="Microsoft Word 12 (filtered medium)">
<title>Robert Martin</title>
<style>
<!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";
        color:black;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page Section1
        {size:595.3pt 841.9pt;
        margin:72.0pt 90.0pt 72.0pt 90.0pt;}
div.Section1
        {page:Section1;}
-->
</style>
<!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
<div class="Section1">
<p class="MsoNormal"><span
style="font-size: 11pt; font-family: "Calibri","sans-serif"; color: rgb(31, 73, 125);">You
haven’t setup the SSL information required to communicate
with a HTTPS URL. You need to assign a properly configured
TIdSSLIOHandlerSocketOpenSSL
to the IOHandler of your HTTP client component.<o:p></o:p></span></p>
<p class="MsoNormal"><span
style="font-size: 11pt; font-family: "Calibri","sans-serif"; color: rgb(31, 73, 125);"><o:p> </o:p></span></p>
<p class="MsoNormal"><span
style="font-size: 11pt; font-family: "Calibri","sans-serif"; color: rgb(31, 73, 125);"><o:p> </o:p></span></p>
<div
style="border-style: none none none solid; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color blue; border-width: medium medium medium 1.5pt; padding: 0cm 0cm 0cm 4pt;">
<div>
<div
style="border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0cm 0cm;">
<p class="MsoNormal"><b><span
style="font-size: 10pt; font-family: "Tahoma","sans-serif"; color: windowtext;">From:</span></b><span
style="font-size: 10pt; font-family: "Tahoma","sans-serif"; color: windowtext;">
<a class="moz-txt-link-abbreviated" href="mailto:delphi-bounces@delphi.org.nz">delphi-bounces@delphi.org.nz</a>
[<a class="moz-txt-link-freetext" href="mailto:delphi-bounces@delphi.org.nz">mailto:delphi-bounces@delphi.org.nz</a>] <b>On Behalf Of </b>Robert
martin<br>
<b>Sent:</b> Friday, 26 February 2010 11:13 a.m.<br>
<b>To:</b> NZ Borland Developers Group - Delphi List<br>
<b>Subject:</b> [DUG] Http help<o:p></o:p></span></p>
</div>
</div>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal" style="margin-bottom: 12pt;">Hi Guys<br>
<br>
I had imported a WSDL file and built a soap service to send data to a
web
service. Unfortunately there is a bug in the WSDL that impacts delphi
but
seems to be ignored in Microsoft tools (it really is a problem with the
wsdl
file). Anyway since it is a simple job I thought it might be quicker
to
fix by just removing the soap and building the XML manually and posting
it with
idHttp. <br>
<br>
However I cant get it to work ! When I try and post my test xml to the
web serivce I get an 'Invalid IOHandler' message in the app. I have no
ioHandler defined but that works fine in my other apps where I post to
php
based web services. I am sure it is just some weird indy bug but I am
under a huge deadline and need to sort this. Any help would be greatly
appreciated.<br>
<br>
code follows (this is quick and dirty proof of concept code)<br>
<br>
var<br>
sl
: TStringList;<br>
PostDataStream :
TStringStream;<br>
SendStream : TStringStream;<br>
begin<br>
PostDataStream := TStringStream.Create('');<br>
sl := TStringList.Create;<br>
try<br>
IdHTTP.Request.Username :=
'9313527067946306';<br>
IdHTTP.Request.Password :=
'passdfsw9634306';<br>
IdHTTP.ReadTimeout := 5000;<br>
<br>
sl.LoadFromFile('E:\Work\Test
post\TestRequest.XML');<br>
SendStream := TStringStream.Create(sl.text);<br>
<br>
<br>
IdHTTP.Post('<a moz-do-not-send="true"
href="https://uateclonline.nzpost.co.nz/eclonlinewebnowse/Services.asmx">https://uateclonline.nzpost.co.nz/eclonlinewebnowse/Services.asmx</a>',
SendStream,
PostDataStream); //Error here <br>
<br>
ShowMessage(PostDataStream.DataString);<br>
finally<br>
sl.Free;<br>
PostDataStream.Free;<br>
SendStream.Free;<br>
end;<br>
<br>
<br>
<br>
<br>
<br>
<br>
<o:p></o:p></p>
<div>
<p class="MsoNormal">-- <br>
<br>
<o:p></o:p></p>
<p class="MsoNormal"><i><span
style="font-size: 10pt; font-family: "Arial","sans-serif";"
lang="EN-NZ">Robert Martin</span></i><o:p></o:p></p>
<p class="MsoNormal"><i><span
style="font-size: 10pt; font-family: "Arial","sans-serif";"
lang="EN-NZ">Software development manager</span></i><o:p></o:p></p>
<p class="MsoNormal"><span
style="font-size: 10pt; font-family: "Arial","sans-serif";"
lang="EN-NZ"> </span><o:p></o:p></p>
<p class="MsoNormal"><span
style="font-size: 10pt; font-family: "Arial","sans-serif";"
lang="EN-NZ">Chreos</span><o:p></o:p></p>
<p class="MsoNormal"><span
style="font-size: 10pt; font-family: "Arial","sans-serif";"
lang="EN-NZ"><a moz-do-not-send="true" href="http://www.chreos.co.nz">www.chreos.co.nz</a></span><o:p></o:p></p>
<p class="MsoNormal"><span
style="font-size: 10pt; font-family: "Arial","sans-serif";"
lang="EN-NZ">Ph
+64 03 377-0495</span><o:p></o:p></p>
<p class="MsoNormal"><span lang="EN-NZ"> </span><o:p></o:p></p>
<p class="MsoNormal"><span style="color: rgb(255, 153, 0);"
lang="EN-NZ"> </span><o:p></o:p></p>
<p class="MsoNormal"><span lang="EN-NZ"> </span><o:p></o:p></p>
</div>
</div>
</div>
<pre wrap="">
<fieldset class="mimeAttachmentHeader"></fieldset>
_______________________________________________
NZ Borland Developers Group - Delphi mailing list
Post: <a class="moz-txt-link-abbreviated" href="mailto:delphi@delphi.org.nz">delphi@delphi.org.nz</a>
Admin: <a class="moz-txt-link-freetext" href="http://delphi.org.nz/mailman/listinfo/delphi">http://delphi.org.nz/mailman/listinfo/delphi</a>
Unsubscribe: send an email to <a class="moz-txt-link-abbreviated" href="mailto:delphi-request@delphi.org.nz">delphi-request@delphi.org.nz</a> with Subject: unsubscribe</pre>
</blockquote>
</body>
</html>