Main > Free Download Search >

Free https mypay dfas mil software for linux

https mypay dfas mil

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 179
HttpdBase4J 0.2

HttpdBase4J 0.2


HttpdBase4J is an embeddable Java web server framework that supports HTTP, HTTPS, templated content. more>>
HttpdBase4J is an embeddable Java web server framework that supports HTTP, HTTPS, templated content and serving content from inside an archive.

The classes are easy to extend as they utilize the Hollywood dont call us, well call you principle to allow the user to overide the framework behaviour during all the different phases of the HTTP transaction.

Note:HttpdBase4J uses the Java 6 com.sun.net.httpserver classes so it wont currently work under earlier versions of Java.

Usage Examples:

The simplest use case is to create an embedded web server on port 8088 with its home directory at htdocs in the local filesystem and a root url at / ie / maps onto htdocs:

homeDir = new java.io.File("./htdocs");
httpd = new FileHttpd(homeDir, 10); // Creates a server with a threadpool of 10
httpd.setLogger(System.err); // Log to console
httpd.start(8088, "/");

Creating a HTTPS server equivalent the the HTTP server above requires passing a keystore and password to start. Passing null will generate a certificate free keystore if you only need the encryption capabilities of HTTPS and not the certificate capability:

httpd = new FileHttpd(homeDir, 10);
m_httpd.start(8089, "/", keystore, password);

Serving content from inside an archive or from a jar or zip in the Java classpath requires creating an ArchiveHttpd instance instead of a FileHttpd. To serve content located in a jar or zip in the class path you need only specify the resource directory in the classpath where the content islocated, for example:

httpd = new ArchiveHttpd("/resources/htdocs", 10);
httpd.start(8088, "/");

To serve content from within a specific archive specify the archive as a Java File when constructing the ArchiveHttpd:

httpd = new ArchiveHttpd(new File("content.zip"), "/resources/htdocs", 10);
httpd.start(8088, "/");

