<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by ihatework</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Sun, 14 Jun 2026 20:01:52 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Guitar pick necklace</title>
            <link>http://forum.lowyat.net/topic/773920</link>
            <description>Does anyone know where I can buy a guitar pick necklace? Or some place where they can make a proper job of putting a guitar pick on to a necklace?</description>
            <author>ihatework</author>
            <category>Musicians</category>
            <pubDate>Sat, 23 Aug 2008 13:13:43 +0800</pubDate>
        </item>
        <item>
            <title>Java - SOAP using Axis</title>
            <link>http://forum.lowyat.net/topic/593364</link>
            <description>Hi guys,&lt;br /&gt;&lt;br /&gt;I am developing the server-side part of the SOAP interface using Axis with Java as the programming language.&lt;br /&gt;How do I generate a response with multiple parameters which will be something like the following? &lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;&amp;#60;?xml version=&amp;#34;1.0&amp;#34;?&amp;#62;&lt;br /&gt;&amp;#60;soap&amp;#58;Envelope&lt;br /&gt;xmlns&amp;#58;soap=&amp;#34;http&amp;#58;//www.w3.org/2001/12/soap-envelope&amp;#34;&lt;br /&gt;soap&amp;#58;encodingStyle=&amp;#34;http&amp;#58;//www.w3.org/2001/12/soap-encoding&amp;#34;&amp;#62;&lt;br /&gt;&lt;br /&gt; &amp;nbsp;&amp;#60;soap&amp;#58;Body xmlns&amp;#58;m=&amp;#34;http&amp;#58;//www.example.org/stock&amp;#34;&amp;#62;&lt;br /&gt; &amp;nbsp; &amp;nbsp;&amp;#60;m&amp;#58;GetStockPriceResponse&amp;#62;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#60;m&amp;#58;Item&amp;#62;Shoes&amp;#60;/m&amp;#58;Item&amp;#62;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#60;m&amp;#58;Price&amp;#62;34.5&amp;#60;/m&amp;#58;Price&amp;#62;&lt;br /&gt; &amp;nbsp; &amp;nbsp;&amp;#60;/m&amp;#58;GetStockPriceResponse&amp;#62;&lt;br /&gt; &amp;nbsp;&amp;#60;/soap&amp;#58;Body&amp;#62;&lt;br /&gt;&lt;br /&gt;&amp;#60;/soap&amp;#58;Envelope&amp;#62;&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;This is the part of the xml that I have difficulty with.&lt;br /&gt;&lt;b&gt;    &amp;lt;m:GetStockPriceResponse&amp;gt;&lt;br /&gt;      &amp;lt;m:Item&amp;gt;Shoes&amp;lt;/m:Item&amp;gt;&lt;br /&gt;      &amp;lt;m:Price&amp;gt;34.5&amp;lt;/m:Price&amp;gt;&lt;br /&gt;    &amp;lt;/m:GetStockPriceResponse&amp;gt;&lt;/b&gt;</description>
            <author>ihatework</author>
            <category>Codemasters</category>
            <pubDate>Tue, 18 Dec 2007 10:05:46 +0800</pubDate>
        </item>
        <item>
            <title>Java - Parsing XML with DOM</title>
            <link>http://forum.lowyat.net/topic/435871</link>
            <description>&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;&amp;#60;string&amp;#62;&lt;br /&gt;&amp;#60;Database&amp;#62; &lt;br /&gt;&amp;#60;Content&amp;#62;&amp;#60;ID&amp;#62;1&amp;#60;/ID&amp;#62;&amp;#60;Name&amp;#62;ABC&amp;#60;/Name&amp;#62;&amp;#60;/Content&amp;#62;&lt;br /&gt;&amp;#60;Content&amp;#62;&amp;#60;ID&amp;#62;2&amp;#60;/ID&amp;#62;&amp;#60;Name&amp;#62;DEF&amp;#60;/Name&amp;#62;&amp;#60;/Content&amp;#62;&lt;br /&gt;&amp;#60;Content&amp;#62;&amp;#60;ID&amp;#62;3&amp;#60;/ID&amp;#62;&amp;#60;Name&amp;#62;GHI&amp;#60;/Name&amp;#62;&amp;#60;/Content&amp;#62;&lt;br /&gt;&amp;#60;/Database&amp;#62;&lt;br /&gt;&amp;#60;/string&amp;#62; &lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;how do i parse something with 2 root nodes like this?&lt;br /&gt;i get stuck at:&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;BufferedInputStream in =&lt;br /&gt; &amp;nbsp; &amp;nbsp;new BufferedInputStream&amp;#40;urlConn.getInputStream&amp;#40;&amp;#41;&amp;#41;;&lt;br /&gt; &amp;nbsp;	DocumentBuilderFactory factory =&lt;br /&gt; &amp;nbsp; &amp;nbsp;DocumentBuilderFactory.newInstance&amp;#40;&amp;#41;;&lt;br /&gt; &amp;nbsp;	DocumentBuilder builder = factory.newDocumentBuilder&amp;#40;&amp;#41;;&lt;br /&gt;&lt;br /&gt; &amp;nbsp;	Document documentResponse = builder.parse&amp;#40;in&amp;#41;;&lt;br /&gt; &amp;nbsp;	documentResponse.getDocumentElement&amp;#40;&amp;#41;.normalize&amp;#40;&amp;#41;;&lt;br /&gt;&lt;br /&gt; &amp;nbsp;	NodeList responseNodeList1 =&lt;br /&gt; &amp;nbsp; &amp;nbsp;documentResponse.getElementsByTagName&amp;#40;&amp;#34;string&amp;#34;&amp;#41;;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>ihatework</author>
            <category>Codemasters</category>
            <pubDate>Mon, 02 Apr 2007 13:26:03 +0800</pubDate>
        </item>
        <item>
            <title>guitar body repairs</title>
            <link>http://forum.lowyat.net/topic/418385</link>
            <description>a few weeks back i accidentally knocked my electric guitar on something and to my horror, a small bit of the wood from the head of the guitar got chipped off.&lt;br /&gt;&lt;!--emo&amp;:cry:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/cry.gif' border='0' style='vertical-align:middle' alt='cry.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;im just wondering whether this kind of problem can be fixed and for roughly about how much</description>
            <author>ihatework</author>
            <category>Musicians</category>
            <pubDate>Mon, 26 Feb 2007 15:15:05 +0800</pubDate>
        </item>
        <item>
            <title>Learning how to solo</title>
            <link>http://forum.lowyat.net/topic/335484</link>
            <description>Does anyone have any advice for a person who is learning how to solo on an electric guitar?&lt;br /&gt;I find it really difficult because I don&amp;#39;t know where to start and I don&amp;#39;t know many licks.</description>
            <author>ihatework</author>
            <category>Musicians</category>
            <pubDate>Sun, 03 Sep 2006 11:01:12 +0800</pubDate>
        </item>
        <item>
            <title>Jackson Pro Series guitars</title>
            <link>http://forum.lowyat.net/topic/335402</link>
            <description>I am looking for a new guitar...&lt;br /&gt;I am just an intermediate player, still learning the instrument.&lt;br /&gt;Someone recommended to me a Jackson Pro Series guitar, I am not sure if it is good or not? I was quoted RM3,300 for it.&lt;br /&gt;How do I tell if the guitar is a good one or not?&lt;br /&gt;Please advise. &lt;br /&gt;Thanks.</description>
            <author>ihatework</author>
            <category>Musicians</category>
            <pubDate>Sun, 03 Sep 2006 00:50:32 +0800</pubDate>
        </item>
        <item>
            <title>Session sharing between web applications</title>
            <link>http://forum.lowyat.net/topic/317721</link>
            <description>I am required to use PHP with either JSP or ASP.&lt;br /&gt;After a user logs in, a PHP session is created. &lt;br /&gt;After that, I have to carry that session on to either a JSP or ASP page.&lt;br /&gt;Is there any way this can be done?</description>
            <author>ihatework</author>
            <category>Codemasters</category>
            <pubDate>Mon, 24 Jul 2006 09:41:39 +0800</pubDate>
        </item>
    </channel>
</rss>
