|
Is there a way or tool for Vista I can use to search for content in Java files? (I do not have an Eclipse project set up for it)
I used to be able to do it easily in the windows search tool when I had Windows 2000.
Edit: I have already enabled "search...
Started by Kristian on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
How to add additional file types to Vista's indexing is explained.
For many things, not just search).
|
|
I'm currently writing a bunch of JSP tags for our designers to use. In my .tld file I have some <tag> and many more <tag-file> elements.
Now, I want to give the users of the tag library some examples about how to use them. According to Sun...
Started by Lenni on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Here....
It works for me on Tomcat 6.0.
If so appserver (for example Tomcat 6.x) then just declare Servlet 2.5 to be the best up to date:
<web-app; element.
If not, then you need to upgrade.
2.4 / JSP 2.0? For example Tomcat 5.x or newer.
|
|
Can anyone give me an example of how to use python's msilib standard library module to create a msi file from a custom python module?
For example, let's say I have a custom module called cool.py with the following code
class Cool(object): def print_cool...
Started by Paul D. Eden on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
But i think you mentioned that python source, since you want it executed,... .
Now it is possible to put anything in such an archive, like your cool.py .
I think there is a misunderstanding: think of MS CAB Files as archives like .zip -Files.
|
Ask your Facebook Friends
|
Yes - Google abounds with information about configuring Apache to support SSI.
But unfortunately, I still cannot seem to get it right.
My questions:
Can anyone furnish me a full-fledged example config file that enables SSI on an Apache server?
Also can...
Started by Jim G. on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Apache probably wouldn't run if you didn't already have a fully-fledged config file.
|
|
I would like to see some examples of simple flat file databases and how they are accessed through a data layer. I've written to and read from a flat file before, but I have not ever created a data layer that accessed the data for an application using ...
Started by Luchaguate on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
.NET isn't my ballywick, but I imagine file database format is Xbase ....
If you use Java, there are several, Derby for example.
Is a SQL database that consists of a single file and requires no installation, it has bindings for many.
|
|
Can anyone show me (or provide a link to) an example of how to encrypt a file in Java using bouncy castle? I've looked over bouncycastle.org but cannot find any documentation of their API. Even just knowing which classes to use would be a big help for...
Started by Lee Warner on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Here is an example that uses the BouncyCastle PBE cipher to encrypt.
Here's an example of how to encrypt a file using jasypt: http://www.jasypt.org/encrypting the algorithms it provides.
|
|
Hi all, I would like to know the problem of how to run xsl file in Eclipse. I use jdk 1.6 with Eclipse platform. In fact, I want to extract a subset of XML file using XSL because of large size of xml document. I'm only interested in a subset of xml file...
Started by thandar on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You could use the Ant XSLT Task
Maybe.
Not sure exactly what the problem you are having but you can right click on your xsl file ), which will allow you to right click on a xsl file and 'run' it.
|
|
I'm looking to use twisted to control communication across Linux pipes (os.pipe()) and fifos (os.mkfifo()) between a master process and a set of slave processes. While I'm positive tat it's possible to use twisted for these types of file descriptors (...
Started by BrainCore on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For example, to run a program and give it two extra output.
You can use reactor.spawnProcess to set up arbitrary file descriptor mappings between a parent process and a child process it spawns.
With writing.
|
|
I need to create a batch file which will copy web log files from a web server to a local desktop box on daily frequency.
I'm a web developer, but I'd like to take a stab at learning the process for creating a batch file and I think using the windows scheduler...
Started by Nip on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Note, you....
Just type out the commands you want as you that you may find useful .
There's a simple example hereCreating a batch file is relatively straightforward.
Would in the command shell, and save the file with a .bat extension.
|
|
Hi,
I want to learn MSBuild, was wondering if someone could get me started with a simple build script to filter out my vs.net 2008 project of all files with the .cs extension.
how do I run the build? where do you usually store the build also?
Started by Anonymous Box on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
That being said, if you create a separate script ....
Out all of the .cs files from the project file? Keep in mind that with VS2005 and later, the project and give it the name of the project file as the and the appropriate target.
|