ContainsAllFilter on array property and GreaterFilter on DateTime property

I am very new to Coherence, trying to learn... We're using Coherence 3.7, and trying to get ContainsAllFilter on string[] property and GreaterFilter on DateTime to work. Java side implements hashCode (using Arrays.equals and RawDateTime) and equals on my POF; dotnet side also implements GetHashCode and Equals; in both cases, filters return with 0 result collection. What am I doing wrong? Thank you very much!

Thanks for the response. I have included my Java object below.....where in this would I convert to the SQL Timestamp? Do you mean, that I would be storing the SQLTimestamp rather than RawDateTime as part of this object?
public class RflxJournalEntry implements PortableObject {
     public RflxJournalEntry(){}
     public enum JournalOperation
          INSERT,UPDATE,DELETE;
     private JournalOperation operationType;
    private RawDateTime operationTime;
     private String process;
     private String version;
     private String username;
     private String tradeId;
    private int sequenceId;
     private RflxJournaledTrade updateList;
    private RflxTrade trade;
     @SuppressWarnings("unchecked")
     @Override
     public void readExternal(PofReader reader) throws IOException {
          setOperationType(reader.readInt(0));
          setOperationTime(reader.readRawDateTime(1));
          setProcess(reader.readString(2));
          setUsername(reader.readString(3));
          setTradeId(reader.readString(4));
          setSequenceId(reader.readInt(5));
          setUpdateList((RflxJournaledTrade)reader.readObject(6));
          setTrade((RflxTrade)reader.readObject(7));
          setVersion(reader.readString(8));
     @Override
     public void writeExternal(PofWriter writer) throws IOException {
        writer.writeInt(0, getOperationType());
        writer.writeRawDateTime(1, getOperationTime());
        writer.writeString(2, getProcess());
        writer.writeString(3, getUsername());
        writer.writeString(4, getTradeId());
        writer.writeInt(5, getSequenceId());
        writer.writeObject(6, getUpdateList());
        writer.writeObject(7, getTrade());
        writer.writeString(8, getVersion());
     public void setOperationType(int operationType) {
          this.operationType = RflxJournalEntry.JournalOperation.values()[operationType];
     public int getOperationType() {
          return operationType.ordinal();
     public void setProcess(String process) {
          this.process = process;
     public String getProcess() {
          return process;
     public void setUsername(String username) {
          this.username = username;
     public String getUsername() {
          return username;
     public void setTradeId(String tradeId) {
          this.tradeId = tradeId;
     public String getTradeId() {
          return tradeId;
     public void setOperationTime(RawDateTime operationTime) {
          this.operationTime = operationTime;
     public RawDateTime getOperationTime() {
          return operationTime;
     public void setSequenceId(int sequenceId) {
          this.sequenceId = sequenceId;
     public int getSequenceId() {
          return sequenceId;
     public void setUpdateList(RflxJournaledTrade updateList) {
          this.updateList = updateList;
     public RflxJournaledTrade getUpdateList() {
          return updateList;
     public void setTrade(RflxTrade trade) {
          this.trade = trade;
     public RflxTrade getTrade() {
          return trade;
     public void setVersion(String version) {
          this.version = version;
     public String getVersion() {
          return version;
}

Similar Messages

  • Create a property and make it promoted property in decoding stage

    I want to create a new property and make it promoted property in decoding stage.
    Is it possible ?
    If yes,then how it can be possible ?
    Prakash

    Hi Prakash,
    Check Rachit's reference article and code in the referenced website where in the Execute method of the custom decode pipeline you can add/create new property to the message's context. Actual code to do the same is
    inmsg.Context.Promote(_YourPropertyName, _YourPropertyNamespace,_YourPropertyValue);
    But what made you to doubt this functionality in decode stage? Do you have any requirement which made you raise this question?
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • How to Convert SMO Date property to a SQL DateTime

    Hi,
    I am retrieving the SMO Database CreateDate property and trying to insert this into a T-SQL DateTime column.   The following is a sample of Powershell code to retrieve this property:
    $serverA.Databases[0].CreateDate
     The format of the CreateDate returned is "Monday, October 03, 2011 10:31:25 AM" and I would like it to be in this format: "2011-10-03 10:31:25" for inserting into a SQL 2012 table.  Is there a function or method that will
    retrieve the CreateDate in this format?
    Thanks for all your help.
    Gary
    Gary

    Also, it's a .NET DateTime, not a String.
    PS SQLSERVER:\SQL\DBROWNE2\DEFAULT> $serverA.Databases[0].CreateDate.GetType()
    IsPublic IsSerial Name BaseType
    True True DateTime System.ValueType
    So insert it using a parameter and you won't ever have to convert it to a string.
    David
    David http://blogs.msdn.com/b/dbrowne/

  • Add datetime property to "MetaInfo" field using SharePoint 2013 CSOM

    When uploading a file along with metadata using SharePoint FP RPC (using the "method= put document") it allows me to properly add datetime properties. My metainfo looks like this:
    "MetaInfo":"...MyCustomDate:TW|05 Jan 2015 12:58:31 -0000\r\n..."
    Then later on, when I try to update "MyCustomDate" property from the "MetaInfo" field using CSOM, it fails while updating it. (In this case I am using CSOM because I am updating some more fields and I want to avoid extra round-trips)
    After that update my metainfo looks like this:
    "MetaInfo":"...MyCustomDate:FX|0x01d028e7|0x4d1c4880\r\n..."
    Does anyone know why?, is there any workaround?
    Thanks

    Hi,
    If you want to add datetime property to "MetaInfo" field using SharePoint 2013 CSOM, the following code snippet for your reference:
    using (ClientContext context = new ClientContext("http://yourserver/"))
    context.Credentials = new NetworkCredential("user", "password", "domain");
    List list = context.Web.Lists.GetByTitle("Documents");
    ListItem oListItem = list.GetItemById(1);
    oListItem["MetaInfo"] = "MyCustomDate:TW|08 Jan 2015 12:58:31 -0000";
    oListItem.Update();
    context.ExecuteQuery();
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How could I retrieve metadata about Array Type and Table Type?

    I use DatabaseMetaData.getUDTs() method for obtain metadata about Object Types, but this method doesn't work with Array Type and Table Type.

    JJ,
    Go into the diagrams of the DBTools List Columns and DBTools Get Properties respectively. When you inspect this diagram, you will see the raw ActiveX properties and methods called to get the size information. The value of -1 means the requested recordset is already closed. This is the sort of thing that is controled by the driver (ODBC, OLE DB, Jet, etc) you are using. Notice that you can right click on the property and invoke nodes and get more information about these specific items directly from the ADO online help.
    Crystal

  • I am trying to set up my apple tv on a sony KDL - 40xbr4. The remote is a sony RM-V302. I plugged it into the HDMI IN on the side of the TV but cannot find out how to get to that input. I am at a winter rental property and brought my Apple TV with me.

    I am trying to set up my apple tv on a sony KDL - 40xbr4. The remote is a sony RM-V302. I plugged it into the HDMI IN on the side of the TV but cannot find out how to get to that input. I am at a winter rental property and brought my Apple TV with me. I did check internet for solutions. The instructions I found said to use a "home button" on the remote.  There isn't one. I sure would appreciate help if someone knows a solution.  My first post - hope I did this right.

    if its anything like my Sony, theres a button top left corner that upon each press i get an audible bleep and the AV inputs come up on screen, i then cycle down to whichever input i wish to select!
    in case your remote is different, the button on my remote has a square with a slightly smaller square just overlapping the first square.
    hope that helps?
    rgds Lee.

  • How to add a new user property and then retrieve it  from a portlet

    Trying to add a user property and then retrieve it form a remote web service?
    Add a user property and map it
    1. Create a property2. Go to Global Object Property Map3. Go to users, edit and select the new property.4. Go to User Profile Manager5. For portlets, go to the "Position Information" section and add it. (for the purpose of this test, add it to the profile section as well)6. Under the "User Profile Manager" go to the "User Information - Property Map" step in the wizard and 7. Go to the "User Information Attribute" and add the property.8. Click on the pencil to the right of it and give it a name (The name is what's going to appear in the list of user information under the portlet web service)9. Click finish10. Now create/edit the web service for the portlet from which you want to displays user properties. 11. Under the "User Information", click "add existing user Info" and select the property you want.12. From the portal toolbar, edit the user profile under "My Account" and then "Edit user Profile" and give the new property a value. 13. Test code below: ================================in C# IPortletContext context = PortletContextFactory.CreatePortletContext(Request,Response);IPortletRequest portletRequest = context.GetRequest();System.Collections.IDictionary UserInfoVariables = portletRequest.GetSettingCollection(SettingType.UserInfo);System.Collections.IDictionaryEnumerator UserInfo = UserInfoVariables.GetEnumerator();
    while(UserInfo.MoveNext()){   //to display in a listbox   ListBox1.ClearSelection();   ListBox1.Items.Add(UserInfo.Key.ToString() + ": " + UserInfo.Value);}===========================in ASP: <%Dim objSettings, dUserInfo, sEmpIDSet objSettings = Server.CreateObject("GSServices.Settings") ' get the user info settings, get employee ID from user infoSet dUserInfo = objSettings.GetUserInfoSettings
    for each item in dUserInfo response.Write "<BR>" & item & ": " & dUserInfo(item)next%>

    IPortletContext portletContext = PortletContextFactory.createPortletContext(req, res);
    IPortletRequest portletReq = portletContext.getRequest();
    String value = portletReq.getSettingValue(SettingType.Portlet,settingName);

  • How  to Set JMS property and Read JMS property in BPEL using JMS adapter

    Does any one know how to set or read more than one JMS property in BPEL using JMS adapter. My queue server is Oracle JMS server.
    Any help and sample is well appreciated

    Hi Van
    I have noted that only the attribute "type" is missing. It seems that when you create a "string" property, the attribute "type" is droped from the XML. If you use another type (as "integer" or "double") it stays there.
    If you try to read your properties, except for the "type" attribute, you should be successful, as I am. If you need, please tell me your email, I can send you my code.
    Source Code:
    in ASSIGN activity (process which SENDS the JMS message):
    <assign name="TESTES">
    <copy>
         <from expression="'string'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[1]/@type"/>
    </copy>
    <copy>
         <from expression="'name'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[1]/@name"/>
    </copy>
    <copy>
         <from expression="'value1'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[1]/@value"/>
    </copy>
    <bpelx:append>
         <bpelx:from>
         <Property name="" type="" value=""
              xmlns="http://xmlns.oracle.com/pcbpel/adapter/jms/"/>
         </bpelx:from>
         <bpelx:to variable="HeaderJms" part="outboundHeader"
              query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties"/>
    </bpelx:append>
    <copy>
         <from expression="'string'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[2]/@type"/>
    </copy>
    <copy>
         <from expression="'name2'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[2]/@name"/>
    </copy>
    <copy>
         <from expression="'value2'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[2]/@value"/>
    </copy>
    </assign>
    in ASSIGN activity (process which READS the JMS message)
    <assign name="Assign_1">
    <copy>
    <from variable="Variable_1" part="inboundHeader"
    query="/ns3:JMSInboundHeadersAndProperties/ns3:JMSInboundProperties/ns3:Property[10]/@name"/>
    <to variable="temp"/>
    </copy>
    <copy>
    <from variable="Variable_1" part="inboundHeader"
    query="/ns3:JMSInboundHeadersAndProperties/ns3:JMSInboundProperties/ns3:Property[10]/@value"/>
    <to variable="temp"/>
    </copy>
    <copy>
    <from variable="Variable_1" part="inboundHeader"
    query="/ns3:JMSInboundHeadersAndProperties/ns3:JMSInboundProperties/ns3:Property[12]/@name"/>
    <to variable="temp"/>
    </copy>
    <copy>
    <from variable="Variable_1" part="inboundHeader"
    query="/ns3:JMSInboundHeadersAndProperties/ns3:JMSInboundProperties/ns3:Property[12]/@value"/>
    <to variable="temp"/>
    </copy>
    </assign>
    Note that I do not try to read the "type" attribute, otherwise it will fail.
    Here is the JMS Header Message received:
    <inboundHeader>
    <JMSInboundHeadersAndProperties xmlns="http://xmlns.oracle.com/pcbpel/adapter/jms/">
    <JMSInboundHeaders>
    <JMSCorrelationID>
    bpel://localhost/pi_lms-c001e/BpelPiAtualizacaoC001E~1.0/3200025-BpInv0-BpSeq1.6-2
    </JMSCorrelationID>
    <JMSDeliveryMode>2</JMSDeliveryMode>
    <JMSExpiration>0</JMSExpiration>
    <JMSMessageID>ID:467DFA1FA1ED459EBF37F51F596C3F12</JMSMessageID>
    <JMSPriority>4</JMSPriority>
    <JMSRedelivered>false</JMSRedelivered>
    <JMSType>com.mercurio.lms.integration.c001eip.c001EIntegrationPoint</JMSType>
    <JMSTimestamp>1201552046253</JMSTimestamp>
    </JMSInboundHeaders>
    - <JMSInboundProperties>
    <Property name="JMSXDeliveryCount" type="integer" value="1"/>
    <Property name="JMSXRecvTimestamp" type="long" value="1201552046698"/>
    <Property name="JMSXUserID" value="lms_dev_int_v1_user"/>
    <Property name="JMS_OracleDeliveryMode" value="2"/>
    <Property name="JMS_OracleTimestamp" type="long" value="1201552046253"/>
    <Property name="JMS_OracleDelay" type="long" value="0"/>
    <Property name="JMSXState" type="integer" value="0"/>
    <Property name="IAS_VERSION" value="10.1.3"/>
    <Property name="JMS_OracleDeliveryMode" value="2"/>
    <Property name="name" value="value1"/> ("type" attribute was droped!!!)
    <Property name="JMS_OracleTimestamp" type="long" value="1201552046253"/>
    <Property name="name2" value="value2"/> ("type" attribute was droped!!!)
    </JMSInboundProperties>
    </JMSInboundHeadersAndProperties>
    </inboundHeader>
    Regards
    Marcelo

  • Bean property and public field found with the same name: getid

    Hi all,
    I have a ejb jar file contains some local entity beans and one session bean
    , the session bean has some functions suck as findXXXByQuery() , InsertXXX()
    , and I have created some model class for the entity bean , and use it as
    the parameter or return type of the session bean , then I want to transfer
    the session bean as a webservice , using ant automaticly . All this function
    successfully in weblogic 6.1 , but when I want to run ant command in
    weblogic 7.0 , an error occured :
    [servicegen] weblogic.xml.schema.binding.BindingException: Error: bean
    property
    and public field found with the same name: getid
    Yes , I have a getid field in table , a getid in entity bean , and a getid
    property in model class , but what different does it make ? Would you mind
    to test my jar file ? I send all files as attachments .
    Any advice will be appreciate .
    lcl
    [build.xml]
    [work.jar]

    In article <[email protected]>, lcl <[email protected]> wrote:
    -=-=-=-=-=-
    Hi all,
    I have a ejb jar file contains some local entity beans and one session bean
    , the session bean has some functions suck as findXXXByQuery() , InsertXXX()
    , and I have created some model class for the entity bean , and use it as
    the parameter or return type of the session bean , then I want to transfer
    the session bean as a webservice , using ant automaticly . All this function
    successfully in weblogic 6.1 , but when I want to run ant command in
    weblogic 7.0 , an error occured :
    [servicegen] weblogic.xml.schema.binding.BindingException: Error: bean
    property
    and public field found with the same name: getid
    Yes , I have a getid field in table , a getid in entity bean , and a getid
    property in model class , but what different does it make ? Would you mind
    to test my jar file ? I send all files as attachments .
    Any advice will be appreciate .
    lcl
    -=-=-=-=-=-For better or worse the JAX-RPC spec requires this behavior. From
    section 5.4.1:
    "There is no standard mapping for the case when a JavaBean property
    has the same name as a public field. A Java to XML mapping
    implementation is required to flag this case as an error."
    Since you are not the first person to run into this restriction I'm
    beginning to think we need an option to bypass it.
    --Scott

  • Revised IT Slab and Int From House Property not coming properly

    Dear Experts ,
        I have applied the SAP Note of Legal Budget Changes 2014 - 2044885 & 2041819. After applying that ,We are not getting the correct Tax Deduction and income from House Property(Self Occupied). We have maintained the IT 0584 as 200000/- for sec 24 deduction.
    Please find below the screenshot of the RT and give your inputs on same.
    Thanks
    Praveen

    check the note 870126

  • Why i have to specify the parameters (property and name) in both tags?

    Recently i learned how to populate a html:select with data from a DB table with a int value and a String value (value and label of an option). For that i create a business object that represent one pair value&label (i called categoryBO) and another business object that contains a list of the business objects categoryBO. So in my JSP i have the next code:
    <html:select name="lista" property="listaPropiedades">
    <html:optionsCollection name="lista" property="listaPropiedades" value="varValor" label="varLabel" />
    </html:select> Well i understand the next: name is the name of the business object that contains the list with the objects that represents the options in the select tag; property is the name of the list object, in the business object i need to have the getters and setters for that list; then value is the name of the variable that contains the data that will be the value of each option and label is the name of the variable that contains the data that will be the value of each label.
    But i have the next questions:
    1. Why i have to establish the parameters property and name for bot html:select and html:optionsCollection? Why not only in html:select or only html:optionsCollection?
    2. In the ActionForm for my JSP i don�t know what data type have to use to declare the variable that's linked with the option or with the select. I'm using Object for now.
    3. Why the only way to populate the html:optionsCollection in the Action is passing the object in the request object as an atribute in the next way:
    request.setAttribute("lista", objectThatContainsList);instead
    ((ActionForm)form).setListaPropiedades(objectThatContainsList);why's that? I have the same question when i'm populatina a normal html table using a logic:iterate tag or using a display:table tag from displaytag library.

    Ok, you have one big misconception here - you're using the same name/property for both the select component and its contents.
    The html:select should refer you to ONE selected value (in this case an int). It should tie to a field on your action form.
    The html:optionsCollection should refer to a list of beans used to populate this select component.
    <html:select property="selectedItem">
    <html:optionsCollection name="myList" property="listOfProperties" value="varValor" label="varLabel" />
    </html:select>
    1. Why i have to establish the parameters property and name for bot html:select and html:optionsCollection? Why not only in html:select or only html:optionsCollection?Because they actually refer to two different things, and should be two different values.
    html:options gets the list of possible values
    html:select stores the "selected" option. (consider what you would have if you just used a standard html:input here, and typed the id directly in - THATS the property to bind to)
    2. In the ActionForm for my JSP i don�t know what data type have to use to declare the variable that's linked with the option or with the select. I'm using Object for now.You do now - because it is declared/mapped seperately
    3. Why the only way to populate the html:optionsCollection in the Action is passing the object in the request object as an atribute in the next way:Its not.
    The way you mentioned is also valid. If both the "selectedItem" and "listOfItems" are properties on your action form, you can leave out the "name" attribute, and they will be found there.
    However if you are dealing with request scoped beans, you will have to populate the list on each access of the page - you will need a "load" action to poupulate the bean with the items for the dropdown, and make sure that it is always populated when you return to it (eg on an error condition).
    That is why setting it as an attribute is sometimes preferable.
    Cheers,
    evnafets

  • How to create a sling:OsgiConfig property and access it in component Jsp ?

    How to create a sling:OsgiConfig property and access it in component Jsp ?
    I have created a OSGI config property under apps/<Project>/config and it is reflected on OSGI console but I am not able to access ie in component jsp.
    Any pointers are appreciated

    Use this code in the scriplet in your required components jsp:
    <%@page import="org.osgi.service.cm.ConfigurationAdmin"%>
    <%@page import="org.osgi.service.cm.Configuration"%>
    <%
    Configuration conf = sling.getService(org.osgi.service.cm.ConfigurationAdmin.class).getConfiguration("Name of the config");
    String myProp = (String) conf.getProperties().get("property key");
    %>

  • @property and @synthesize

    Hi there : )
    I bought the third edition of the Aaron Hilleglass book 'Cocoa Programming For MacOSX'.
    In an application, the author uses the @property/@synthesize keywords instead of implementing accessors in a traditional way. The application illustrates the NSArrayController. The code can be found here : http://www.2shared.com/file/5756321/ce291cd9/RaiseMan.html
    But when I implement this code, I get a strange behavior. This application uses a NSTableView to store some objects (person for instance with the person's name and an associated float value). When I change the value of a Cell and I use press "Enter" or "Tab" key, the application crashes.
    Here is the strange thing : if I implement accessors the old way, by redefining a set and a get method, the crash is gone. It perfectly works... (the code above is the one where I implemented the accessors. The @property/@synthetize were commented)
    Since a new release of XCode was made since the book was published, I wondered if something has changed that could cause the crash. I already contacted the author, but I don't get any answers, so I give it a shot here.
    Thanks.

    oki doki, I didnt knew the code in brackets. I tried the BBS [code] but it did not work : )
    So, here's the Person's Code (h & m in the same code section) :
    #import <Foundation/Foundation.h>
    @interface Person : NSObject {
    NSString* personName;
    float expectedRaise;
    @property(readwrite, assign) NSString* personName;
    @property(readwrite) float expectedRaise;
    /-(void)setPersonName:(NSString)name;
    -(void)setExpectedRaise:(float)amount;
    -(NSString*)personName;
    -(float)expectedRaise; */
    @end
    #import "Person.h"
    @implementation Person
    // SET et GET
    //@synthesize personName;
    //@synthesize expectedRaise;
    -(id)init
    if (![super init])
    return nil;
    personName = @"Nouvelle Personne";
    expectedRaise = 0.5;
    return self;
    -(void)dealloc
    [personName release];
    [super dealloc];
    @end
    Here is the MyDocument code :
    #import <Cocoa/Cocoa.h>
    @interface MyDocument : NSDocument
    NSMutableArray* employees;
    -(void)setEmployees:(NSMutableArray*)a;
    @end
    #import "MyDocument.h"
    @implementation MyDocument
    - (id)init
    self = [super init];
    if (self) {
    employees = [[NSMutableArray alloc]init];
    // Add your subclass-specific initialization here.
    // If an error occurs here, send a [self release] message and return nil.
    return self;
    -(void)dealloc
    [self setEmployees:nil];
    [super dealloc];
    - (NSString *)windowNibName
    // Override returning the nib file name of the document
    // If you need to use a subclass of NSWindowController or if your document supports multiple NSWindowControllers, you should remove this method and override -makeWindowControllers instead.
    return @"MyDocument";
    - (void)windowControllerDidLoadNib:(NSWindowController *) aController
    [super windowControllerDidLoadNib:aController];
    // Add any code here that needs to be executed once the windowController has loaded the document's window.
    - (NSData *)dataOfType:(NSString *)typeName error:(NSError **)outError
    // Insert code here to write your document to data of the specified type. If the given outError != NULL, ensure that you set *outError when returning nil.
    // You can also choose to override -fileWrapperOfType:error:, -writeToURL:ofType:error:, or -writeToURL:ofType:forSaveOperation:originalContentsURL:error: instead.
    // For applications targeted for Panther or earlier systems, you should use the deprecated API -dataRepresentationOfType:. In this case you can also choose to override -fileWrapperRepresentationOfType: or -writeToFile:ofType: instead.
    if ( outError != NULL ) {
    *outError = [NSError errorWithDomain:NSOSStatusErrorDomain code:unimpErr userInfo:NULL];
    return nil;
    - (BOOL)readFromData:(NSData *)data ofType:(NSString *)typeName error:(NSError **)outError
    // Insert code here to read your document from the given data of the specified type. If the given outError != NULL, ensure that you set *outError when returning NO.
    // You can also choose to override -readFromFileWrapper:ofType:error: or -readFromURL:ofType:error: instead.
    // For applications targeted for Panther or earlier systems, you should use the deprecated API -loadDataRepresentation:ofType. In this case you can also choose to override -readFromFile:ofType: or -loadFileWrapperRepresentation:ofType: instead.
    if ( outError != NULL ) {
    *outError = [NSError errorWithDomain:NSOSStatusErrorDomain code:unimpErr userInfo:NULL];
    return YES;
    -(void)setEmployees:(NSMutableArray*)a
    if (a == employees)
    return;
    [a retain];
    [employees release];
    employees = a;
    @end
    I don't know how to show you the xib file since it's a bit long...
    Nothing particular about this code. I really think it comes from the NSArrayController or sometinhg.
    Moreover, if I use the author's code, it actually bugs if I remember it well....

  • [svn] 4074: FxNumericStepper now has a maxChars property, and it now restricts the characters that can be entered into its FxTextInput .

    Revision: 4074
    Author: [email protected]
    Date: 2008-11-11 14:10:34 -0800 (Tue, 11 Nov 2008)
    Log Message:
    FxNumericStepper now has a maxChars property, and it now restricts the characters that can be entered into its FxTextInput.
    Fixed a problem with 'restrict' in TextView. If there are no characters left to insert after restriction, do nothing; don't insert an empty string and thereby delete the insertion.
    QE Notes: None
    Doc Notes: None
    Bugs: None
    Reviewer: Glenn
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/TextView.as

    When I installed iTunes 7.3 I noticed some artwork
    was gone. I compared the actual file sizes to the
    backup and there was no change at all. I was able to
    get the covers again from the iTS, but as I really
    want to have the artwork inside the files, I tried to
    paste it into the tags (like I used to do since 7.0).
    That doesn't work, after pasting it, the artwork is
    gone again completely, but the files are now 4mb
    bigger. The artwork of these files (about 300 in
    total, and I cant figure out why some and some not)
    can not be browsed, but the rest of the tags is fine
    and the songs play just normal.
    I trashed one of the affected albums and re-added it
    from the backup. Now the tags in iTunes were gone
    completely! I re-entered the correct tags and let
    iTunes get the artwork from the iTS. The artwork
    shows, but not for all files of the album. So again I
    tried to paste it into the tags of all songs, and
    voila: all artwork of this album is gone again and
    the files are 4mb bigger.
    Same behaviour in iTunes 7.3.1.
    I'm happy I have a good backup of my music, and I
    think the artwork is still inside the files, but
    iTunes 7.3 and 7.3.1 mess it up. From what I see only
    non-iTS files are affected, but only iTS artwork is
    lost. NOT nice.
    Any ideas? I'm no really a friend of downgrading...
    After some more time consuming tinkering I still have no luck in giving certain files their artwork back. I better go back to 7.2 tomorrow... Apple keep that lousy 7.3.1 BS yourself

  • [svn] 4072: FxNumericStepper now has a maxChars property, and it now restricts the characters that can be entered into its FxTextInput .

    Revision: 4072
    Author: [email protected]
    Date: 2008-11-11 14:08:39 -0800 (Tue, 11 Nov 2008)
    Log Message:
    FxNumericStepper now has a maxChars property, and it now restricts the characters that can be entered into its FxTextInput.
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-16293, SDK-16627
    Reviewer: Glenn
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16293
    http://bugs.adobe.com/jira/browse/SDK-16627
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxNumericStepper.as
    Property Changed:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxNumericStepper.as

    When I installed iTunes 7.3 I noticed some artwork
    was gone. I compared the actual file sizes to the
    backup and there was no change at all. I was able to
    get the covers again from the iTS, but as I really
    want to have the artwork inside the files, I tried to
    paste it into the tags (like I used to do since 7.0).
    That doesn't work, after pasting it, the artwork is
    gone again completely, but the files are now 4mb
    bigger. The artwork of these files (about 300 in
    total, and I cant figure out why some and some not)
    can not be browsed, but the rest of the tags is fine
    and the songs play just normal.
    I trashed one of the affected albums and re-added it
    from the backup. Now the tags in iTunes were gone
    completely! I re-entered the correct tags and let
    iTunes get the artwork from the iTS. The artwork
    shows, but not for all files of the album. So again I
    tried to paste it into the tags of all songs, and
    voila: all artwork of this album is gone again and
    the files are 4mb bigger.
    Same behaviour in iTunes 7.3.1.
    I'm happy I have a good backup of my music, and I
    think the artwork is still inside the files, but
    iTunes 7.3 and 7.3.1 mess it up. From what I see only
    non-iTS files are affected, but only iTS artwork is
    lost. NOT nice.
    Any ideas? I'm no really a friend of downgrading...
    After some more time consuming tinkering I still have no luck in giving certain files their artwork back. I better go back to 7.2 tomorrow... Apple keep that lousy 7.3.1 BS yourself

Maybe you are looking for

  • Unable to capture the parameter values from a PL/SQL procedure

    hi. i'm trying to capture the parameter values of a PL/SQL procedure by calling inside a anonymous block but i'm getting a "reference to uninitialized collection error" ORA-06531. Please help me regarding. i'm using following block for calling the pr

  • Install of garageband on 10.6.8 version

    Hello, I have a macbook, I recently install snow leopard, the version is now 10.6.8. I lost I'life, but I want to install garageband and iphoto. In appstore it only propose me the last vesion which needs 10.9 version min. Could you help me please?

  • Value Mapping in XSLT

    Hello, I am implementing value mapping in XSLT using template I call following template to retrieve the value from ID.... <xsl:template name="NonMerchandiseSaleValueMapping"> <xsl:param name="GMNonMerchandiseType"/> <xsl:value-of select="vm:executeMa

  • Numbers files marked as not having a valid format.

    Hello Forum. I had a power failure on my laptop. I removed my thumb drive by just pulling it out of the machine. When the computer powered back up it said the drive (which had my numbers document on it) had an improper device removal message. Now I a

  • How to deselect the itemlistbox entries

    hi,     using itemlistbox for currency display, once user select the value and press the save button. In itemlistbox value want to be deselect. while am using invalidate() method it clearing the value in listbox . i don want to clear just deselect th