Main > Free Download Search >

Free xa software for linux

xa

Sponsored Links
Sponsored Links
Sort by >> Relevance
rss
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5
DigiBand 1.0

DigiBand 1.0


DigiBand is a full home version Drumming/Guitar simulator. more>>
DigiBand is a full home version Drumming/Guitar simulator. It isnt just intended to be a simulator, but a uniquely refreshing new experience. The project is much different than simulators already out there.
Main features:
- DigiBand supports both GDA and DTX file formats using a "Prefered" option, which can be modified in the games settings.ini file.
- DigiBand can Support up to 3 players Simutaneously!
- Digiband has a unique "Jukebox" mode which allows you to hear the songs notes before you play it, as well as other surprises.
- DigiBand also supports theming for UI customization, and uses transparent PNG images, avis, mp3s, and Cabbit Models for its UI system.
- DigiBand plays and converts xa audio files for ease of song editing.
- Digiband saves your highscores with maxcombo so you can clock how well you are doing.
- DigiBand allows Multiple players, playing bass or guitar with a drum player to all have seperate difficulties and styles.
- DigiBand sorts songs in a categorized "DDR" style interface, with slight adjustments for ease of use!
- DigiBand uses the internal system clock to maintain audio to note synchronization thanks to SDL.
- DigiBand allows users to sync up their songs on the fly. If it feels like youre being rushed or delayed, just sync it up by pressing F11/F12.
<<less
Download (30.5MB)
Added: 2007-07-30 License: Freeware Price:
835 downloads
SimpleJTA 2.0.2 Alpha

SimpleJTA 2.0.2 Alpha


SimpleJTA implements a standalone JTA compliant Transaction Manager. more>>
SimpleJTA implements a standalone JTA compliant Transaction Manager. SimpleJTA project is primarily designed to be used when a J2EE server is not available, for example, in Servlet applications, or standalone Java programs.
SimpleJTA is being developed and tested with Oracle 9i and Apache Derby database management systems. It is fairly easy to add support for other database systems that support the XA interface.
Main features:
- SimpleJTA does not require a J2EE or Servlet container. It provides an implementation of UserTransaction interface so that an application using SimpleJTA can easily switch to another JTA implementation.
- SimpleJTA implements a transaction log to enable recovery after system crashes.
- Distributed transaction propagation between multiple application servers is not supported. There is no support for JTS.
- SimpleJTA implements the UserTransaction, Transaction and TransactionManager interfaces. The Transaction and TransactionManager interfaces have not been tested extensively.
- SimpleJTA provides its own JDBC datasources for Oracle and Derby. It is easy to add support for other database systems.
- SimpleJTA JDBC datasources and UserTransaction implementation can be registered to JNDI, but this has not been tested yet.
- There is experimental support for two JMS providers - Websphere MQ and Oracle AQ.
- SimpleJTA can be used within a Spring Framework managed application.
Enhancements:
- Added spring-dao to the list of dependencies in pom.xml.
- Added TransactionManager interface to SimpleUserTransaction.
- Added SpringTransactionManager bean definition to testConfig.xml.
- Fixed problems reported by FindBugs (4 defects remaining).
- Added very basic test case for ActiveMQ.
- Fixed incorrect classname in ActiveMQJMSConnectionFactoryAdaptor.
<<less
Download (0.093MB)
Added: 2007-04-15 License: The Apache License 2.0 Price:
926 downloads
Apache ActiveMQ for Linux 5.0.0

Apache ActiveMQ for Linux 5.0.0


open source Message Broker and Enterprise Integration Patterns provider more>> Apache ActiveMQ is the most popular and powerful open source Message Broker and Enterprise Integration Patterns provider.
Apache ActiveMQ is fast, supports many Cross Language Clients and Protocols, comes with easy to use Enterprise Integration Patterns and many advanced features while fully supporting JMS 1.1 and J2EE 1.4. Apache ActiveMQ is released under the Apache 2.0 License
Grab yourself a Download, try our Getting Started Guide, surf our FAQ or start Contributing and join us on our Discussion Forums.
Features
Supports a variety of Cross Language Clients and Protocols from Java, C, C++, C#, Ruby, Perl, Python, PHP
OpenWire for high performance clients in Java, C, C++, C#
Stomp support so that clients can be written easily in C, Ruby, Perl, Python, PHP, ActionScript/Flash, Smalltalk to talk to ActiveMQ as well as any other popular Message Broker
full support for the Enterprise Integration Patterns both in the JMS client and the Message Broker
Supports many advanced features such as Message Groups, Virtual Destinations, Wildcards and Composite Destinations
Fully supports JMS 1.1 and J2EE 1.4 with support for transient, persistent, transactional and XA messaging
Spring Support so that ActiveMQ can be easily embedded into Spring applications and configured using Springs XML configuration mechanism
Tested inside popular J2EE servers such as Geronimo, JBoss 4, GlassFish and WebLogic
Includes JCA 1.5 resource adaptors for inbound & outbound messaging so that ActiveMQ should auto-deploy in any J2EE 1.4 compliant server
Supports pluggable transport protocols such as in-VM, TCP, SSL, NIO, UDP, multicast, JGroups and JXTA transports
Supports very fast persistence using JDBC along with a high performance journal
Designed for high performance clustering, client-server, peer based communication
REST API to provide technology agnostic and language neutral web based API to messaging
Ajax to support web streaming support to web browsers
<<less
Download (1.85MB)
Added: 2009-04-04 License: Freeware Price: Free
210 downloads
CDfs 2.6.12

