sanat

Ranch Hand
+ Follow
since Dec 08, 2004
sanat likes ...
Mac Eclipse IDE Java
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by sanat

hi,

i'm new to web services, i was just trying to generate java classes from my schemas, using xjc ant task. but it always complains.

schema
------


ant task
--------


error
-----


i have really no idea what's wrong here. any help would be appreciated. thanks in advance.

-sanat
17 years ago
Hi All,

Is there any way I can disable a project not to load when the server starts.

There are several EAR files deployed into my server. Is there any way that I can enable only some project to be loaded during server startup & others to load manually.

Thanks in advance.
17 years ago
Hi All,

I'm new to Plugin Development. I got a task to change the existing CVS plugin which comes with Eclipse 2.1.3 to add locking facility to files, so that once it's checked out no one can checkout again.

Is there any tutorial that will explain configuring CVS on my Win2000 system? Is WinCVS is the one to use?

Can I get some link for developing plugins in eclipse?

Is there any existing plugin which works like this?

Any help would be appreciated.

Thanks in advance.
sanat
18 years ago
JavaScript can be used for this type of situations. Here is the javascript:

function submitAction(strutsAction) {
document.forms[0].action = strutsAction;
document.forms[0].submit();
}

In your JSP you need to write something like this

<a href="javascript:submitAction('theAction')">accountName</a>

Hope this helps.
18 years ago
You have to select the JAR file for which you want to add the source, right-click on it, select properties, go to "Java Source Attatchment" section and add the external file or the folder. That will attatch the cource with tha JAR file.

Hope this helps.
18 years ago
Hi,

You don't need any extra configuration if you have downloaded the original version. i.e. 1.0.0.

Here is the link http://prdownloads.sourceforge.net/jseditor/addi.jseditor_1.0.0.zip?download

You need to right click on any js file and say open with Addi JavaScript Editor.

Hope this helps.
18 years ago
Hi,

I think you can use JavaScript to select all the checkbox, when you click on a single checkbox.
18 years ago
No idea about XML transformation, but if you want to send any XML file to the browser then you can use response.setContentType("application/xml")

Hope it helps.
18 years ago
The documentation comes with the distribution. It comes as struts-documentation.war. You can extract and use it.
18 years ago
Hello...

Any Comments.

By the way I got some answers in Sun Java Forum.

But I want some comment here also.

Thanks in advance.
18 years ago
JSP
If you want to write a Tag Handler for redirecting the flow from one page to another you don't need many tags, one Tag Handler should do.

Hope that's what you want.
18 years ago
JSP
What's the difference between extending doStartTag() and doEndTag() ?

My Tag does not contain any body, so can I write the logic in either of the two methods?

Thanks in advance.
18 years ago
JSP
I don't think Struts has any feature to hold multiform data.

Correct me if I'm wrong.

Thanks
Sanat
18 years ago
jakarta-oro.jar file is missing.
18 years ago
http://javaboutique.internet.com/tutorials/excep_struts/

Hope this tutorial will be helpful.
18 years ago