Microsoft and the Open Source movement

Kommissionen sår tvivl om Microsofts oprigtighed

Advarer mod skødesløs OOXML-behandling

Sander: Vi har flyttet Microsoft

Det er ikke mindst pres fra blandt andet den danske regering, der nu har fået Microsoft til at åbne for kodeposen, mener videnskabsminister Helge Sander.

Hvis det er sandt, så er det godt arbejde.

Eksperter: Microsoft bør lære af Linux-sikkerhed

IDC: Lukket software er fortid

Analysevirksomheden IDC vurderer, at markedsudviklingen tvinger Microsoft mod åbenhed.

Related posts:

  1. an ex-microsoft employee’s view on Linux and the open source community
  2. Forrester Research: Open Source Databases Are Cheaper
  3. Microsoft forced partners to vote Yes
  4. Microsoft’s Annual Report Reveals OSS Mistakes
  5. Microsoft om Software as a Service (SaaS)
  6. InfraRecorder: Open Source CD Burning for Windows XP/Vista
  7. Intel Open Source Graphics Drivers
  8. Microsoft is using Linux
  9. Documentary about open source and free software on BBC World
  10. Windows: Free and Open Source Image Editing

Comments

Tomcat Performance: Linux faster than Windows

Apache Tomcat is a very common application server in java-based solutions and it is able to run on every platform supported by Sun Java. But which platform delivers most performance and stability; Microsoft Windows or Linux. According to this performance study part 2, Linux significantly outperforms Microsoft Windows.

Executive summary ;)
The plots speak for them self.

Tomcat Throughput Performance – Linux vs. Windows
Tomcat Throughput Performance - Linux vs. Windows

Tomcat CPU Utilization – Linux vs. Windows
Tomcat CPU Utilization - Linux vs. Windows

Tomcat Errors / second – Linux vs. Windows
Tomcat Errors / second - Linux vs. Windows

Related posts:

  1. Windows Developers Begin Slow Defection to Linux
  2. Linux Terminal Speed Performance Comparison
  3. Seamless Windows Applications on Ubuntu Linux Using VirtualBox
  4. Browse Faster Using a Local DNS Cache
  5. Dalvik: How Google routed around Sun’s IP-based licensing restrictions on Java ME
  6. Linux Job Market Trends: Galloping Forward
  7. MySQL Optimization and Performance Tips
  8. X11 for Windows XP and Vista
  9. Howto Install Sun Java on Debian Etch
  10. Safari on Linux

Comments (1)

soapUI: Easy Webservice Invocation and Testing Application

soapUI is a desktop application for inspecting, invoking, mocking and functional/load/compliance testing of web services over SOAP/HTTP. It is mainly aimed at developers/testers providing and/or consuming web services no matter implementation language (java, .net, php, etc).

Related posts:

  1. Dalvik: How Google routed around Sun’s IP-based licensing restrictions on Java ME
  2. Top Eclipse Plugins
  3. Awareness: Web Application Security
  4. Java default keystore password – cacerts
  5. Online WSDL Validator and Invocation Tester
  6. Describe REST Web services with WSDL 2.0
  7. Java and C# Client Server Socket Programming
  8. Tomcat Performance: Linux faster than Windows
  9. Howto PHP / Java bridge on Debian
  10. Intel Releases LatencyTop 0.1

Comments (1)

Generic SOAP/WSDL Client

Comments

vtiger CRM Webservices: Create New Leads Using PHP-SOAP

The vtiger CRM has a number of Webservices that can be accessed through SOAP. The original examples from vtiger for accessing the services are implemented using NuSOAP. Here I have created an example using the built-in PHP SOAP implementation.


< ?php
$client = new SoapClient(
"http://crm.vtigersite.com/vtigerservice.php?service=webforms&wsdl",
array(
"location" => "http://crm.vtigersite.com/vtigerservice.php?service=webforms",
"compression" => SOAP_COMPRESSION_ACCEPT | SOAP_COMPRESSION_GZIP,
"login" => "admin", // default
"password" => "admin" // default
));

$params = array();
$params["lastname"] = "lastnamea";
$params["email"] = "email@email.com";
$params["phone"] = "phone";
$params["company"] = "company";
$params["country"] = "country";
$params["description"] = "description";

// user id to assign the lead in vtiger
$params["assigned_user_id"] = 1;

$result = $client->__soapCall("create_lead_from_webform", $params);
echo $result;
?>

Related posts:

  1. Generic SOAP/WSDL Client
  2. Online WSDL Validator and Invocation Tester
  3. array2object and object2array (PHP)
  4. Howto Create a libstdc++ Compat on Debian (e.g. libstdc++-libc6.2-2.so.3)
  5. Howto: Create your own Debian or Ubuntu package repository
  6. soapUI: Easy Webservice Invocation and Testing Application
  7. Java default keystore password – cacerts
  8. Monitor Configuration Files
  9. Android Open Source Phone Shown at CES 2008
  10. Howto create a subversion(svn) file based repository

Comments (10)

Red Hat Enterprise Linux 5 Released

Comments (7)

Online WSDL Validator and Invocation Tester

Comments (5)

Gratis webservice med danske adresser

Som et led i den offentlige service i Danmark har Kort & Matrikelstyrelsen (KMS) og Erhvervs- og Byggestyrelsen (EBST) startet et projekt kaldet Adresse Web Service, som er en gratis prototype af en webservice til at finde og validere danske adresser. Desuden indeholder webservices longitude og latitude pÃ¥ alle adresserne – ogsÃ¥ kaldet geocoding. Dette er super fedt…og med lidt snilde kan det helt sikkert spille sammen med Google Maps eller Yahoo Maps.

Link til adresse-info.dk

Related posts:

  1. Danske Investeringsforeninger
  2. Google Maps with Danish street names
  3. SSLUG sender åbent brev til Microsoft
  4. soapUI: Easy Webservice Invocation and Testing Application
  5. Danske Helligdage 2007
  6. Sony PS3 Cluster (IBM Cell BE)
  7. Digitaliser og frigør ressourcer i det offentlige
  8. Spatial Plugins for Ruby on Rails
  9. Must Have Windows Software

Comments