<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for DBWS.NET</title>
	<atom:link href="http://www.dbws.net/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dbws.net/blog</link>
	<description>Software development mutterings and maybe a little something about myself.</description>
	<lastBuildDate>Tue, 05 Apr 2011 10:26:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Grails, jQuery and the jQuery Grid &#8211; Tutorial One by Ranjith</title>
		<link>http://www.dbws.net/blog/2010/03/21/grails-and-jquery-grid-tutorial/#comment-52022</link>
		<dc:creator>Ranjith</dc:creator>
		<pubDate>Tue, 05 Apr 2011 10:26:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbws.net/blog/?p=39#comment-52022</guid>
		<description>Hi Dear,

I need sample struts2 code for this jquery grid example could u help me ...</description>
		<content:encoded><![CDATA[<p>Hi Dear,</p>
<p>I need sample struts2 code for this jquery grid example could u help me &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Binary file processing with Java by http://%/bvxhuet</title>
		<link>http://www.dbws.net/blog/2007/02/28/binary-file-processing-with-java/#comment-51990</link>
		<dc:creator>http://%/bvxhuet</dc:creator>
		<pubDate>Fri, 12 Nov 2010 03:27:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbws.net/blog/?p=8#comment-51990</guid>
		<description>&lt;strong&gt;... track backe bei http://jessieagbisit.sabaiii.com/ ......&lt;/strong&gt;

grand , votre blog site disposition style est véritablement nice , Je suis chasse pour un nouveau disposition style pour mon moncler doudoune propre weblog , j&#039;aime vôtre, maintenant je vais aller chercher le identiques thème !...</description>
		<content:encoded><![CDATA[<p><strong>&#8230; track backe bei <a href="http://jessieagbisit.sabaiii.com/" rel="nofollow">http://jessieagbisit.sabaiii.com/</a> &#8230;&#8230;</strong></p>
<p>grand , votre blog site disposition style est véritablement nice , Je suis chasse pour un nouveau disposition style pour mon moncler doudoune propre weblog , j&#8217;aime vôtre, maintenant je vais aller chercher le identiques thème !&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grails, jQuery and the jQuery Grid &#8211; Tutorial One by Iván</title>
		<link>http://www.dbws.net/blog/2010/03/21/grails-and-jquery-grid-tutorial/#comment-51981</link>
		<dc:creator>Iván</dc:creator>
		<pubDate>Thu, 30 Sep 2010 14:40:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbws.net/blog/?p=39#comment-51981</guid>
		<description>Amazing!!. That&#039;s what I&#039;m looking for. I needed to change the default grails table with an ajax tabla an this example is great.

Thank you very much.

Regards, Iván.</description>
		<content:encoded><![CDATA[<p>Amazing!!. That&#8217;s what I&#8217;m looking for. I needed to change the default grails table with an ajax tabla an this example is great.</p>
<p>Thank you very much.</p>
<p>Regards, Iván.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Posting large xml documents from VB6 to a Java servlet. by Bolo</title>
		<link>http://www.dbws.net/blog/2007/05/18/posting-large-xml-documents-from-vb6-to-a-java-servlet/#comment-51974</link>
		<dc:creator>Bolo</dc:creator>
		<pubDate>Thu, 13 May 2010 20:27:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbws.net/blog/?p=10#comment-51974</guid>
		<description>On the vb side, I have two functions which I used, a sendFileToURL(filename,url) which performs the actual and a function which reads the entire file into a string. These are below,  these should help you send the data to your servlet, which then you should able to access using a BufferedReader and request.getReader(). Please let me know if you still have further issues.
[code]
Private Function FileText(filename$) As String
    Dim handle As Integer
    handle = FreeFile
    Open filename$ For Input As #handle
    FileText = Input$(LOF(handle), handle)
    Close #handle
End Function

Public Sub sendFileToUrl(filename As String, url As String)
    On Local Error GoTo errors
    
    Dim xml As New MSXML2.XMLHTTP
    
    &#039;.ServerXMLHTTP
    Dim dataToSend As String
    &#039;Set xml = CreateObject(&quot;MSXML2.ServerXMLHTTP&quot;)
    
    Dim doc As New MSXML2.DOMDocument
    doc.preserveWhiteSpace = True
    doc.async = False
    
    If Dir(filename) &lt;&gt; &quot;&quot; Then
        doc.Load filename
        dataToSend = FileText(filename)
                
        xml.open &quot;POST&quot;, url, False, Empty, Empty
        xml.setRequestHeader &quot;Content-Type&quot;, &quot;text/xml&quot;
        xml.send doc.xml &#039;dataToSend
                
        statusCode = xml.Status
        If statusCode = 200 And Not IsNull(xml.responseXML) Then
            responseText = xml.responseXML.xml
        Else
            responseText = xml.responseText
        End If
        Debug.Print statusCode
        Debug.Print responseText
    End If

errors:
    If Err.Number &gt; 0 Then
        If showErrorMessage Then MsgBox (&quot;Error &quot; + Str(Err) + &quot; : &quot; + Error$(Err))
    End If

    Set xml = Nothing
End Sub
[/code]</description>
		<content:encoded><![CDATA[<p>On the vb side, I have two functions which I used, a sendFileToURL(filename,url) which performs the actual and a function which reads the entire file into a string. These are below,  these should help you send the data to your servlet, which then you should able to access using a BufferedReader and request.getReader(). Please let me know if you still have further issues.</p>
<pre class="brush: plain; title: ; notranslate">
Private Function FileText(filename$) As String
    Dim handle As Integer
    handle = FreeFile
    Open filename$ For Input As #handle
    FileText = Input$(LOF(handle), handle)
    Close #handle
End Function

Public Sub sendFileToUrl(filename As String, url As String)
    On Local Error GoTo errors

    Dim xml As New MSXML2.XMLHTTP

    '.ServerXMLHTTP
    Dim dataToSend As String
    'Set xml = CreateObject(&quot;MSXML2.ServerXMLHTTP&quot;)

    Dim doc As New MSXML2.DOMDocument
    doc.preserveWhiteSpace = True
    doc.async = False

    If Dir(filename) &lt;&gt; &quot;&quot; Then
        doc.Load filename
        dataToSend = FileText(filename)

        xml.open &quot;POST&quot;, url, False, Empty, Empty
        xml.setRequestHeader &quot;Content-Type&quot;, &quot;text/xml&quot;
        xml.send doc.xml 'dataToSend

        statusCode = xml.Status
        If statusCode = 200 And Not IsNull(xml.responseXML) Then
            responseText = xml.responseXML.xml
        Else
            responseText = xml.responseText
        End If
        Debug.Print statusCode
        Debug.Print responseText
    End If

errors:
    If Err.Number &gt; 0 Then
        If showErrorMessage Then MsgBox (&quot;Error &quot; + Str(Err) + &quot; : &quot; + Error$(Err))
    End If

    Set xml = Nothing
End Sub
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Posting large xml documents from VB6 to a Java servlet. by Jeroen</title>
		<link>http://www.dbws.net/blog/2007/05/18/posting-large-xml-documents-from-vb6-to-a-java-servlet/#comment-51972</link>
		<dc:creator>Jeroen</dc:creator>
		<pubDate>Thu, 13 May 2010 18:07:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbws.net/blog/?p=10#comment-51972</guid>
		<description>Can you please send me your sources. I have difficulty with encoding base64 in vb6 and decoding in java:

java.io.StreamCorruptedException: invalid stream header: 50532831
        at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:783)
        at java.io.ObjectInputStream.(ObjectInputStream.java:280)
        at com.bbt.convert.Base64.decodeToObject(Base64.java:883)
        at com.bbt.convert.BBTConvertDATA.main(BBTConvertDATA.java:218)
error: Parse error occurred - null
java.lang.NullPointerException
        at com.bbt.convert.BBTConvertDATA.main(BBTConvertDATA.java:218)</description>
		<content:encoded><![CDATA[<p>Can you please send me your sources. I have difficulty with encoding base64 in vb6 and decoding in java:</p>
<p>java.io.StreamCorruptedException: invalid stream header: 50532831<br />
        at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:783)<br />
        at java.io.ObjectInputStream.(ObjectInputStream.java:280)<br />
        at com.bbt.convert.Base64.decodeToObject(Base64.java:883)<br />
        at com.bbt.convert.BBTConvertDATA.main(BBTConvertDATA.java:218)<br />
error: Parse error occurred &#8211; null<br />
java.lang.NullPointerException<br />
        at com.bbt.convert.BBTConvertDATA.main(BBTConvertDATA.java:218)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grails, jQuery and the jQuery Grid &#8211; Tutorial One by Bolo</title>
		<link>http://www.dbws.net/blog/2010/03/21/grails-and-jquery-grid-tutorial/#comment-51967</link>
		<dc:creator>Bolo</dc:creator>
		<pubDate>Mon, 26 Apr 2010 19:09:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbws.net/blog/?p=39#comment-51967</guid>
		<description>Hi Franscisco,  So are you seeing the customer data in the grid, if so what event/stage are you seeing the &#039;undefined&#039; text ?  Perhaps if I see a screenshot I can see  where you may be having an issue.  

Also, try comparing your code with what I have also supplied in the downloadable sample.

And also note, I have moved all the tutorials from this series over to www.grailsforum.co.uk</description>
		<content:encoded><![CDATA[<p>Hi Franscisco,  So are you seeing the customer data in the grid, if so what event/stage are you seeing the &#8216;undefined&#8217; text ?  Perhaps if I see a screenshot I can see  where you may be having an issue.  </p>
<p>Also, try comparing your code with what I have also supplied in the downloadable sample.</p>
<p>And also note, I have moved all the tutorials from this series over to <a href="http://www.grailsforum.co.uk" rel="nofollow">http://www.grailsforum.co.uk</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grails, jQuery and the jQuery Grid &#8211; Tutorial One by Francisco</title>
		<link>http://www.dbws.net/blog/2010/03/21/grails-and-jquery-grid-tutorial/#comment-51966</link>
		<dc:creator>Francisco</dc:creator>
		<pubDate>Mon, 26 Apr 2010 18:39:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbws.net/blog/?p=39#comment-51966</guid>
		<description>Hello, you know I followed your step by step tutorial. He shows me the grid super well with clients admitted, but after I get to list the word &quot;Undefined&quot; framed, plus I can not sort the titles.

I hope you can help me ..

Thank you.</description>
		<content:encoded><![CDATA[<p>Hello, you know I followed your step by step tutorial. He shows me the grid super well with clients admitted, but after I get to list the word &#8220;Undefined&#8221; framed, plus I can not sort the titles.</p>
<p>I hope you can help me ..</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Faxing Simple MAPI and Exchange Server 2003 by Luke Price</title>
		<link>http://www.dbws.net/blog/2008/10/30/faxing-simple-mapi-and-exchange-server-2003/#comment-51898</link>
		<dc:creator>Luke Price</dc:creator>
		<pubDate>Tue, 16 Feb 2010 15:40:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbws.net/blog/2008/10/30/faxing-simple-mapi-and-exchange-server-2003/#comment-51898</guid>
		<description>Hi Dave

Found this post very useful, we have been having this exact issue at work for over 12 months and our IT &#039;support&#039; guys where clueless.

Thank you.</description>
		<content:encoded><![CDATA[<p>Hi Dave</p>
<p>Found this post very useful, we have been having this exact issue at work for over 12 months and our IT &#8216;support&#8217; guys where clueless.</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a pocket pc iPhone style picture button for the .NET compact framework by duy</title>
		<link>http://www.dbws.net/blog/2007/12/07/creating-a-pocket-pc-iphone-style-picture-button-for-the-net-compact-framework/#comment-23329</link>
		<dc:creator>duy</dc:creator>
		<pubDate>Fri, 07 Nov 2008 03:57:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbws.net/blog/?p=14#comment-23329</guid>
		<description>It&#039;s very useful. thank you very much(sorry about my english)</description>
		<content:encoded><![CDATA[<p>It&#8217;s very useful. thank you very much(sorry about my english)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a pocket pc iPhone style picture button for the .NET compact framework by Pandia</title>
		<link>http://www.dbws.net/blog/2007/12/07/creating-a-pocket-pc-iphone-style-picture-button-for-the-net-compact-framework/#comment-14343</link>
		<dc:creator>Pandia</dc:creator>
		<pubDate>Thu, 19 Jun 2008 12:33:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbws.net/blog/?p=14#comment-14343</guid>
		<description>how to load the image inthe picturebox at run time in PDA application.
my code
picture1.Image = New Bitmap(Assembly.GetExecutingAssembly().GetManifestResourceStream(&quot;Resources.MenuItem.I103.jpg&quot;))
but nullreferenceexpection have came.
what i do.
please clear solution.
my another Email:pandian602@yahoo.com
send it</description>
		<content:encoded><![CDATA[<p>how to load the image inthe picturebox at run time in PDA application.<br />
my code<br />
picture1.Image = New Bitmap(Assembly.GetExecutingAssembly().GetManifestResourceStream(&#8220;Resources.MenuItem.I103.jpg&#8221;))<br />
but nullreferenceexpection have came.<br />
what i do.<br />
please clear solution.<br />
my another Email:pandian602@yahoo.com<br />
send it</p>
]]></content:encoded>
	</item>
</channel>
</rss>

