The Source for Java Technology Collaboration
User: Password:



Rima Patel Sriganesh

Rima Patel Sriganesh's Blog

Java and .NET Interoperability - Let's just do it

Posted by rpatel on February 12, 2007 at 10:53 AM | Comments (8)

With the release of Web Services Interoperability Toolkit (WSIT), many of us have been asking one basic question - how to go about making the Java and .NET endpoints work? How to prototype this interoperability? In this blog, I am outlining the steps to do just that. I will show you how to establish the most basic interoperability between Java and .NET platforms using Web services.

Step 1 - Install the following softwares on your system

1) WSIT Milestone 2 Release (wsit.dev.java.net)

2) Glassfish v2 build 18 (https://glassfish.dev.java.net/downloads/v2-b15.html)

3) NetBeans 5.5 IDE (http://www.netbeans.info/downloads/index.php?)

4) WSIT NetBeans Module v1.41 (Flash based tutorial of downloading and installing this NetBeans module is
available at http://websvc.netbeans.org/wsit/flash/DownloadInstall-Single.htm)

5) Install .NET Framework 3.0 (http://www.microsoft.com/downloads/details.aspx?FamilyId=10CC340B-F857-
4A14-83F5-25634C3BF043&displaylang=en
) (**)

6) Install .NET SDK 3.0 (http://www.microsoft.com/downloads/details.aspx?FamilyId=C2B1E300-F358-4523-B479-F53D234CDCCF&displaylang=en) (**)
** - This demo has been tested with July CTP versions of .NET Framework 3.0 and .NET SDK 3.0. Although, logically speaking, the demo script should work to showcase interoperability between Java and the more recent versions of .NET Framework and SDK.

Step 2 - Start the NetBeans 5.5 IDE

Step 3 - Deploy Java Web service endpoint

Follow this Flash tutorial to deploy a simple Java Web service, NewWebService. You should make two changes to your Web service for the purpose of showcasing interoperability with .NET:-

1) Even though the tutorial instructs to turn Reliable Messaging on, for .NET interoperability purposes, don't turn it on for simplicity sake. We will test interop between the two platforms in this demo for just MTOM functionality.

2) The July CTP versions of .NET Framework 3.0 and .NET SDK 3.0 misbehaves and sends an invalid SOAP action string to the Java Web service endpoint. See this excellent blog entry from Arun Gupta, one of our senior engineers involved with WSIT and JAX-WS, where he talks about this issue. For now the workaround is to specify explicit SOAPAction values for operations at the service endpoint. Therefore, your NewWebService Java implementation class, NewWebService.java, should look like this:

--------
package pkg;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;

@WebService()
public class NewWebService {

@WebMethod(action="operation")
public String operation(@WebParam(name = "param") String param) {
// TODO implement operation
return param;
}
}
--------

Notice that here we specify SOAP action with the help of action attribute of @WebMethod annotation applicable to the Web service method.

Step 4 - Test the Java Web service endpoint

Now test whether NewWebService has been deployed properly by typing the following URL in your browser - http://localhost:8080/WebApplication1/NewWebService?WSDL

Step 5 - Generate .NET C# client artifacts

Now that our Java Web service endpoint is up and running, let us visit the .NET world for a moment to create a very simple C# client application. First, open a command prompt window, and type the following command to create C# client artifacts needed to communicate with our Web service. Notice that svcutil uses MEX (Metadata Exchange) protocol to retrieve the Web service's information.

svcutil http://localhost:8080/WebApplication1/NewWebService?wsdl /out:NewWebServiceProxy.cs
/config:NewWebServiceProxyTest.exe.config

Step 6 - Write the C# Console application client for Java Web service

Write the following C# console application (and save it as NewWebServiceProxyTest.cs) to act as a client to our Java Web service endpoint:

--------
using System;
using System.ServiceModel;
using System.ServiceModel.Description;

class NewWebServiceProxyTest {
public static void Main(string[] args) {
sample_operationResponse response;

// Create an instance of the Web service class.
NewWebService newWebService = new NewWebServiceClient();

// Call the Web service method.
response = newWebService.operation(new operationRequest(new
operationRequestBody("Hello there")));

// Output the results to the console.
Console.WriteLine("The result returned by Web service operation is: " +
response.Body.@return + ".");
}
}
--------

