<?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 : IP Entegrasyonu</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Clomosy ile de&#287;i&#351;ken kullan&#305;m&#305; : IP Entegrasyonu]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 15 Apr 2026 04:34:03 +0000</pubDate>
  <lastBuildDate>Thu, 19 Feb 2026 10:20:36 +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=1369</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[IP Entegrasyonu : Te&#351;ekk&#252;r ederim.https://static...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1369&amp;PID=3084#3084</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=372">Nevra Nur</a><br /><strong>Konu:</strong> 1369<br /><strong>Gönderim Zamanı:</strong> 19&nbsp;Şubat&nbsp;2026 Saat 10:20<br /><br />Teşekkür ederim.<a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015"</a> integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Thu, 19 Feb 2026 10:20:36 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1369&amp;PID=3084#3084</guid>
  </item> 
  <item>
   <title><![CDATA[IP Entegrasyonu : .NET kullanarak web API &#351;ablonu...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1369&amp;PID=3083#3083</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=371">Melih</a><br /><strong>Konu:</strong> 1369<br /><strong>Gönderim Zamanı:</strong> 19&nbsp;Şubat&nbsp;2026 Saat 10:17<br /><br />.NET kullanarak web API şablonu oluşturup controller'a endpoint kodunu, Clomosy'e de diğer kodu ekleyerek API entegrasyonunu test edebilirsin.<br><br><div>&nbsp; &nbsp; &#091;HttpGet("merhaba")&#093;</div><div>&nbsp; &nbsp; public IActionResult GetMessage()</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; return Ok(new { mesaj = ".NET'ten Clomosy'e merhaba", saat = DateTime.Now.ToShortTimeString() });</div><div>&nbsp; &nbsp; }</div><div><br></div><div>------------------------------------------------------------------------------------</div><div><br></div><div><div>var</div><div>&nbsp; MainForm: TclForm;</div><div>&nbsp; RestClient: TclRest;</div><div>&nbsp; btnGet: TclButton;</div><div><br></div><div>// İstek tamamlandığında çalışacak olan prosedür</div><div>void CompletedProc;</div><div>var</div><div>&nbsp; temizMesaj, suAnkiSaat: String;</div><div>{</div><div>&nbsp; temizMesaj = Clomosy.CLParseJSON(RestClient.Response, 'mesaj');</div><div>&nbsp; suAnkiSaat = Clomosy.CLParseJSON(RestClient.Response, 'saat');</div><div>&nbsp;&nbsp;</div><div>&nbsp; ShowMessage('Mesaj: ' + temizMesaj + #13 + 'Geliş Saati: ' + suAnkiSaat);</div><div>&nbsp;&nbsp;</div><div>&nbsp; RestClient.Free;</div><div>}</div><div><br></div><div>void SendTestRequest;</div><div>{</div><div>&nbsp; RestClient = TclRest.Create;</div><div>&nbsp; try</div><div>&nbsp; &nbsp; RestClient.BaseURL = 'http://localhost:5007/api/Test/merhaba'; // Base URL tanımı</div><div>&nbsp; &nbsp; RestClient.Method = rmGET; // Method tipi</div><div>&nbsp; &nbsp; RestClient.Accept = 'application/json'; // Beklenen veri tipi</div><div>&nbsp; &nbsp; RestClient.OnCompleted = 'CompletedProc';</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; RestClient.ExecuteAsync;</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Hata oluştu: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div><br></div><div>{</div><div>&nbsp; MainForm = TclForm.Create(Self);</div><div>&nbsp;&nbsp;</div><div>&nbsp; btnGet = MainForm.AddNewButton(MainForm, 'btnGet', 'API Verisini Getir');</div><div>&nbsp; btnGet.Align = alCenter;</div><div>&nbsp;&nbsp;</div><div>&nbsp; MainForm.AddNewEvent(btnGet, tbeOnClick, 'SendTestRequest');</div><div>&nbsp;&nbsp;</div><div>&nbsp; MainForm.Run;</div><div>}<br><br>http://localhost:5007/ -- Bu URL sende farklı olabilir .NET projende Properties-&gt;launchSettings.json'ın içerisinde bulunan&nbsp;"applicationUrl" satırından kontrol edebilirsin.</div></div>]]>
   </description>
   <pubDate>Thu, 19 Feb 2026 10:17:26 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1369&amp;PID=3083#3083</guid>
  </item> 
  <item>
   <title><![CDATA[IP Entegrasyonu :   Nevra Nur Yazd&#305;:Clomosyde IP...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1369&amp;PID=3082#3082</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=372">Nevra Nur</a><br /><strong>Konu:</strong> 1369<br /><strong>Gönderim Zamanı:</strong> 19&nbsp;Şubat&nbsp;2026 Saat 10:02<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Orjinalini yazan: Nevra Nur" alt="Orjinalini yazan: Nevra Nur" style="vertical-align: text-bottom;" /> <strong>Nevra Nur Yazdı:</strong><br /><br />Clomosyde IP entegrasyonunu nasıl sağlarım?<a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015"</a> integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{"version":"2024.11.0","token":"439455f3e46c40b98dbd42a2f1a954d8","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}" crossorigin="anonymous"&gt;</td></tr></table>< defer="" ="https://static.cloudflareinsights.com/beac&#111;n.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28&#111;n72PdrCzSjY4U6VaAw1EQ==" -cf-beac&#111;n="&quot;versi&#111;n&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;_timing&quot;:&quot;name&quot;:&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true,&quot;locati&#111;n_startswith&quot;:null" crossorigin="an&#111;nymous"><div>Düzenleme:API Entegrasyonunu nasıl sağlarım?</div>]]>
   </description>
   <pubDate>Thu, 19 Feb 2026 10:02:43 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1369&amp;PID=3082#3082</guid>
  </item> 
  <item>
   <title><![CDATA[IP Entegrasyonu : Clomosyde IP entegrasyonunu nas&#305;l...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1369&amp;PID=3081#3081</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=372">Nevra Nur</a><br /><strong>Konu:</strong> 1369<br /><strong>Gönderim Zamanı:</strong> 19&nbsp;Şubat&nbsp;2026 Saat 09:53<br /><br />Clomosyde IP entegrasyonunu nasıl sağlarım?<a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015"</a> integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Thu, 19 Feb 2026 09:53:02 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1369&amp;PID=3081#3081</guid>
  </item> 
 </channel>
</rss>