NSStream is an abstract class for objects representing streams.
0
votes
1answer
27 views
How to reconnect when a NSStream loses connection?
I am building an app that monitors the position of the user, and sends it via a socket to our server.
On app startup the app connects to the socket on our server, and are we able to send data to the ...
0
votes
0answers
27 views
SSL and NSStream
I tried to use SSL in NSStream over CFSocket connection. So I write this code:
[self.input setProperty:NSStreamSocketSecurityLevelTLSv1 forKey:NSStreamSocketSecurityLevelKey];
[self.output ...
1
vote
1answer
13 views
CFStreamCreateBoundPair streams lose data with small buffer size
I am attempting to create a streaming html parser with libxml2 in Objective-C. I have a NSURLConnection that downloads the data, and I have created in NSInputStream and NSOutputstream with ...
0
votes
1answer
35 views
NSStream closing and opening error
I'm working with NSStream to send and receive single characters over a network connection.
I instantiate the streams both for reading and for writing using CFStreamCreatePairWithSocketToCFHost(...).
...
0
votes
0answers
31 views
Subclassing NSInputStream to upload a particular portion of data from a local filepath
I am having a 100 MB of data in a single file. This 100 mb data will be divided virtually. i.e., I need to create an NSInputStream which points to different 5MB chunks.
This is possible by creating ...
0
votes
1answer
43 views
Memory Leaks in CFStreamCreatePairWithSocketToHost iOS
I use NSInputstream & NSOutputstream to setup a connection and send data. My stream object has a function to open and close the stream. I use the following code:
@interface Stream()
{
...
0
votes
0answers
23 views
How to look for an UDP packet in iOS?
i am working on an application that needs to discover a device on a network. The devices sends a short udp broadcast packet on a specific port every 5 seconds.
I need to listen to a UDP broadcast ...
1
vote
0answers
60 views
How to connect iphone to a php based socket server?
Hi i want to send some data between ios devices so i am using socket programming . I have created a server on php side with this tutorial
1) ...
0
votes
0answers
16 views
NSSreamstatus if i am getting data or not
I have NSInputStream , i want to check if i am getting data from other end , i read the NSStreamStatus , i cam across that "NSStreamStatusReading" is use to check the read data .
I tried to check ...
0
votes
1answer
38 views
SSL in stream socket connection
I'm working in iOS application.
I'm Trying to connect to https server with NSStream connection.
With NSURLConnection, this work fine and i can trusted the challenge like this :
...
0
votes
0answers
72 views
Manually cancel download
I've a problem with canceling the download using NSStreams. When I start the download and it succeeds, I can start it again but when I close the stream while downloading I have to restart the app to ...
11
votes
3answers
381 views
How to Transfer Large Files over wifi in iOS
I downloaded WiTap Code From Apple's website. Its for transferring data over local wifi network. I am working in a project to interact as client - server architecture. I am sending NSData from client ...
1
vote
2answers
244 views
NSStream TCP Keep-alive iOS
I have written this code to setup a stream with a server:
-(void)streamOpenWithIp:(NSString *)ip withPortNumber:(int)portNumber;
{
CFReadStreamRef readStream;
CFWriteStreamRef ...
0
votes
1answer
117 views
Opening socket connection in background and allowing different controllers to read and write from the stream in Objective-C
First of all - I am newbie at iOS 6 programming. I am trying to open a socket connection to remote server when application starts, and run it in some background thread. I have a class - ...
3
votes
2answers
171 views
Sending UIImage over NSOutputStream [closed]
I'm trying to send an image that user takes to the server. I get the JPEG representation, append that to the string needed to upload the photo, and then send the data through NSOutputStream. However, ...
1
vote
1answer
153 views
Objective C NSStream connection always refused
I'm trying to setup some NSInput/Output streams in Cocoa and cocoa touch. I'm attempting to create a connection between my Mac and my iPod over Wifi. No matter what, though, I always get connection ...
0
votes
0answers
51 views
How to record incoming images as a video in iphone sdk?
I want to create an application where i send images and sound bytes (captured by avcapturesession) via NSStream to other iOS device . On the other device I am showing these image and playing sound ...
2
votes
0answers
142 views
(updated) Enqueueing into NSInputStream?
I would like to add three "parts" to an NSInputStream: an NSString, an output from another stream and then another NSString. The idea is the following:
The first and last NSStrings represent the ...
0
votes
1answer
41 views
How many events does multiple writes to NSOutputStream result in?
Do two writes to the NSOutputStream result in two NSStreamEventHasBytesAvailable (where I handle the data read) in stream:handleEvent:?
1
vote
2answers
89 views
NSstream write encoding issues
Im trying to send a string using NSoutputstream , however i cant seem to get the encoding right , using dataWithContentsOfURL works
im using a nodejs TCP server with actionHero library.
it works ...
0
votes
0answers
49 views
Make post request to stream w objective c
I am looking to make a post request with streaming, I can make the get request but my requesting url is too long for a get. I have tried looking everywhere for some kind of solution using ...
2
votes
0answers
73 views
NSOuputStream/NSInputStream Correlation
What is the best way to correlation a request/response being sent/received over NSOutputStream/NSInputStream?
Essentially I am communicating with a Bluetooth device and have NSStreams scheduled for ...
0
votes
1answer
227 views
Socket Programming in iOS, how to receive and send data the same time
I hope someone can help me out. I have two applications (one server, one client). The client sends an image to the server via a socket connection.
Everything works fine but I have one question.
...
0
votes
0answers
60 views
How can I tell what was successfully written before a socket connection closes?
I'm working on a network service and would like to be able to recover from dropped connections by caching the output I was trying to send so I can resend it when the client reconnects to the service. ...
0
votes
0answers
45 views
Audio becomes distorted when sending through ipad to other device vis NSStream
Hello i am trying to record audio from one device and send to another with NSStream, I have created audiounit services that collects the data and send to other device through NSStream . The audio data ...
0
votes
1answer
255 views
iOS: sending .jpg image as base64 to tcp server
This one is going to kill me. I'm so close to getting this done except for this one stupid problem. And I am not sure I will be able to adequately describe the problem, but I'll try.
My enterprise ...
0
votes
1answer
131 views
NSInputStream not opening stream/ How to post data when setting up stream
What I am trying to do: I have a url request (post) where I send some information to a api server which then starts streaming data in bytes to me.
1) How do I post data when trying to set up a stream ...
0
votes
0answers
133 views
NSStreamEventHasSpaceAvailable only handled once
I'm using NSStream on IPhone to connect via TCP to another device.
It works quite good, but I can't write to the outputstream in NSStreamEventHasSpaceAvailable as recommended.
I tryed to fill a ...
0
votes
0answers
121 views
socket connection in iOS and background tasks
I am designing an app that needs to exchange data in real time over network and I am planning to use socket connection to achieve this. To keep the socket connection open in background I plan to ...
0
votes
2answers
144 views
Transfer Multiple Images via NSInputStream/NSOutputStream
I have two NSInputStream and NSOutputStream connected to each other via network. I want to transfer core data objects and associated images from one device to other device. I have successfully ...
0
votes
0answers
130 views
NSInputStream and NSOutputStream problems
I have two NSInputStream and NSOutputStream between devices that are connected to each other via network. When I write something in output stream, the data is written until the ...
1
vote
1answer
122 views
Sending C++ Protocol Buffer Messages from iOS
In a previous Stack Overflow question, people were super helpful in showing me the error of my ways while building my Akka socket server and I actually now have an Akka socket client that can send ...
0
votes
0answers
122 views
How to stream video capture between devices like video chat in iphone sdk?
Hi i want to make an app which does video calling between iOS devices .I have studied about opentok and idoubs but i want to do it myself from starting. I searched a lot but could not find any ...
0
votes
0answers
118 views
Multiple NSStream input/output sockets on main thread
I'm not really experienced with network programming and have limited experience with multi-threaded programming. But, I've read a bunch of tutorials and watched some WWDC videos on network and ...
1
vote
0answers
80 views
What’s the best way to handle threading with multiple NSStreams?
Sorry, but I have to give a little intro first.
I have a class called MJPEGStreamer. It uses NSOutputStream and NSInputStream to stream MJPEG data. I will have up to 16 of these classes running ...
0
votes
0answers
90 views
NSOutputStream start write data with buffer offset
I'm trying to open a NSOutputStream to write data with a offset value
ftpStream = CFWriteStreamCreateWithFTPURL(NULL, (__bridge CFURLRef) uploadUrl);
self.writeStream = (__bridge NSOutputStream ...
0
votes
1answer
149 views
NSStream vs. NSURLConnection simultaneous open TCP
I still need an understanding of these things, anyway, does NSStream or NSURLConnection support multiple open TCP, say for example,
www.xyz.com port:4040
www.xyz.com port:5050
www.xyz.com port:5150
...
2
votes
2answers
102 views
Warning:Comparison of constant 8 with expression of type XXXX is always false
I used ASIHTTPRequest in my project,but in the file ASIDataCompressor.m line 190:
if ([inputStream streamStatus] == NSStreamEventErrorOccurred) {
if (err) {
*err = [NSError ...
2
votes
1answer
84 views
zlib decompression method with unknown object types
I am on a quest to figure out how to decompress some NSData thats been compressed using Zlib. I have recently had some help here, I had added the second method into the my class where I need to use ...
1
vote
1answer
446 views
iOS - Persistent wi-fi timing out after 30mins when Cellular connection is active
The app I am working on needs wifi to be constantly on as I sends/receives audio using wifi network. It then plays out the audio. The needs to do this continuously until the user chooses to stop it.
...
0
votes
1answer
64 views
Which method is called when socket is disconncted
Can anybody know which method is called when socket is automatically disconneted in NSStreamDelegate ? Because when socket is disconnected then its will again called - (void)stream:(NSStream ...
0
votes
0answers
97 views
which event occurs when data is written nsstreamdelegate socket connection?
hi I am doing socket connection
below is my code,
- (void) initNetworkCommunication :(NSString*)strGateWay{
CFReadStreamRef readStream;
CFWriteStreamRef writeStream;
...
0
votes
0answers
418 views
ios socket programming - NSStream not working
I am using a device called a WiFly that has ip address:169.254.1.1 and port 2000. I am trying to connect to this device via an iOS application. I use the following code to connect:
CFReadStreamRef ...
1
vote
0answers
510 views
iOS socket programming - receiving nsstream event 4
I am using a device called a WiFly that has ip address:169.254.1.1 and port 2000. I am trying to connect to this device via an iOS application. I use the following code to connect:
CFReadStreamRef ...
1
vote
0answers
50 views
how to make two tcp connectinos in ios app
I am working on an ios app that needs to make tcp connections to two servers with different addresses. Does NSStream can make it, how to do that? shuold I put one communication on a separate thread?
-1
votes
1answer
133 views
Send messages from server to iOS app [closed]
I am very new to web technologies, but have been developing for iphone for 3 years. I need to send a message from a server I rent to my app. Not a "push notification" for the user, but for the app ...
3
votes
1answer
202 views
How to configure CFStream (or NSStream) for SSL handshake?
I'm using CFStream/NSStream to make http connections.
I want to be able to detect that a SSL handshake fails for three cases:
case A: server is not trusted
case B: server is trusted but asks a ...
1
vote
0answers
95 views
ASIHTTP Request: how to handle SSL certificate
I'm using ASIHTTP in my project, and I need to support SSL connections with or without client certificate.
From my view, four cases are possible during SSL handshake:
case A: server presents a ...
0
votes
0answers
162 views
Xcode clear NSStream
I have setup a Read and Write Stream between two devices
How can you send an empty stream signal without sending a close ?
I'm trying a client / server NSStream link
...
0
votes
1answer
396 views
performSelector:OnThread:waitUntilDone not executing the selector all the time
I have an app where the network activity is done in its separate thread (and the network thread continuously gets data from the server and updates the display - the display calls are made back on the ...


