Tagged Questions

Network framework in the core services.

learn more… | top users | synonyms

7
votes
1answer
353 views

A list of linking CFNetwork version numbers to the version of iOS

I'm wondering if anyone has a list of linking CFNetwork version numbers to the version of iOS? I've found the list for OSX CFNetwork versions but it's quite old.
6
votes
1answer
2k views

CFNetwork and Bonjour integration for iPhone to Mac integration

I want to use CFNetwork and Bonjour in conjunction to be able to have communications between my iPhone app and a Mac app. The app on the iPhone would have one button. Then on the Mac app, there will ...
4
votes
1answer
130 views

Learn CoreFoundation

I'd like to know how some developers achieve amazing functionality with core technologies. My education in programming was based only in high level programming languages like c# and java and I find ...
3
votes
1answer
312 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
424 views

detect if a particular wifi network is within reach

I'm working on an app for a local exhibition and some of the content is restricted to only being available when being at the location. I wonder how one can detect presence of a particular ...
2
votes
2answers
34 views

What is the Difference between CFUrl and NSUrl

I would like to send a simple HTTP to a web server in Objective-C. From what i've seen, the most common way is to use the NSURLRequest with NSUrl.... But i have also stumbled upon the CFNetwork ...
2
votes
2answers
1k views

SSDP on the iPhone

I need to be able to send out a UDP message and also receive one in order to discover SSDP devices on the network from the iPhone. I know that I need to send the packet to the multicast address and ...
1
vote
1answer
69 views

NSInputStream in background thread doesn't call NSStreamEventHasBytesAvailable

I am working on streaming part of application. I needed to put streaming process on the background thread that it uses NSinputstream and NSOutputstream . then I send http commands over this streaming ...
1
vote
4answers
78 views

Network Activity indicator should be always active?

I am using network activity indicator in an iphone project . the problem is even when there is no send and receive in my app the indicator is spinning and only stops when network is disconnected . ...
1
vote
1answer
29 views

Does CFWriteStreamClose() Flush?

Suppose you have a CFWriteStream that you call CFWriteStreamClose() on immediately after calling CFWriteStreamWrite(). Both calls are made on the same thread. Will the close operation guarantee that ...
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
1answer
141 views

Confusion about CFNetwork, CFReadStreamOpen, and CFRunLoopRun

