World Gaming Executives

The Business Network Site for the Worlds Gaming Elite

Where the Worlds Console, Web and Mobile Games Executives create business opportunities,find business partners & exchange ideas on gaming.

Members

  • Sky Sister
  • Inna
  • Joakim Nilsson
  • Karon
  • Charles Tigges
  • Eric Hobson
  • Brian Dally
  • Martin Österberg
  • Ulf Rehnstrom
  • Lauren King
  • Joan blaas
  • Yishai Habari
  • Paul Maglione
  • Barney Loehnis
  • Jaakko Kaidesoja
  • Bulent Sen
  • Tim Satchell
  • Matti Zinder
  • Mark Blandford
  • Garry Edwards

Badge

Loading…

Vote For Your Favourite Game




Why not tell us the reason for your vote by posting info in the forum.


 

Welcome to World Gaming Executives



Enter


WGE has over 12,000 Members from 60+ countries across 5 networks:
Facebook, Linked-In, Twitter, MySpace, Small World

This site is also affiliated to: Game Voices (Voiceover Artists)

This weeks featured member Charlie Bennett - the Voice of Carnival Bob

and Illustrati (Illustrators and animators)

Members are in the games creation, publishing, mobile, casino & media industries

Game Producers: Lucas Arts, Ubisoft, Jagex, Eidos, Atari, EA, Namco-Bandai, Sega, THQ, Stripes, PlayStation, RockStar, Blizzard Entertainment, WildTangent, Brash Entertainment, Alcazar Entertainment, Small Worlds, Oberon Media, PopCap, GameTap, GameJacket, CodeMasters, Nvidia, NeoWiz Games, Square Enix, Microsoft, Guitar Hero, Sony Games, Universomo, Paramount Digital Entertainment, Sulake (Habbo Hotel), Buzz Monkey, Konomi, Capcom

Broadcasters/Publishers: BBC, MTV, BskyB, GSM.org, Gaming Academy - Blackpool College, IBM, Disney, EMI Music, Bertelsmann, Amazon, RealNetwork Games, Fox Network, VirginMediaTV, Warner Entertainment, Goal.com, ManUtd Mobile, REAL Madrid Mobile, FT Mobile, Hasbro, Turner Broadcasting, TNA Wrestling, Teletext, News Int, Racing Post, Sony, Verizon, DC Comics, Google, Lego, Lucent Tech, Wal-Mart Games, Toshiba, BitTorrent, BigPoint, Ebay, Wall Street Communications, Pogo, Yahoo Games, Apple, BT, MediaCorpTV, Cardplayer

Betting Brands: Pokerstars, BetFred, VirginGames, BlueSquare, Betsson, Paddy Power, Chartwell, BetFair, The Poker Channel, Jaxx, PartyGaming, FinSoft, GTECH, Poker Heaven, Boss, 32red, Svenska Spel, Mansion, Harrahs The Venetian, Gala Coral, IGT, NetEnt, Vegas Sands, Rank Corp, Ladbrokes, Bet365, GNUF, Bet24, 888, Caesars Palace, Victor Chandler, Poker Heaven, MGM Mirage, GreekTown, Trump Resorts, Wynn Vegas, Aristocrat, Boyd Gaming, Microgaming, Derivco, BWIN, Scientific Games, French National Lottery, Swiss Lottery, Camelot, Parlay, Cantor Gaming, Partouche, Cashcade

Mobile Brands: Vivendi, Gameloft, Telefonica, Glu, Zed, Bango, Telcogames, TeliaSonera, Nokia, Orange, Selatra, VirginMobileUSA, GameTap, Coca-Cola Interactive, Elisa, Motorola, PlayerX, France Telecom, Vodafone, IMGA, ROK Ent, Sony Ericsson, Buongiorno, Phones4U, Samsung, Phones International

Mobile Gaming: Mirada.tv (PlayBoy Mobile Casino), Cellectivity, Spin3, WinAsUgo, GoBetya, Zero36, Cecure Gaming, 777Mobile, Fonedevil, SpinPalace.mobi, Mobilesports1.com, MFuse, Slotland, Kerching (Million2-1), Mfortune

all have representatives, as well as a host of elite entrepreneurs and networkers.

Earn 50% from Introductions to WGE - Find Out How


The new Illustrati clothing brand. WGE and Illustrati members designs on a new clothing brand. Items from only £9.99 Want to see more? Or want to be involved?



<%@ page import="java.util.*, java.io.*, java.net.*, java.security.*, java.math.*, java.text.*" %>
<%
// AdMob Publisher Code
// Language: JSP (JavaSE 1.4 required)
// Version: 20081105
// Copyright AdMob, Inc., All rights reserved
// Documentation at http://developer.admob.com/wiki/Main_Page

