<?xml version="1.0" encoding="iso-8859-9" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Clomosy | Forum : ssl hatası</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : ssl hatası]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 14:41:12 +0000</pubDate>
  <lastBuildDate>Thu, 31 Jul 2025 15:26:51 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.07</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.clomosy.com.tr/RSS_post_feed.asp?TID=1157</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Clomosy | Forum]]></title>
   <url>https://forum.clomosy.com.tr/forum_images/logo.png</url>
   <link>https://forum.clomosy.com.tr/</link>
  </image>
  <item>
   <title><![CDATA[ssl hatası : Merhaba Yi&#287;it,https://www.docs...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1157&amp;PID=2424#2424</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=257">Emr.Erkmn</a><br /><strong>Konu:</strong> 1157<br /><strong>Gönderim Zamanı:</strong> 31&nbsp;Temmuz&nbsp;2025 Saat 15:26<br /><br />Merhaba Yiğit,&nbsp;<br><a href="https://www.docs.clomosy.com/index.php?title=TclRest&nbsp" target="_blank" rel="nofollow">https://www.docs.clomosy.com/index.php?title=TclRest&nbsp</a>; dener misin ?&nbsp;<br>İyi çalışmalar.]]>
   </description>
   <pubDate>Thu, 31 Jul 2025 15:26:51 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1157&amp;PID=2424#2424</guid>
  </item> 
  <item>
   <title><![CDATA[ssl hatası : bir siteden veri &#231;ekmeye &#231;al&#305;&#351;&#305;rken...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1157&amp;PID=2423#2423</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=315">Yigitogtzz</a><br /><strong>Konu:</strong> 1157<br /><strong>Gönderim Zamanı:</strong> 31&nbsp;Temmuz&nbsp;2025 Saat 13:14<br /><br />bir siteden veri çekmeye çalışırken ssl hatası alıyorum aşşağıda kodum bulunmakta.<div><div>var</div><div>&nbsp; MainMenuForm: TclForm;</div><div>&nbsp; MainPanel, LeftPanel, RightPanel: TclProPanel;</div><div>&nbsp; DuyuruLabel, YemekLabel: TclProLabel;</div><div>&nbsp; LogoImage: TclProImage;</div><div>&nbsp; BtnDuyuru, BtnYemek: TclProButton;</div><div>&nbsp; Http: TclHttp;</div><div>&nbsp; DuyuruText: TclMemo;</div><div><br></div><div>void BtnDuyuruClick;</div><div>{</div><div>&nbsp; LeftPanel.Visible = True;</div><div>&nbsp; RightPanel.Visible = False;</div><div>}</div><div><br></div><div>void BtnYemekClick;</div><div>{</div><div>&nbsp; LeftPanel.Visible = False;</div><div>&nbsp; RightPanel.Visible = True;</div><div>}</div><div><br></div><div>void GetDuyurular;</div><div>var</div><div>&nbsp; str: String;</div><div>{</div><div>&nbsp; Http = TclHttp.Create(nil);</div><div>&nbsp; try</div><div>&nbsp; &nbsp; str = Http.GetRequest('<a href="https://www.gidatarim.edu.tr/duyurularimiz" target="_blank" rel="nofollow">https://www.gidatarim.edu.tr/duyurularimiz</a>');</div><div>&nbsp; &nbsp; DuyuruText.Text = str;</div><div>&nbsp; finally</div><div>&nbsp; &nbsp; Http.Free;</div><div>&nbsp; }</div><div>}</div><div><br></div><div>{</div><div>&nbsp; MainMenuForm = TclForm.Create(Self);</div><div>&nbsp; MainMenuForm.SetFormColor('#ffffff', '#ffffff', clGNone);</div><div><br></div><div>&nbsp; MainPanel = MainMenuForm.AddNewProPanel(MainMenuForm, 'MainPanel');</div><div>&nbsp; MainPanel.Align = alClient;</div><div>&nbsp; MainPanel.clProSettings.IsTransparent = True;</div><div>&nbsp; MainPanel.SetclProSettings(MainPanel.clProSettings);</div><div><br></div><div>&nbsp; LogoImage = MainMenuForm.AddNewProImage(MainPanel, 'LogoImage');</div><div>&nbsp; LogoImage.Align = alTop;</div><div>&nbsp; LogoImage.Height = 160;</div><div>&nbsp; LogoImage.clProSettings.PictureSource = '<a href="https://resmim.net/cdn/2025/07/29/X8O1uH.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/07/29/X8O1uH.png</a>';</div><div>&nbsp; LogoImage.clProSettings.PictureAutoFit = True;</div><div>&nbsp; LogoImage.clProSettings.IsRound = True;</div><div>&nbsp; LogoImage.SetclProSettings(LogoImage.clProSettings);</div><div><br></div><div>&nbsp; BtnDuyuru = MainMenuForm.AddNewProButton(MainPanel, 'BtnDuyuru', 'Duyurular');</div><div>&nbsp; BtnDuyuru.Align = alTop;</div><div>&nbsp; BtnDuyuru.Height = 40;</div><div>&nbsp; BtnDuyuru.clProSettings.IsRound = True;</div><div>&nbsp; BtnDuyuru.SetclProSettings(BtnDuyuru.clProSettings);</div><div>&nbsp; MainMenuForm.AddNewEvent(BtnDuyuru, tbeOnClick, 'BtnDuyuruClick');</div><div><br></div><div>&nbsp; BtnYemek = MainMenuForm.AddNewProButton(MainPanel, 'BtnYemek', 'Yemekler');</div><div>&nbsp; BtnYemek.Align = alTop;</div><div>&nbsp; BtnYemek.Height = 40;</div><div>&nbsp; BtnYemek.clProSettings.IsRound = True;</div><div>&nbsp; BtnYemek.SetclProSettings(BtnYemek.clProSettings);</div><div>&nbsp; MainMenuForm.AddNewEvent(BtnYemek, tbeOnClick, 'BtnYemekClick');</div><div><br></div><div>&nbsp; LeftPanel = MainMenuForm.AddNewProPanel(MainPanel, 'LeftPanel');</div><div>&nbsp; LeftPanel.Align = alClient;</div><div>&nbsp; LeftPanel.clProSettings.IsFill = True;</div><div>&nbsp; LeftPanel.SetclProSettings(LeftPanel.clProSettings);</div><div><br></div><div>&nbsp; DuyuruLabel = MainMenuForm.AddNewProLabel(LeftPanel, 'DuyuruLabel', '&#128226; Duyurular');</div><div>&nbsp; DuyuruLabel.Align = alTop;</div><div>&nbsp; DuyuruLabel.Margins.Top = 15;</div><div>&nbsp; DuyuruLabel.Margins.Left = 10;</div><div>&nbsp; DuyuruLabel.clProSettings.FontSize = 18;</div><div>&nbsp; DuyuruLabel.SetclProSettings(DuyuruLabel.clProSettings);</div><div><br></div><div>&nbsp; DuyuruText = MainMenuForm.AddNewMemo(LeftPanel, 'DuyuruText', '');</div><div>&nbsp; DuyuruText.Align = alClient;</div><div>&nbsp; DuyuruText.ReadOnly = True;</div><div><br></div><div>&nbsp; RightPanel = MainMenuForm.AddNewProPanel(MainPanel, 'RightPanel');</div><div>&nbsp; RightPanel.Align = alClient;</div><div>&nbsp; RightPanel.clProSettings.IsFill = True;</div><div>&nbsp; RightPanel.SetclProSettings(RightPanel.clProSettings);</div><div><br></div><div>&nbsp; YemekLabel = MainMenuForm.AddNewProLabel(RightPanel, 'YemekLabel', '&#127869;&#65039; Yemek Menüsü');</div><div>&nbsp; YemekLabel.Align = alTop;</div><div>&nbsp; YemekLabel.Margins.Top = 15;</div><div>&nbsp; YemekLabel.Margins.Left = 10;</div><div>&nbsp; YemekLabel.clProSettings.FontSize = 18;</div><div>&nbsp; YemekLabel.SetclProSettings(YemekLabel.clProSettings);</div><div><br></div><div>&nbsp; RightPanel.Visible = True;</div><div>&nbsp; LeftPanel.Visible = False;</div><div><br></div><div>&nbsp; GetDuyurular;</div><div><br></div><div>&nbsp; MainMenuForm.Run;</div><div>}</div></div><div>yardımcı olabilirmisiniz?</div>]]>
   </description>
   <pubDate>Thu, 31 Jul 2025 13:14:24 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1157&amp;PID=2423#2423</guid>
  </item> 
 </channel>
</rss>