User harshit - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T22:08:21Z http://stackoverflow.com/feeds/user/67476 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1799205/how-to-create-mysql-query-for-this-criteria 1 how to create mysql query for this criteria? harshit 2009-11-25T18:58:46Z 2009-11-25T19:07:18Z <p>Hi,</p> <p>I have to write an query something like this</p> <pre><code>select * from table where title like '% select from tableb %' </code></pre> <p>this <strong>select from tableb</strong> is a query and not a string</p> http://stackoverflow.com/questions/1799205/how-to-create-mysql-query-for-this-criteria/1799259#1799259 0 Answer by harshit for how to create mysql query for this criteria? harshit 2009-11-25T19:07:18Z 2009-11-25T19:07:18Z <p>i found it </p> <p>select * from table where title like '%'+ select from tableb +'%'</p> http://stackoverflow.com/questions/1798888/how-to-change-this-sql-query 1 how to change this sql query harshit 2009-11-25T18:10:56Z 2009-11-25T18:35:25Z <pre><code>SELECT * FROM dbo.tbh_table WHERE TopicID IN ( SELECT value FROM dbo.fn_split('19,',') ) </code></pre> <p>I have to change above query to execute result like below </p> <pre><code>SELECT * FROM dbo.tbh_table WHERE TopicID LIKE '%19,%' </code></pre> <p>My topicID values are like this 15,19,12,1 But split will give values are 15 19 12 1. because of which i am not able to execute the query.</p> <p>any guidance will help </p> http://stackoverflow.com/questions/1103522/what-is-an-efficient-algorithm-to-find-whether-a-singly-linked-list-is-circular-c 7 What is an efficient algorithm to find whether a singly linked list is circular/cyclic or not? harshit 2009-07-09T12:27:31Z 2009-11-15T01:23:49Z <p>How can i find whether a singly linked list is circular/cyclic or not? I Tried searching but couldn't find a satisfactory solution. If possible, can you provide pseudocode or Java?</p> <p>For Example 1 3 5 71 45 7 5 -stop , its a circular linked list</p> http://stackoverflow.com/questions/1725635/generate-pdf-from-aspx-page 0 generate PDF from ASPx page harshit 2009-11-12T21:46:58Z 2009-11-12T22:20:30Z <p>Hi,</p> <p>1 I have a form with all the data, i need to generate the PDf. Also there are some attachments like word files. </p> <p>2 Is it also possbile to embed the contents of the attachement in the PDF.</p> <p>i am manily looking solution for 2nd part</p> http://stackoverflow.com/questions/1704935/how-does-basepage-generatepassword-in-net-works 0 How does BasePage.GeneratePassword in .net works? harshit 2009-11-10T00:36:38Z 2009-11-10T01:05:20Z <p>Hi I am using BasePage.GeneratePassword(6, 10) to generate the unqiue password for the user. but I have notice that sometimes( i got 5 out of 150 users) same password is generated and i use this as unqiueId for some purpose.</p> <p>How reliable is this function?</p> <p>I am not setting any other property like this 'numberOfNonAlphanumericCharacters'.</p> <p>Any guidance will be of great help?</p> <p>Thanks Harshit </p> http://stackoverflow.com/questions/1690836/how-to-change-the-localhost-to-ip-address 0 how to change the localhost to ip address harshit 2009-11-06T22:13:01Z 2009-11-06T22:16:15Z <p>Hi,</p> <p>I am working on asp.net application when i run using http:\\localhost:1322 i can see the site.</p> <p>but if i give my ip address http:\\111.111.11.11:1322 , i get page not found. even in my desktop</p> <p>Is there any change in setting to be done. because of this i cant send the url to other people in the team.</p> <p>the ip address i am typing is correct :)</p> <p>any guidancewil be of gr8 help</p> http://stackoverflow.com/questions/1689875/how-to-set-the-checkboxlist-properties 1 How To Set The CheckBoxList Properties? harshit 2009-11-06T19:40:35Z 2009-11-06T20:00:15Z <p>I have a checkboxList with some 50 values. but I want only 5 to be displayed and navigate others using scroll bar. </p> <p>I tried using </p> <pre><code>&lt;asp:CheckBoxList CheckBoxes="true" Width="250px" Height="120px" RepeatColumns="5" RepeatDirection="Vertical" RepeatLayout="Flow" runat="server" SelectionMode="Multiple" /&gt; </code></pre> <p>But its not coming proper.. Its coming like </p> <pre><code>[] Value1 [] value2 []val ue3 [] value4 ..... </code></pre> <p>I want it to be</p> <pre><code>[] Value1 [] Value2 ... </code></pre> http://stackoverflow.com/questions/1499828/php-file-not-able-to-upload-in-net-application-permission-issue 0 php file not able to upload in .net application, permission issue harshit 2009-09-30T18:19:33Z 2009-09-30T18:45:18Z <p>Hi,</p> <p>I have a php file in a folder C:\Myfolder and all files are here (html,aspx). When i type the application url\index.html page works fine</p> <p>bt if i give index.php its saying page not found. My php file only contains "hi" message right now.</p> <p>I guess IIS server is not recognizing the php files.</p> http://stackoverflow.com/questions/681427/can-i-make-a-change-in-propietary-war-file 0 Can I make a change in propietary war file? harshit 2009-03-25T12:48:56Z 2009-09-29T02:00:03Z <p>Hi I have a proprietary application and its war file is available to us. I need to basically add a jsp page to the current application. I was thinking i will write the independent jsp, java files build a war and add it to the proprietary war file. </p> <p>Or </p> <p>i will write the jsp, java files and add it to the same war.</p> <p>Can i make a new war and make the proprietory to interact.. Which option is better.</p> http://stackoverflow.com/questions/1482397/delete-element-from-priority-queue-in-c-stl 0 delete element from priority queue in c++ stl harshit 2009-09-26T23:24:36Z 2009-09-26T23:34:31Z <p>Hi Is i have a priority queue with declaration</p> <pre><code>priority_queue&lt;&lt;Node&gt;,vector&lt;Node&gt;,myComp&gt; openQ </code></pre> <p>i am inserting node objects into it. but at some time i have to delete the element from it. (not to remove the top element)</p> <p>Currently to delete it i am popping the element and putting it in array. if the top most element is desired then expect it i push other elements in array.</p> <p>This is like linear search and delete. I know its not efficient and i am looking for some better ways</p> http://stackoverflow.com/questions/1479117/how-to-overload-operator-for-a-queue 0 how to overload > operator for a queue harshit 2009-09-25T19:22:42Z 2009-09-26T09:32:04Z <p>i have a priority queue and i have defined like this:</p> <pre><code>priority_queue&lt;Node*,vector&lt;Node*&gt;,greater&lt;Node*&gt;&gt; myQueue; </code></pre> <p>i have to add to queue on the basis of a parameter param and i have overloaded it like this</p> <pre><code>bool Node::operator&gt;(const Node&amp; right) const { return param&gt;right.param; } </code></pre> <p>since the overload function doesnt take a pointer object, how should i change it so that my overloaded function is called. i am adding to queue this way:</p> <pre><code>Node *myNode myQueue.add(myNode); </code></pre> <p>i cant pass the myNode without making as pointer object. please guide ..</p> <p>@Sellibitze i have done something like this </p> <pre><code> template&lt;typename Node, typename Cmp = std::greater&lt;Node&gt; &gt; struct deref_compare : std::binary_function&lt;Node*,Node*,bool&gt; { deref_compare(Cmp const&amp; cmp = Cmp()) : cmp(cmp) {} bool operator()(Node* a, Node* b) const { return cmp(*a,*b); } private: Cmp cmp; }; typedef deref_compare&lt;Node,std::greater&lt;Node&gt; &gt; my_comparator_t; priority_queue&lt;Node*,vector&lt;Node*&gt;,my_comparator_t&gt; open; </code></pre> <p>i am filled with errors. </p> http://stackoverflow.com/questions/1480278/segmentation-fault-while-inserting-into-priority-queue 0 segmentation fault while inserting into priority queue harshit 2009-09-26T02:38:20Z 2009-09-26T07:29:02Z <p>My definition of priority queue is:</p> <pre><code>template&lt;typename Node, typename Cmp = std::less&lt;Node&gt; &gt; struct deref_compare : std::binary_function&lt;Node*,Node*,bool&gt; { deref_compare(Cmp const&amp; cmp = Cmp()) : cmp(cmp) {} bool operator()(Node* a, Node* b) const { return (a-&gt;getfValue()&gt; b-&gt;getfValue()); } private: Cmp cmp; }; typedef deref_compare&lt;Node,std::greater&lt;Node&gt; &gt; my_comparator_t; priority_queue&lt;Node*,vector&lt;Node*&gt;,my_comparator_t&gt; openq; </code></pre> <p>I am doing:</p> <pre><code>openq.push(myNode) </code></pre> <p>After entering 3-4 nodes I am getting segmentation fault. </p> <p><code>mynode</code> is not empty.</p> <p>How can i resolve it?</p> http://stackoverflow.com/questions/1472413/when-do-we-prefer-round-robin-over-fcfs-and-vice-versa 0 when do we prefer Round robin over FCFS and vice-versa? harshit 2009-09-24T15:23:44Z 2009-09-24T15:37:01Z <p>i know this depends on the design, but i was asked this question and no assumptions taken.. what should i answer and </p> http://stackoverflow.com/questions/1464451/vc-error-node-is-not-a-class-or-namespace 1 Vc++ Error :Node is not a class or namespace harshit 2009-09-23T07:24:19Z 2009-09-23T08:10:19Z <p>My Node.h is </p> <pre><code>class Node{ private: int x; int y; public: Node(); Node(int x, int y); void setXX( int x); ..... } </code></pre> <p>In Node.cpp I am doing:</p> <pre><code>#include "Node.h" #include "stdafx.h" Node:: Node(){} Node:: Node(int x, int y){ this-&gt;x = x; this-&gt;y =y; } void Node::setXX(int x){ this-&gt;x = x; } } </code></pre> <p>I get the errors for all line :</p> <p>Error 2 error C2653: 'Node' : is not a class or namespace name Error 3 error C2673: 'setXX' : global functions do not have 'this' pointers </p> <p>I am using visual studio to compile? Any idea </p> http://stackoverflow.com/questions/666939/embedding-html-files-in-other-html-pages 2 Embedding HTML files in other HTML pages harshit 2009-03-20T16:33:15Z 2009-09-10T18:16:09Z <p>I am new to HTML. I have an html page named "<code>main.html</code>" and i want to include another html page called "<code>menu.html</code>" in it. My <code>main.html</code> page doesn't include frames and it is designed using <code>div</code> tags. My site is hosted on linux based server The site I have to redesign is <a href="http://www.java-questions.com" rel="nofollow">Java questions</a>.</p> http://stackoverflow.com/questions/1282271/how-to-test-a-prime-number-1000-digits-long 1 how to test a prime number 1000 digits long? harshit 2009-08-15T16:38:27Z 2009-08-16T12:27:58Z <p>Hi,</p> <p>I am trying to find whether number is prime or not for 1000 digit long. Algorithm i am thinking to use is 6k+/-1 <p>problem i am facing is how can i store such a long number in java, it is taken string as input. </p> <p>or </p> <p>for doing divisibility should is consider only the last few digits of the number.</p> <p>please advise</p> http://stackoverflow.com/questions/1074081/hibernate-error-caused-by-org-hibernate-nonuniqueobjectexception-a-different 0 Hibernate Error : Caused by: org.hibernate.NonUniqueObjectException: a different object with the same identifier value was already associated with the session: harshit 2009-07-02T12:31:07Z 2009-08-04T15:31:27Z <p>hi I have two user Objects and while i try to save the object using </p> <pre><code>sessio.save(userObj) </code></pre> <p>I am getting the following error :</p> <p>Caused by: org.hibernate.NonUniqueObjectException: a different object with the same identifier value was already associated with the session:</p> <blockquote> <p>[com.pojo.rtrequests.User#com.pojo.rtrequests.User@d079b40b]</p> </blockquote> <p>I am creating the session using </p> <blockquote> <p>BaseHibernateDAO dao = new BaseHibernateDAO(); rtsession = dao.getSession(userData.getRegion(),BaseHibernateDAO.RTREQUESTS_DATABASE_NAME);</p> <p>rttrans =rtsession.beginTransaction();</p> <p>rttrans.begin(); rtsession.save(userObj1);</p> <p>rtsession.save(userObj2);</p> <p>rtsession.flush(0 rttrans.commit();</p> <p>rtsession.close() // in finally block</p> </blockquote> <p>I also tried doing the session.clear() before saving , still no luck. This is for the first I am getting the session object when a user request comes, so i am getting why is saying that object is present in session.</p> <p>Any suggestions ppl?</p> http://stackoverflow.com/questions/1135874/event-attached-with-button-clicking/1135934#1135934 0 Answer by harshit for event attached with button clicking harshit 2009-07-16T07:24:29Z 2009-07-16T07:24:29Z <p>you need to add actionlistener to the button. try searching on google. for now you can look into this link <a href="http://www.beginner-java-tutorial.com/jbutton.html" rel="nofollow">Jbutton example</a></p> http://stackoverflow.com/questions/1129524/adjusting-positions-of-components/1129638#1129638 0 Answer by harshit for adjusting positions of components harshit 2009-07-15T06:00:34Z 2009-07-15T06:00:34Z <p>You need to study the various types of layouts swing provides. Also you can have a look at <a href="http://www.jgoodies.com/freeware/forms/" rel="nofollow">FormLayout</a>,provide by JGoodies. I prefer to use this than swing layouts as i find it easy to code and less lines of code</p> http://stackoverflow.com/questions/1118767/hibernaqte-exception-org-hibernate-exception-sqlgrammarexception-could-not-exec 0 Hibernaqte exception :org.hibernate.exception.SQLGrammarException: could not execute query harshit 2009-07-13T10:41:31Z 2009-07-13T10:52:29Z <p>I am getting the following error. Not getting clue why is it coming. Also i checked DB it looks fine.</p> <p>Hibernate: select customer0_.CustomerId as CustomerId0_, customer0_.CustomerAlia s as Customer2_0_ from FF_REFERENCE.dbo.Customer customer0_ where customer0_.CustomerId=?</p> <p>org.hibernate.exception.SQLGrammarException: could not execute query Caused by: java.sql.SQLException: [Macromedia][Sybase JDBC Driver]<strong>Invalid column name: CustomerId0_</strong></p> <p>My pojo is </p> <pre><code>public class Customer implements java.io.Serializable { // Fields private String customerId; private String customerAlias; </code></pre> <p>}</p> <p>hbm is </p> <pre><code>&lt;hibernate-mapping&gt; &lt;class name="com.pojo.reference.Customer" table="Customer" &gt; &lt;id name="customerId" column ="CustomerId" length="18" /&gt; &lt;property name="customerAlias" type="java.lang.String"&gt; &lt;column name="CustomerAlias" length="18" /&gt; &lt;/property&gt; </code></pre> <p></p> <p>The query i am using is </p> <pre><code>public List findByProperty(String propertyName, Object value,String region) { try { String queryString = "from Customer as model where model." + propertyName + "= ?"; Query queryObject = getSession().createQuery(queryString); queryObject.setParameter(0, value); return queryObject.list(); } catch (RuntimeException re) { } } </code></pre> <p>I am calling using </p> <pre><code>custDao.findByProperty("customerId", custName, region); </code></pre> http://stackoverflow.com/questions/1118767/hibernaqte-exception-org-hibernate-exception-sqlgrammarexception-could-not-exec/1118806#1118806 1 Answer by harshit for Hibernaqte exception :org.hibernate.exception.SQLGrammarException: could not execute query harshit 2009-07-13T10:52:29Z 2009-07-13T10:52:29Z <p>got the answer. the deployed war was taking hbm from the wrong place...</p> http://stackoverflow.com/questions/1037916/gettign-the-error-failed-to-load-main-class-manifest-attribute-from-jaxb 0 Gettign the error :Failed to load Main-Class manifest attribute from jaxb harshit 2009-06-24T12:00:11Z 2009-06-24T17:04:50Z <p>hi I am trying to do</p> <pre><code>java -jar jaxb-api-1.5.jar </code></pre> <p>I am getting the following error :</p> <blockquote> <p>Failed to load Main-Class manifest attribute from jaxb-api-1.5.jar</p> </blockquote> <p>I am running it in jdk1.4 env. </p> <p>Why this is happening and how can it be recitified ?</p> <p>What i am trying to do is generate the classes from xsd using jaxb xjc command in jdk1.4 env. If there is other way then please let me know Any pointer will help Thank</p> http://stackoverflow.com/questions/637575/how-to-access-table-across-multiple-data-server 1 how to access table across multiple data server harshit 2009-03-12T06:30:25Z 2009-06-12T17:43:35Z <p>I have two Sysbase servers , server1 and server2 . I have a stored procedure declared and running on server1. In that SP i want to access table from server2. How can i do that? Also my both instances are running in a UNIX box</p> http://stackoverflow.com/questions/842817/how-conversion-of-int-to-byte-happens-in-java 2 how conversion of int to byte happens in java? harshit 2009-05-09T06:33:59Z 2009-06-10T12:23:11Z <p>Hi </p> <pre><code>int i =132; byte b =(byte)i; System.out.println(b); </code></pre> <p>The o/p is -124</p> <p>Why so ? I know this is very basic question, but still not able to map it how and what happens ?</p> http://stackoverflow.com/questions/920153/adding-namespace-value-while-creating-an-xml-with-java 1 adding namespace value while creating an xml with java harshit 2009-05-28T10:15:31Z 2009-05-28T10:44:48Z <p>Hi, i have to create xml something like:</p> <pre><code>&lt;xml version="1.0" encoding="UTF-8"?&gt; &lt;tns:Message&gt; &lt;tns:Header&gt; &lt;tns:to&gt;CCM&lt;/tns:to&gt; &lt;tns:from&gt;CPM&lt;/tns:from&gt; &lt;tns:type&gt;New&lt;/tns:type&gt; &lt;/tns:Header&gt; &lt;/tns:Message&gt; </code></pre> <p>from my java object.</p> <p>I am trying to do something like this</p> <pre><code> DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); factory.setNamespaceAware(true); DocumentBuilder builder = factory.newDocumentBuilder(); DOMImplementation impl = builder.getDOMImplementation(); Document doc = impl.createDocument(null,"tns:Message", null); </code></pre> <p>but in the last line it gives me error </p> <blockquote> <p>"NAMESPACE_ERR: An attempt is made to create or change an object in a way which is incorrect with regard to namespaces."</p> </blockquote> <p>but if i pass "Message" instead of "tns:Message" it works fine. Since tns is the namespace prefix am i need to use it , how can i make it possible.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/914666/how-to-capture-system-exit-event 2 How to capture System.exit event? harshit 2009-05-27T08:48:18Z 2009-05-27T09:03:03Z <p>hi,</p> <p>I have an application in java, in which i try to ensure that the if anybody exits codes System.exit() in the code , an listener should be called to do some stuff like logging message and releasing the resources ...</p> <p>How can i implement it, any suggestion/approach is welcome.</p> http://stackoverflow.com/questions/759247/how-to-write-relative-unix-path-in-xml -2 How to write relative unix path in xml harshit 2009-04-17T06:21:42Z 2009-04-20T06:57:00Z <p>hi all,</p> <p>when i run a process in unix the path points to /abc/1/2/3</p> <p>I am setting a property in an xml for a process which run in path. One property i have </p> <pre><code>&lt; property name="log.path" value="/abc/4/5"/ &gt; </code></pre> <p>Problem is that i cannot give absolute path("/abc/1/2/3") as above. i have to give something like "../../../4/5".</p> <pre><code>&lt; property name="log.path" value="../../../4/5"/ &gt; </code></pre> <p>my questions is why the above evaluation is not working? currently it is considering the path given in value as constant.</p> http://stackoverflow.com/questions/540150/java-class-loaders/759302#759302 0 Answer by harshit for Java Class Loaders harshit 2009-04-17T06:58:22Z 2009-04-17T06:58:22Z <p>Another good link for java class loaders - <a href="http://technologiquepanorama.wordpress.com/2009/01/13/java-classloaders/" rel="nofollow">Java classloaders</a></p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/720759#720759 0 Answer by harshit for Overriding equals and hashCode in Java harshit 2009-04-06T09:21:06Z 2009-04-06T09:21:06Z <p>another useful link which i went through <a href="http://java-questions.com/use%20of%20hashcode%20and%20equals.html" rel="nofollow">Use of hashcode and equals</a></p> http://stackoverflow.com/questions/1689875/how-to-set-the-checkboxlist-properties/1689998#1689998 Comment by harshit on How To Set The CheckBoxList Properties? harshit 2009-11-06T20:10:04Z 2009-11-06T20:10:04Z thanks man it worked http://stackoverflow.com/questions/1689875/how-to-set-the-checkboxlist-properties/1689895#1689895 Comment by harshit on How To Set The CheckBoxList Properties? harshit 2009-11-06T19:44:27Z 2009-11-06T19:44:27Z i want each checkbox to come in seperate line http://stackoverflow.com/questions/1482397/delete-element-from-priority-queue-in-c-stl Comment by harshit on delete element from priority queue in c++ stl harshit 2009-09-27T02:06:07Z 2009-09-27T02:06:07Z i have to sort the node object on the basis of its keys, if the node is visited then delete it to optimize http://stackoverflow.com/questions/1479117/how-to-overload-operator-for-a-queue/1479145#1479145 Comment by harshit on how to overload > operator for a queue harshit 2009-09-25T20:12:04Z 2009-09-25T20:12:04Z Error 1 error C2365: 'deref_compare&lt;Node,Cmp&gt;::cmp' : redefinition; previous definition was 'member function' getting this error after i defined cmp(Node*a Node *b) fucntion is Cmp class http://stackoverflow.com/questions/1479117/how-to-overload-operator-for-a-queue/1479263#1479263 Comment by harshit on how to overload > operator for a queue harshit 2009-09-25T19:59:19Z 2009-09-25T19:59:19Z This function should use the operator&gt; of your Node class properly. I didnt get this. do i need to overload &gt; operator. If yes how.. http://stackoverflow.com/questions/1479117/how-to-overload-operator-for-a-queue/1479145#1479145 Comment by harshit on how to overload > operator for a queue harshit 2009-09-25T19:47:59Z 2009-09-25T19:47:59Z i have pasted the code which i have done, and its giving me errors... please let me know where i am wrong http://stackoverflow.com/questions/1479117/how-to-overload-operator-for-a-queue/1479145#1479145 Comment by harshit on how to overload > operator for a queue harshit 2009-09-25T19:39:15Z 2009-09-25T19:39:15Z ok thanks for the code, so i need to declare the queue now as priority_queue&lt;Node*,vector&lt;Node*&gt;,deref_compare&gt; myQueue; is this correct? http://stackoverflow.com/questions/1472413/when-do-we-prefer-round-robin-over-fcfs-and-vice-versa/1472482#1472482 Comment by harshit on when do we prefer Round robin over FCFS and vice-versa? harshit 2009-09-24T20:10:53Z 2009-09-24T20:10:53Z thanks Toji... ya its an acad question. http://stackoverflow.com/questions/1103522/what-is-an-efficient-algorithm-to-find-whether-a-singly-linked-list-is-circular-c Comment by harshit on What is an efficient algorithm to find whether a singly linked list is circular/cyclic or not? harshit 2009-07-09T13:17:21Z 2009-07-09T13:17:21Z @samoz i have modified the title to circular/cyclic http://stackoverflow.com/questions/1074081/hibernate-error-caused-by-org-hibernate-nonuniqueobjectexception-a-different/1074094#1074094 Comment by harshit on Hibernate Error : Caused by: org.hibernate.NonUniqueObjectException: a different object with the same identifier value was already associated with the session: harshit 2009-07-02T12:41:10Z 2009-07-02T12:41:10Z yes my mapping for id is correct and unique id is passed http://stackoverflow.com/questions/1037916/gettign-the-error-failed-to-load-main-class-manifest-attribute-from-jaxb/1038021#1038021 Comment by harshit on Gettign the error :Failed to load Main-Class manifest attribute from jaxb harshit 2009-06-24T12:31:16Z 2009-06-24T12:31:16Z can you please tell me which version is supported for jdk1.4 .Thanks http://stackoverflow.com/questions/1037916/gettign-the-error-failed-to-load-main-class-manifest-attribute-from-jaxb Comment by harshit on Gettign the error :Failed to load Main-Class manifest attribute from jaxb harshit 2009-06-24T12:07:59Z 2009-06-24T12:07:59Z i tried same in java 5 ,still got the same error http://stackoverflow.com/questions/920153/adding-namespace-value-while-creating-an-xml-with-java/920228#920228 Comment by harshit on adding namespace value while creating an xml with java harshit 2009-05-28T11:39:04Z 2009-05-28T11:39:04Z it worked thanks http://stackoverflow.com/questions/914666/how-to-capture-system-exit-event/914728#914728 Comment by harshit on How to capture System.exit event? harshit 2009-05-27T09:20:10Z 2009-05-27T09:20:10Z thanks for the prompt reply http://stackoverflow.com/questions/759247/how-to-write-relative-unix-path-in-xml Comment by harshit on How to write relative unix path in xml harshit 2009-04-17T09:35:46Z 2009-04-17T09:35:46Z i cannot give the absolute path because &quot;abc&quot; is a hostname and it will vary depending on the machine where it runs.