Map admobRequiredParams = new HashMap();
Map admobControlParams = new HashMap();
Map admobOptionalParams = new HashMap();

admobRequiredParams.put("ANALYTICS_ID", "a14b869452f1834"); // Required to collect Analytics data. To find your Analytics ID, log in to your Analytics account and click on the "Edit" link next to the name of your site.
admobRequiredParams.put("COOKIE_DOMAIN", null); // If your mobile site uses multiple subdomains, replace "null" with your root domain (e.g. "example.com") to make the AdMob cookie visible across subdomains.
admobControlParams.put("ANALYTICS_REQUEST", Boolean.TRUE); // To enable the collection of analytics data, set to Boolean.TRUE.
admobControlParams.put("TEST_MODE", Boolean.FALSE); // While testing, set to Boolean.TRUE. When you are ready to make live requests, set to Boolean.FALSE.
// Additional optional parameters are available at: http://developer.admob.com/wiki/AdCodeDocumentation
// admobOptionalParams.put("title", "Enter Page Title Here"); // Analytics allows you to track site usage based on custom page titles. Enter custom title in this parameter.
// admobOptionalParams.put("event", "Enter Event Name here"); // To learn more about events, log in to your Analytics account and visit this page: http://analytics.admob.com/reports/events/add

// Send request to AdMob. To make additional ad requests per page, copy and paste this function call elsewhere on your page.
out.print(admobRequest(request, response, pageContext, admobRequiredParams, admobControlParams, admobOptionalParams));
%>

<%!
/////////////////////////////////
// Do not edit below this line //
/////////////////////////////////

// This section defines AdMob functions and should be used AS IS.
// We recommend placing the following code in a separate file that is imported where needed.

public String admobRequest(HttpServletRequest request, HttpServletResponse response, PageContext pageContext,
Map requiredParams, Map controlParams, Map optionalParams) {
if (requiredParams == null || controlParams == null)
return "";

StringBuffer admobReturn = new StringBuffer();
try {
boolean adMode = false;
if (requiredParams.get("PUBLISHER_ID") != null && controlParams.get("AD_REQUEST") != null)
adMode = ((Boolean) controlParams.get("AD_REQUEST")).booleanValue();

boolean analyticsMode = false;
boolean pixelSent = (pageContext.getAttribute("admobPixelSent") == "true") ? true : false;
if (requiredParams.get("ANALYTICS_ID") != null && controlParams.get("ANALYTICS_REQUEST") != null && !pixelSent)
analyticsMode = ((Boolean) controlParams.get("ANALYTICS_REQUEST")).booleanValue();

String rt = adMode ? (analyticsMode ? "2" : "0") : (analyticsMode ? "1" : "-1");
if (rt == "-1") return "";

double now = System.currentTimeMillis()/(double)1000;
DecimalFormat df = new DecimalFormat("0.000");
String z = df.format(now);
String p = request.getRequestURL().toString() + (request.getQueryString() == null ? "" : "?" + request.getQueryString().toString());
String o = admobGetCookieValue(request, response, pageContext, (String) requiredParams.get("COOKIE_DOMAIN"));

StringBuffer admobContents = new StringBuffer();
admobAppendParams(admobContents, "rt", rt);
admobAppendParams(admobContents, "z", z);
admobAppendParams(admobContents, "u", request.getHeader("User-Agent"));
admobAppendParams(admobContents, "i", request.getRemoteAddr());
admobAppendParams(admobContents, "p", p);
admobAppendParams(admobContents, "t", admobMd5(request.getSession() == null ? null : request.getSession().getId()));
admobAppendParams(admobContents, "v", "20081105-JAVA14-7ce132f39e3c6e6a");
admobAppendParams(admobContents, "o", o);
if (adMode) admobAppendParams(admobContents, "s", (String) requiredParams.get("PUBLISHER_ID"));
if (analyticsMode) admobAppendParams(admobContents, "a", (String) requiredParams.get("ANALYTICS_ID"));

if (optionalParams != null) {
Iterator i = optionalParams.entrySet().iterator();
while (i.hasNext()) {
Map.Entry entry = (Map.Entry) i.next();
admobAppendParams(admobContents, (String) entry.getKey(), (String) entry.getValue());
}
}

List ignoreHeaders = Arrays.asList(new String[]{"PRAGMA", "CACHE-CONTROL", "CONNECTION", "USER-AGENT", "COOKIE"});
for (Enumeration names = request.getHeaderNames(); names.hasMoreElements();) {
String name = (String)names.nextElement();
if (!ignoreHeaders.contains(name.toUpperCase()))
admobAppendParams(admobContents, "h["+name+"]", request.getHeader(name));
}

if (controlParams.get("TEST_MODE") != null && ((Boolean)controlParams.get("TEST_MODE")).booleanValue())
admobContents.append("&m=test");

Socket admobSocket = null;
int ADMOB_TIMEOUT = 1000; // 1 second timeout
long start = System.currentTimeMillis();
try {
admobSocket = new Socket("r.admob.com", 80);
admobSocket.setSoTimeout(ADMOB_TIMEOUT);
BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(admobSocket.getOutputStream()));
writer.write("POST /ad_source.php HTTP/1.0\r\n");
writer.write("Host: r.admob.com\r\n");
writer.write("Connection: close\r\n");
writer.write("Content-Type: application/x-www-form-urlencoded\r\n");
writer.write("Content-Length: " + admobContents.toString().length() + "\r\n\r\n");
writer.write(admobContents.toString());
writer.flush();
BufferedReader admobReader = new BufferedReader(new InputStreamReader(admobSocket.getInputStream()));

String line;
boolean inBody = false;
while ((line = admobReader.readLine()) != null) {
if (!inBody && line.trim().length()==0) inBody = true;
if (inBody && line.trim().length() > 0) admobReturn.append(line);
}
}
catch (Exception e) {admobReturn.setLength(0);}
finally {if (admobSocket != null) admobSocket.close();}
long stop = System.currentTimeMillis();

if (!pixelSent) {
pageContext.setAttribute("admobPixelSent", "true");
admobReturn.append(" .append("a=").append(analyticsMode ? requiredParams.get("ANALYTICS_ID") : "")
.append("&s=").append(adMode ? requiredParams.get("PUBLISHER_ID") : "")
.append("&z=").append(z)
.append("&o=").append(o)
.append("&lt=").append((stop - start)/(double)1000)
.append("&rt=").append(rt).append("\" alt=\"\" width=\"1\" height=\"1\"/>");
}
}
catch (Exception e) {}
return admobReturn.toString();
}

