Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #4K
~5K People Reached
Favorite Tags
Member Avatar for bhanu1607

I am new to android and ksoap2. I am trying to get a map through web service. My soap response is like below. <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns2:getAllMessagesResponse xmlns:ns2="http://messages.webservice.smshost.com/"> <return> <messageEntries> <mobile>9676783637</mobile> <message> <messageDate>2013-12-21T22:11:14.461+05:30</messageDate> <SMSId>1</SMSId> <sent>true</sent> <text>Hello</text> <userId>bhanu1607</userId> <userMobile>96767xxxxx</userMobile> </message> <message> <messageDate>2013-12-21T22:11:14.461+05:30</messageDate> <SMSId>1</SMSId> <sent>true</sent> <text>Fine</text> <userId>bhanu1607</userId> <userMobile>96767xxxxx</userMobile> </message> </messageEntries> <messageEntries> <mobile>9676783636</mobile> …

Member Avatar for bhanu1607
0
1K
Member Avatar for chdboy

When I click on Button which fetch records from the database it works fine public void fetchrecords() throws SQLException { Statement stmt = null; String query = "select * from Employer where Fileno=1"; try { stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE); rs = stmt.executeQuery(query); while (rs.next()) { firstNameTextField.setText(rs.getString(2)); lastNameTextField.setText(rs.getString(3)); addressTextField.setText(rs.getString(4)); //and more records. …

Member Avatar for chdboy
0
180
Member Avatar for bhanu1607

Hi All, Can any one tell me the algorithm for MD5,SHA-256 encryption and decription. I can found MD5 emcryption but not unable to found decryption. Thanks & Regards Bhanu Teja M.

Member Avatar for gusano79
0
1K
Member Avatar for bhanu1607

Hi All, This is Bhanu Teja M. I have a problem with an object. Actually i have to convert an object into another object. Here in my Category object contains a list of categories (subcategories). The main issues in this code is we have to convert the all subcategories (Category …

Member Avatar for JamesCherrill
0
326
Member Avatar for bhanu1607

Hi All, This is Bhanu Teja M. I just wanted to write a online quiz application, which various people can participate in quiz from different locations. For this, i need to maintain a single screen for all users and maintain and display the same data,status across the all participents. Can …

Member Avatar for deltascrow
0
303
Member Avatar for bhanu1607

Hi All, I don’t know whether my question is a meaning full or not, but I am presenting my doubt here. Basically I am a java programmer. I have done some web projects. Now, I am just getting some ideas that to interact with hardware. But, I have zero knowledge …

0
116
Member Avatar for bhanu1607

Hi, I have a requriement to convert all my properties files from English to Hindi to make my project internationalization. Can any one please tell me, is there any tool to convert my property files from one language to another language. I have found some language transulator sites, but it …

0
116
Member Avatar for bhanu1607

Hi, Can any one tell me, can i use a value in the entire site? That means, i need to use that value out site project in the same site. Please help me. i got a value in my jsp page, need to forward that value into a different war …

Member Avatar for jwenting
0
132
Member Avatar for bhanu1607

Hi , I have a problem. I am inserting 5 rows into a table. Before inserting i disabled the auto commit(conn.setAutoCommit(false)). And after i have not at all commited the transaction. And i used rollback for every exception in catch block. But, The transactions are saving up to the exception. …

Member Avatar for mKorbel
0
93
Member Avatar for bhanu1607

Hello every one, I have small problem. Can any one tell me how to get the url from an anchor tag dynamically. That is when i click on link the next coming url i need to send to a script can any one help me... My problem is when i …

Member Avatar for coervivekmca
0
382
Member Avatar for bhanu1607

hi, Can any one tell me How to get url or uri from address bar dynamically in XSLT... It will helps me a lot. Regards Bhanu.

Member Avatar for iceandrews
0
105
Member Avatar for bhanu1607

Hi to all, After comming alert, cursor should not go to the next field. i am a beginner to script functions. can any one give me solution . [CODE] <script> function validateDate(strdate) { if(strdate.length < 8 || strdate.length > 8) { alert("Error:Enter Valid Date"); } else { ValidateNum(strdate); } } …

Member Avatar for Taywin
0
114
Member Avatar for bhanu1607

Hi, Can any one help me. Please Explain this code. [CODE] <div id="toolMenu"> <ul> <xsl:for-each select="categories/category"> <xsl:sort select="@order" data-type="number"/> <xsl:apply-templates select="."> <xsl:with-param name="content" select="'false'"/> </xsl:apply-templates> </xsl:for-each> <!-- Commented to Remove help --> <!--<xsl:if test="//tool/@hasHelp='true'"> <li> <a accesskey="h" href="javascript:;" class="icon-sakai-help"> <xsl:attribute name="onclick">window.open('<xsl:value-of select="config/helpUrl"/>','Help','resizable=yes,toolbar=no,scrollbars=yes, width=800,height=600')</xsl:attribute> <xsl:attribute name="onkeypress">window.open('<xsl:value-of select="config/helpUrl"/>','Help','resizable=yes,toolbar=no,scrollbars=yes, width=800,height=600')</xsl:attribute>Help</a> </li> </xsl:if>--> </ul> …

Member Avatar for xml_looser
0
125
Member Avatar for bhanu1607

Hi, I need to concatenate 3 strings to make URL dynamically. [CODE] <xsl:variable name="userurl"> <xsl:choose> <xsl:when test="currentUser/first != ''"> <xsl:value-of select="currentUser/first"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="currentUser/userid"/> </xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:variable name="url"> <xsl:value-of select="concat('http://localhost:8080/xsl-portal/site/~',$userurl,'/page/487d2e0a-ca50-440b-a8c2-e98a2cee632c')"/> </xsl:variable> <xsl:text>|</xsl:text> <a href="{$url}" target="_blank"> <xsl:text>Search</xsl:text> </a> [/CODE] Here i am not able to get the link, The …

Member Avatar for mrame
1
91
Member Avatar for bhanu1607

Here i created four buttons. If i clicked second one i should able to draw a line. please tell me what is the mistake.. [code = Java]import java.awt.*; import javax.swing.*; import java.awt.event.*; class Polygon extends JFrame implements ActionListener { JFrame f; public JPanel jp1,jp2,jp3; JButton b1,b2,b3,b4,b5; JTextField txt; int x,y; …

Member Avatar for NormR1
0
150
Member Avatar for bhanu1607

This is code for, a smiley have to move on the screen from one place to another. But in this code Smiley create but it is moving. Please tell my? Is there any wrong in my code. import javax.swing.*; import java.awt.*; class CreateSmiley extends JPanel { int x = 0,y …

Member Avatar for bhanu1607
0
96