function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
tony534tony534 

Java code can insert data to new fields customised if the Java side stub code do not changed?

Is that possible the Java code can insert data to new fields that the client customised in salesforce.com without Java side stub code(jax-ws) changed?

One of my requirement asks that the clients of salesforce.com can change the objects fields, but EC2 side Java code can operate these new fields automatically.
In my opinion, if the fields changed, the stub code must be regenerated, because there is no any method for the new fields.

But my colleague said, Is it possible using .net code. 
 
Thanks for any suggestions
Message Edited by tony534 on 09-22-2009 05:38 PM
Best Answer chosen by Admin (Salesforce Developers) 
SuperfellSuperfell
The partner API allows you to write more dynamic clients that can discover the users schema, even if the schema changes over time, without having to recompile for each schema change. (e.g. this is how the data loader works)

All Answers

SuperfellSuperfell
The partner API allows you to write more dynamic clients that can discover the users schema, even if the schema changes over time, without having to recompile for each schema change. (e.g. this is how the data loader works)
This was selected as the best answer
tony534tony534
Thanks very much.  :)  I'll try partner API