Jump to content

Search the Community

Showing results for tags 'ipworks'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • uniGUI Public
    • Announcements
    • General
    • Feature Requests
    • Installation
    • Deployment
    • Other Platforms
  • Licensing
    • Licensing
    • Ordering uniGUI
  • Bug Reports
    • Active Reports
    • Closed Reports
    • Old Bug Reports
  • uniGUI Development
    • General Development
    • uniGUI Releases & Roadmaps
    • Utilities
  • Mobile Platform
    • uniGUI Mobile
    • Mobile Browsers
  • Users Area
    • Sample Projects
    • Components and Code Samples
    • Third Party Components
  • Non-English
    • Non-English
  • Miscellaneous
    • Hosting
    • Server Security
    • Jobs

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 1 result

  1. Hi all, Do you have some idea, what could be wrong. Sometimes works, sometimes no. Obviously some interruption happens, instead of result I got 301: Interrupted. After app is complete loaded there is lover possibility to get error. If I put to mainForm.OnCreate then approximately every third call failed. URL call API server, result is XML string to fill ClientDatset. There is no difference if the function is on MainModule or MainForm. Br, marko. function TUniMainModule.getData(url:String;clt:TclientDataset):String; var http:TipwHTTp; begin try clt.Close; http:=TipwHTTp.create(self); http.FollowRedirects:=fralways; http.timeout:=10; http.get(url); clt.xmldata:=http.TransferredData; http.free; result:='OK'; Except on e:Exception do begin Result:='response from API: '+e.Message+', api: '+ http.URL+', Reason: '+http.StatusLine ; end; end; end;
×
×
  • Create New...