Creating web content using templates is also supported. Currently only the StringTemplate library (http://www.stringtemplate.org) is is supported but it should be relatively easy to create user derived classes for other template implementations. To create an HTTP embedded web server on serving templated content from resources/htdocs in the classpath and having a template file handler (A Java class implenting the Templatable interface that is used to fill the templates) in net.homeip.donaldm.test.templates.

httpd = new ArchiveHttpd("resources/htdocs", 10);

StringTemplateHandler stHandler = new ArchiveStringTemplateHandler(httpd,
"net.homeip.donaldm.test.templates");

httpd.addHandler(".st", stHandler); // .st extension = template files
httpd.start(m_port, "/");

The HTTP transaction handling can be customized at any point by overiding any of the methods in the HttpHandleable interface or by overiding onCreateRequestHandler in Httpd in order to provide your own request handler. A simple example of overiding HttpHandleable methods:

httpd = new TestOverideHttpd(m_homeDir, 10);
httpd.start(m_port, "/");

class TestOverideHttpd extends FileHttpd
{
public HttpResponse onServeHeaders(long id, HttpExchange ex, Request request)
{
//Create or amend content
}
public InputStream onServeBody(long id, HttpExchange ex, Request request)
{
//Return amended or created content
}
}

<<less
Download (3.1MB)
Added: 2007-07-16 License: LGPL (GNU Lesser General Public License) Price:
830 downloads
HTTPManifold 0.9b

HTTPManifold 0.9b


HTTPManifold is an application for tunnelling Web/HTTP traffic for multiple servers through a single IP address. more>>
HTTPManifold is an application for tunnelling Web/HTTP traffic for multiple servers through a single IP address (a reverse proxy). HTTPManifold is intended for home users and small businesses so that they can host multiple domains and sub-domains through a single IP address on port 80.
HTTPManifold forwards traffic to other machines, logs requests, and rewrites content during the process. It can also log the raw content of requests for the purpose of debugging Web services, etc. It provides a Web interface for configuration and log viewing with some log analysis capabilities.
Main features:
- Ability to service HTTP request on any port.
- Allow SSL connections and therefore provide HTTPS to server that otherwise dont support it.
- Forward HTTP requests to any IP address on any port using HTTP or HTTPS.
- Rewrite HTTP headers and body during forward translation.
- Log raw HTTP request and response bytes for debugging purposes.
- Serve static HTML pages.
- Provide web interface to HTTPManifold configuration options.
Enhancements:
- This release adds the ability to forward requests to a sub-path on a destination server.
- It adds options to do simple string replacement when processing response content.
- The appearance of the Web interface has been updated.
- HSQLDB support has been added for enhanced request logging.
- X-forwarded-for header support has been added so that destination servers can see the source IP address.
- Some of the forwarding implementation has been touched up to improve performance and fix small defects.
<<less
Download (0.31MB)
Added: 2006-09-05 License: AFPL (Aladdin Free Public License) Price:
1144 downloads
displaytag 1.0

displaytag 1.0


displaytag library is an open source suite of custom tags that provide high-level web presentation patterns. more>>
displaytag library is an open source suite of custom tags that provide high-level web presentation patterns which will work in an MVC model. The library provides a significant amount of functionality while still being easy to use.
The display tag library can display tables! Give it a list of objects and it will handle column display, sorting, paging, cropping, grouping, exporting, smart linking and decoration of a table in a customizable XHTML style.
Enhancements:
- Fixed some remaining https issues when saving exported files in Internet Explorer with the export filter enabled.
- fix-autolink working with https://, ftp://, etc. Fixes DISPL-150.
- fix-Column body is not rendered when requesting an invalid page. Fixes DISPL-136.
- I18n Struts Adapter now works with Struts 1.1. Fixes DISPL-149.
- fix-Performance optimization: reduce the use of temporary StringBuffers while building the html table. Fixes DISPL-156.
- fix-Sporadic error with factory.requestHelper. Fixes DISPL-148.
- DisplayTag is now able to load displaytag.properties from a different classloader (allows displaytag.jar to be placed in appserver shared libs). Fixes DISPL-144.
- fix-Center of paging banner number. Fixes DISPL-109.
- fix-Tag holding references to resources. Fixes DISPL-145.
- fix-Export of nested tables: now you can export the parent table without errors; nested tables are not included during export. Fixes DISPL-142.
<<less
Download (4.52MB)
Added: 2005-09-23 License: Artistic License Price:
1517 downloads
myPMS 1.2

myPMS 1.2


myPMS is a free password management application. more>>
myPMS is a free password management application which will require you to remember only one password making the management of your important passwords simple.
myPMS is a web-based password management application which means it can be accessed from anywhere. It uses simple HTML, PHP and a MySQL database to store your passwords.
Main features:
- Search by host name or drop-down list
- Capability to store application and host associated with password
- Date inserted stored
- Who inserted or updated password stored
- Unlimited password history
- "Invisible" password until mouse curser hovers over password
- Fade to blank page after 60 seconds for additional security
- Database creation using simple MySQL batch file
- HTTPS (SSL) capability if you require
<<less
Download (0.70MB)
Added: 2005-10-28 License: Free To Use But Restricted Price:
1468 downloads
PwdHash 1.1

PwdHash 1.1


PwdHash is an extension which generates theft-resistant passwords. more>>
PwdHash is an extension which generates theft-resistant passwords.

Automatically generates per-site passwords if you prefix your password with @@ or press F2 beforehand.

Prevents JavaScript from reading your password as it is typed. The same password will be generated at each subdomain: a.example.com matches b.example.com, a.example.co.uk matches b.example.co.uk, but a.co.uk and b.co.uk are different.

Hashed passwords can also be generated at https://www.pwdhash.com/

<<less
Download (0.015MB)
Added: 2007-04-18 License: MPL (Mozilla Public License) Price:
589 downloads
TestMaker 4.4.1

TestMaker 4.4.1


TestMaker is functionality, scalability, and performance testing for Web-enabled applications. more>>
TestMaker delivers a rich environment for building and running intelligent test agents that test Web-enabled applications for scalability, functionality, and performance.
TestMaker comes with a friendly graphical user environment, an object-oriented scripting language (Jython) to build intelligent test agents, an extensible library of protocol handlers (HTTPS, HTTP, SOAP, XML-RPC, SMTP, POP3, IMAP), a new agent wizard featuring an Agent Recorder to write scripts for you, a library of fully-functional sample test agents, and shell scripts to run test agents from the command line and from unit test utilities.
Enhancements:
- This release requires Java 1.5 or greater.
- It provides a workaround for servers that do not correctly implement RFC 2116 for HTTP redirect commands.
- It solves a problem in the start-up script for Windows NT and 2000 users.
- It solves bugs in the agentbase.py support library for responses with no return parameters or invalid image tags, and now allows optional parameters to set the content-type of a POST.
- It also solves a problem where XSTest ran out of memory on long running load tests.
<<less
Download (24.1MB)
Added: 2007-01-16 License: GPL (GNU General Public License) Price:
1016 downloads
YACY 0.54

YACY 0.54


YACY is a distributed Web crawler and also a caching HTTP/HTTPS proxy. more>>
YACY is a distributed Web crawler and also a caching HTTP/HTTPS proxy. Pages that pass through the proxy are indexed and can be searched using a built-in HTTP server.
YACY peers connect each other and form a P2P-based index exchange network based on distributed hash tables. Explicit web crawls can be done locally or collaboratively, forming a global search and distributed indexing engine for the Web.
YACY also provides URL filtering with blacklist sharing among other proxy peers, individual Web and servlet page hosting, a file sharing zone, and a database engine.
Main features:
- Search your own or the global index
- Crawl your own pages or start distributed crawling
- Run your peer to support other YaCy crawlers
- Provide Information on your peer using the built-in http-server, file-sharing zone and wiki
- Built-in caching http proxy
- Indexing benefits from the proxy cache; private information is not stored or indexed
- Usage of the proxy is not a requisite for web indexing, but it enables you to access the new top-level-domains .yacy
- Filter unwanted content like ad- or spyware; share your web-blacklist with other peers
- Easy installation! No additional database required!
- No central server!
- GPLed, freeware
Enhancements:
- An auto-updater and support for multiple search networks have been added, and the option to index intranet sites in separated networks has been enabled.
- Some interface functions have also been enhanced.
<<less
Download (5.7MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
806 downloads
Virtual Appliances Base 0.1.059

Virtual Appliances Base 0.1.059


Virtual Appliances are nano-sized virtual machines with Web user interfaces for deploying instant infrastructure and application more>>
Virtual Appliances are nano-sized virtual machines with Web user interfaces for deploying instant infrastructure and applications.
The are Gentoo Linux based and optimized for use in VMware.
Summary Instructions for using the Base Virtual Appliance
Download the Virtual Appliance.
If you do not have VMware Player, Workstations, Server, GSX, or ESX, Download VMware Virtual Player or VMware Virtual Server and install it.
Unpack the Virtual Appliance zip or tar.bz2 file.
Use your VMWare product to open and run the VirtualAppliancesBase.vmx file
Observe your VMWare console. The Virtual Appliance IP address will be printed there.
Using your Web Browser, open the Virtual Appliance Management console at https://your_ipaddress:8000/
The Mangement console listens on port 8000 and uses https.
Login to the admin console. The factory username:password is admin:admin.
Change the admin password to something secret through Configuration|Authentication
Enter shared storage information in Configuration|Storage
Your shared storage files will now be available via the webserver on the Virtual Appliance at http://your_ipaddress
Enhancements:
- This is a new Virtual Appliance featuring an instant PostgreSQL server and phpPgAdmin.
- It is a fully self contained Virtual Appliance, only 14MB to download, and ready to use with no configuration.
<<less
Download (13.4MB)
Added: 2006-07-01 License: Free To Use But Restricted Price:
1212 downloads
Firefox Companion for Kodak EasyShare Gallery 1.0.9.2

Firefox Companion for Kodak EasyShare Gallery 1.0.9.2


Firefox Companion for Kodak EasyShare Gallery is a Firefox extension that can easily organize and share your pictures. more>>
Firefox Companion for Kodak EasyShare Gallery is a Firefox extension that can easily organize and share your pictures. Upload photos directly to your Kodak EasyShare Gallery, all within your browser.

Drag, drop and arrange pictures adding photo titles, and create albums by multi-selecting photos - all of this without interrupting your Internet browsing. Co-developed by Kodak, it also includes other popular photo services.

Please note that this extension is essentially the same as Fotofox but only this extension has support for Kodak EasyShare Gallery. Please make sure to have only one or the other installed. https://addons.mozilla.org/firefox/3945/

Currently, only US kodakgallery.com accounts are supported. Other international accounts will be supported soon.

<<less
Download (0.21MB)
Added: 2007-07-18 License: MPL (Mozilla Public License) Price:
941 downloads
pysdl_mixer 0.0.3

pysdl_mixer 0.0.3


pysdl_mixer is a python interface to SDLs sdl_mixer. more>>
pysdl_mixer is a python interface to SDLs sdl_mixer.

This is usefull for multichannel sample and music playback from python. This project is currently being used by soya (https://gna.org/projects/soya/).

<<less
Download (0.023MB)
Added: 2006-04-25 License: (FDL) GNU Free Documentation License Price:
1280 downloads
Sawdog 2.4

Sawdog 2.4


Sawdog is a suite of scripts that informs the system operators of mission critical servers in the case of a failure. more>>
Sawdog (Simple Active Watch-DOG) is a suite of scripts that informs the system operators of mission critical servers in the case of a failure.

A set of small executables (i.e. expect scripts) are executed, and if one executable fails, it sends an email or an SMS to the sysop. There are 3 states known to sawdog: alive, unknown, and dead. Only certain state transitions trigger a notification.

On a Web interface, the states of all hosts are visible. So far, there are scripts to check for DNS, FTP, HTTP, HTTPS, ICMP, IMAP, MS SQL, MySQL, Notes, NTP, POP3, PostgreSQL, SMB, SMTP, SNMP, SSH, telnet, TWS, VNM, and Webmin.

<<less
Download (0.081MB)
Added: 2006-09-25 License: GPL (GNU General Public License) Price:
1125 downloads
Crypt::SSLeay 0.51

Crypt::SSLeay 0.51


Crypt::SSLeay is a Perl module for OpenSSL glue that provides LWP https support. more>>
Crypt::SSLeay is a Perl module for OpenSSL glue that provides LWP https support.

SYNOPSIS

lwp-request https://www.nodeworks.com

use LWP::UserAgent;
my $ua = new LWP::UserAgent;
my $req = new HTTP::Request(GET, https://www.nodeworks.com);
my $res = $ua->request($req);
print $res->code."n";

# PROXY SUPPORT
$ENV{HTTPS_PROXY} = http://proxy_hostname_or_ip:port;

# PROXY_BASIC_AUTH
$ENV{HTTPS_PROXY_USERNAME} = username;
$ENV{HTTPS_PROXY_PASSWORD} = password;

# DEBUGGING SWITCH / LOW LEVEL SSL DIAGNOSTICS
$ENV{HTTPS_DEBUG} = 1;

# DEFAULT SSL VERSION
$ENV{HTTPS_VERSION} = 3;

# CLIENT CERT SUPPORT
$ENV{HTTPS_CERT_FILE} = certs/notacacert.pem;
$ENV{HTTPS_KEY_FILE} = certs/notacakeynopass.pem;

# CA CERT PEER VERIFICATION
$ENV{HTTPS_CA_FILE} = certs/ca-bundle.crt;
$ENV{HTTPS_CA_DIR} = certs/;

# CLIENT PKCS12 CERT SUPPORT
$ENV{HTTPS_PKCS12_FILE} = certs/pkcs12.pkcs12;
$ENV{HTTPS_PKCS12_PASSWORD} = PKCS12_PASSWORD;

This perl module provides support for the https protocol under LWP, so that a LWP::UserAgent can make https GET & HEAD & POST requests. Please see perldoc LWP for more information on POST requests.

The Crypt::SSLeay package contains Net::SSL, which is automatically loaded by LWP::Protocol::https on https requests, and provides the necessary SSL glue for that module to work via these deprecated modules:

Crypt::SSLeay::CTX
Crypt::SSLeay::Conn
Crypt::SSLeay::X509

Work on Crypt::SSLeay has been continued only to provide https support for the LWP - libwww perl libraries. If you want access to the OpenSSL API via perl, check out Sampos Net::SSLeay.

<<less
Download (MB)
Added: 2006-09-22 License: Perl Artistic License Price:
1134 downloads
WizMail 1.4

WizMail 1.4


WizMail is a Webmail system that strives to keep synchronized with the email on a POP3 server. more>>
WizMail is a Webmail system that strives to keep synchronized with the email on a POP3 server so that it can be accessed from the Web when an email client cant be used, and then downloaded when possible.

It is also able to filter incoming email into different folders, offers different configurable identities and signatures per user, and supports drag and drop.

WizMail project supports downloading and relaying of email using any SMTP/POP3 client: using WizMailTunnel, your email server can be accessed through HTTP/HTTPS proxies.

<<less
Download (0.082MB)
Added: 2006-05-14 License: Free for non-commercial use Price:
1260 downloads
mod_auth_user_dir 1.0

mod_auth_user_dir 1.0


mod_auth_user_dir is a module for Apache 2, you can create private user folders using WebDAV protocol. more>>
mod_auth_user_dir is a module for Apache 2, you can create private user folders using WebDAV protocol. Users have only permissions to access to their own directory. Without this module, a htaccess file must be created inside every user folder. This is completely unmanageable when the number of users is big.

We can build a file server accessible from Windows and Linux using WebDAV and a web server like Apache. Because the protocol is build upon HTTP, the server uses ports TCP 80 (HTTP) and TCP 443 (HTTPS). These ports are commonly open in firewalls without any other special requirement.

User authentication (login and password) are delegated to other Apache modules like mod_auth_ldap.

Installation:

download the binary or compile the source. It should work with all Apache 2.x versions.
install the module with /usr/local/apache2/bin/apxs -i -a -n auth_user_dir libmod_auth_user_dir.la
configure directory options in httpd.conf. Option AUTHUSERDIRROOT can be defined for every Directory, and it is the root folder where user folders will be created.
restart Apache: apachectl restart
<<less
Download (0.009MB)
Added: 2006-05-24 License: GPL (GNU General Public License) Price:
1248 downloads
wxDownload Fast 0.6.0

wxDownload Fast 0.6.0


wxDownload Fast (also known as wxDFast) is an open source download manager. more>>
wxDownload Fast (also known as wxDFast) is an open source download manager.
Besides that, it is a multi-threaded download manager. This means that it can split a file into several pieces and download the pieces simultaneously.
Created in C++ using the wxWidgets(wxWindows) library.
Main features:
- Faster downloads (with Segmented/Multi-threaded/Accelerated transfers)
- Download resuming (Pause and restart where you stopped)
- Download scheduling
- Organizes files you have already downloaded
- View server messages (HTTP, FTP, file://). No HTTPS support.
- Available in multiple languages and easily translated. Now available in Portuguese [Brazil], Spanish, English and German
- Connection to FTP servers which require a password
- Calculates the MD5 checksum of downloaded files so they can be easily verified
<<less
Download (MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
1181 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5