User pkchukiss - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T09:36:51Z http://stackoverflow.com/feeds/user/2261 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1712768/what-jabber-xmpp-libraries-are-available-for-pys60-python-for-symbian-s60-inter 1 What Jabber/XMPP libraries are available for PyS60 (Python for Symbian S60) interpreter? pkchukiss 2009-11-11T03:11:45Z 2009-11-11T17:44:54Z <p>I'm interested in developing a XMPP client on the mobile S60 Symbian platform using the Python interpreter PyS60. I've done a search on Google for possible libraries, but turned up empty. </p> <p>I'm hoping that by asking this on SO, I can get a definite answer on whether there is actually an existing library that I just hadn't had the luck to find, or if it doesn't really exist. Failing that, I'm thinking of writing my own library. If there is any XML library within PyS60 to make this task easier (I know the normal interpreter has libraries, but they don't appear to be portable to PyS60), that would be good.</p> <p>The target device is a Nokia N78, Symbian 3rd Edition FP (Feature Pack) 2</p> http://stackoverflow.com/questions/1266349/utilise-common-entity-classes-across-different-jax-ws-web-services 0 Utilise common entity classes across different JAX-WS web services pkchukiss 2009-08-12T14:01:26Z 2009-08-12T14:41:41Z <p>I have a few JAX-WS web services hosted on the same server. They use the same entity objects, but when the web services are consumed by a client, the reflected entity objects are always different between the web services.</p> <p>How do I force all the clients to identify the entity objects to be of the same data type across multiple web services?</p> <p>i.e.</p> <p>webservice.Student class for web service StudentAdministration and webservice.Student class for web service ClassAdministration</p> <p>are both different objects in the consumer's point of view. How do I change my web service to expose the webservice.Student class to let the consumer know that both are the same entity types, even though they are exposed from different web services?</p> http://stackoverflow.com/questions/1163795/marshalling-polymorphic-objects-in-jax-ws 2 Marshalling polymorphic objects in JAX-WS pkchukiss 2009-07-22T08:17:21Z 2009-07-22T12:03:26Z <p>I'm creating a JAX-WS type webservice, with operations that return an object WebServiceReply. The class WebServiceReply itself contains a field of type Object. The individual operations would populate that field with a few different data-types, depending on the operation.</p> <p>Publishing the WSDL (I'm using Netbeans 6.7), and getting a ASP.NET application to retrieve and parse the WSDL was fine, but when I tried to call an operation, I would receive the following exception:</p> <pre><code>javax.xml.ws.WebServiceException: javax.xml.bind.MarshalException - with linked exception: [javax.xml.bind.JAXBException: class [LDataObject.Patient; nor any of its super class is known to this context.] </code></pre> <p>How do I mark the annotations in the DataObject.Patient class, as well as the WebServiceReply class to get it to work? I haven't been able to fine a definitive resource on marshalling based upon annotations within the target classes either, so it would be great if anybody could point me to that too.</p> <h2>WebServiceReply.java</h2> <pre><code>@XmlRootElement(name="WebServiceReply") public class WebServiceReply { private Object returnedObject; private String returnedType; private String message; private String errorMessage; .......... // Getters and setters follow } </code></pre> <h2>DataObject.Patient.java</h2> <pre><code>@XmlRootElement(name="Patient") public class Patient { private int uid; private Date versionDateTime; private String name; private String identityNumber; private List&lt;Address&gt; addressList; private List&lt;ContactNumber&gt; contactNumberList; private List&lt;Appointment&gt; appointmentList; private List&lt;Case&gt; caseList; } </code></pre> <p><hr /></p> <h2>Solution</h2> <p>(Thanks to <a href="http://stackoverflow.com/questions/1163795/marshalling-polymorphic-objects-in-jax-ws/1164187#1164187">Gregory Mostizky</a> for his answer)</p> <p>I edited the WebServiceReply class so that all the possible return objects extend from a new class ReturnValueBase, and added the annotations using @XmlSeeAlso to ReturnValueBase. JAXB worked properly after that!</p> <p>Nonetheless, I'm still learning about JAXB marshalling in JAX-WS, so it would be great if anyone can still post any tutorial on this.</p> <p>Gregory: you might want to add-on to your answer that the return objects need to sub-class from ReturnValueBase. Thanks a lot for your help! I had been going bonkers over this problem for so long! </p> http://stackoverflow.com/questions/399536/missing-drive-when-attaching-database-in-sql-management-studio-2005 0 Missing drive when attaching database in SQL Management Studio 2005 pkchukiss 2008-12-30T04:31:40Z 2009-05-28T14:45:44Z <p>I'm trying to attach an external mdf file to my SQLEXPRESS instance from within the SQL Management Studio 2005. However, I'm unable to see the drive that the database file resides in under the directory browser within the "Locate Database Files" prompt.</p> <p>Is there anything that is preventing the Management Studio or the SQL instance from recognising my drive? The drive itself is a local disk installed within my computer.</p> http://stackoverflow.com/questions/833767/listcountry-becomes-country-across-web-service 1 List<Country> becomes Country [] across web service pkchukiss 2009-05-07T09:57:40Z 2009-05-07T13:28:06Z <p>I have a web service that when invoked, returns a Result object that contains a List polymorphically. However, when I add a reference in my client application, the public field becomes an array of Country in the client application. How do I change the field in the client application to List?</p> <pre><code>public Result GetCountryList() { List&lt;Country&gt; countries = GrabCountryList(); Result result = new Result(); result.theResult = countries; } </code></pre> <p>and this is the public property</p> <pre><code>public object theResult { get {return _theResult; } set {_theResult = value;} } </code></pre> <p><hr> <strong>Accepted answer</strong> from Mehmet Aras:</p> <p>Right click on the service reference, and select "Configure Reference". Under Collection type, select System.Collection.Generic.List. Update the service reference, and it should be good to go.</p> <p>Thanks to Matt Hamilton for the suggestion to create a new list from the array.</p> http://stackoverflow.com/questions/724028/swfobject-flash-player-script-wode-transparent/724053#724053 0 Answer by pkchukiss for SWFObject Flash Player Script: Wode = Transparent? pkchukiss 2009-04-07T03:37:37Z 2009-04-07T03:37:37Z <p>I tested your site in Mozilla Firefox 3.1 beta 3, Internet Explorer 8, and Google Chrome 2 beta, and the menus work. What I've noticed is that my CPU usage (Core 2 Duo) shot up to 80% once your flash has completed loading.</p> <p>Your page source is quite hard to read, do you have a better indented one?</p> http://stackoverflow.com/questions/721279/inkanalyzer-throws-filenotfoundexception-on-vista-deployment 0 InkAnalyzer throws FileNotFoundException on Vista deployment pkchukiss 2009-04-06T12:49:15Z 2009-04-06T13:57:14Z <p>I have a WPF C# application that makes use of the InkAnalyzer class. On my development platform (Windows XP), I have added references to IACore.dll and IAWinFx.dll for the project before building the release.</p> <p>However, when I tried to run this on a HP TouchSmart tablet PC (on Windows Vista), the application throws a "FileNotFoundException". Offending file name is IACore.dll.</p> <p>Next, I selected the "Copy Local" option for both files, and rebuilt the application. However, once that is done, yet another file is not found. This time it is "IALoader.dll".</p> <p>I realise that I must be missing something on the HP TouchSmart (on Windows Vista). Is the Vista laptop missing a SDK?</p> <p><hr></p> <h1>A Solution</h1> <p>I couldn't find IACore.msm anywhere on my SDK, and it's a recent SDK (XP Tablet PC SDK version 1.7), so I used Search to find the IALoader.dll, and manually copied it to my application's folder. No more complaints after that.</p> <p>However, if there's a way for me to avoid bloating my application deployment with these files, it would be great. Thanks for your help, Jared!</p> http://stackoverflow.com/questions/718321/is-java-2-sufficient-for-getting-scjp-standard-edition-6/721349#721349 0 Answer by pkchukiss for Is Java 2 sufficient for getting SCJP Standard edition 6? pkchukiss 2009-04-06T13:04:59Z 2009-04-06T13:04:59Z <p>There are a lot of changes between 1.6 and 1.2. A short list:</p> <ul> <li>assert is now a keyword</li> <li>Introduction of generics in 1.5</li> <li>New NavigableMap and NavigableSet interfaces</li> </ul> <p>I strongly recommend that you get a book on Java 1.6, instead of relying on the 1.2 book.</p> http://stackoverflow.com/questions/21651/adobe-air-handling-json-objects-from-server 2 Adobe AIR: Handling JSON objects from server pkchukiss 2008-08-22T02:26:26Z 2009-01-26T10:15:32Z <p>I have a script that retrieves objects from a remote server through an Ajax call. The server returns objects in JSON notation.</p> <p>However, in Adobe AIR, there is a restriction on using <a href="http://labs.adobe.com/wiki/index.php/AIR:HTML_Security_FAQ#Why_restrict_eval.28.29_for_all_Application_content_if_there_are_legitimate_use_cases_for_using_it.3F" rel="nofollow">eval()</a> for security reasons. So I'm able to get replies from the remote server, but can't turn them back into Javascript objects. Is there any workaround for this issue? I would like to use JSON for my Javascript objects, since it can be used almost immediately.</p> <p>Sidenote: I do understand the security implications for forcing the issue, but I will be doing some rapid application development for a competition, so the program would only be a quick prototype, and not used for production purposes. Nevertheless, it would be great if there's a better alternative to what I'm trying to do now</p> <p><hr /></p> <p><strong>Update:</strong></p> <p>Thanks to <a href="#24919" rel="nofollow">Theo</a> and <a href="#21716" rel="nofollow">jsight</a> for their answers; </p> <p>One important thing I learnt today is that I can actually make use of ActionScript libraries by using the <pre>&lt;script src="lib/myClasses.swf" type="application/x-shockwave-flash"&gt;&lt;/script&gt;</pre> tag extended by Adobe AIR. Check out <a href="#24919" rel="nofollow">Theo's</a> link for more details!</p> http://stackoverflow.com/questions/399536/missing-drive-when-attaching-database-in-sql-management-studio-2005/399556#399556 0 Answer by pkchukiss for Missing drive when attaching database in SQL Management Studio 2005 pkchukiss 2008-12-30T04:51:19Z 2008-12-30T04:51:19Z <p>devstuff, thanks a lot for your help! It was the problem with the file permissions.</p> http://stackoverflow.com/questions/27972/are-httponly-cookies-a-viable-option-for-an-ajax-website/28021#28021 0 Answer by pkchukiss for Are HttpOnly cookies a viable option for an AJAX website? pkchukiss 2008-08-26T13:26:39Z 2008-08-26T13:26:39Z <p>Cookies are automatically handled by the browser when you make an AJAX call, so there's no need for your Javascript to mess around with cookies.</p> http://stackoverflow.com/questions/21651/adobe-air-handling-json-objects-from-server/22155#22155 0 Answer by pkchukiss for Adobe AIR: Handling JSON objects from server pkchukiss 2008-08-22T12:03:33Z 2008-08-22T12:03:33Z <p>@ <a href="#22099" rel="nofollow">Mark Ingram</a>:</p> <p>I already know how to use JSON in Javascript.</p> <p>I'm trying to work around Adobe AIR's <a href="http://labs.adobe.com/wiki/index.php/AIR:HTML_Security_FAQ#Why_restrict_eval.28.29_for_all_Application_content_if_there_are_legitimate_use_cases_for_using_it.3F" rel="nofollow">disabling of eval()</a>, which is currently needed to parse the data from the server as a JSON object.</p> http://stackoverflow.com/questions/21651/adobe-air-handling-json-objects-from-server/22080#22080 0 Answer by pkchukiss for Adobe AIR: Handling JSON objects from server pkchukiss 2008-08-22T11:13:58Z 2008-08-22T11:13:58Z <p>@ <a href="#21716" rel="nofollow">jsight</a>: </p> <p>as3corelib would require that I code in Flex, is there a good solution that uses Javascript which would enable me to receive JSON data? I'm a bit hesitant about writing my code in a language I'm not familiar with, given that the time limit for the competition is 24 hours.</p> http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program/22042#22042 0 Answer by pkchukiss for Best ways to teach a beginner to program? pkchukiss 2008-08-22T10:32:23Z 2008-08-22T10:32:23Z <p>For me, exploring and experimenting within the IDE itself helped me to learn Java and Visual Basic, but I learnt the basics of programming the hard way: Perl 5. There wasn't a free IDE back then, so it meant typing codes into Notepad, saving it, and then run the perl interpreter.</p> <p>I'd say that IDEs make learning the basics of programming easier. Try playing around with control structures and variables first. Say in Java:</p> <pre><code>int a = 5; for (int i = 0; i &lt; a; i++) { System.out.println("i is now " + i); } </code></pre> <p>Basically, simply learning the control structures and variables would allow a beginner to start coding fun stuff already.</p> http://stackoverflow.com/questions/687/keyboard-for-programmers/21631#21631 1 Answer by pkchukiss for Keyboard for programmers pkchukiss 2008-08-22T02:05:08Z 2008-08-22T02:05:08Z <p>@ <a href="#19212" rel="nofollow">Maudite</a>:</p> <p>I'm a little sceptical about custom keyboards. If I get too accustomed to a keyboard with a different layout, I'll have trouble coding properly with a normal keyboard. All that muscle memory learnt is going to cause me to hit the wrong key, probably slowing things down.</p> <p>I'll probably not go for a custom layout keyboard because of this reason. Unless of course, I take the custom keyboard with me wherever I go. Now that'll burnish my nerd image!</p> http://stackoverflow.com/questions/1712768/what-jabber-xmpp-libraries-are-available-for-pys60-python-for-symbian-s60-inter/1716884#1716884 Comment by pkchukiss on What Jabber/XMPP libraries are available for PyS60 (Python for Symbian S60) interpreter? pkchukiss 2009-11-16T01:37:10Z 2009-11-16T01:37:10Z Thanks for your help; We've decided not to create XML or XMPP libraries for PyS60, since we're doing rapid prototyping of proof-of-concepts, so we've opted for a JSON-to-XML gateway, and using JSON for the client. Thanks again for your help! http://stackoverflow.com/questions/1712768/what-jabber-xmpp-libraries-are-available-for-pys60-python-for-symbian-s60-inter Comment by pkchukiss on What Jabber/XMPP libraries are available for PyS60 (Python for Symbian S60) interpreter? pkchukiss 2009-11-11T03:16:14Z 2009-11-11T03:16:14Z I've found (pyexpat) <a href="http://pdis.hiit.fi/pdis/download/pyexpat/" rel="nofollow">pdis.hiit.fi/pdis/download/pyexpat</a> for parsing XML, but it appears to be for 1st and 2nd edition devices only http://stackoverflow.com/questions/1266349/utilise-common-entity-classes-across-different-jax-ws-web-services/1266613#1266613 Comment by pkchukiss on Utilise common entity classes across different JAX-WS web services pkchukiss 2009-08-12T20:54:15Z 2009-08-12T20:54:15Z In that case, is it possible to do anything on the web service side that can cause the consumer's generated classes to be the same across the number of web services? I thought that the last post in <a href="http://forums.java.net/jive/thread.jspa?threadID=28673" rel="nofollow">forums.java.net/jive/thread.jspa?threadID=28673/&hellip;</a> is relevant to what I want to do, but I don't really understand how I'm going to include the 2 files the author states inside ant