Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developing chat application using XMPP framework.I can send and receive the messages but I want transfer a file.I used TURNSocket but did not send a file.

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self)

    {
        NSMutableArray *turnSockets=[NSMutableArray alloc] init];
    }
    return self;
}

    -(void)viewDidLoad
    {
        XMPPJID *jid = [XMPPJID jidWithString:@"venkat.varra@gmail.com/gmail.9D2001A1"];
        TURNSocket *turnSocket = [[TURNSocket alloc] initWithStream:[self xmppStream] toJID:jid];
       [turnSockets addObject:turnSocket];
       [turnSocket startWithDelegate:self delegateQueue:dispatch_get_main_queue()];
    }

    - (void)turnSocket:(TURNSocket *)sender didSucceed:(GCDAsyncSocket *)socket 
    {

        NSData *dataF = [[NSData alloc] initWithContentsOfFile:
                         [[NSBundle mainBundle] pathForResource:@"orange" ofType:@"png"]];

        [socket writeData:dataF withTimeout:60.0f tag:0];
    }
    - (void)turnSocketDidFail:(TURNSocket *)sender 
    {
         NSLog(@"TURN Connection failed!");
        [turnSockets removeObject:sender];

    }

When I run this program it always called turnsocketDidFail method.How can I achieve file transfer in chat application using turn socket in iPhone can any one help me thanks in advance

share|improve this question
I am also getting the same.. How you solve it? – Myaaoonn Dec 31 '12 at 12:38

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.