CDfs 2.6.12


CDfs is a filesystem that exports all tracks on a CD as normal files. more>>
CDfs is a file system for Linux systems that `exports all tracks and boot images on a CD as normal files. These files can then be mounted (e.g. for ISO and boot images), copied, played (audio and VideoCD tracks)...
The primary goal for developing this file system was to `unlock information in old ISO images. For instance, if you have a multisession CD with two ISO images that both contain the file a, you only see the file a in the second session if you use the iso9660 file system:
[root@k6 /root]# mount -t iso9660 -o ro /dev/cdrom /mnt/cdrom
[root@k6 /root]# ls -l /mnt/cdrom
total 2
-r-xr-xr-x 1 root root 2 Aug 8 19:16 a
-r-xr-xr-x 1 root root 2 Aug 8 19:19 b
If you mount the CD with the cdfs file system, you get the two sessions as files:
[root@k6 /root]# mount -t cdfs -o ro /dev/cdrom /mnt/cdfs
[root@k6 /root]# ls -l /mnt/cdfs
total 33389
-r--r--r-- 1 ronsse ronsse 33503232 Aug 8 19:36 sessions_1-1.iso
-r--r--r-- 1 ronsse ronsse 34121728 Aug 8 1999 sessions_1-2.iso
These files can then be mounted loop back:
[root@k6 /root]# mount -t iso9660 -o loop /cdfs/sessions_1-1.iso /mnt/loop1
[root@k6 /root]# mount -t iso9660 -o loop /cdfs/sessions_1-2.iso /mnt/loop2
and the file a can be accessed in both sessions
[root@k6 /root]# ls -l /mnt/loop1
total 9889
-r-xr-xr-x 1 root root 10104236 Aug 8 17:34 a
[root@k6 /root]# ls -l /mnt/loop2
total 2
-r-xr-xr-x 1 root root 2 Aug 8 19:16 a
-r-xr-xr-x 1 root root 2 Aug 8 19:19 b
The file system also allows you to access data on faulty multi session disks, e.g. disk with multiple single sessions instead of a multi session (for instance created with mkisofs without the proper -C parameters).
Version restrictions:
- Red Book (audio), Yellow Book Mode 1 (data) , Green/White Book Mode 2 / XA Form 1 and Green/White Book Mode 2 / XA Form 2 (data) tracks are exported. Other types will be added in the future. Data tracks are checked for ISO, HFS and boot images. If none of these are found, the data track is exported as `unknown`. This version only exports the first HFS and boot image (anybody seen a CD with more than 1 HFS or boot image?).
<<less
Download (0.030MB)
Added: 2005-07-07 License: GPL (GNU General Public License) Price:
1594 downloads
Mule 1.3

Mule 1.3


Mule is the leading open source ESB (Enterprise Service Bus) and integration platform. more>>
Mule is the leading open source ESB (Enterprise Service Bus) and integration platform. Mule is a scalable, highly distributable object broker that can seamlessly handle interactions with services and applications using disparate transport and messaging technologies.
Main features:
- J2EE 1.4 Enterprise Service Bus (ESB) and Messaging broker
- Pluggable connectivity such as JMS (1.0.2b and 1.1), VM (embedded), JDBC, TCP, UDP, multicast, http, servlet, SMTP, POP3, file, XMPP.
- JBI Integration.
- Orchestration of services using WS-BPEL and Mule components and routers.
- Support for asynchronous, synchronous and request-response event processing over any transport.
- Web Services using XFire (STaX-based) Axis or Glue.
- Flexible deployment [Topologies] including Client/Server, Peer-to-Peer, ESB and Enterprise Service Network.
- Declarative and Programmatic transaction support including XA support.
- End-to-End support for routing, transport and transformation of events.
- Spring framework Integration. Can be used as the ESB container and Mule can be easily embedded into Spring applications.
- Highly scalable enterprise server using the SEDA processing model.
- REST API to provide technology agnostic and language neutral web based access to Mule Events
- Powerful event routing based on patterns in the popular EIP book.
- Dynamic, declarative, content-based and rule-based routing options.
- Non-Intrusive approach. Any object can be managed by the ESB container.
- Powerful Application Integration framework
- Fully extensible development model
Enhancements:
- XFire now supports STaX-based streaming SOAP, JavaSpaces JAAS Security Provider, Spring Remoting, HiveMind, and these transaction managers: Weblogic, Websphere, JRun, JBoss, Resin, and Generic Jndi-based.
- Performance improvements were made and full character set encoding support and internationalization was implemented.
- Transport-specific session handling was added.
- Over 300 issues were closed.
- The Sandbox now has jBPM Transport, specialised Tibco transport, specialised MQ Series transport, a SAP module, and Maven Archetypes for building template projects.
<<less
Download (22.3MB)
Added: 2006-10-09 License: MPL (Mozilla Public License) Price:
1111 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 1
  • 1