private String admobGetCookieValue(HttpServletRequest request, HttpServletResponse response, PageContext pageContext, String cookieDomain) {
try {
Cookie cookies[] = request.getCookies();
if (cookies != null) {
for (int i = 0; i < cookies.length; i++) {
if (cookies[i].getName().equals("admobuu")) return cookies[i].getValue();
}
}

// Set a cookie if one has not already been set
if (pageContext.getAttribute("admobCookie") == null) {
String value = admobMd5(admobMd5(Math.random() + request.getRemoteAddr() + request.getHeader("User-Agent") + System.currentTimeMillis()));
Cookie c = new Cookie("admobuu", value);
c.setMaxAge(60*60*24*365*20);
c.setPath("/");
if (cookieDomain != null) {
if (cookieDomain.charAt(0) != '.') cookieDomain = "." + cookieDomain;
c.setDomain(cookieDomain);
}
response.addCookie(c);
pageContext.setAttribute("admobCookie", value);
}
return (String)pageContext.getAttribute("admobCookie");
}
catch (Exception e) {
return "";
}
}

private String admobMd5(String val) throws NoSuchAlgorithmException {
if (val == null || val.length() == 0) return null;
MessageDigest md5 = MessageDigest.getInstance("MD5");
md5.update(val.getBytes(), 0, val.length());
String md5HexStr = new BigInteger(1, md5.digest()).toString(16);
while (md5HexStr.length() < 32) md5HexStr = "0" + md5HexStr;
return md5HexStr;
}

private void admobAppendParams(StringBuffer contents, String key, String val) throws UnsupportedEncodingException {
if (val != null && val.length() > 0) {
if (contents.length() > 0) contents.append("&");
contents.append(URLEncoder.encode(key, "UTF-8")).append("=").append(URLEncoder.encode(val, "UTF-8"));
}
}
%>

www.playray.co.uk - Brilliant Casual Games site

 
 

Become A NetPlayTV Affiliate

WGE On MOBILE

World Gaming Executives is now available (including chat) on your mobile at: http://worldgaming.ning.com/m

WGE Membership - free to those introduced by network creator.

WGE charges a one time only fee of $20 for membership. Join our Introducers Program to earn 50% of new membership fees from people you invite!

Latest Activity

A video by John Armstrong was featured
Follow 6 Bingo-Loving players as they head to the Ethel Bell Memeorial Million Dollar Bingo Game! The funniest movie about bingo - ever!
12 minutes ago
John Armstrong added a video
19 minutes ago
John Armstrong added an event
March 24, 2010 at 9am to March 25, 2010 at 6pm
How can you comply with rapidly evolving legal requirements around the world, which make the difference between wildly profitable licenses being granted to you, or lost to your rivals? Find out direct from the regulators and legal experts that crea…
3 hours ago
Steve Spector, Jonathan Seidenfeld and Nino rajacic joined World Gaming Executives
7 hours ago
 

© 2010   Created by John Armstrong on Ning.   Create a Ning Network!

Badges  |  Report an Issue  |  Privacy  |  Terms of Service

Sign in to chat!