That sinking feeling when you realize you have no idea what's going on... I've been using this code in my network code for almost two years without problems. if (!CFReadStreamOpen(myReadStream)) { ...
1
vote
2answers
213 views

Is there a way to delete a file/folder from a ftp server with CFNetwork?

I searched the web for a solution, but it seems that there is no easy one. Now, there must be a way of course, even if that means that I need to send the RMDIR command to the ftp myself. However my ...
1
vote
2answers
284 views

How do i know if my client iOS app is connected to the server?

I press the button to connect to the server (TCP), but i don't know whether it connected or not.. Here is that part of the code: [self connectToServerUsingCFStream:msg portNo:50000]; ...
1
vote
2answers
983 views

How to retrieve the ssl server certificate in iOS?

I'd like to be able to get the ssl certificate (+chain if possible) to be able to display the distinguished name and to determine if it is an EV certificate. (detecting EV certs via certificate ...
1
vote
2answers
605 views

kCFStreamPropertySocketSecurityLevel to kCFStreamSocketSecurityLevelNegotiatedSSL causes OSStatus errSSLXCertChainInvalid (-9807) connecting to Java

I have a simple Java server that uses a self-signed cert to identify itself that I created with keytool: System.setProperty("javax.net.ssl.keyStore", "../../pki/z-keystore.jks"); ...
1
vote
2answers
503 views

What does CFNetwork error -4 in domain CFStreamErrorHTTP mean?

A customer is reporting a connection failure with a strange profile: it apparently only fails for the very first URL request via CFNetwork since the app has launched. The error code apparently being ...
1
vote
1answer
2k views

how to add cfnetwork & other frameworks to your project for asynchronous transmission - iphone

I am trying to add facility of asynchronous transmission in my project. I want following in my application. A table view should load data through web service ( I can do ) Each cell must have an ...
1
vote
1answer
2k views

iPhone NSURLConnection through Proxy+Auth

I am using NSURLConnection to make connections to a server, through a proxy that requires authentication this fails. The proxy settings are set under the WiFi, but the connection still fails. I ...
1
vote
1answer
293 views

How do I 'get' a SSLContextRef from CFNetworks?

I am attempting to look at the SSLContext in a CFReadStream. secureTransport has lots of useful methods for examining a SSLContextRef like SSLGetEnabledCiphers, but I don't have a good way to get a ...
0
votes
1answer
59 views

Streaming data to response CFHTTPMessageRef possible?

I know it is possible to stream data to a CFHTTPMessageRef that is a request object, this can be achieved by using the method CFReadStreamCreateForHTTPRequest. Is it possible to do the same with a ...
0
votes
0answers
122 views

iphone-connecting to https url with a self signed certificate using CFNetwork API

Briefly my problem is i have tried to connect to https url using NSURLConnection class and it s delegate methods. I was getting "An SSL Error has occured and a secure connection to the server could ...
0
votes
1answer
70 views

Bluetooth,Wifi with Bonjour Network

If i am publishing a NSNetService in (Bonjour based NetWork) Iphone Application,which net Work will use in my application
0
votes
2answers
43 views

How to tell when a request is done (ASIHTTPRequest)?

How do you tell when a request is finished (using ASIHTTPRequest)? Here is the code I am using: [request setDidFinishSelector:@selector(requestFinished:)]; ... ...
0
votes
0answers
83 views

EXC_BAD_ACCES in didSelectRowAtIndexPath when using ARC

I have a question about CFNetwork. First time I scheduled first CFReadStream into a current runloop and fetched the list of directories of FTP server, it worked fine. After I've represented the list ...
0
votes
0answers
281 views

CFNetwork Persistent Connection (Keep alives)

I am trying to reduce our server overheads by using persistent HTTP connections via the Apple CFNetwork framework. However there is little documentation about it. The only information I could find ...
0
votes
0answers
33 views

Error on _SCDynamicStoreCopyProxies not symbol found

compiling my project i got an error: SYmbol not found to _SCDynamicStoreCopyProxies any ideas?
0
votes
1answer
160 views

Cocoa: Handling 407 http response cfnetwork

I am creating downloader application. I am facing a problem with proxy authentication. I am getting 407 response code i.e proxy authentication required. I have valid proxy authentication details. ...
0
votes
1answer
78 views

WSDL2Objc code crash behind authentication HTTP proxy - Help to understand the crash log

I successfully invoke WS from my App with WSDL2Objc Generated code. I sent my application to colleagues for testing purpose and they reported me that the App crashes whenever try to connect to WS. The ...
0
votes
1answer
77 views

Simple Server/Client with CF Networking cocoa

I've been looking around for something like this for a while, but I can't find anything. I just want an example of a really really basic server/client with CF networking in cocoa.... there's a lot of ...
0
votes
2answers
168 views

I need some tutorials about CFNetwork in iphone

I am developing a stock software,the client will receive the data from the server,so I want to use the CFNetwork. and where can I find the tutorial "getting Started with networking",thank you
0
votes
0answers
75 views

Listening for server push on 3G connections

I have a GPS-related app (3g device) that communicates with a server using NSURLConnection and that's working fine, but there are situations where I need the server to push data to the client devices. ...
0
votes
0answers
122 views

Want info for chatting application in iphone

I am making a chat application for which i got a sample app which can used for local network (i.e it works in same network).The link for that app is below ...
0
votes
1answer
84 views

Sending an image data over a socket, but it receives of some different format when it reaches server

I am create a NSData file from the image and sending over server using socket. CFWriteStreamWrite(myWriteStream, (const UInt8 *)data, [data length]); But the server receives it in different format. ...
0
votes
1answer
363 views

NSURLConnection and bound pair of streams (CFStreamCreateBoundPair or CFStreamCreateBoundPairCompat) not working on iPhone 3G

I'm using SimpleURLConnections example to implement multipart/form-data POST request using bound pair of streams. It works great in Simulator and on iPhone 3GS/iPhone 4. When I try it on iPhone 3G ...
0
votes
0answers
77 views

Releasing a CFStream before it is Closed

Is it required that you wait for a CFReadStream or CFWriteStream to close before CFRelease'ing them? I want to trigger a close operation and then immediately release the stream, however there is the ...
0
votes
1answer
111 views

How can I transform data to image?

i learning CFNetwork , socket, i almost completed. But, I want to use UIImageView, so that receive data from URL, then transform to UIImage , then add UIImageView but i think that it has a problem ...
0
votes
3answers
390 views

iOS how to register selector as a stream event callback?

I want to create a TCP connection between iPhone and PC. So I'm creating two CFStreamRef-s and i want to register my object selector to be called when new bytes are available for reading. ...
0
votes
1answer
384 views

Save audio stream into file with MPMoviePlayerController

I've some trouble with audio streaming using MPMoviePlayerController. I want to know if it's possible to save the data streaming info to a file while MPMoviePlayer is playing that file. Is there a ...
0
votes
1answer
115 views

how to create application which support video call?

i want to create application which support video call using Wi-Fi/3g network connection. i don't have any idea from where i can start. please suggest me somethings. thanks in advance
0
votes
1answer
265 views

Sending iphone's [[UIDevice currentDevice] name] over network

I'm trying to send the device name over a network implemented with CFNetwork. My application will successfully send the NSString over the simulator, but not on an actual device. The class reference ...
0
votes
1answer
513 views

Async CFStream networking with runloop

I am trying to implement async tcp networking with runloop. currently I manage to connect, but when I try to send something I get that -1 bytes have been written - but CFWriteStreamCopyError returns ...
0
votes
1answer
121 views

NSURLConnection closed during HTTP Server Push

I am connecting to an HTTP url using NSURLConnection. I am supposed to get response (more then one data package) after some time intervals, but NSURLConnection ,immediately, become closed. Is there is ...
0
votes
2answers
229 views

Broadcast data bytes through iPhone app

I want to broadcast some data bytes in particular wifi range through my iPhone app...so that every receiver in that particular range will receive that bytes. I am very much new to this concept. Is ...
0
votes
1answer
86 views

Application behaves differently when output is redirected to an NSPipe object?

I have an application which works with sockets and reads / writes data. It uses Foundation framework combined with CFNetwork and stdio. Here is the issue - when it is launched from console (bash ...
0
votes
1answer
535 views

CFNetwork packet read callback not being called (iPhone)

Running on the iPhone simulator, I am listening on a port for packets, but my callback never gets called (and the packets are being sent for sure, checked with wireshark). Simplified code follows: ...
0
votes
1answer
256 views

Why a DataCallBack method listen in the background is not being invoked?

I've been working with CFNetwork to create a client application for iPad, it is a small application, nothing fancy. This is how I create the connection to the server (running in windows). - (void) ...
0
votes
1answer
124 views

Objective-C memory leak in loading remote content

I try to load a plist file from my server. I can think of 2 ways to do that, but for both Instruments says there's huge memory leak : NSData* plistData = [NSData dataWithContentsOfURL:url]; and ...
0
votes
2answers
361 views

CFNetwork still passing CFStreamErrors even though its deprecated?

I'm writing some code that is wrapping up some CFNetwork stuff to do DNS resolution in Objective-C. Everything is fine and it's working, but I have a few questions: The callback function prototype ...
0
votes
1answer
564 views

set network timeout and exception in iPhone

I am developing an iPhone application in which I am loading lots of data from another server via web-services . I want have read somewhere in the apple guides that for network aware applications you ...

1 2