User Declan Shanaghy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T04:08:00Zhttp://stackoverflow.com/feeds/user/21297http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1684055/android-are-services-shared-among-processes/1689508#16895080Answer by Declan Shanaghy for Android - Are services shared among processes?Declan Shanaghy2009-11-06T18:44:30Z2009-11-06T18:44:30Z<p>OK i did a quick test on this.</p>
<p>I modified the provided jar file to store values passed in the onBind Intent into 2 static variables. (stAppID and stAppVer) and print them out when a certain method is called on the service</p>
<p>When binding to the service each app passes in different values with the Intent.</p>
<p>If the service is indeed shared between applications I would expect 2 things:</p>
<ol>
<li>Process id is the same when statics
are printed. </li>
<li>After both apps have
bound to the service subsequent
calls to the method which prints the
static variables should print out
the same value.</li>
</ol>
<p>Here is the log output from my test.</p>
<p><pre><code>
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 744): <strong>***********************************************</strong>
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 744): <strong>***********************************************</strong>
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 744): Thread = main
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 744): stAppID = APP AAAAAAAAAAAAA
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 744): stAppVer = VER AAAAAAAAAAAAA
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 744): <strong>***********************************************</strong>
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 744): <strong>***********************************************</strong>
D/dalvikvm( 744): GC freed 4963 objects / 267800 bytes in 100ms
D/dalvikvm( 778): GC freed 2640 objects / 151400 bytes in 105ms
I/ActivityManager( 578): Starting activity: Intent { flags=0x10100000 comp={com.a.service.test/com.a.service.test.TrackingSample} }
W/InputManagerService( 578): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@4370dac0
I/ActivityManager( 578): Starting activity: Intent { flags=0x10100000 comp={com.b.service.test/com.b.service.test.TrackingSample} }
W/InputManagerService( 578): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@436f7760
D/MMT ( 778): Creating new last event timestamp record for UIApplicationWillTerminateNotification
D/MMT ( 778): Run closed
D/MMT ( 778): Run started
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 778): <strong>***********************************************</strong>
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 778): <strong>***********************************************</strong>
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 778): Thread = main
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 778): stAppID = APP BBBBBBBBBBBBBBB
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 778): stAppVer = VER BBBBBBBBBBBBBBB
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 778): <strong>***********************************************</strong>
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 778): <strong>***********************************************</strong>
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 744): <strong>***********************************************</strong>
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 744): <strong>***********************************************</strong>
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 744): Thread = main
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 744): stAppID = APP AAAAAAAAAAAAA
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 744): stAppVer = VER AAAAAAAAAAAAA
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 744): <strong>***********************************************</strong>
E/<strong>********</strong> ServiceTest <strong>*********</strong>( 744): <strong>***********************************************</strong>
D/dalvikvm( 744): GC freed 836 objects / 131136 bytes in 86ms
</pre></code></p>
<p>As can be seen from this. Neither of the required conditions have held true therefore <strong><em>I conclude that the service is not being shared between applications</em></strong>. (the process ID is the number in parenthesis just before the colon in each log line)</p>
<p>This makes sense when you think about it.
How can the operating system decide that the repackaged jars contain the same version of the service. There is no version metadata declared on an Android service. </p>
<p>Another problem is this service makes use of a database. If that database was shared among applications that would be a security risk.</p>
http://stackoverflow.com/questions/1684055/android-are-services-shared-among-processes0Android - Are services shared among processes?Declan Shanaghy2009-11-05T22:21:52Z2009-11-06T18:44:30Z
<p>I have an android library which is distributed as a jar file for inclusion in 3rd party applications. </p>
<p>Within the jar file is an Android Service.
The service is exposed through a facade class in the jar file.
Hence 3rd parties do not directly bind to the service, they just use the facade class.</p>
<p>I have 2 questions about this architecture:</p>
<p>1)
If two completely separate 3rd party applications use this facade (different package names, different user ids etc..) class are two instances of the service created or is a single instance shared?</p>
<p>2)
Does it make a difference if the service is bound directly to the 3rd party apps rather than accessed thru a facade?</p>
<p>P.S.
<a href="http://developer.android.com/reference/android/app/Service.html" rel="nofollow">http://developer.android.com/reference/android/app/Service.html</a>
Does not answer these questions.</p>
http://stackoverflow.com/questions/230643/android-api-for-detecting-new-media-from-inbuilt-camera-mic2Android API for detecting new media from inbuilt camera & micDeclan Shanaghy2008-10-23T17:29:07Z2009-05-28T12:16:20Z
<p>Is there any elegant way in the Android API for detecting new media when it is written to the device? I’m mainly interested in photos taken by the camera, video taken by the camera and audio recorded from the mic.</p>
<p>My current thinking is to periodically scan each media content provider and filter based on last scan time.</p>
<p>I’m just wondering if there is some service I can hook into to get realtime notifications.</p>
http://stackoverflow.com/questions/230643/android-api-for-detecting-new-media-from-inbuilt-camera-mic/232115#2321151Answer by Declan Shanaghy for Android API for detecting new media from inbuilt camera & micDeclan Shanaghy2008-10-24T00:43:16Z2008-10-24T00:43:16Z<p>Aha!</p>
<p>A <a href="http://code.google.com/android/reference/android/database/ContentObserver.html" rel="nofollow">content observer</a> is what i need!</p>
<p><a href="http://mylifewithandroid.blogspot.com/2008/03/observing-content.html" rel="nofollow">Here's where i found out about it</a></p>
http://stackoverflow.com/questions/230643/android-api-for-detecting-new-media-from-inbuilt-camera-mic/231890#2318900Answer by Declan Shanaghy for Android API for detecting new media from inbuilt camera & micDeclan Shanaghy2008-10-23T23:04:01Z2008-10-23T23:04:01Z<p>Yes i had noticed that Intent and was planning on using it for something else.
But the user could decide not to keep the pic so although it would definitely be more efficient. It wouldn't be 100% reliable. </p>
<p>What i need to capture is events of actually writing media to the storage.</p>
<p>That Intent also only solves part of the puzzle. I need to be informed of audio media from the mic also.</p>
http://stackoverflow.com/questions/228851/create-raw-socket-in-android/230667#2306670Answer by Declan Shanaghy for create Raw socket in AndroidDeclan Shanaghy2008-10-23T17:35:34Z2008-10-23T17:35:34Z<p>I havent actually created any raw sockets in Android but the java.net and javax.net packages shold do what you need,</p>
<p><a href="http://code.google.com/android/reference/java/net/package-summary.html" rel="nofollow">java.net package overview</a></p>
<p><a href="http://code.google.com/android/reference/javax/net/package-summary.html" rel="nofollow">javax.net package overview</a></p>
http://stackoverflow.com/questions/184825/monitoring-memory-usage-for-a-c-dll-called-with-java-via-jni/185452#1854523Answer by Declan Shanaghy for Monitoring memory usage for a C DLL called with Java via JNI?Declan Shanaghy2008-10-09T00:13:45Z2008-10-09T00:13:45Z<p>You can monitor the native heap with counters in the performance montitor. (perfmon32) however it wont break it down for you on a per DLL basis, even jvm.dll will be included here.</p>
<p>Most profiling tools out there can attach to a process and capture and track memory allocations and deallocations. This allows them to speculate where leaks are.
One pretty good one i found when recently trying to track down memory leaks in native code which was called from Java is <a href="http://www.softwareverify.com/cpp/memory/index.html" rel="nofollow">Memory Validator</a></p>
http://stackoverflow.com/questions/185312/to-be-nor-not-to-be-with-duplicate-models/185351#1853510Answer by Declan Shanaghy for To be nor not to be with duplicate modelsDeclan Shanaghy2008-10-08T23:29:06Z2008-10-08T23:29:06Z<p>There is not much value to be gained from re-writing the whole thing just because the architecture is not ideal. As you noted yourself it WILL be VERY costly.</p>
<p>One approach would be to pick the best implementation of the models and concentrate further development in that model.</p>
<p>If you need to expand some functionality from one of the other models that will be your opportunity to migrate the implementation of the existing feature from the legacy model to your chosen primary model and extend it as required.</p>
http://stackoverflow.com/questions/185314/what-happens-if-i-dont-close-a-system-diagnostics-process-in-my-c-console-app/185336#1853361Answer by Declan Shanaghy for What happens if I don't close a System.Diagnostics.Process in my C# console app?Declan Shanaghy2008-10-08T23:23:08Z2008-10-08T23:23:08Z<p>A process is a standalone entity.
Programatically creating a process is much the same as launching a process from your desktop.</p>
<p>The handle to a process you create is only returned for convenience. For example to access its input and output streams or (as you saw) to kill it.</p>
<p>The resources are not reclaimed when the parent process is killed.</p>
<p>The only time it is bad to open lots of processes is if you open so many that the CPU and RAM cannot handle it!</p>
http://stackoverflow.com/questions/185282/how-can-i-make-a-class-global-to-the-entire-application/185321#1853212Answer by Declan Shanaghy for How can I make a class global to the entire application? Declan Shanaghy2008-10-08T23:17:32Z2008-10-08T23:17:32Z<p>Since you do not want to create the object every time and it sounds like you are talking about some sort of utility methods...</p>
<p>I suggest you use <a href="http://www.google.com/search?hl=en&rlz=1B3GGGL_enUS267US267&q=static+method+C%23&btnG=Search" rel="nofollow">static methods</a> in an assembly which you can reference where needed</p>
http://stackoverflow.com/questions/185236/how-do-i-tell-if-someones-faking-a-filetype-php/185277#1852770Answer by Declan Shanaghy for How do I tell if someone's faking a filetype? (PHP)Declan Shanaghy2008-10-08T23:03:32Z2008-10-08T23:03:32Z<p>On a unix system, capturing the output from the 'file' command should provide adequate info.</p>
http://stackoverflow.com/questions/185239/displaying-loading-text-while-doing-a-webrequest/185263#1852631Answer by Declan Shanaghy for Displaying Loading text while doing a WebRequestDeclan Shanaghy2008-10-08T22:59:13Z2008-10-08T22:59:13Z<p>A simple trick i have used in the past is to redirect to an intermediate page with an animated progress bar (gif) and then have that page do the REAL post of the data.
(or even pop-up a layer with the animation on it and a polite message asking the user to wait a minute or two)</p>
<p>The simple feedback of the animated gif creates the illusion to the end user that the app is not stalled and they will be more patient.</p>
<p>Another approach is to hand the data off to a worker thread and return immediately with a message stating that the report will be emailed or made available in the "reports" section of the site when it is ready. This approach lacks the benefit of instant notification when the report is completed though.</p>
http://stackoverflow.com/questions/185209/ripping-a-cd-to-mp3-in-c-third-party-component-or-api-out-there/185245#1852451Answer by Declan Shanaghy for Ripping a CD to mp3 in C# - third party component or api out there?Declan Shanaghy2008-10-08T22:53:26Z2008-10-08T22:53:26Z<p>I can't comment on ripping the CD. </p>
<p>Once you have the audio data ripped you could encode it using <a href="http://lame.sourceforge.net/index.php" rel="nofollow">LAME</a></p>
http://stackoverflow.com/questions/185211/what-is-good-way-to-learn-java/185229#1852290Answer by Declan Shanaghy for What is good way to learn java?Declan Shanaghy2008-10-08T22:49:03Z2008-10-08T22:49:03Z<p>I would start by typing "java tutorial" into Google.
Once you have the basics down you should look for sites and mailing lists that get more specific to the type of application you wish to create.</p>
<p><a href="http://www.apache.org" rel="nofollow">The Apache Software Foundation</a> is a huge OS community and has a lot of Java libraries you can use.</p>
<p>With regard to security...It depends on your environment and what you are trying to secure. You need to be more specific with your question.</p>
http://stackoverflow.com/questions/185190/css-and-lack-of-constants-variables-issue/185212#1852120Answer by Declan Shanaghy for CSS and lack of constants/variables issueDeclan Shanaghy2008-10-08T22:43:46Z2008-10-08T22:43:46Z<p>Depending on your build environment there is probably a mechanism to process the resource files and replace variables with the desired values.</p>
<p>I use Maven for my Java developemnt and it has this functionality built in.</p>
http://stackoverflow.com/questions/183977/what-commercial-and-open-source-competitors-are-there-to-splunk/184133#1841333Answer by Declan Shanaghy for What commercial and open source competitors are there to Splunk?Declan Shanaghy2008-10-08T18:23:49Z2008-10-08T18:23:49Z<ul>
<li><a href="http://www.loglogic.com" rel="nofollow">LogLogic</a></li>
<li><a href="http://www.logrhythm.com" rel="nofollow">LogRhythm</a></li>
</ul>
<p>[aside]
Why do you want an alternative?
I know some people at splunk. I'm sure they would like to hear the feedback.</p>
http://stackoverflow.com/questions/176504/synchronized-development-environments/176532#1765320Answer by Declan Shanaghy for synchronized development environmentsDeclan Shanaghy2008-10-06T22:53:25Z2008-10-06T22:53:25Z<p>Sounds to me like you need a Source Control system.
This solution is normally used to synchronize codebases between a team of developers but the paradigm still holds true for a single developer on multiple workstations.</p>
<p>The de-facto open source RCS is <a href="http://subversion.tigris.org/" rel="nofollow">Subversion (SVN)</a></p>
<p>See Also:
<a href="http://en.wikipedia.org/wiki/Revision_control" rel="nofollow">Wikipedia - Revision Control</a></p>
http://stackoverflow.com/questions/176507/when-you-are-abstracting-your-database-records-and-datasets-into-objects-what-do/176517#1765171Answer by Declan Shanaghy for When you are abstracting your database records and datasets into objects, what does your object model look like?Declan Shanaghy2008-10-06T22:47:59Z2008-10-06T22:47:59Z<p>No matter the size of your project I would say use an ORM :-P </p>
<p>but.....</p>
<p>Back in the days when there were no ORM libraries we used to manually pull all the fields out of a Java recordset object and plug them into a real Java class.</p>
<p>The inverse applied for insertions and deletion (with a flag to indicate which was to happen)</p>
<p>Multiple rows were usually stuffed into a List.</p>
http://stackoverflow.com/questions/176476/what-is-the-best-html-to-pdf-library-utility-application-i-can-use-to-automate-ht/176497#1764970Answer by Declan Shanaghy for What is the best html-to-pdf library/utility/application I can use to automate html-to-pdf conversions?Declan Shanaghy2008-10-06T22:40:36Z2008-10-06T22:40:36Z<p>I wont claim this is the "best" solution but it is "a" solution i have used.</p>
<p>HTML Input --> <a href="http://user.it.uu.se/~jan/html2ps.html" rel="nofollow">HTML 2 PS</a> --> <a href="http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.50/Ps2pdf.htm" rel="nofollow">PS 2 PDF</a> --> PDF Output</p>
http://stackoverflow.com/questions/176172/geolocation-web-site-for-pictures/176257#1762571Answer by Declan Shanaghy for Geolocation web site for picturesDeclan Shanaghy2008-10-06T21:25:28Z2008-10-06T21:25:28Z<p>This is a very broad question!
I think the most direct answer, is "If you cant do it yourself because you are not a programmer then you need to <a href="http://www.rentacoder.com/RentACoder/DotNet/default.aspx" rel="nofollow">Rent a Coder</a> (or get a programmer friend to help)" </p>
<p>Aside from that...<a href="http://code.google.com/apis/maps/" rel="nofollow">check out the Google Maps API</a></p>
<p>Also here's a suggestion to improve your overall user experience.
Many smart phones and possibly standalone cameras support geo-tagging natively.
Check the EXIF header of the uploaded image for geo tags.
In the case where the geo tag is present you wont need to ask the user to provide it.</p>
http://stackoverflow.com/questions/176051/java-serializing-beginner-problem/176157#1761571Answer by Declan Shanaghy for Java: Serializing beginner problem :-(Declan Shanaghy2008-10-06T20:56:07Z2008-10-06T20:56:07Z<p>in the exception handling blocks of the getStoredMails method you do not return anything.</p>
<p>Suggested modification:</p>
<pre><code>public static Message[] getStoredMails(){
try
{
ObjectInputStream in = new ObjectInputStream(new FileInputStream("mail.ser"));
Message[] array = (Message[]) in.readObject() ;
System.out.println("Size: "+array.length); //return array;
in.close();
return array;
}
catch(IOException ex)
{
ex.printStackTrace();
}
catch(ClassNotFoundException ex)
{
ex.printStackTrace();
}
return null;
}
</code></pre>
http://stackoverflow.com/questions/175695/how-do-i-designate-in-xsd-that-an-element-only-contains-cdata1How do i designate in XSD that an element only contains CDATA?Declan Shanaghy2008-10-06T18:59:46Z2008-10-06T19:43:05Z
<p>How can I represent the following in XSD.</p>
<pre><code><price-update>
<![CDATA[
arbitrary data goes here
]]>
</price-update>
</code></pre>
http://stackoverflow.com/questions/169359/improving-code-readability-for-sql-commands/169388#1693880Answer by Declan Shanaghy for Improving code readability for SQL commandsDeclan Shanaghy2008-10-04T00:07:58Z2008-10-04T00:07:58Z<p>This approach is fine for a small project, however for anything of significant size you should consider either a 3rd party library for constructing your queries or developing your own.</p>
<p>The general pattern I use goes something like this:
(I'm using Java syntax because that's what i am most used to.)</p>
<p>Query Template Properties File</p>
<pre><code>some.query=INSERT INTO Choices VALUES ( '{0}', '{1}', '{2}', '{3}' )
</code></pre>
<p>Framework Code</p>
<pre><code>public class SqlUtil {
static Properties queries;
static {
queries = <LOAD QUERY PROPS>
}
public static SqlCommand createCommand(String propName, Object params ... )
throws SqlException
{
String cmd = queries.getString(propName)
if ( propName == null || "".equals(propName) )
throw new SqlException("Query not found");
int i=0;
for ( Object param : params ) {
cmd = cmd.replace("{" + i + "}", param)
i++;
}
return new SqlCommand(cmd);
}
}
</code></pre>
<p>Usage Code:</p>
<pre><code>SqlCommand dc = SqlUtil.createCommand("some.query", SanitizeInput(strUser), SanitizeInput(strFirstHalfDay) )
</code></pre>
http://stackoverflow.com/questions/169293/what-are-some-good-java-make-utilities/169351#1693514Answer by Declan Shanaghy for What are some good java make utilities?Declan Shanaghy2008-10-03T23:48:01Z2008-10-03T23:48:01Z<p><strong>Forget ANT!!</strong></p>
<p><a href="http://maven.apache.org/" rel="nofollow">Apache Maven</a> is the way to go if you ask me.</p>
<p>The feature i like the most is it built in in dependency management.
This means you dont have to check 3rd party JARs into your source control project.</p>
<p>You specify your dependencies in the maven POM (Project Object Model - Its basically an XML description of your project) and maven automatically downloads, compiles against them and packages them with your app.</p>
<p>Other really nice features are:
Release management and distribution publication
- Perform releases using maven console commands. This feature will tag your code base in source control. Checkout a clean copy, build it & package it for deployment. A second command will upload it to your repository for distribution to other end users.</p>
<p>A large and growing repository of libraries already using maven
- EVERY Apache project uses maven. LOADS more are on board also. <a href="http://repo1.maven.org/maven2/" rel="nofollow">See for yourself, here's the main repo</a></p>
<p>Ability to host your own repo.
- Where you can release your own builds and also upload JARs that dont exist in other public repos (like most SUN jars)</p>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/169325#1693254Answer by Declan Shanaghy for What real life bad habits has programming given you?Declan Shanaghy2008-10-03T23:33:53Z2008-10-03T23:33:53Z<p>I think rather than programming, because the web has given me instant access to the information i need within a few seconds of typing into google. I expect answers from people to be just as consise and accurate.</p>
<p>When people don't answer the question that i ask them it drives me mad!!</p>
<p>For example:
Me:
What time did John say he'd be here?</p>
<p>Answer:
Well he said he had to go to the store first to pick up a carton of milk for his great aunt who is bed-ridden, then he was going to wash the cat. Then later he has to pick up Mary from night school and they'll probably go out for dinner later. Oh....and he was wondering if you had dropped off the hedge trimmer you borrowed last week because he hadn't seen it around.</p>
<p>Me:
So is he coming over then?</p>
<p>...</p>
http://stackoverflow.com/questions/168805/what-real-life-good-habits-has-programming-given-you/169297#1692975Answer by Declan Shanaghy for What real life good habits has programming given you?Declan Shanaghy2008-10-03T23:23:06Z2008-10-03T23:23:06Z<p>I think the 2 biggest life skills I've developed are </p>
<p>1 - Problem solving</p>
<p>When faced with a situaition/problem i analyze my options and the pros/cons that go along with each. In the end I select the options which work best for all parties involved in "The Plan"</p>
<p>2 - flexibility.</p>
<p>The ability to change "The Plan" on the fly and without a fuss when a certain aspect of it fails.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/169230#1692300Answer by Declan Shanaghy for What's your #1 way to be careful with a live database?Declan Shanaghy2008-10-03T23:04:01Z2008-10-03T23:04:01Z<p>1 - Always create a backup before opening a connection when you know you will need to update or insert records.</p>
<p>2 - When writing an update statement ALWAYS write the WHERE clause first then cursor back to the beginning of the line and write the field update portion.</p>
<p>3 - the where statement for #2 should be checked with a select statement.</p>
http://stackoverflow.com/questions/165408/what-programming-acronyms-do-you-frequently-use-without-knowing-the-meaning-of/169221#1692210Answer by Declan Shanaghy for What Programming acronyms do you frequently use without knowing the meaning ofDeclan Shanaghy2008-10-03T23:00:21Z2008-10-03T23:00:21Z<p>I could never use an acronym without first knowing its meaning. For me its just like using any ordinary word without knowing its meaning, it's bound to bite you in the ass at some stage.</p>
http://stackoverflow.com/questions/986627/detect-if-app-was-downloaded-from-android-market/991120#991120Comment by Declan Shanaghy on Detect if app was downloaded from Android MarketDeclan Shanaghy2009-11-06T18:59:46Z2009-11-06T18:59:46ZThat might solve the problem but i would definitely NOT put my full private key into my code if i was you.
Maybe you could get away with just using a 20 char subset of the key or something?
http://stackoverflow.com/questions/1684055/android-are-services-shared-among-processes/1684519#1684519Comment by Declan Shanaghy on Android - Are services shared among processes?Declan Shanaghy2009-11-06T00:22:06Z2009-11-06T00:22:06ZI know that is definitely the case when a service is used within a single application, however i'm still skeptical that this applies to multiple apps accessing a service provided in a jar file which is re-packaged in each APK.
What happens if multiple different versions of the jar are being used?http://stackoverflow.com/questions/297680/how-do-sel-and-select-work-in-iphone-sdk/297695#297695Comment by Declan Shanaghy on How do SEL and @select work in iphone sdk?Declan Shanaghy2009-07-23T19:42:20Z2009-07-23T19:42:20ZTo invoke the selector you need to call:
[anObject performSelector:selector];
http://stackoverflow.com/questions/175695/how-do-i-designate-in-xsd-that-an-element-only-contains-cdataComment by Declan Shanaghy on How do i designate in XSD that an element only contains CDATA?Declan Shanaghy2008-10-09T18:39:13Z2008-10-09T18:39:13ZThe consumer of my doc also needs some more info which is defined in its own XML language. We don't want to use separate files. What i want to do is piggyback another XML doc inside mine.http://stackoverflow.com/questions/185239/displaying-loading-text-while-doing-a-webrequest/185263#185263Comment by Declan Shanaghy on Displaying Loading text while doing a WebRequestDeclan Shanaghy2008-10-09T18:33:44Z2008-10-09T18:33:44ZHow about just popping up a layer on the current page instead of a redirect. I suggested that in my answer as an alternative to a redirecthttp://stackoverflow.com/questions/185314/what-happens-if-i-dont-close-a-system-diagnostics-process-in-my-c-console-app/185342#185342Comment by Declan Shanaghy on What happens if I don't close a System.Diagnostics.Process in my C# console app?Declan Shanaghy2008-10-09T00:35:38Z2008-10-09T00:35:38ZNote that calling Close on a process does not cause the process to exit.http://stackoverflow.com/questions/181341/tunnel-over-https/185414#185414Comment by Declan Shanaghy on Tunnel over HTTPSDeclan Shanaghy2008-10-09T00:04:43Z2008-10-09T00:04:43Zlinux 2.4...decade...LOL!
You didn't mention that you are also assuming he has a processor powerful enough for 2.4!http://stackoverflow.com/questions/175695/how-do-i-designate-in-xsd-that-an-element-only-contains-cdata/175706#175706Comment by Declan Shanaghy on How do i designate in XSD that an element only contains CDATA?Declan Shanaghy2008-10-06T19:11:18Z2008-10-06T19:11:18ZSO how would you recommend that i writ ethe XSD?
Like this?
<element name="price-update" type="string"></element>