User harshit - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T22:08:21Zhttp://stackoverflow.com/feeds/user/67476http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1799205/how-to-create-mysql-query-for-this-criteria1how to create mysql query for this criteria?harshit2009-11-25T18:58:46Z2009-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#17992590Answer by harshit for how to create mysql query for this criteria?harshit2009-11-25T19:07:18Z2009-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-query1how to change this sql queryharshit2009-11-25T18:10:56Z2009-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-c7What is an efficient algorithm to find whether a singly linked list is circular/cyclic or not?harshit2009-07-09T12:27:31Z2009-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-page0generate PDF from ASPx pageharshit2009-11-12T21:46:58Z2009-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-works0How does BasePage.GeneratePassword in .net works?harshit2009-11-10T00:36:38Z2009-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-address0how to change the localhost to ip addressharshit2009-11-06T22:13:01Z2009-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-properties1How To Set The CheckBoxList Properties?harshit2009-11-06T19:40:35Z2009-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><asp:CheckBoxList CheckBoxes="true" Width="250px" Height="120px" RepeatColumns="5" RepeatDirection="Vertical" RepeatLayout="Flow"
runat="server" SelectionMode="Multiple" />
</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-issue0php file not able to upload in .net application, permission issueharshit2009-09-30T18:19:33Z2009-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-file0Can I make a change in propietary war file?harshit2009-03-25T12:48:56Z2009-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-stl0delete element from priority queue in c++ stlharshit2009-09-26T23:24:36Z2009-09-26T23:34:31Z
<p>Hi
Is i have a priority queue with declaration</p>
<pre><code>priority_queue<<Node>,vector<Node>,myComp> 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-queue0how to overload > operator for a queueharshit2009-09-25T19:22:42Z2009-09-26T09:32:04Z
<p>i have a priority queue and i have defined like this:</p>
<pre><code>priority_queue<Node*,vector<Node*>,greater<Node*>> 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>(const Node& right) const
{
return param>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<typename Node, typename Cmp = std::greater<Node> >
struct deref_compare : std::binary_function<Node*,Node*,bool>
{
deref_compare(Cmp const& cmp = Cmp())
: cmp(cmp) {}
bool operator()(Node* a, Node* b) const {
return cmp(*a,*b);
}
private:
Cmp cmp;
};
typedef deref_compare<Node,std::greater<Node> > my_comparator_t;
priority_queue<Node*,vector<Node*>,my_comparator_t> open;
</code></pre>
<p>i am filled with errors. </p>
http://stackoverflow.com/questions/1480278/segmentation-fault-while-inserting-into-priority-queue0segmentation fault while inserting into priority queueharshit2009-09-26T02:38:20Z2009-09-26T07:29:02Z
<p>My definition of priority queue is:</p>
<pre><code>template<typename Node, typename Cmp = std::less<Node> >
struct deref_compare : std::binary_function<Node*,Node*,bool>
{
deref_compare(Cmp const& cmp = Cmp())
: cmp(cmp) {}
bool operator()(Node* a, Node* b) const {
return (a->getfValue()> b->getfValue());
}
private:
Cmp cmp;
};
typedef deref_compare<Node,std::greater<Node> > my_comparator_t;
priority_queue<Node*,vector<Node*>,my_comparator_t> 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-versa0when do we prefer Round robin over FCFS and vice-versa?harshit2009-09-24T15:23:44Z2009-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-namespace1Vc++ Error :Node is not a class or namespaceharshit2009-09-23T07:24:19Z2009-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->x = x;
this->y =y;
}
void Node::setXX(int x){
this->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-pages2Embedding HTML files in other HTML pagesharshit2009-03-20T16:33:15Z2009-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-long1how to test a prime number 1000 digits long?harshit2009-08-15T16:38:27Z2009-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-different0Hibernate Error : Caused by: org.hibernate.NonUniqueObjectException: a different object with the same identifier value was already associated with the session:harshit2009-07-02T12:31:07Z2009-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#11359340Answer by harshit for event attached with button clickingharshit2009-07-16T07:24:29Z2009-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#11296380Answer by harshit for adjusting positions of componentsharshit2009-07-15T06:00:34Z2009-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-exec0Hibernaqte exception :org.hibernate.exception.SQLGrammarException: could not execute queryharshit2009-07-13T10:41:31Z2009-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><hibernate-mapping>
<class name="com.pojo.reference.Customer" table="Customer" >
<id name="customerId" column ="CustomerId" length="18" />
<property name="customerAlias" type="java.lang.String">
<column name="CustomerAlias" length="18" />
</property>
</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#11188061Answer by harshit for Hibernaqte exception :org.hibernate.exception.SQLGrammarException: could not execute queryharshit2009-07-13T10:52:29Z2009-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-jaxb0Gettign the error :Failed to load Main-Class manifest attribute from jaxbharshit2009-06-24T12:00:11Z2009-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-server1how to access table across multiple data serverharshit2009-03-12T06:30:25Z2009-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-java2how conversion of int to byte happens in java?harshit2009-05-09T06:33:59Z2009-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-java1adding namespace value while creating an xml with javaharshit2009-05-28T10:15:31Z2009-05-28T10:44:48Z
<p>Hi,
i have to create xml something like:</p>
<pre><code><xml version="1.0" encoding="UTF-8"?>
<tns:Message>
<tns:Header>
<tns:to>CCM</tns:to>
<tns:from>CPM</tns:from>
<tns:type>New</tns:type>
</tns:Header>
</tns:Message>
</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-event2How to capture System.exit event?harshit2009-05-27T08:48:18Z2009-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-2How to write relative unix path in xmlharshit2009-04-17T06:21:42Z2009-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>< property name="log.path" value="/abc/4/5"/ >
</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>< property name="log.path" value="../../../4/5"/ >
</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#7593020Answer by harshit for Java Class Loadersharshit2009-04-17T06:58:22Z2009-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#7207590Answer by harshit for Overriding equals and hashCode in Javaharshit2009-04-06T09:21:06Z2009-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#1689998Comment by harshit on How To Set The CheckBoxList Properties?harshit2009-11-06T20:10:04Z2009-11-06T20:10:04Zthanks man it workedhttp://stackoverflow.com/questions/1689875/how-to-set-the-checkboxlist-properties/1689895#1689895Comment by harshit on How To Set The CheckBoxList Properties?harshit2009-11-06T19:44:27Z2009-11-06T19:44:27Zi want each checkbox to come in seperate linehttp://stackoverflow.com/questions/1482397/delete-element-from-priority-queue-in-c-stlComment by harshit on delete element from priority queue in c++ stlharshit2009-09-27T02:06:07Z2009-09-27T02:06:07Zi have to sort the node object on the basis of its keys, if the node is visited then delete it to optimizehttp://stackoverflow.com/questions/1479117/how-to-overload-operator-for-a-queue/1479145#1479145Comment by harshit on how to overload > operator for a queueharshit2009-09-25T20:12:04Z2009-09-25T20:12:04ZError 1 error C2365: 'deref_compare<Node,Cmp>::cmp' : redefinition; previous definition was 'member function'
getting this error after i defined cmp(Node*a Node *b) fucntion is Cmp classhttp://stackoverflow.com/questions/1479117/how-to-overload-operator-for-a-queue/1479263#1479263Comment by harshit on how to overload > operator for a queueharshit2009-09-25T19:59:19Z2009-09-25T19:59:19ZThis function should use the operator> of your Node class properly. I didnt get this. do i need to overload > operator. If yes how.. http://stackoverflow.com/questions/1479117/how-to-overload-operator-for-a-queue/1479145#1479145Comment by harshit on how to overload > operator for a queueharshit2009-09-25T19:47:59Z2009-09-25T19:47:59Zi have pasted the code which i have done, and its giving me errors...
please let me know where i am wronghttp://stackoverflow.com/questions/1479117/how-to-overload-operator-for-a-queue/1479145#1479145Comment by harshit on how to overload > operator for a queueharshit2009-09-25T19:39:15Z2009-09-25T19:39:15Zok thanks for the code, so i need to declare the queue now as
priority_queue<Node*,vector<Node*>,deref_compare> myQueue;
is this correct?http://stackoverflow.com/questions/1472413/when-do-we-prefer-round-robin-over-fcfs-and-vice-versa/1472482#1472482Comment by harshit on when do we prefer Round robin over FCFS and vice-versa?harshit2009-09-24T20:10:53Z2009-09-24T20:10:53Zthanks 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-cComment by harshit on What is an efficient algorithm to find whether a singly linked list is circular/cyclic or not?harshit2009-07-09T13:17:21Z2009-07-09T13:17:21Z@samoz i have modified the title to circular/cyclichttp://stackoverflow.com/questions/1074081/hibernate-error-caused-by-org-hibernate-nonuniqueobjectexception-a-different/1074094#1074094Comment by harshit on Hibernate Error : Caused by: org.hibernate.NonUniqueObjectException: a different object with the same identifier value was already associated with the session:harshit2009-07-02T12:41:10Z2009-07-02T12:41:10Zyes my mapping for id is correct and unique id is passedhttp://stackoverflow.com/questions/1037916/gettign-the-error-failed-to-load-main-class-manifest-attribute-from-jaxb/1038021#1038021Comment by harshit on Gettign the error :Failed to load Main-Class manifest attribute from jaxbharshit2009-06-24T12:31:16Z2009-06-24T12:31:16Zcan you please tell me which version is supported for jdk1.4 .Thankshttp://stackoverflow.com/questions/1037916/gettign-the-error-failed-to-load-main-class-manifest-attribute-from-jaxbComment by harshit on Gettign the error :Failed to load Main-Class manifest attribute from jaxbharshit2009-06-24T12:07:59Z2009-06-24T12:07:59Zi tried same in java 5 ,still got the same errorhttp://stackoverflow.com/questions/920153/adding-namespace-value-while-creating-an-xml-with-java/920228#920228Comment by harshit on adding namespace value while creating an xml with javaharshit2009-05-28T11:39:04Z2009-05-28T11:39:04Zit worked thankshttp://stackoverflow.com/questions/914666/how-to-capture-system-exit-event/914728#914728Comment by harshit on How to capture System.exit event?harshit2009-05-27T09:20:10Z2009-05-27T09:20:10Zthanks for the prompt replyhttp://stackoverflow.com/questions/759247/how-to-write-relative-unix-path-in-xmlComment by harshit on How to write relative unix path in xmlharshit2009-04-17T09:35:46Z2009-04-17T09:35:46Zi cannot give the absolute path because "abc" is a hostname and it will vary depending on the machine where it runs.