Tagged Questions
The nsstream tag has no wiki summary.
34
votes
9answers
40k views
Objective-C: Reading a file line by line
What is the appropriate way of dealing with large text files in Objective-C? Let's say I need to read each line separately and want to treat each line as an NSString. What is the most efficient way of ...
5
votes
2answers
327 views
NSStreams Crashing Program!
All,
I've run it down to this point by commenting, breakpoints, etc. The program crashes at the marked code.
-(void) initNetworkCommunication
{
CFReadStreamRef readStream;
CFWriteStreamRef ...
3
votes
2answers
285 views
Locking iPhone disconnects sockets on iOS 5 only
I'm working on a socket based client-server app.
When a user running any iDevice on iOS 4, 4.2.1, 4.3.2, etc clicks the lock button while connected to the server, the connection remains alive.
...
3
votes
1answer
223 views
how to call NSStream Synchronously
How to call NSStream synchronously to get the results??
Presently I am getting a async call back in one of its delegate methods
`(void)stream:(NSStream *)theStream ...
3
votes
1answer
309 views
Add SSL to iOS Application Sync
I'm syncing my Mac application with my iPhone application using NSStream and am trying to encrypt the communication with SSL. I've tried to run CFReadStreamSetProperty(readStream, ...
3
votes
1answer
282 views
Bonjour in the Background?
I noticed that Pasteboard, a clipboard app for iOS, can run Bonjour service in the background. I've no idea how they implement that, so I searched on the Internet and then found that it plays a silent ...
3
votes
1answer
913 views
NSStream SSL on used socket
I am writing an application that uses NSStream's SSL functions on the iphone. I know that SSL is working because I can directly connect servers using SSL.
I have encountered a problem where protocols ...
2
votes
1answer
34 views
How should you handle the possibility of an NSStream blockage?
Per Apple’s “Polling Versus Run-Loop Scheduling”:
[hasSpace/BytesAvailable] can mean that there is available bytes or space or that the only way to find out is to attempt a read or a write ...
2
votes
2answers
179 views
Objective-C: NSInputStream and NSOutputStream for testing purposes
I have an class in my application that is initialized with an NSInputStream. For testing purposes i want to write data on an NSOutputStream which then is received by that input stream.
This should ...
2
votes
1answer
463 views
Stream to Get Data - NSInputStream
All,
I have a server that has a tcp socket stream for communication. I need to get to that stream and read the initial data that it needs to send me.
My current code is as follows. To be honest, ...
2
votes
1answer
249 views
How to send integer through NSOutputStream?
So I'm making an iOS app that constantly sends and array of points through NSStreams, but because sometimes the sender writes two arrays before the receiver receives one, I decided to first write the ...
2
votes
0answers
192 views
Unable to receive data sent using NSStream objects
In my app I doing something very similar to what is done in the WiTap project. I use Bonjour to discover peers and then send data over the socket to perform an initial handshake.
I'm able to see the ...
2
votes
0answers
204 views
NSStream Response Time
My current requirement is to send some command to a set of ip addresses on some particular port, and as per the response, detect devices(say for example detecting a wifi printer on the network by ...
2
votes
0answers
399 views
Bonjour NSStreamEventHasBytesAvailable event speed (enabled WiFi and Bluetooth both)
I'm develpoing a network app using Bonjour service on iPhone devices.
My problem is that NSStreamEventHasBytesAvailable event speed is slow when i enable WiFi and Bluetooth both on my devices.
But ...
2
votes
1answer
672 views
NSURLRequest with HTTPBody input stream: Stream sends event before being opened
I want to send a large amount of data to a server using NSURLConnection (and NSURLRequest). For this I create a bound pair of NSStreams (using CFStreamCreateBoundPair(...)). Then I pass the input ...
2
votes
2answers
299 views
NSStream hangs on close
I have an NSInputStream and an NSOutputStream in an iphone app that are connected to a server. I am able to read and write data to the sockets without issue. The problem is that I have a disconnect ...
2
votes
1answer
862 views
Streaming JPEGs, detect end of JPEG
I have created a java server, which takes screenshots, resizes them, and sends them over TCP/IP to my iPhone application. The application then uses NSInputStream to collect the incoming image data, ...
1
vote
1answer
132 views
dispatch_semaphore_wait stops ALL the threads in iPhone APP
I am using dispatch_semaphore_wait to stop my current thread but it looks like it stops all my threads.
Code:
SampleReader *reader = [[SampleReader alloc] initWithHostname:hostname ...
1
vote
3answers
82 views
How can I build/install/run a server program to communicate with the iPhone?
I'd like to play with the idea of creating a server program that communicates with an iPhone app over socket connections. I've found several guides within Apple's documentation for client side ...
1
vote
2answers
228 views
Simple Iphone Client Connection to Server
Thanks in advance those who view my question. i am new to programming and also new to Objective-c programming, i am creating a simple client that will connect to a daytime server and request what time ...
1
vote
1answer
110 views
Keep Port Open - iPhone
I have two servers (home and remote) and the program on the iPhone. The iPhone needs to keep a port open until the entire process is complete, otherwise the whole system will fail.
So, the iPhone ...
1
vote
0answers
53 views
file stream function object c that has a pointer option
Hey guys I am wondering what options apple have given us with regards to file streams that have an index parameter, so that when the types in a number that represents a line position in the file the ...
1
vote
0answers
370 views
iOS NSStream connection seems to pause
I'm trying to send data between two iOS devices using example code from http://code.google.com/p/iphonebits/source/browse/trunk/src/TicTacToeNew/
The client connects well, and data is transferred ...
1
vote
0answers
393 views
NSStream Released while reading in, “EXC_BAD_ACCESS” iPhone SDK
I have a view controller that is an NSStreamDelegate, I have a problem when the view is popped from the navigation controller while something is being streamed I get a "EXC_BAD_ACCESS" error. I have ...
1
vote
1answer
474 views
Buffering NSOutputStream used as NSInputStream?
I have this consumer class that takes an NSInputStream as argument which will be processed async, and I want to push data that comes from a producer class that requires that it has an NSOutputStream ...
1
vote
1answer
421 views
how to disable Nagle algorithm on TCP connection on iPhone
I'm building a socket , using
CFStreamCreatePairWithSocketToHost(kCFAllocatorDefault,
(CFStringRef) yourHostAsNSString,
...
1
vote
1answer
940 views
Recording Audio on iPhone and Sending Over Network with NSOutputStream
I am writing an iPhone application that needs to record audio from the built-in microphone and then send that audio data to a server for processing.
The application uses a socket connection to ...
1
vote
1answer
887 views
Problem with NSStream SSL Connection
I am using NSStream with SSL property for socket connection. It works fine when I use the local IP address such as 192.168.1.77. But if I use any server like www.xyz.com (it has SecurityLevelTLSv1), ...
1
vote
2answers
6k views
NSStream, UTF8String & NSString… Messy Conversion
I am constructing a data packet to be sent over NSStream to a server. I am trying to seperate two pieces of data with the a '§' (ascii code 167). This is the way the server is built, so I need to try ...
0
votes
0answers
11 views
How to read data from NSInputStream directly via UIWebView?
UIWebView provide ability to display content from NSData.
Is it possible to use NSStream instead of NSData as the source for content?
0
votes
2answers
68 views
Can someone explain this comic to me? (NSString vs NSStream) [closed]
A colleague that doesn't have a lot of Objective-C experience asked about this comic, and I'm not able to see the 'joke'. I'm far from an Objective-C expert (particularly in terms of optimisation), ...
0
votes
1answer
36 views
Prevent stops application with NSStream in polling mode
I have implemented a client-server transferring from Windows desktop application to iPhone App. I transfer data using NSStream in polling mode (synchronous).
CFReadStreamRef readStream;
...
0
votes
0answers
19 views
Posting the data to non Http server
I need to create a secure connection to a server, and exchange some POST data,does anyone know a good tutorial that would help me ## Heading ##
currently i am using this code....
NSString* val ...
0
votes
1answer
64 views
NSInputStream read returns unsigned integer maximum value when bytes available
I try to read and write data from/to Socket with NSStream. Here is my code for connect :
- (void)connect
{
[NSStream getStreamsToHostNamed:APIC_HOST_ADDR
...
0
votes
0answers
69 views
iPhone - Peer to Peer connection over the internet
I am building an app that uses a async socket connection with a web server.
For sending large amounts of data I would like to connect two iPhones into a Peer to Peer connection using an async socket. ...
0
votes
0answers
75 views
NSStream over peer-to-peer for iPhone
I have to build an app which sends and receives data simultaneously with the help of NSStream for a peer-to-peer connection between two iPhones. I went through the documentation on NSStream given by ...
0
votes
0answers
43 views
NSStream seems to some how truncate data
I am pulling my hair out over this. I am sending a few pieces of data to the server, so i put it in the buffer, and then send the buffer. Everything seems fine, but on the server, the string is ...
0
votes
1answer
79 views
NSStream close in background
Im developing a navigation app that using NSStream to manage a TCP connection with my server. Every time the app gets new coordinates it sends it to the server.
The problem is when my app goes to ...
0
votes
0answers
192 views
iPhone - Can I use NSInputStream and NSOutputStream at the same time?
I'm dealing with NSStream Class to improve Network Performance.
I created NSInputStream and NSOutputStream.
And I set two delegates to each NSStream object.
e.g) I set delegate A object for ...
0
votes
0answers
50 views
Multiple NSStream connections between peers
Is there a way to create multiple NSStream connections between 2 peers discovered using Bonjour? I want to be able to send 2 different kinds of data streams on the 2 different connections.
Currently ...
0
votes
0answers
36 views
How to Edit Date Fetched From Server in Objective-c
i can connect to a daytime server with my code and i want to get current date and time and print it to the screen
i have following code which, i tried to edit received data from server but couldnt ...
0
votes
1answer
99 views
accessing low level attributes of a NSStream
I have a Keyspan PCI to RS-422 adapter that I'm using to connect old serial devices to a Macintosh. I would like to use NSInputStream and NSOutputStream to read and write so that I can take advantage ...
0
votes
1answer
86 views
How to send simple data (like a string) between iPhone and Mac using NSStream
I've been googling around to try and find a tutorial or some info on how to establish a connection between my Mac and iPhone and send a simple piece of data such as a string between them. All of the ...
0
votes
1answer
281 views
Question about NSOutputStream write
I have one basic question,
While working with NSOutputStream, should we wait for NSStreamEventHasSpaceAvailable to send the packet, so we can call , [NSOutputStream write] as and when its needed,
I ...
0
votes
1answer
238 views
Socket Programming in Mac / Cocoa
In my application, we need to have socket communication with the server, and through googling and Apple documentation, came across following
1 -- NSStream Class
2 -- CFSocket
I am bit confused, ...
0
votes
1answer
223 views
Cocoa Socket Programming NSInputStream read returns 0
In my App, have setup the stream like this,
(void)connectStream:(NSString *)pHostName PortNo:(int)inPortNo HasInput:(bool)bInput HasOutput:(bool)bOutput{
NSHost *host = [NSHost ...
0
votes
2answers
62 views
Can't Connect Error Message - iPhone
I have an iPhone application that relies heavily on communicating with an external server. How can I throw an error message when the connection to the server cannot be made or the connection is lost? ...
0
votes
1answer
216 views
NSOutputStream flushing
I'm working on an iPhone App and wanted to use:
CFStreamCreatePairWithSocketToHost(NULL, url, port, &serverReadStream, &serverWriteStream);
And after that use the:
[serverWriteStream ...
0
votes
1answer
398 views
how to use NSStream class to create tcp connection iPhone
I need to send a string to a server on the same network with the iPad. when reading This I found out that maybe I need to use the + getStreamsToHost:port:inputStream:outputStream: method but I am not ...
0
votes
0answers
233 views
NSInputStream or NSData?
In my app I am reading in a large amount of data from a file and parsing it into custom objects. At the moment I am using many many NSData calls such as:
[data getBytes:&cbuffer ...