Accueil > > > WEBCAM HTTP SERVEUR LIVE SANS JMF
WEBCAM HTTP SERVEUR LIVE SANS JMF
Information sur la source
Description
Serveur HTTP pour window capturant à interval régulier les frames provenant d'une webcam via la librairie webcamlib.
Pour accéder à la page web votre webcam il vous suffit de double cliquer sur le jar et de taper dans votre navigateur "http://localhost/".
La page index.html permet de recharger à interval régulier la source de l'image(/webcam) en javascript ( testé sous IE/Firefox/Opéra).
Si l'url de la ressource demandée est "/webcam" le serveur retourne une image au format jpeg, sinon recherche des fichiers dans le répertoire "public_html".
NB: Pour accéder à la webcam depuis internet il vous suffit de remplacer localhost par l'adresse IP du serveur à condition que vous ayez bien redirigé le port 80 vers votre serveur sur votre box adsl.
Have fun,
Pierrick
Source
- /**
- * HTTP Webcam Server Version 1.0
- * (c) 2008 Pierrick HYMBERT <pierrick.hymbert@gmail.com>
- * This library is "PROVIDED AS IS" without guaranty of any kinds.
- * Freely distribuable under the terms of an MIT-style license.
- * Visit www.hypik.fr
- */
- package org.hypik.webcamlib.test.server;
-
- import java.awt.image.BufferedImage;
- import java.awt.image.ColorModel;
- import java.awt.image.DirectColorModel;
- import java.awt.image.WritableRaster;
- import java.io.ByteArrayOutputStream;
-
- import org.apache.log4j.Logger;
- import org.hypik.webcamlib.codecs.Codec;
- import org.hypik.webcamlib.codecs.Codecs;
- import org.hypik.webcamlib.compressor.CompressionException;
- import org.hypik.webcamlib.compressor.DecompressVideo;
- import org.hypik.webcamlib.compressor.jna.ICM;
- import org.hypik.webcamlib.device.Device;
- import org.hypik.webcamlib.device.listener.DeviceErrorListener;
- import org.hypik.webcamlib.device.listener.DeviceFrameListener;
- import org.hypik.webcamlib.device.listener.DeviceStatusListener;
- import org.hypik.webcamlib.jna.User32.BitmapInfoHeader;
- import org.hypik.webcamlib.jna.User32.VideoHDR;
-
- import com.sun.image.codec.jpeg.JPEGCodec;
- import com.sun.image.codec.jpeg.JPEGEncodeParam;
- import com.sun.image.codec.jpeg.JPEGImageEncoder;
- import com.sun.jna.Memory;
- /**
- * This class manage the webcam capture in a thread.
- * After configure decompression video driver and webcam device.
- * Instance can grab frame every rate seconds and decompress it.
- * Frame data can be get back as RGB or Jpeg formats.
- * @author Pierrick Hymbert <a href="mailto:pierrick.hymbert@gmail.com">Contact</a>
- *
- */
- public class WebcamCapture extends Thread {
- /**
- * The class logger.
- */
- private Logger logger = Logger.getLogger(WebcamCapture.class);
- /**
- * The webcam device.
- */
- private Device device;
- /**
- * Time between each frame.
- */
- private int rate;
- /**
- * Indicates if we must continue capturing frame.
- */
- private boolean capture = false;
- /**
- * Indicate that all is configured.
- */
- private boolean available = false;
- /**
- * The video driver decompression.
- */
- private DecompressVideo decompressVideo;
- /**
- * The decompressed data.
- */
- private Memory decompressedData;
- /**
- * The output frame format.
- */
- private BitmapInfoHeader bitmapInfoOutput;
- /**
- * Build a webcam capture.
- * @param device The webcam
- * @param rate The refresh rate.
- */
- public WebcamCapture(Device device, int rate){
- super("WCCapture #" + device.getIndex());
- this.device = device;
- this.rate = rate;
- }
- /**
- * Ask the thread to stop the capture.
- */
- public void stopCapture() {
- this.capture = false;
- }
- /**
- * Start the thread.
- */
- public void startCapture() {
- this.capture = true;
- this.start();
- }
- /**
- * Run webcam capture until stopCapture is called.
- */
- public void run() {
- try{
- // Configure device and decompressor
- logger.debug("Configuring webcam device...");
- configureDevice();
- logger.debug("Configuring frame decompressor...");
- configureDecompressor();
- logger.info("Webcam capture started.");
- }catch( Exception e ){
- logger.error(e);
- capture = false;
- }
- available = true;
- // Caputre loop
- while( capture ){
- // Sometimes call back functions are disabled.
- device.forceCallBacks();
- device.grabFrame();
- try{
- Thread.sleep(rate);
- }catch (Exception e) {
- logger.error(e);
- capture = false;
- }
- }
- logger.debug("Disconnecting webcam device...");
- // Destroy window and disconnect
- device.stop();
- if( decompressVideo != null ){
- try{
- if( decompressVideo.isOpened() ){
- logger.debug("Free decompression resources...");
- decompressVideo.freeResources();
- }
- }catch (CompressionException e) {
- logger.error(e);
- }finally{
- try{
- if( decompressVideo.isOpened() ){
- logger.debug("Closing decompression driver...");
- decompressVideo.close();
- }
- }catch (CompressionException e) {
- logger.error(e);
- }
- }
- }
- logger.info("Webcam capture stopped.");
- }
- /**
- * Configure the device.
- * @throws Exception
- */
- private void configureDevice() throws Exception {
- //Create the capture window
- device.createCaptureWindow("Webcam device", 640, 480, 0, 0);
- if( !device.isCaptureWindowCreated() )
- throw new Exception("Unable to create webcam capture window!");
-
- // Add listeners
- device.addDeviceErrorListener( errorListener );
- device.addDeviceStatusListener( statusListener );
- device.addDeviceFrameListener( frameListener );
-
- // Connect the window to device driver
- device.connect();
- if( !device.isConnected() )
- throw new Exception("Unable to connect webcam capture window to the webcam driver!");
- logger.debug("Webcam device is now connected to the webcam window. Do not close this program before calling stopCapture. Otherwise you can cause damage to your video device.");
-
- device.setScale(false);
- device.setPreview(false);
- device.setPreviewRate(rate);
- }
- /**
- * Configure the decompressor
- * @throws CompressionException If no compressor found.
- */
- private void configureDecompressor() throws CompressionException {
- // Get back device bit map info input
- BitmapInfoHeader bitmapInfoInput = device.getBitMapInfo().bmiHeader;
-
- // Build the output format
- bitmapInfoOutput = new BitmapInfoHeader();
- bitmapInfoOutput.biBitCount = 24;
- bitmapInfoOutput.biCompression = BitmapInfoHeader.BI_RGB;
- bitmapInfoOutput.biHeight = bitmapInfoInput.biHeight;
- bitmapInfoOutput.biWidth = bitmapInfoInput.biWidth;
- bitmapInfoOutput.biSizeImage = bitmapInfoInput.biSizeImage = 0;
- bitmapInfoOutput.biSize = bitmapInfoInput.biSize = bitmapInfoInput.size();
- bitmapInfoOutput.biPlanes = bitmapInfoInput.biPlanes = 1;
- bitmapInfoOutput.biXPelsPerMeter = bitmapInfoOutput.biYPelsPerMeter = bitmapInfoInput.biXPelsPerMeter = bitmapInfoInput.biYPelsPerMeter = 0;
- bitmapInfoOutput.biClrUsed = bitmapInfoOutput.biClrImportant = bitmapInfoInput.biClrUsed = bitmapInfoInput.biClrImportant = 256;
-
- Codec codecInput = Codecs.getCodec(bitmapInfoInput.biCompression);
- if (codecInput != null){
- logger.info("Device input codec is " + codecInput.getFourCCString() + ": " + codecInput.getLongName());
- }
- Codec codecOutput = Codecs.getCodec(bitmapInfoOutput.biCompression);
- if (codecOutput != null){
- logger.info("Device output codec is " + codecOutput.getFourCCString() + ": " + codecOutput.getLongName());
- }
- // Find a decompressor from the input format to the output
- decompressVideo = DecompressVideo.findDecompressorVideo(bitmapInfoInput, bitmapInfoOutput);
-
- //Check if a decompressor was found
- if( decompressVideo == null ){
- throw new CompressionException("No decompressor found from this input codec to this output.", ICM.ICERR_BADFORMAT);
- }
-
- // Allocate decompressed data buffer
- decompressedData = new Memory(3
- * bitmapInfoOutput.biHeight * bitmapInfoOutput.biWidth);
-
- // Opening decompression driver
- decompressVideo.open();
-
- // Begin decompression
- decompressVideo.begin(bitmapInfoInput, bitmapInfoOutput);
- }
- /**
- * Read decompressed datas in memory.
- * Warning NO Thread safe.
- * @return The decompressed data.
- */
- private byte[] getDatas(){
- return decompressedData.getByteArray(0, (int) decompressedData.getSize());
- }
- /**
- * A buffered image of the decompressed data.
- * @return The decompressed image.
- */
- public BufferedImage getBufferedImage(){
- BufferedImage image = null;
- synchronized (decompressedData) {
- byte[] data = getDatas();
- image = convertToAWT(data, bitmapInfoOutput.biWidth, bitmapInfoOutput.biHeight );
- }
- return image;
- }
-
- /**
- * Get a JPG image of the decompressed datas as byte array.
- * @param imageQuality The image quality.
- * @return Byte array of the JPG image data.
- */
- public byte[] getJpgBuffer( float imageQuality ){
- BufferedImage bufferImage = getBufferedImage();
- ByteArrayOutputStream outputArray = new ByteArrayOutputStream();
-
- JPEGImageEncoder jpegEncoder = JPEGCodec.createJPEGEncoder(outputArray);
- JPEGEncodeParam jpegParam = jpegEncoder.getDefaultJPEGEncodeParam(bufferImage);
- jpegParam.setQuality(imageQuality, false);
- jpegEncoder.setJPEGEncodeParam(jpegParam);
- try
- {
- jpegEncoder.encode(bufferImage);
- outputArray.close();
- } catch (java.io.IOException IOEx) {IOEx.printStackTrace();}
-
- return outputArray.toByteArray();
- }
-
- /**
- * Converts a byte data image to a AWT
- * <code>BufferedImage</code>.
- * @param data The byte data array to be converted.
- * @return The AWT image version.
- */
- private BufferedImage convertToAWT(byte[] data, int width, int height) {
- ColorModel colorModel = null;
- colorModel = new DirectColorModel(24, 0xFF, 0xFF00, 0xFF0000);
- BufferedImage bufferedImage = new BufferedImage(colorModel,
- colorModel.createCompatibleWritableRaster(width,height), false, null);
- WritableRaster raster = bufferedImage.getRaster();
- int[] pixelArray = new int[3];
- for (int y = 0; y < height; y++) {
- for (int x = 0; x < width * 3; x+=3) {
- pixelArray[0] = data[ ( height - y - 1) * width * 3 + x + 2 ];
- pixelArray[1] = data[ ( height - y - 1) * width * 3 + x + 1 ];
- pixelArray[2] = data[ ( height - y - 1) * width * 3 + x];
- raster.setPixel(x / 3, y, pixelArray);
- }
- }
- return bufferedImage;
- }
- private DeviceErrorListener errorListener = new DeviceErrorListener(){
- /**
- * Fire the listener that the device throws an error message.
- *
- * @param device
- * The device in error state.
- * @param errorId
- * The error id is one of the constants below.
- * @param errorMessage
- * The error message.
- */
- public void deviceError(Device device, int errorId, String errorMessage){
- logger.error(device + "=>" + errorId + ":" + errorMessage);
- }
- };
- private DeviceStatusListener statusListener = new DeviceStatusListener(){
- /**
- * Fire the listener that the device fire a status message.
- *
- * @param device
- * The device.
- * @param statusId
- * The status id is one of the constants below.
- * @param statusMessage
- * The status message.
- */
- public void deviceStatus(Device device, int statusId, String statusMessage){
- logger.info(device + "=>" + statusId + ":" + statusMessage);
- }
-
- };
- private DeviceFrameListener frameListener = new DeviceFrameListener(){
- /**
- *
- * @param device The device
- * @param videoHDR The video header
- * @param data The frame data.
- */
- public void frame(Device device, VideoHDR videoHDR, Memory data){
- try{
- synchronized (decompressedData) {
- //Decompress data
- decompressVideo.decompress(ICM.ICDECOMPRESS_HURRYUP,
- data, decompressedData);
- }
- }catch (CompressionException e) {
- logger.error(e);
- // Stop the capture
- capture = false;
- }
- }
- };
- /**
- * Check if the webcam capture continue.
- * @return True if capture frame processing, false otherwise.
- */
- public boolean isCapture() {
- return capture;
- }
- /**
- * Check if all is ok.
- * @return True if both device and decompressor are set.
- */
- public boolean isAvailable() {
- return available;
- }
- }
/**
* HTTP Webcam Server Version 1.0
* (c) 2008 Pierrick HYMBERT <pierrick.hymbert@gmail.com>
* This library is "PROVIDED AS IS" without guaranty of any kinds.
* Freely distribuable under the terms of an MIT-style license.
* Visit www.hypik.fr
*/
package org.hypik.webcamlib.test.server;
import java.awt.image.BufferedImage;
import java.awt.image.ColorModel;
import java.awt.image.DirectColorModel;
import java.awt.image.WritableRaster;
import java.io.ByteArrayOutputStream;
import org.apache.log4j.Logger;
import org.hypik.webcamlib.codecs.Codec;
import org.hypik.webcamlib.codecs.Codecs;
import org.hypik.webcamlib.compressor.CompressionException;
import org.hypik.webcamlib.compressor.DecompressVideo;
import org.hypik.webcamlib.compressor.jna.ICM;
import org.hypik.webcamlib.device.Device;
import org.hypik.webcamlib.device.listener.DeviceErrorListener;
import org.hypik.webcamlib.device.listener.DeviceFrameListener;
import org.hypik.webcamlib.device.listener.DeviceStatusListener;
import org.hypik.webcamlib.jna.User32.BitmapInfoHeader;
import org.hypik.webcamlib.jna.User32.VideoHDR;
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGEncodeParam;
import com.sun.image.codec.jpeg.JPEGImageEncoder;
import com.sun.jna.Memory;
/**
* This class manage the webcam capture in a thread.
* After configure decompression video driver and webcam device.
* Instance can grab frame every rate seconds and decompress it.
* Frame data can be get back as RGB or Jpeg formats.
* @author Pierrick Hymbert <a href="mailto:pierrick.hymbert@gmail.com">Contact</a>
*
*/
public class WebcamCapture extends Thread {
/**
* The class logger.
*/
private Logger logger = Logger.getLogger(WebcamCapture.class);
/**
* The webcam device.
*/
private Device device;
/**
* Time between each frame.
*/
private int rate;
/**
* Indicates if we must continue capturing frame.
*/
private boolean capture = false;
/**
* Indicate that all is configured.
*/
private boolean available = false;
/**
* The video driver decompression.
*/
private DecompressVideo decompressVideo;
/**
* The decompressed data.
*/
private Memory decompressedData;
/**
* The output frame format.
*/
private BitmapInfoHeader bitmapInfoOutput;
/**
* Build a webcam capture.
* @param device The webcam
* @param rate The refresh rate.
*/
public WebcamCapture(Device device, int rate){
super("WCCapture #" + device.getIndex());
this.device = device;
this.rate = rate;
}
/**
* Ask the thread to stop the capture.
*/
public void stopCapture() {
this.capture = false;
}
/**
* Start the thread.
*/
public void startCapture() {
this.capture = true;
this.start();
}
/**
* Run webcam capture until stopCapture is called.
*/
public void run() {
try{
// Configure device and decompressor
logger.debug("Configuring webcam device...");
configureDevice();
logger.debug("Configuring frame decompressor...");
configureDecompressor();
logger.info("Webcam capture started.");
}catch( Exception e ){
logger.error(e);
capture = false;
}
available = true;
// Caputre loop
while( capture ){
// Sometimes call back functions are disabled.
device.forceCallBacks();
device.grabFrame();
try{
Thread.sleep(rate);
}catch (Exception e) {
logger.error(e);
capture = false;
}
}
logger.debug("Disconnecting webcam device...");
// Destroy window and disconnect
device.stop();
if( decompressVideo != null ){
try{
if( decompressVideo.isOpened() ){
logger.debug("Free decompression resources...");
decompressVideo.freeResources();
}
}catch (CompressionException e) {
logger.error(e);
}finally{
try{
if( decompressVideo.isOpened() ){
logger.debug("Closing decompression driver...");
decompressVideo.close();
}
}catch (CompressionException e) {
logger.error(e);
}
}
}
logger.info("Webcam capture stopped.");
}
/**
* Configure the device.
* @throws Exception
*/
private void configureDevice() throws Exception {
//Create the capture window
device.createCaptureWindow("Webcam device", 640, 480, 0, 0);
if( !device.isCaptureWindowCreated() )
throw new Exception("Unable to create webcam capture window!");
// Add listeners
device.addDeviceErrorListener( errorListener );
device.addDeviceStatusListener( statusListener );
device.addDeviceFrameListener( frameListener );
// Connect the window to device driver
device.connect();
if( !device.isConnected() )
throw new Exception("Unable to connect webcam capture window to the webcam driver!");
logger.debug("Webcam device is now connected to the webcam window. Do not close this program before calling stopCapture. Otherwise you can cause damage to your video device.");
device.setScale(false);
device.setPreview(false);
device.setPreviewRate(rate);
}
/**
* Configure the decompressor
* @throws CompressionException If no compressor found.
*/
private void configureDecompressor() throws CompressionException {
// Get back device bit map info input
BitmapInfoHeader bitmapInfoInput = device.getBitMapInfo().bmiHeader;
// Build the output format
bitmapInfoOutput = new BitmapInfoHeader();
bitmapInfoOutput.biBitCount = 24;
bitmapInfoOutput.biCompression = BitmapInfoHeader.BI_RGB;
bitmapInfoOutput.biHeight = bitmapInfoInput.biHeight;
bitmapInfoOutput.biWidth = bitmapInfoInput.biWidth;
bitmapInfoOutput.biSizeImage = bitmapInfoInput.biSizeImage = 0;
bitmapInfoOutput.biSize = bitmapInfoInput.biSize = bitmapInfoInput.size();
bitmapInfoOutput.biPlanes = bitmapInfoInput.biPlanes = 1;
bitmapInfoOutput.biXPelsPerMeter = bitmapInfoOutput.biYPelsPerMeter = bitmapInfoInput.biXPelsPerMeter = bitmapInfoInput.biYPelsPerMeter = 0;
bitmapInfoOutput.biClrUsed = bitmapInfoOutput.biClrImportant = bitmapInfoInput.biClrUsed = bitmapInfoInput.biClrImportant = 256;
Codec codecInput = Codecs.getCodec(bitmapInfoInput.biCompression);
if (codecInput != null){
logger.info("Device input codec is " + codecInput.getFourCCString() + ": " + codecInput.getLongName());
}
Codec codecOutput = Codecs.getCodec(bitmapInfoOutput.biCompression);
if (codecOutput != null){
logger.info("Device output codec is " + codecOutput.getFourCCString() + ": " + codecOutput.getLongName());
}
// Find a decompressor from the input format to the output
decompressVideo = DecompressVideo.findDecompressorVideo(bitmapInfoInput, bitmapInfoOutput);
//Check if a decompressor was found
if( decompressVideo == null ){
throw new CompressionException("No decompressor found from this input codec to this output.", ICM.ICERR_BADFORMAT);
}
// Allocate decompressed data buffer
decompressedData = new Memory(3
* bitmapInfoOutput.biHeight * bitmapInfoOutput.biWidth);
// Opening decompression driver
decompressVideo.open();
// Begin decompression
decompressVideo.begin(bitmapInfoInput, bitmapInfoOutput);
}
/**
* Read decompressed datas in memory.
* Warning NO Thread safe.
* @return The decompressed data.
*/
private byte[] getDatas(){
return decompressedData.getByteArray(0, (int) decompressedData.getSize());
}
/**
* A buffered image of the decompressed data.
* @return The decompressed image.
*/
public BufferedImage getBufferedImage(){
BufferedImage image = null;
synchronized (decompressedData) {
byte[] data = getDatas();
image = convertToAWT(data, bitmapInfoOutput.biWidth, bitmapInfoOutput.biHeight );
}
return image;
}
/**
* Get a JPG image of the decompressed datas as byte array.
* @param imageQuality The image quality.
* @return Byte array of the JPG image data.
*/
public byte[] getJpgBuffer( float imageQuality ){
BufferedImage bufferImage = getBufferedImage();
ByteArrayOutputStream outputArray = new ByteArrayOutputStream();
JPEGImageEncoder jpegEncoder = JPEGCodec.createJPEGEncoder(outputArray);
JPEGEncodeParam jpegParam = jpegEncoder.getDefaultJPEGEncodeParam(bufferImage);
jpegParam.setQuality(imageQuality, false);
jpegEncoder.setJPEGEncodeParam(jpegParam);
try
{
jpegEncoder.encode(bufferImage);
outputArray.close();
} catch (java.io.IOException IOEx) {IOEx.printStackTrace();}
return outputArray.toByteArray();
}
/**
* Converts a byte data image to a AWT
* <code>BufferedImage</code>.
* @param data The byte data array to be converted.
* @return The AWT image version.
*/
private BufferedImage convertToAWT(byte[] data, int width, int height) {
ColorModel colorModel = null;
colorModel = new DirectColorModel(24, 0xFF, 0xFF00, 0xFF0000);
BufferedImage bufferedImage = new BufferedImage(colorModel,
colorModel.createCompatibleWritableRaster(width,height), false, null);
WritableRaster raster = bufferedImage.getRaster();
int[] pixelArray = new int[3];
for (int y = 0; y < height; y++) {
for (int x = 0; x < width * 3; x+=3) {
pixelArray[0] = data[ ( height - y - 1) * width * 3 + x + 2 ];
pixelArray[1] = data[ ( height - y - 1) * width * 3 + x + 1 ];
pixelArray[2] = data[ ( height - y - 1) * width * 3 + x];
raster.setPixel(x / 3, y, pixelArray);
}
}
return bufferedImage;
}
private DeviceErrorListener errorListener = new DeviceErrorListener(){
/**
* Fire the listener that the device throws an error message.
*
* @param device
* The device in error state.
* @param errorId
* The error id is one of the constants below.
* @param errorMessage
* The error message.
*/
public void deviceError(Device device, int errorId, String errorMessage){
logger.error(device + "=>" + errorId + ":" + errorMessage);
}
};
private DeviceStatusListener statusListener = new DeviceStatusListener(){
/**
* Fire the listener that the device fire a status message.
*
* @param device
* The device.
* @param statusId
* The status id is one of the constants below.
* @param statusMessage
* The status message.
*/
public void deviceStatus(Device device, int statusId, String statusMessage){
logger.info(device + "=>" + statusId + ":" + statusMessage);
}
};
private DeviceFrameListener frameListener = new DeviceFrameListener(){
/**
*
* @param device The device
* @param videoHDR The video header
* @param data The frame data.
*/
public void frame(Device device, VideoHDR videoHDR, Memory data){
try{
synchronized (decompressedData) {
//Decompress data
decompressVideo.decompress(ICM.ICDECOMPRESS_HURRYUP,
data, decompressedData);
}
}catch (CompressionException e) {
logger.error(e);
// Stop the capture
capture = false;
}
}
};
/**
* Check if the webcam capture continue.
* @return True if capture frame processing, false otherwise.
*/
public boolean isCapture() {
return capture;
}
/**
* Check if all is ok.
* @return True if both device and decompressor are set.
*/
public boolean isAvailable() {
return available;
}
}
Conclusion
Si cette source s'avère utilisée je me pencherai sur une manière de sécuriser l'accès à la webcam par mot de passe.
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
serveur http webcam " clé en main"... [ par eric35 ]
Salut à tous Bon je suis un petit nouveau et pas très bon en programmation .... d 'où mes questions un poil simplettes sur ce site !j 'ai développé un
Affichage d'une webcam IP [ par stage3 ]
bonjour, j'ai un probleme avec un projet, je m'explique, je dois afficher le flux d'une camera trendnet ip100 dans mon application (et non dans une pa
Serveur http [ par sarita1987 ]
Salut tout le monde, j'ai créé une serveur http selon le protocole 1.1,mon problème c'est une niveau de l'interface le champs historique ce champs la
JAR et Serveur Web [ par GRenard ]
Bonjour,Je voudrais savoir s'il y avait un moyen de désactiver l'option que lorsqu'une classe n'existe pas dans le .jar (chargée par exemple
serveur virtuel avec oracle http server [ par krikete ]
slt a tous;je suis entrain de faire une application web avec jdevloper 10g et comme serveur d'application OC4j je souhaterais créé un serveur virtuel
J2ME - serveur HTTP [ par bsophia ]
Bonjour tout le monde, J'ai un exposé sur comment rendre une application j2me telechargeable, sur un vrai mobile? Comment l'installer sur un serv
Proxy HTTP [ par junior31490 ]
Bonjour,Je vous écris parce que j'ai vraiment besopin d'aide.Voilà, je dois développer un petit proxy tout simple, permettant de récupérer une requête
creation d'un client php et serveur http en java [ par minamak ]
slt tous le monde, bein moi je suis débutante en progrmmation sockets et application reseau en general , et mon problème est que je veux réaliser une
|
Derniers Blogs
[FRAMEWORK 4] LES TASKS ET LE THREAD UI[FRAMEWORK 4] LES TASKS ET LE THREAD UI par fathi
Je viens de passer quelques temps au TechDay's et j'ai pu voir pas mal de session intéressante. Par contre une chose m'a un peu étonné lors de certaines de ces sessions qui abordaient les améliorations du framework .NET (donc le 4.5) : en gros, bea...
Cliquez pour lire la suite de l'article par fathi WORKFLOW FOUNDATION 3 A UN PIED DANS LA TOMBEWORKFLOW FOUNDATION 3 A UN PIED DANS LA TOMBE par JeremyJeanson
Depuis déjà un an, je conseille vivement les utilisateurs de Workflow Foundation 3 à migrer vers la version 4. L'information qui va suivre ne devrait donc pas trop prendre au dépourvu les personnes qui m'ont suivi. Je profite de ce poste, pour faire le re...
Cliquez pour lire la suite de l'article par JeremyJeanson TECHDAYS PARIS 2012 : NOUVELLES TENDANCES DU POSTE DE TRAVAIL - BRING YOUR OWN PCTECHDAYS PARIS 2012 : NOUVELLES TENDANCES DU POSTE DE TRAVAIL - BRING YOUR OWN PC par ROMELARD Fabrice
Speakers: Thierry Rapatout, Antoine Petit et Xavier Trebbia Cette session entre dans le cadre des RDV Décideurs des TechDays 2012, elle est liée à la consumérisation de l'IT et la mise en place du "DeskTop as a Service" dans de plus en ...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice TECHDAYS PARIS 2012 : SYSTEM CENTER SERVICE MANAGER 2012 VUE D'ENSEMBLETECHDAYS PARIS 2012 : SYSTEM CENTER SERVICE MANAGER 2012 VUE D'ENSEMBLE par ROMELARD Fabrice
Speakers: Julien Marechal, Gautier Confiant, Sébastien MEYER La session débute par le positionnement de la solution System Center par rapport aux concepts d'organisation ITIL. Le portail du catalogue de se...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice TECHDAYS PARIS 2012 : PLEINIèRE SECOND JOURTECHDAYS PARIS 2012 : PLEINIèRE SECOND JOUR par ROMELARD Fabrice
Après une première journée dédiée aux développeurs, cette seconde journée est dédiée au monde des entreprises et de ses applications. Ainsi, cette pleinière est dédiée à faire un 360 de l'évolution des applications Business aux demandes ac...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice
Forum
RE : SQLRE : SQL par Julien39
Cliquez pour lire la suite par Julien39
Logiciels
Academy System (17.2.1.0)ACADEMY SYSTEM (17.2.1.0)Logiciel de gestion des établissements.
- élèves/étudiants (inscription, dossier, absence...)
-... Cliquez pour télécharger Academy System Easy-Planning (1.0.0.1)EASY-PLANNING (1.0.0.1)Basé sur les mêmes principes que MyPlanning, Easy-Planning permet de créer des plannings sous la ... Cliquez pour télécharger Easy-Planning COLLECTOR PLUS (3.00B)COLLECTOR PLUS (3.00B)COLLECTOR PLUS version 3.00B est un logiciel utilisant une base de données alimentée par :
- L... Cliquez pour télécharger COLLECTOR PLUS PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V7.4)PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V7.4)PONAMEDIA TV DEVIENS HELLLOOO FLASH
LA TV SUR VOTRE ORDINATEUR.
Toute une plateforme Multi... Cliquez pour télécharger PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO LettresFaciles 2011 (8.0.0.1)LETTRESFACILES 2011 (8.0.0.1)LettresFaciles est un logiciel facilitant la création et la rédaction de lettres types.
Son inte... Cliquez pour télécharger LettresFaciles 2011
|