SocialTwist Tell-a-Friend

MLink Blog

A short description about your blog

Memeo Connect for Google docs sync from desktop

Posted by: admin in MLink Blog

Tagged in: Untagged 

admin
Memeo Connect for Google Apps presents our customers with an attractive option to integrate or migrate all of their files into Google Docs.”
Lets you manage your Google Docs account from your desktop, giving you offline access to your Google Docs and making it easy to sync your files across multiple computers.
More about MemeoConnect

Try Android2.0 in Your PC

Posted by: admin in MLink Blog

Tagged in: Untagged 

admin
Google has released the Android 2.0 SDK as of October 27th, 2009. We know how eager everyone has been to get their hands on Android 2.0, so we have decided to write up instructions so that anyone may download and install the SDK, then create and run an emulator instance. We had put the same thing here(link to our post) in which there was an emulator by which you could run the previous version of Android and now we are doing it again for Android 2.0.

So here is how the procedure goes we know its bit long but believe us it is going to work.

1)      Download appropriate file for your system from http://developer.android.com/sdk/index.html

2)      Extract to desired location

3)      Run “SDK Setup.exe” (or the equivalent for your system)

More.. http://www.zjtechlive.com/try-android-2-0-on-your-windows

The thrilling potential of 'SixthSense' technology

Posted by: admin in MLink Blog

Tagged in: Untagged 

admin
At TEDIndia, Pranav Mistry demos several tools that help the physical world interact with the world of data -- including a deep look at his SixthSense device and a new, paradigm-shifting paper "laptop".
In an onstage Q&A, Mistry says he'll open-source the software behind SixthSense, to open its possibilities to all.


jQuery SOAP Client - Calling Webservice from JavaScript

Posted by: admin in MLink Blog

Tagged in: Untagged 

admin

http://plugins.jquery.com/project/jqSOAPClient

 

This is a jQuery implementation of SOAP Client and it is based on another jQuery plug-in called xmlObjectifier.

This is a jQuery implementation of SOAP Client and it is based on another jQuery plug-in called xmlObjectifier.
This library provides an easy way to communicate with SOAP web services from the client-side javascript (all domain restrictions are still there). SOAPClient supports complex/nested request objects as well as attributes and values within request object nodes. You can also set Header objects as well.
Practical example of how to use SOAPClient can be found on my site by following Demo link. I also have included a simple ASP.NET Proxy example that will resolve Cross-Browser Restrictions (if you're running IIS w/ ASP.NET)


MLink: its purpose and offerings

Posted by: admin in MLink Blog

Tagged in: MLink

admin

What is MLink?

MLink is a powerful web 2.0 portal to enable Muslim professionals, businesses, organizations to transact and exchange information, ideas and resources for economic benefit, advancement and growth.

How will MLink work?

It is structured to provide the following services: networking component, jobs posting, knowledge sharing and networking event information.

This broad coverage of offerings is designed to fulfill our vision: To serve as the leading catalyst and platform for Professional, Business, and Organizational networking for all Muslims.

Why MLink?

MLink founders believed that creating such a forum for intellectual and responsible exchange could be one way of harnessing our individual energies into joint concerted thought and action. This in turn would enable us to learn from each other, network, and 'think hard' jointly about our common problems, and help each other to cope with the future challenges as we pursue our own professional careers, businesses and promote our organizations.

This virtual marketplace will subsequently create a space for new markets and opportunities for Muslim businesses and enterprises to reach their target audience. Muslim professionals can chart the advancement of their careers by linking with other professionals and opportunities to collaborate in partnership, ventures and new ideas will take place.

Why not just use an established portal like LinkedIn or Doostang? What is the need for a separate Muslim portal?

Professional and social networking sites are phenomena which have proven their success, popularity, and sustainability. Unfortunately, the impact of this has not yet been realized by the global Muslim community.

The founding vision of MLink was to try and connect a few like-minded Muslim professionals using the powerful connectivity of the Internet to enable them to share knowledge across disciplinary boundaries but remain motivated by a common objective: economically empowering the community. theMLink.com offers a unique opportunity to network with like-minded Muslims from a wide variety of disciplines and areas from around the world and help each other grow into a potent force.

Also you are creating your own value and the data is owned by you. Using a platform like Linkedin or Doostang gives you access to the features but you do not own the data.

Also why not have an internet platform which is owned, operated and used by Muslims. There are very few internet companies started by Muslim entrepreneurs who have been successful.

How can a budding or experienced Professional benefit?

We view every member as a brand ambassador and with every contact and event you will be representing MLink and have the opportunity to strengthen the brand. We are counting on every member to continue with spreading this awareness as we seek to keep our promise of building the leading platform for Professional, Business, and Organizational networking for all Muslims.

As a member you will be able to: directly connect with an experienced and successful mentor to guide you in your development; Garner tailored advice and support from a committed member; Gain the impetus you need to launch your career or expedite your growth

How can an organization benefit?

Many Muslim professional/social/civic organizations provide a valuable service to the community. However, they are constrained in being able to expand and market their services as there is no mechanism in place whereby they can reach a large but selective pool of people to promote their services and enroll new members. Secondly, organizations find it difficult to manage their membership base as listings are maintained either in email groups or by email addresses. This limits an organizations ability to effectively understand who their members are and pull information for data mining purposes.

Having MLink server as a networking portal for an organization to effectively manage members profiles as well as attract new members. Finally by being actively listed on a Muslim networking portal the organization can reach a targeted audience and rapidly grow membership.


 

Java WebService Authentication Techniques:

 

Axis 1.4:

 Adding Authentication Create a file called Auth.java

public class Auth extends SOAPHeaderElement
{
public Auth(String namespace, String
localPart)
{
super(namespace, localPart);
}

protected void outputImpl(SerializationContext context) throws Exception
{ context.startElement(new QName(namespaceURI, name), attributes);
ArrayList children = super.getChildren();
if (children != null)
{
for (Iterator it = children.iterator(); it.hasNext();)
{
((MessageElement)it.next()).output(context);
}
}
context.endElement(); }

public static Auth setAuthHeader(String user, String pwd)
{ try {
Auth authHeader = new  Auth("","AuthenticationInfo");

MessageElement msgElem1 = new MessageElement("","userName");
//msgElem1.addTextNode("WebService-Reliability2");
msgElem1.addTextNode(user);
authHeader.addChildElement(msgElem1);

MessageElement msgElem2 = new MessageElement("","password");
//msgElem2.addTextNode("remedy");
msgElem2.addTextNode(pwd);
authHeader.addChildElement(msgElem2);

// Uncomment these sections if you need to send these login
//parameters to the AR Web Service

// MessageElement msgElem3 = new MessageElement("","authentication");

// msgElem3.addTextNode("ARSystem");
// authHeader.addChildElement(msgElem3);

// MessageElement msgElem4 = new MessageElement("","Locale");
// msgElem4.addTextNode("enUS");
// authHeader.addChildElement(msgElem4);

// MessageElement msgElem4 = new MessageElement("","timeZone");
// msgElem4.addTextNode("enUS");
// authHeader.addChildElement(msgElem4);

return authHeader;
}
catch (SOAPException e) {
e.printStackTrace();
}

return null;
}
 

}





Now open the Stub genetated file and add following lines after createCall if (super.cachedEndpoint == null) {
            throw new org.apache.axis.NoEndPointException();
        }
        org.apache.axis.client.Call _call = createCall();
        
           Auth aihdr =
            Auth.setAuthHeader(user,pwd);
            _call.addHeader(aihdr);


Mlink Login