Step 7 - Compile the C# console application

csc /t:exe /r:c:\windows\microsoft.net\framework\v3.0\window~1\System.ServiceModel.dll,c:\windows\microsoft.net\framew
ork\v3.0\window~1\System.Runtime.Serialization.dll *.cs

In the above command, window~1 folder refers to the "Windows Communication Foundation" folder under the .NET framework installation folder.

Step 8 - Run the console application

Run the client C# console application from the command prompt, and you should see an output as below:

c:\> NewWebServiceProxyTest.exe

The result returned by Web service operation is: Hello there.

Hopefully, this demo works for you. As I gain more knowledge about making the higher layers of the WS stack interoperate, I'd blog more on the subject later.


Bookmark blog post: del.icio.us del.icio.us Digg Digg DZone DZone Furl Furl Reddit Reddit
Comments
Comments are listed in date ascending order (oldest first) | Post Comment

  • Thanks so much for writing this. I gave up asking people for something as simple as this, there was always some excuse or other why it couldn't be provided. This simple over view has been sorely needed.

    Posted by: geertjan on February 12, 2007 at 01:14 PM

  • The link in step 5 is broken (multilined). You can just replace it by <a href="full URL">download here</a>

    Posted by: kirillcool on February 12, 2007 at 01:27 PM

  • See more code samples on interop between GlassFish M4 and Vista.

    Posted by: arungupta on February 13, 2007 at 09:48 AM

  • I meant to give the URL as well:

    http://blogs.sun.com/arungupta/entry/glassfish_and_vista_interoperable_out

    Posted by: arungupta on February 13, 2007 at 09:49 AM

  • Why SUN force me to use only WEB Service for Java/.NET interoperability?What to do if I want a simple inprocess interoperability/integration of Java and .NET codes?I guess that for SUN developers more comfortable to go the easiest way in their products development. They do not bother with users. So the only thing to do is developing such product by me (what have been done now). But this task was not so simple, as I may not change JVM behaviour.

    Posted by: vitallis on February 15, 2007 at 01:26 AM

  • Vitallis,

    Sun does not force you to use Web service as a means to interoperate with Microsoft platform any more than Microsoft does. Interoperability require both the parties (or both ends of the wire) to work toward a common cause. The tools and techniques that they use are mutually agreed upon. It is not Sun's decision alone to use the WS-* stack for interop. It is Microsoft's, too. Hence, it is not any one party's fault that the world cannot agree upon any protocol but SOAP to achieve enterprise level interoperability.

    Regards,
    Rima.

    Posted by: rpatel on February 15, 2007 at 08:05 AM

  • The tools and techniques that they use are mutually agreed upon. It is not Sun's decision alone to use the WS-* stack for interop. It is Microsoft's, too. Hence, it is not any one party's fault that the world cannot agree upon any protocol but SOAP to achieve enterprise level interoperability. Regards, Rima.

    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe


    sexe714
    sexe712
    sexe711
    sexe707
    sexe702
    sexe700
    sexe697
    sexe695
    sexe693
    sexe691
    sexe210
    sexe205
    sexe199
    sexe195
    sexe192
    sexe189
    sexe188
    sexe186
    sexe184
    sexe180
    sexe010
    sexe006
    sexe4995
    sexe4988
    sexe4985
    sexe4980
    sexe4976
    sexe4969
    sexe4968
    sexe4965
    sexe4964
    sexe689
    sexe688
    sexe686
    sexe683
    sexe680
    sexe678
    sexe677
    sexe674
    sexe673
    sexe672
    sexe043
    sexe040
    sexe036
    sexe035
    sexe032
    sexe031
    sexe030
    sexe028
    sexe026
    sexe024
    sexe438
    sexe436
    sexe431
    sexe428
    sexe426
    sexe424
    sexe420
    sexe416
    sexe413
    sexe410
    sexe254
    sexe250
    sexe247
    sexe243
    sexe242
    sexe225
    sexe223
    sexe215
    sexe213
    sexe192
    sexe026
    sexe028
    sexe029
    sexe037
    sexe040
    sexe042
    sexe045
    sexe049
    sexe052
    sexe055
    sexe00
    sexe892
    sexe889
    sexe887
    sexe883
    sexe878
    sexe874
    sexe869
    sexe866
    sexe864
    sexe77
    sexe75
    sexe72
    sexe70
    sexe66
    sexe64
    sexe62
    sexe60
    sexe57
    sexe54


    sexe50
    sexe40
    sexe48
    sexe47
    sexe46
    sexe45
    sexe44
    sexe43
    sexe42
    sexe41
    sexe586
    sexe595
    sexe594
    sexe593
    sexe592
    sexe591
    sexe589
    sexe590
    sexe588
    sexe587
    sexe69
    sexe67
    sexe65
    sexe64
    sexe61
    sexe60
    sexe59
    sexe57
    sexe58
    sexe56
    sexe54
    sexe52
    sexe51
    sexe50
    sexe48
    sexe47
    sexe46
    sexe45
    sexe44
    sexe43
    sexe520
    sexe519
    sexe517
    sexe516
    sexe515
    sexe513
    sexe512
    sexe511
    sexe510
    sexe509
    sexe562
    sexe564
    sexe560
    sexe558
    sexe559
    sexe557
    sexe555
    sexe554
    sexe552
    sexe551
    sexe674
    sexe673
    sexe672
    sexe670
    sexe668
    sexe667
    sexe665
    sexe664
    sexe663
    sexe662
    sexe23
    sexe22
    sexe21
    sexe20
    sexe19
    sexe18
    sexe16
    sexe17
    sexe15
    sexe14
    sexe92
    sexe91
    sexe90
    sexe89
    sexe87
    sexe86
    sexe81
    sexe84
    sexe80
    sexe79
    sexe67
    sexe69
    sexe66
    sexe64
    sexe61
    sexe63
    sexe60
    sexe59
    sexe57
    sexe56


    sexe
    http://www.quizilla.com/users/ojeriltes/journal/548583/xxx_extrait_,_video_porno_gratuite_gay_,_donne_mature_porno_gratuito_,_couple_accro_sexe_,_sexe_gros_plan_gratuit/
    http://www.quizilla.com/users/ojeriltes/journal/548585/mature_sexe_gratuit_,_histoire_erotique_sexe_intime_,_sexe_baise_hard_video_photo_,_sexe_black_gratui_,_sexe_vieille_femme_gratu/
    http://www.quizilla.com/users/casederma/journal/548609/taille_sexe_homme_,_photographie_sexe_feminin_,_best_indian_xxx_movies_,_video_gratis_porno_,_xxx_disney_,_photo_gratuite_de_sex/
    http://www.quizilla.com/users/casederma/journal/548610/oceane_actrice_porno_,_femme_sexe_photo_gratuit_,_extrait_gratui_porno_,_video_porno_sex_,_photo_gratuite/
    http://www.quizilla.com/users/barementas/journal/548636/video_porno_anal_big_tits_,_forum_existe_jeu_porno_,_sexy_sexe_video_,_sexe_jeune_thailandaise/
    http://www.quizilla.com/users/barementas/journal/548637/sexe_asiatique_paris_,_jeu_video_adulte_xxx_,_photo_porno_hards_xxx_choquantes/
    http://www.quizilla.com/users/barementas/journal/548638/video_lesbienne_xxx_gratuit_,_photo_and_de_and_sexe_and_gratuite_,_sexe_video_porno_direct_,_sexe_anal_beurette/
    http://www.quizilla.com/users/rodiknolas/journal/549695/film_porno_mangas_,_black_video_sexe_,_adulte_porno_x_,_annonce_casting_porno_,_film_porno_yasmine/
    http://www.quizilla.com/users/rodiknolas/journal/549696/video_xxx_telecharger_,_gros_plan_sur_des_sexe_,_porno_lesbienne_video_,_xxx_hacked_password_,_extrait_gratuit_sexe_anal/
    http://www.quizilla.com/users/fronbert/journal/549723/video_porno_amateur_gratuite_,_photo_porno_x_,_sexe_photo_xxx_,_free_clip_porno_,_asiatique_and_xxx/
    http://www.quizilla.com/users/fronbert/journal/549725/femme_aimant_sexe_,_image_pps_sexe_sexy_bonne_annee_,_porno_gay_gratuit_photo_,_hot_sexe_trailer_sexe_porno/
    http://www.quizilla.com/users/fronbert/journal/549726/petit_and_jeu_and_porno_,_rencontre_amatrice_sexe_,_femme_xxx_direct_,_porno_and_mature_,_porno_and_amateur/
    http://www.quizilla.com/users/fronbert/journal/549733/sexe_gratuit_hard_interracial_asian_,_photo_de_jeune_gay_porno_,_xxx_lesbienne_gratuit_,_photo_xxx_femme_musulman_algerienne_gra/
    http://www.quizilla.com/users/dalesembra/journal/549745/jeu_xxx_free_,_xxx_photo_gratuit_,_sexe_xxx_gay_,_video_porno_gratuit_sans_telechargement_,_photo_sexe_femme_mature/
    http://www.quizilla.com/users/dalesembra/journal/549746/porno_sexe_tres_jeune_,_image_gratuit_sexe_,_telecharge_film_porno_gratui_,_jeu_sexe_jouer_maintenant/
    http://www.quizilla.com/users/dalesembra/journal/549744/gay_sexe_photo_beur_gratuit_,_sex_video_xxx_,_sexe_gratuit_extrait_,_femme_mure_gratuit_sexe_,_vidaco_humour_xxx_,_blague_pompie/
    http://www.quizilla.com/users/cerrikolas/journal/549787/xxx_porno_malgache_,_voir_extrait_film_gay_sexe_gratuit_,_volcanic_sex_xxx_,_accessoire_sexe_shop_,_sexe_mangas_xxx/
    http://www.quizilla.com/users/cerrikolas/journal/549789/image_porno_d_angelina_jolie_,_visio_chat_sexe_,_jeu_sexe_hantai_gratuit_adulte_,_porno_film_gratuit_,_achat_dvd_sexe_mangas/
    http://www.quizilla.com/users/rabaduba/journal/549800/sexe_hard_video_gratuite_,_sexe_gratuit_femme_mure_avec_jeune_,_arabe_porno_sex_,_divx_xxx_gratuit_,_cul_xxx_,_video_porno_gratu/
    http://www.quizilla.com/users/rabaduba/journal/549801/photo_amateur_xxx_,_porno_girls_video_,_pig_sex_xxx_,_grosse_femme_xxx_,_sexe_shop_travestie/
    http://www.quizilla.com/users/rabaduba/journal/549810/couple_sexe_amateur_francais_,_photo_enceinte_sexe_gratuit_,_hot_sexe_x_,_photo_sexe_gratuit_gay_,_porno_emule/
    http://www.quizilla.com/users/moniclare/journal/550952/mature_sexe_,_video_femme_mure_sexe_,_telecharger_extrait_film_porno_,_grosse_marocaine_beurette_sexe/
    http://www.quizilla.com/users/moniclare/journal/550953/porno_xxx_noir_,_mr_sexe_photo_anal_,_extrait_and_and_video_and_and_sexe_,_xxx_sex_pic/
    http://www.quizilla.com/users/berenistre/journal/550974/francais_sexe_,_moteur_recherche_sexe_amateur_gratuit_,_telechargement_gratuit_de_film_xxx_,_annuaire_sexe_gay_gratuit/
    http://www.quizilla.com/users/berenistre/journal/550984/video_sexe_gratos_noire_,_xxx_latina_,_video_porno_sex_lesbienne_,_free_clip_sexe_,_school_girls_xxx_,_image_de_sexe_insolite/
    http://deremanty.zeblog.com/210768-clip-amateur-sexe-xxx-video-clip-mangas-asiatique-tre-hard-porno-sexe-gratuit-amateur-quebec-sexe-gratuit-femme-musulman-xxx-rencontre-sexe-paris-chat-gratuit-photo-gratuite-sexe-homme-humour-sexe-photo/
    http://deremanty.zeblog.com/210767-photo-porno-amatrice-sexe-penis-anal-femme-xxx-geneve-sexe-poilu-femme-xxx-gratuit-jeune-femme-xxx-pornstar-cute-hard-xxx-porno-hard-xxx-private-xxx-sexe-jeune-ado-xxx-sex-movies/
    http://adrianne009.zeblog.com/210825-mangas-porno-free-sexe-beurette-photo-gratuit-film-porno-maroc-photo-galerie-cul-latine-porno-star-extrait-film-porno-sex-film-and-porno-and-amateur-and-gratis-porno-gratuit-film-hard-sexe-video/
    http://adrianne009.zeblog.com/210824-rencontre-femme-mature-sexe-dvd-xxx-baby-sister-gay-interracial-xxx-porno-arabe-algerienne-poilue-gratuit-sexe-amateur-echangiste-visioner-un-film-porno-gratuit-vente-dvd-porno-homosexuel/
    http://adrianne009.zeblog.com/210823-gay-gratuit-homo-gratuit-sexe-video-amateur-gratuite-porno-sex-porno-video-gratuit-sexe-pps-gratuit-sexe-asiatique-proposal-xxx-sexe-video-gay-sexmefree-and-annuaire-and-sexe/
    http://adrianne009.zeblog.com/210822-annuaire-site-video-sexe-gratuit-annonce-black-xxx-sexe-grosse-vieille-fontaine-nouveaute-dvd-porno-gay-video-porno-gratuite/
    http://derekferver.zeblog.com/211316-sexe-femme-mure-photo-gratuit-film-sexe-gratos-video-sexe-hard-francais-star-du-porno-gratuite-lesbienne-sexe-photo-jeu-mangas-xxx-photo-de-sexe-femme-mure-gratuit-film-porno-gratuit-sans-telephoner-payer/
    http://derekferver.zeblog.com/211314-photo-sexe-amateur-x-vraiment-gratuite-annuaire-porno-arabic-film-sexe-grosse-femme-actrice-black-porno-sexe-jeune-avec-vieille-video-porno-gay-gratuit-forum-sexe-francais-image-sexe-roman-photo-sexe/
    http://cartegibe.zeblog.com/211326-photo-porno-video-porno-gratuit-sexe-sexy-porno-cul-marie-jalouse-elle-match-pantouze-charme-webcam-hard-video-porno-de-pamela-anderson-photo-sexe-gratuit-arabe-beurette-gratuit-porno-arabe-xxx-amateur/
    http://cartegibe.zeblog.com/211325-gay-porno-film-gratuit-xxx-sexs-hot-photo-et-video-sexe-bizarre-gratuite-blog-video-porno-ejac-rencontre-sexe-chat-porno-sex-amateur-gratuit-photo-porno-black-gratuite-sexe-penetration-extreme/
    http://cartegibe.zeblog.com/211324-extrait-clip-porno-gratuit-video-gratuite-xxx-celebrite-xxx-porno-hard-annuaire-gratuit-sexe-portail-gratuit-extrait-cinema-xxx/
    http://romader.zeblog.com/211345-video-xxx-gratuite-semaine-video-black-sexe-julie-porno-video-hot-xxx-vieille-sexe-photo-gay-sexe-xxx-extrait-and-film-and-porno-telechargement-video-porno-gratuit-femme-avec-sexe-tres-poilu/
    http://romader.zeblog.com/211344-pornographie-image-sur-sexe-star-intimes-carasexe-com-u-register-php-sexe-sexe-de-vieux-gay/
    http://romingeres.zeblog.com/211373-porno-and-lesbienne-video-amateur-adulte-xxx-image-gif-xxx-film-porno-amateur-a-telecharger-sexe-hard-porno-photo-porno-x-gratuit-sexe-histoire-film-porno-americain-xxx-telecharger-des-video-gratuite-de-sexe/
    http://romingeres.zeblog.com/211372-film-porno-classe-x-histoire-coquin-sexe-confession-recits-xxx-pix-com-jeu-de-sexe-xxx-xxx-hot-femme-chaude-sexe-galerie-porno-gratuit-porno-gay-photo-gratuit-jeu-sexe-gra-gay-bears-xxx-nu/
    http://ramabilla.zeblog.com/211428-hardcore-xxx-sex-video-la-plus-belle-actrice-porno-google-porno-gratuit-photo-clip-xxx-free-extrait-porno-video-gratuite-histoire-intime-sexe-extrait-and-casting-and-porno-sexe-homme-afrique/
    http://ramabilla.zeblog.com/211425-star-academie-sexe-demo-et-extrait-dvd-porno-video-porno-francais-gratuit-sex-porno-xxx-gros-sein-afrique-sex-porno-video-porno-amateur-gratuit-acteur-and-porno-sexe-porno-grati-xxx-sexe-xxx/
    http://mirefunnas.zeblog.com/212000-amatrice-xxx-amateur-skyblog-sexe-homme-sexe-erection-sexe-mangas-hentai-femme-anal-porno-gratuit-kristinkreuk-film-xxx-xxx-mature-gratuit/
    http://mirefunnas.zeblog.com/211999-xxx-gratuite-photo-fist-sexe-bizarre-sexe-et-porno-hard-star-sexe-video-photo-hard-xxx-rencontre-sexe-amateur-avec-photo/
    http://mirefunnas.zeblog.com/211998-porno-mangas-gratuit-les-and-simpsons-and-xxx-sex-photo-porno-gratuit-sexe-porno-hard-gratuit-photo-porno-de-lesbienne-gratuite/
    http://chilenros.zeblog.com/212046-video-xxx-avec-extrait-gratuit-porno-hard-gay-gratuit-webcam-porno-sexe-masturber-homme-sexe-webcam-live-show-forum-free-password-xxx-blog-couple-perso-sexe-free-porno-galerie-video-sexe/
    http://chilenros.zeblog.com/212037-sexe-and-le-and-gaulois-mangas-bd-xxx-homme-plus-grand-sexe-monde-xxx-porno-jeune-black-ans-porno-sex-xxx-famous-toon-xxx/
    http://dalaster.zeblog.com/212067-beurette-ki-aime-sexe-porno-and-hard-and-gratuit-sexe-gratuit-annuaire-sex-xxx-mature-mother-sexe-acces-gratuit-sexe-porno-visionner-film-porno-gratuit-bd-mangas-porno-gratuite-xxx-clip-free-video/
    http://dalaster.zeblog.com/212066-femme-enceinte-sexe-sexe-ala-cam-photo-et-dvd-porno-gratuit-dragon-ball-xxx-gratuit-rencontre-sexe-homme-haguenau-sexe-arabe-algerienne-clip-et-extrait-porno-gratuit-extrait-porno-telecharger/


    acrobat
    ad-aware
    adulte
    amateur
    amateur2
    amateur3
    amatrice
    anal
    anime
    antivirus-gratuit
    antivirus
    anus
    ares
    asian
    asiatique
    ass
    astuce
    auto
    avatar
    avatars
    babe
    baise
    bang-gang
    bang
    bbw
    bdsm
    beach
    beauty
    bebe
    bed
    beurette
    bikini
    bisexual
    bisexuel
    bite
    bizarre
    black
    black2
    blague
    blagues
    blonde
    blowjob
    bondage
    boob
    booty
    boy
    brune
    bukkake
    busty
    carte
    carte2
    carte3
    cartes
    cartes2
    cartes3
    cartoon
    celebrite
    chaleur
    chanson-gratuit
    chansons-gratuit
    charme
    cheat
    cinema
    clitoris
    clone
    close-up
    cochon
    cock
    code-jeu
    coquin
    couille
    couple
    couple2
    creampie
    cul
    cum
    cumshot
    deep-throat
    diaporama
    diaporamas
    dick
    dildo
    dirty
    divx-gratuit
    divx
    divx2
    double-penetration
    download
    drunk
    ebony
    ecran-de-veille
    ecrans-de-veille
    edonkey
    emoticone
    emoticones
    emule-gratuit
    emule
    enculer
    enfant
    enfant2
    erotique
    erotiques
    erotisme
    ethnic
    etudiante
    exhibitionniste
    exotic
    f1-rallye
    face
    facial
    familiale
    famille
    fat
    fellation
    femdom
    femme
    femme2
    femme3
    fesse
    fetichisme
    fetish
    ffm
    film-gratuit
    film-gratuit2
    film
    film2
    films
    films2
    fingering
    firefox
    first-time
    fisting
    flashing
    fond-d-ecran
    fonds-d-ecran
    foot
    football
    footjob
    fucking
    gay
    gay2
    gay3
    girl
    glory-hole
    golf
    granny
    gratuit
    gratuit2
    gratuit3
    gratuit4
    gratuite
    gratuite2
    gratuite3
    gratuite4
    gros
    grosse
    hairy
    handjob
    hard
    hardcore
    hentai
    histoire
    homosexuel
    horoscope
    horoscopes
    hot
    housewife
    huge
    humour
    humour2
    icone
    icq
    illusion
    image-humour
    image
    image2
    image3
    indian
    interracial
    japanese
    jeu
    jeu2
    jeu3
    jeune
    jeux
    jeux2
    jeux3
    kazaa-gratuit
    kazaa
    latex
    latina
    latinas
    lesbian
    lesbienne
    limewire
    lingerie
    logiciel-gratuit
    logiciel
    logiciel2
    logiciels-gratuit
    logiciels
    logiciels2
    maid
    male
    manga
    mardi-gras
    massage
    masturbation
    mature
    mature2
    messenger-gratuit
    messenger
    midget
    milf
    mmf
    model
    models
    mom
    morpheus
    movie
    mp3-gratuit
    msn-gratuit
    msn
    msn2
    mure
    music-gratuite
    musique-gratuite
    musiques-gratuites
    naked
    natural
    nature
    naughty
    nero-gratuit
    nero
    noire
    nu
    nude
    nudist
    nudiste
    oral
    orgasme
    orgie
    orgy
    oriental
    outdoor
    pantie
    parole-gratuit
    paroles-gratuit
    partition
    partitions
    penis
    petite
    photo
    photo2
    photo3
    photo4
    pied
    pink
    pipe
    pissing
    plumper
    poitrine
    porn-gratuit
    porn
    porno-gratuit
    porno-gratuit2
    porno
    porno2
    porno3
    pornographie
    pornstar
    pps-ppt
    pregnant
    private
    programme
    puffy
    pussy
    rasee
    real-player
    recette
    recette2
    recettes
    recettes2
    redhead
    rimjob
    rousse
    sado
    safari
    salope
    schoolgirl
    sex-gratuit
    sex
    sex2
    sexe-gratuit
    sexe-gratuit2
    sexe
    sexe2
    sexe3
    sexuelle
    sexy
    sexy2
    shareaza
    shaving
    shemale
    shower-bath
    skype
    smoking
    sodomie
    softcore
    soluce
    solution-jeu
    spanking
    spectacle
    sport
    sportive
    spybot
    squirting
    stories
    strapon
    strip
    student
    suce
    suceuse
    swinger
    tarot
    tatouage
    tatouages
    tease
    teen
    tele
    telechargement-antivirus
    telechargement-chanson
    telechargement-chansons
    telechargement-divx
    telechargement-emule
    telechargement-film
    telechargement-gratuit
    telechargement-kazaa
    telechargement-logiciel
    telechargement-logiciels
    telechargement-messenger
    telechargement-movie
    telechargement-mp3
    telechargement-msn
    telechargement-music
    telechargement-musique
    telechargement-nero
    telechargement-parole
    telechargement-paroles
    telechargement-porn
    telechargement-porno
    telechargement-sex
    telechargement-sexe
    telechargement-x
    telechargement-xxx
    telechargement
    telechargement2
    telecharger
    telecharger2
    telecharger-antivirus
    telecharger-chanson
    telecharger-chansons
    <a href="http://home.tiscali.cz:8080/telecharge

    Posted by: maripikos on June 17, 2007 at 01:43 PM

  • антимаулнетизм

    Posted by: poplop on May 31, 2008 at 06:43 PM



Only logged in users may post comments. Login Here.


Powered by
Movable Type 3.01D
 Feed java.net RSS Feeds