WebsocketStompKit icon indicating copy to clipboard operation
WebsocketStompKit copied to clipboard

STOMP over websocket client for iOS

Results 12 WebsocketStompKit issues
Sort by recently updated
recently updated
newest added

I've got compile time error caused by brackets in import `#import ` Fix that.

when i try to use following code i get an error can you please help me out why i got this error. ``` NSURL *websocketUrl = [NSURL URLWithString:@"ws://my-great-server.com/websocket"]; STOMPClient *client...

Hello guys, it's me again! After some recent debugging on the server side, we indirectly found out a slight omission that occurs during initial web socket connection process: 1. After...

Having this issue while using pod file to download this files. Anyone know how to fix this issue? As far as I know when I am using "use_frameworks! " in...

Hello guys, I just made my first connection to websockets using your library! I just wanted to give you a heads up since the app crashes when server sends \n...

Here are the correct code snippets (pull requests follows) ``` NSURL *websocketUrl = [NSURL URLWithString:@"ws://my-great-server.com/websocket"]; STOMPClient *client = [[STOMPClient alloc] initWithURL:websocketUrl webSocketHeaders:nil useHeartbeat:NO]; ``` ``` // connect to the broker...

For testing the STOMPClient was created in a method (not as strong property). When the connected method completed (jetfire) the delegate (STOMPClient) was released/nil.

My server sent a message containing just a newline character in this form: @"\n" and this causes a crash in the `STOMPFrameFromData` method. The error message was: `*** Terminating app...