Jump to content

Search the Community

Showing results for 'websocket' in content posted in ICS - Internet Component Suite.


Didn't find what you were looking for? Try searching for:


More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • ICS - Internet Component Suite
  • Delphi Questions and Answers
    • Algorithms, Data Structures and Class Design
    • VCL
    • FMX
    • RTL and Delphi Object Pascal
    • Databases
    • Network, Cloud and Web
    • Windows API
    • Cross-platform
    • Delphi IDE and APIs
    • General Help
    • Delphi Third-Party
  • C++Builder Questions and Answers
    • General Help
  • General Discussions
    • Embarcadero Lounge
    • Tips / Blogs / Tutorials / Videos
    • Job Opportunities / Coder for Hire
    • I made this
  • Software Development
    • Project Planning and -Management
    • Software Testing and Quality Assurance
  • Community
    • Community Management

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Found 63 results

  1. Hi Some protocols require Sec-WebSocket -Protocol header to be set when connecting, I made a patch to allow it in OverbyteIcsWebSocketCli.pas OverbyteIcsWebSocketCli.pas.patch
  2. Angus Robertson

    WSSendBinaryStream usage

    I've added a new event OnWSFramesDone to theWebsocket client, called when the queue of frames has been sent, for flow control when sending a lot of data. Previously, the OnWSFreameSent was called after each frame, but it was not easy to tell if this was the last queued frame. I've onl...
  3. Angus Robertson

    ICS V9.4 announced

    ...The monitoring server has web andWebsocket servers, allowing remote browsers to view the state of all applications being monitored by the server with a continually updated web page. There is also ICS Application Monitor - Remote Manager application that provides remote monitoring of multiple ICS A...
  4. Angus Robertson

    WSSendBinaryStream usage

    ...I gather you are writing aWebsocket client DLL that sends large binary blocks of data to a server, All my testing and the ICS samples are server to client communication, although in theory the code is two-way and similar in client and server. But I simply don't have a way to easily test your requ...
  5. ...Websocket CLIent section, after wsconnect is successful it falls in to this loop. while NOT AbortFlag do begin Application.ProcessMessages; if Application.Terminated then Break; if IcsTestTrgTick64(TrgTimerEnd) then Break;...
  6. ...I'm trying to configure the most simplewebsocket client (with TSslWebSocketCli) and server (with TSslHttpAppSrv) in order to get them communicate with each other locally. Worth noting that I'm a beginner in the internet communication protocol world, this is why I'm trying to get the minimum...
  7. CoeurdeLeon

    Websocket Server

    ...I wish to useWebSockets with ICS Delphi components. I wish to use this in a very large and important system (cannot name it). I am challenged to prototype this because the Overbyte demo OverbyteIcsSslMultiWebServ.dpr has so many features it is impossible to extract a simplewebSocket ser...
  8. Angus Robertson

    Delphi ICS HttpServer +socket

    ...ICS added fullWebsocket server and client support two years ago, and handles the upgrade negotiation process automatically. The main unit is OverbyteIcsWebSocketSrv.pas which contains a derived connection class THttpWSSrvConn that handles theWebsocket protocol....
  9. ...'Upgrade:websocket ' + #13#10 + 'Connection: Upgrade' + #13#10 + 'Sec-WebSocket -Accept: ' +WebSocketAccept , '');//WebSocketAccept is working good with idhttpserver what ever i do i can't make this work a...
  10. ...Your settings are missing awebsocket path or page, just ws://127.0.0.1/ so you are assuming the web server default HTML page is actually aWebsocket request, this was never testing with the ICS web server, perhaps my fault for not expecting anyone to try that. Since you set default pa...
  11. ...So I want to offer aWebsocket API as well, so one SSL/TLS session stays open, with just simple request/response packets sent. But how to adapt the REST HTTP request/response toWebsocket ? My queries are simple URL parameters, ie codelookapi.htm?numhistory=118118....
  12. Angus Robertson

    Websocket Server

    ...But this sample will be a much easier starting point for those developing web orWebsocket servers with ICS. I'm going to copy most of the code into another new ICS sample that needs aWebsocket server. Angus
  13. ...Thewebsocket server is running in the delphi application as are the React web applications. When one of the React applications attempts to connect with thewebsocket server it sends a json frame with some information needed for authentication. I am able to extra...
  14. Angus Robertson

    Retrieve Json frame

    If you really mean thewebsocket protocol and not HTTP, there are no header or bodies or protocol, once awebsocket is open there is simply a two way TCP stream, and you can send what you like. That stream arrives at the server in the ClientWSFrameRcvdEvent as a string packet and TWebSo...
  15. Angus Robertson

    Websocket Server

    The OverbyteIcsSslMultiWebServ sample serves both web andwebsocket pages, since allwebsocket requests start with an HTTP request to port 80/443. But you can remove all the code relating to creating web pages from the sample, the OverbyteIcsSslMultiWebxx units, etc, leaving just the def...
  16. Angus Using TSslWebSocketCli, after setting CertifyMethod to CertVerNone, verifypeer no longer gets executed. But theWebsocket connects and is ready. If it completely bypasses all internal chain verification AND does not fire verifypeer (which it seems to behave the way you described), how d...
  17. Angus Robertson

    ISC 9.1 as a library events not firing

    ...If you are using the realWebSocket protocol, it exchanges frames between client and server, and vice versa, and there are several methods WSSendText, WSSendBinary, WSSendFrame, etc, with the OnWSFrameRcvd event being received frames, which you need to check the data type and then proc...
  18. Angus Robertson

    ISC 9.1 as a library events not firing

    The purpose of theWebsocket is to exchange data with a server, so it opens a connection and does a GET to the path you specify, just as HTTP does, if you don't want that it's notWebsockets . I suggest you try using the OverbyteIcsHttpRestTst sample I mentioned, if that does not work you...
  19. ...YesWebsocket as a protocol. I understand that. I was originally using OverByteSimpleSslCli as an example reference and it uses TSslWSocket and TSslContext and it seemed like a great starting point. So I just now switched to TSslWebSocketCli and can do a little refactoring. But in regards to...
  20. Angus Robertson

    ISC 9.1 as a library events not firing

    ...Websocket is a specific protocol based on HTTP. TWSocket is the name of the base ICS component for all low level socket operations, and does not handle high level protocols likeWebsocket . ICS has a TSslWebSocketCli component, there is a simple function doWebSocketClick in the Overbyte...
  21. I want to implement a DelphiWebSocket server to send binary data (Stream and byte array) to javascript client. This could be done after receive a client message OR EVEN as unidirectional message so no client message need to be received. Below the pseudocode. var WSServer: TWSocketServer;...
  22. Angus Robertson

    ICS V9.1 announced

    ...Websocket client, TCP socket traffic, and sending email using Mail Queue. Angus
  23. ...unit: OverbyteIcsWebSocketCli.pas position: line 1494 ServerKey := Base64Encode(String(SHA1ofStr(s))); ------------ test: x3JJHMbDL1EzLkh9GBhXDw==258EAFA5-E914-47DA-95CA-C5AB0DC85B11 expect: HSmrc0sMlYUkAGmm5OPpG2HaGWk= output:HSmrc0sMlYUkAGmm5OPpG2...
  24. ThisWebsocket client problem should be fixed in SVN and the overnight zip, assuming it was an ANSI/Unicode casting problem with non-English character set conversions, which I'm unable to reproduce. It did not affectWebsocket server which had no casting, and yet always worked against our client....
  25. Angus Robertson

    Designing aWebsocket API

    The newWebsocket API is live, when using streamlined requests, it handles about 100 SQL queries a minute from a single thread, although slower if the requests are sent sequentially waiting for a reply. Supporting JSON-RPC 2.0 on the server should not be hard, but does need POST support...
×