Re: Core Data Save As Binary Error

2009-12-14 Thread Kiran Kumar S
Have you changed the storetype to binary in info.plist file Regards SKiran On 14-Dec-09, at 6:11 PM, Richard Somers wrote: I have a Core Data document based application. Saving the file as XML or SQLite works fine. Saving as binary results in an error: *** -[NSKeyedArchiver

Re: Custom background in NSTableHeaderView

2009-11-17 Thread Kiran Kumar S
Hi, CellAttributes are used by button and button cell for displaying image and text accordingly, but tableHeaderCell doesn't uses these attributes for displaying image and text.. Customize the NSTableHeaderCell and draw the image and text in drawWithFrame method. Thanks SKiranKumar

Re: Multiple relationships between two entities

2009-10-13 Thread Kiran Kumar S
Create a Link Entity by adding another property linkType which decides the normal or alternate link. In Item entity make to-many- relationShip for relationship link Thanks Kiran On 13-Oct-09, at 11:34 AM, Rob Keniger wrote: I'm just getting started with Core Data so go easy on me. I am

Wrong selection Index

2009-05-13 Thread Kiran Kumar S
I had a table with 3 columns(col1, col2, col3(buttonCell)) in which col1 and col2 columns are binded to an Array Controller .Col3 is button cell which is targeted to an action method. When changed selection by clicking the button , in the button cell target method if i ask for selection

problem with NSTimer

2009-05-08 Thread Kiran Kumar S
according to documentation for beginSheet:modalForWindow:modalDelegate:didEndSelector:contextInfo: it says that While the application is in the run loop, it does not respond to any other events (including mouse, keyboard, or window- close events) unless they are associated with the sheet.

NSDistantObject exception when server trying to access registered clients using DO

2009-05-06 Thread Kiran Kumar S
I am developing a client/server application using distributed objects. I developed server and in that i vended an object to be accessible by clients.In the client side i am getting the vended object, and getting required info from server.Every thing works fine. Until now my client ask

Exception

2009-05-05 Thread Kiran Kumar S
i am developing a client/server app using Distributed objects, i register my client to server. when server pings the client the following exception occurs. Can any one suggest me why this exception occurs, 2009-05-05 12:12:29.023 Project X[5278:10b] *** NSDistantObject initWithCoder: 0x1

Re: Registering Clients using DO

2009-05-05 Thread Kiran Kumar S
]; [receivePort release]; [connection enableMultipleThreads]; [connection setRootObject:[ServerObject sharedServerObject]]; [connection addRunLoop:runloop]; [connection setDelegate:self]; [receivePort release]; Regards SKiran On 05-May-09, at 11:10 AM, Kiran Kumar S wrote

Re: Registering Clients using DO

2009-05-04 Thread Kiran Kumar S
quits. Regards SKiran On 30-Apr-09, at 2:08 PM, Ken Thomases wrote: On Apr 30, 2009, at 3:06 AM, Kiran Kumar S wrote: On 30-Apr-09, at 12:03 PM, Ken Thomases wrote: On Apr 30, 2009, at 12:47 AM, Kiran Kumar S wrote: I am developing a client/server application using DO. In server

Registering Clients using DO

2009-04-29 Thread Kiran Kumar S
I am developing a client/server application using DO. In server an object is vended to be accessible by clients.In the client side i am accessing vended object and get required info from server.Every thing works fine. Until now my client queries server and server replies to that. But on

Re: Long Time Dealy When getting Vended Object

2009-04-23 Thread Kiran Kumar S
]; } return serverConnection; } Regards SKiran On 24-Apr-09, at 6:11 AM, Ken Thomases wrote: On Apr 23, 2009, at 12:05 AM, Kiran Kumar S wrote: These are the lines of code i got blocked 1. When Remote Machine is not in Network 553 -[PXDistributedObjectsClient

Long Time Dealy When getting Vended Object

2009-04-22 Thread Kiran Kumar S
Hi, Really going mad, it is taking long time response when i am trying to get vended Object from the remote machine which doesn't exist in the network. . I am facing same long time delay(more than 60 sec) when i am trying to get vended object from the remote machine which gone to

Re: Long Time Dealy When getting Vended Object

2009-04-22 Thread Kiran Kumar S
wrote: On Apr 22, 2009, at 1:14 AM, Kiran Kumar S wrote: Really going mad, it is taking long time response when i am trying to get vended Object from the remote machine which doesn't exist in the network. . I am facing same long time delay(more than 60 sec) when i am trying to get

Re: Long Time Dealy When getting Vended Object

2009-04-22 Thread Kiran Kumar S
553 -[NSDistantObject forwardInvocation:] 553 -[NSConnection sendInvocation:internal:] 553 -[NSConnection sendInvocation:internal:] On 22-Apr-09, at 3:33 PM, Kiran Kumar S

SocketPort allocating

2008-12-19 Thread Kiran Kumar S
I had Distributed object which can used by any client, i am establishing connection using a port , every thing works fine.My object is vended and the client can use the vended object . But i am getting problem when i restart my server which supplies vended object. When i am restarting

Popups Binding problem

2008-11-20 Thread Kiran Kumar S
Hi, I have two popups which I want to bind together; the first popup contains a list of Categories, which has an array of reports. The reports array is a content array of the second popup. I want to select a Category in the first popup and get a list of reports in the second popup. When user