<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ChemSpider Blog &#187; Uncategorized</title>
	<atom:link href="http://www.chemspider.com/blog/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://www.chemspider.com/blog</link>
	<description>Building Community for Chemists</description>
	<lastBuildDate>Fri, 10 Feb 2012 15:52:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>How to use ChemSpider webservices when programming with java</title>
		<link>http://www.chemspider.com/blog/how-to-use-chemspider-webservices-when-programming-with-java.html</link>
		<comments>http://www.chemspider.com/blog/how-to-use-chemspider-webservices-when-programming-with-java.html#comments</comments>
		<pubDate>Fri, 18 Nov 2011 17:26:00 +0000</pubDate>
		<dc:creator>Aileen Day</dc:creator>
				<category><![CDATA[How ChemSpider Runs]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chemspider.com/blog/?p=3432</guid>
		<description><![CDATA[Recently I have been programming a java plug-in from which I needed to call the ChemSpider webservices, and I found that this wasn&#8217;t as straightforward as I was expecting, so I thought I would post how to do it in case it&#8217;s useful for anyone else who wants to do likewise. The basic method I [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I have been programming a java plug-in from which I needed to call the ChemSpider webservices, and I found that this wasn&#8217;t as straightforward as I was expecting, so I thought I would post how to do it in case it&#8217;s useful for anyone else who wants to do likewise.<br />
The basic method I used was to use <a href="http://axis.apache.org/axis2/java/core/">Apache Axis2</a> to generate java code for the WSDL&#8217;s of the main ChemSpider webservices. This java code is available here: <a href="http://www.chemspider.com/blog/wp-content/uploads/2011/11/chemspider_webservices_javasourcecode.zip">chemspider_webservices_javasourcecode.zip</a> and I have also made the compiled jar file available here: <a href="http://www.chemspider.com/blog/wp-content/uploads/2011/11/chemspider_webservices_jar.zip">chemspider_webservices.jar</a>. The ChemSpider webservices can be called from other java code by referencing this jar file (and the other axis library files).<br />
This blog post describes how I generated and used this jar file. I was using the <a href="http://www.eclipse.org/">Eclipse IDE</a>, so some of what I describe will be specific to that.<br />
There is a similar jar file of some ChemSpider webservices which is available by downloading <a href="http://mzmine.sourceforge.net/">MZMine</a> (the file chemspider-api.jar in the lib directory) and an example of its use can be seen by downloading the source code and looking at the file src\net\sf\mzmine\modules\peaklistmethods\identification\dbsearch\databases\ChemSpiderGateway.java). That jar file was generated using the previous version of Axis (just plain Axis, rather than Axis2) compared to this one. The example here may be easier to use as a start point since the full range of ChemSpider webservices are included in the jar file, there is a full description of how it was generated, the code used to generate the jar file is available and there are more examples of its use.</p>
<h3>Generating the chemspider_webservices.jar file</h3>
<p>To generate the java code from the WSDL of the ChemSpider webservices I used the WSDL2Java functionality of <a href="http://axis.apache.org/axis2/java/core/">Apache Axis2</a>. This is available in different forms, including an Eclipse plug-in which will directly import the java code generated into a project, but I found various bugs when trying to use the latest version of that, so just used the command line version.<br />
I started off with generating the java code from the <a href="http://www.chemspider.com/MassSpecAPI.asmx?WSDL">WSDL</a> of the <a href="http://www.chemspider.com/MassSpecAPI.asmx">ChemSpider MassSpecAPI webservice</a>:</p>
<ul>
<li>I downloaded and unzipped the latest version of the Apache Axis2 binary distribution from <a href="http://axis.apache.org/axis2/java/core/download.cgi">their download page</a>. I used version 1.6.1 of Axis2.</li>
<li>In the &#8220;bin&#8221; directory of this download there should be a file called java2wsdl.bat. Running this batch file from a command line saves  a lot of time trying to set up the class paths correctly to run Java2WSDL. Before using it you should set up the following two environment variables:
<ul>
<li>AXIS2_HOME: Must point to the top level of the AXIS2 files which you just downloaded</li>
<li>JAVA_HOME: Must point at your Java Development Kit installation direcotry (e.g. C:\Program Files\Java\jre6)</li>
</ul>
</li>
<li>To see a full list of the options available when running WSDL2Java simply open a command prompt and run the batch file with no options to obtain the Usage options &#8211; more information about these can be found in the <a href="http://axis.apache.org/axis2/java/core/docs/userguide-creatingclients.html">Apache Axis2 user guide</a>:
<ul>
<li><code>> axis2-1.6.1\bin\wsdl2java.bat</code></li>
</ul>
</li>
<li>I ran it with options to specify to use the SOAP 1.2 port of the ChemSpider MassSpecAPI webservice (most ChemSpider webservices have the option of SOAP 1.1, SOAP 1.2, HTTP GET or HTTP POST), to generate synchronous code only (not asynchronous), and to use adb databinding (this is the default anyway):
<ul>
<li><code>> axis2-1.6.1\bin\wsdl2java.bat -uri  http://www.chemspider.com/MassSpecAPI.asmx?WSDL -pn MassSpecAPISoap12 -s -d adb</code></li>
</ul>
</li>
<li>This then generated the file MassSpecAPIStub.java which it automatically put in the package com.chemspider.www (so was the appropriate folder structure was created above it accordingly)</li>
<li>I repeated this processes with the other 4 main ChemSpider webservices:
<ul>
<li><code>> axis2-1.6.1\bin\wsdl2java.bat -uri http://www.chemspider.com/Search.asmx?WSDL -pn SearchSoap12 -s -d adb</code></li>
<li><code>> axis2-1.6.1\bin\wsdl2java.bat -uri  http://www.chemspider.com/InChI.asmx?WSDL -pn InChISoap12 -s -d adb</code></li>
<li><code>> axis2-1.6.1\bin\wsdl2java.bat -uri  http://www.chemspider.com/Spectra.asmx?WSDL -pn SpectraSoap12 -s -d adb</code></li>
<li><code>> axis2-1.6.1\bin\wsdl2java.bat -uri  http://www.chemspider.com/OpenBabel.asmx?WSDL -pn OpenBabelWebServiceSoap12 -s -d adb</code></li>
</ul>
</li>
<li>The folders and java class files generated by Java2WSDL (MassSpecAPIStub.java, SearchStub.java, InChIStub.java, SpectraStub.java and OpenBabelWebServiceStub.java) that were generated are available in the zip file <a href="http://www.chemspider.com/blog/wp-content/uploads/2011/11/chemspider_webservices_javasourcecode.zip">chemspider_webservices_javasourcecode.zip</a> for further reference</li>
<li>I then started a new Eclipse project, imported this generated File system into it</li>
<li>The generated classes rely on the Axis2 library files so these need to be added to the build path &#8211; in Eclipse this is done by right-clicking on the project in the Package Explorer, choosing Properties > Java Build Path > Libraries > Add External Jars and selecting all of the lib files in the lib folder of the Axis2 folder.</li>
<li>This project was exported as the jar file <a href="http://www.chemspider.com/blog/wp-content/uploads/2011/11/chemspider_webservices_jar.zip">chemspider_webservices.jar</a></li>
</li>
</ul>
<h3>Using the chemspider_webservices.jar file as an external library jar file</h3>
<p>The chemspider_webservices.jar file and all of the Apache Axis2 library jar files need adding to a java project as referenced libraries before it can be called. To do this in Eclipse right-click on the project in the Package Explorer, choose Properties > Java Build Path > Libraries > Add External Jars and select:</p>
<ul>
<li>the chemspider_webservices.jar file (download it from <a href="http://www.chemspider.com/blog/wp-content/uploads/2011/11/chemspider_webservices_jar.zip">chemspider_webservices.jar</a> and save it locally)</li>
<li>all of the lib files in the lib folder of the Axis2 folder.</li>
</ul>
<p>Once this has been done then the ChemSpider webservices can be called from the project. An example is shown below, and is also downloadable in text format from <a href="http://www.chemspider.com/blog/wp-content/uploads/2011/11/WebServiceExamples.txt">here</a>. This has been structured into (pretty well self-contained) functions which can be easily called to retrieve the results of a particular operation of a webservice. In the main function these functions are called and the output written out. </p>
<p>Please note that you should put your obtains your own ChemSpider token from ChemSpider to set as the ChemSpiderToken value &#8211; to obtain this, register for a ChemSpider account, and look up your token from your user Profile page after logging in. Some tokens require your user account to be associated with the &#8220;Service Subscriber&#8221; role, which you can request from your user profile page. </p>
<p><code>package com.chemspider.www.examples;</p>
<p>import java.util.HashMap;<br />
import java.util.Map;</p>
<p>import javax.swing.JOptionPane;</p>
<p>import org.apache.log4j.BasicConfigurator;<br />
import org.apache.log4j.Level;<br />
import org.apache.log4j.Logger;</p>
<p>import com.chemspider.www.*;<br />
import com.chemspider.www.InChIStub.InChIToCSIDResponse;<br />
import com.chemspider.www.SearchStub.GetAsyncSearchResultResponse;<br />
import com.chemspider.www.SearchStub.GetAsyncSearchStatusResponse;<br />
import com.chemspider.www.SearchStub.SimpleSearchResponse;<br />
import com.chemspider.www.MassSpecAPIStub.ArrayOfInt;<br />
import com.chemspider.www.MassSpecAPIStub.ArrayOfString;<br />
import com.chemspider.www.MassSpecAPIStub.ExtendedCompoundInfo;<br />
import com.chemspider.www.MassSpecAPIStub.GetDatabasesResponse;<br />
import com.chemspider.www.MassSpecAPIStub.GetExtendedCompoundInfoArrayResponse;<br />
import com.chemspider.www.MassSpecAPIStub.SearchByMassAsyncResponse;</p>
<p>public class WebServiceExamples {</p>
<p>	/**<br />
	 * @param args<br />
	 */</p>
<p>	private static final Logger LOG = Logger.getLogger(WebServiceExamples.class.getName());</p>
<p>	private static String ChemSpiderToken = "YOU NEED TO INSERT YOUR OWN TOKEN IN HERE";</p>
<p>	public static void main(String[] args) {<br />
		BasicConfigurator.configure();</p>
<p>		JOptionPane.showMessageDialog(null, "The compound with InChI InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H has CSID:"+get_InChI_InChIToCSID_Results("InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H"));</p>
<p>		int[] SimpleSearchResults = get_Search_SimpleSearch_Results("taxol", ChemSpiderToken);<br />
		JOptionPane.showMessageDialog(null, "The first of "+SimpleSearchResults.length+" ChemSpider compound(s) returned by a search for Taxol has CSID:"+SimpleSearchResults[0]);</p>
<p>		int[] inputCSIDs = new int[2];<br />
		inputCSIDs[0] = 236;<br />
		inputCSIDs[1] = 238;<br />
		Map<Integer, Map<String,String>> GetExtendedCompoundInfoArrayResults = get_MassSpecAPI_GetExtendedCompoundInfoArray_Results(inputCSIDs, ChemSpiderToken);<br />
		Map<String,String> thisCompoundInfo = GetExtendedCompoundInfoArrayResults.get(238);<br />
		JOptionPane.showMessageDialog(null, "The Average Mass of the compound with CSID 238 is: "+thisCompoundInfo.get("AverageMass"));</p>
<p>		String[] GetDatabaseResults = get_MassSpecAPI_GetDatabases_Results();<br />
		JOptionPane.showMessageDialog(null, "The first of "+GetDatabaseResults.length+" datasources in ChemSpider is:"+GetDatabaseResults[0]);</p>
<p>		String SearchByMassAsyncResults = get_MassSpecAPI_SearchByMassAsync_Results(1100.0, 0.1,GetDatabaseResults, ChemSpiderToken);<br />
		JOptionPane.showMessageDialog(null, "Transaction ID for search on compounds with mass = 1100+/- 0.1 from any data source is" + SearchByMassAsyncResults);<br />
		JOptionPane.showMessageDialog(null, "The operation status of the search with this transaction ID is" + get_Search_GetAsyncSearchStatus_Results(SearchByMassAsyncResults, ChemSpiderToken));<br />
		int[] GetAsyncSearchResultResults = get_Search_GetAsyncSearchResult_Results(SearchByMassAsyncResults, ChemSpiderToken);<br />
		JOptionPane.showMessageDialog(null, "And the first of "+GetAsyncSearchResultResults.length+" ChemSpider compound(s) returned by the search has CSID:"+GetAsyncSearchResultResults[0]);<br />
	}</p>
<p>	/**<br />
	 * Function to call the InChIToCSID operation of ChemSpider's InChI SOAP 1.2 webservice (http://www.chemspider.com/InChI.asmx?op=InChIToCSID)<br />
	 * Convert InChI to ChemSpider ID.<br />
	 *<br />
	 * @param inchi: string representing inchi to search ChemSpider for<br />
	 * @return: string representing CSID returned<br />
	 */<br />
	public static String get_InChI_InChIToCSID_Results(String inchi) {<br />
		String Output = null;<br />
		try {</p>
<p>			final InChIStub thisInChIstub = new InChIStub();<br />
			com.chemspider.www.InChIStub.InChIToCSID InChIToCSIDInput = new com.chemspider.www.InChIStub.InChIToCSID();<br />
			InChIToCSIDInput.setInchi(inchi);<br />
			final InChIToCSIDResponse thisInChIToCSIDResponse = thisInChIstub.inChIToCSID(InChIToCSIDInput);<br />
			Output = thisInChIToCSIDResponse.getInChIToCSIDResult();<br />
		} catch (Exception e) {<br />
			LOG.log(Level.ERROR, "Problem retrieving ChemSpider webservices", e);<br />
		}<br />
		return Output;<br />
	}</p>
<p>	/**<br />
	 * Function to call the SimpleSearch operation of ChemSpider's Search SOAP 1.2 webservice (http://www.chemspider.com/search.asmx?op=SimpleSearch)<br />
	 * Search by Name, SMILES, InChI, InChIKey, etc. Returns a list of found CSIDs (first 100 - please use AsyncSimpleSearch instead if you like to get the full list). Security token is required.<br />
	 *<br />
	 * @param query: String representing search term (can be Name, SMILES, InChI, InChIKey)<br />
	 * @param token: string containing your user token (listed at your http://www.chemspider.com/UserProfile.aspx page)<br />
	 * @return: int[] array containing the ChemSpider IDs. If more than 100 are found then only the first 100 are returned.<br />
	 */<br />
	public static int[] get_Search_SimpleSearch_Results(String query, String token) {<br />
		int[] Output = null;<br />
		try {<br />
			final SearchStub thisSearchStub = new SearchStub();<br />
			com.chemspider.www.SearchStub.SimpleSearch SimpleSearchInput = new com.chemspider.www.SearchStub.SimpleSearch();<br />
			SimpleSearchInput.setQuery(query);<br />
			SimpleSearchInput.setToken(token);<br />
			final SimpleSearchResponse thisSimpleSearchResponse = thisSearchStub.simpleSearch(SimpleSearchInput);<br />
			Output = thisSimpleSearchResponse.getSimpleSearchResult().get_int();<br />
		} catch (Exception e) {<br />
			LOG.log(Level.ERROR, "Problem retrieving ChemSpider webservices", e);<br />
		}<br />
		return Output;<br />
	}</p>
<p>	/**<br />
	 *  Function to call the GetDatabases operation of ChemSpider's MassSpecAPI SOAP 1.2 webservice (http://www.chemspider.com/massspecapi.asmx?op=GetDatabases)<br />
	 *  Get the list of datasources in ChemSpider.<br />
	 *<br />
	 * @return: the list of datasources in ChemSpider as a String Array<br />
	 */<br />
	public static String[] get_MassSpecAPI_GetDatabases_Results() {<br />
		String[] Output = null;<br />
		try {</p>
<p>			final MassSpecAPIStub thisMassSpecAPIStub = new MassSpecAPIStub();<br />
			com.chemspider.www.MassSpecAPIStub.GetDatabases getDatabaseInput = new com.chemspider.www.MassSpecAPIStub.GetDatabases();<br />
			final GetDatabasesResponse thisGetDatabasesResponse = thisMassSpecAPIStub.getDatabases(getDatabaseInput);<br />
			Output = thisGetDatabasesResponse.getGetDatabasesResult().getString();<br />
		} catch (Exception e) {<br />
			LOG.log(Level.ERROR, "Problem retrieving ChemSpider webservices", e);<br />
		}<br />
		return Output;<br />
	}</p>
<p>	/**<br />
	 * Function to call the GetExtendedCompoundInfoArray operation of ChemSpider's MassSpecAPI SOAP 1.2 webservice (http://www.chemspider.com/massspecapi.asmx?op=GetExtendedCompoundInfoArray)<br />
	 * Get array of extended record details by an array of CSIDs. Security token is required.<br />
	 *<br />
	 * @param CSIDs: integer array containing the CSIDs of compounds for which information will be returned<br />
	 * @param token: string containing your user token (listed at your http://www.chemspider.com/UserProfile.aspx page)<br />
	 * @return: a Map<Integer CSID,Map<String Property,String Value>> containing the results array for each CSID (with Properties CSID, MF, SMILES, InChIKey, AverageMass, MolecularWeight, MonoisotopicMass, NominalMass, ALogP, XLogP, CommonName)<br />
	 */<br />
	public static Map<Integer, Map<String,String>> get_MassSpecAPI_GetExtendedCompoundInfoArray_Results(int[] CSIDs, String token) {<br />
		Map<Integer, Map<String,String>> Output = new HashMap<Integer, Map<String,String>>();<br />
		try {<br />
			final MassSpecAPIStub thisMassSpecAPIStub = new MassSpecAPIStub();<br />
			ArrayOfInt inputCSIDsArrayofInt = new ArrayOfInt();<br />
			inputCSIDsArrayofInt.set_int(CSIDs);<br />
			com.chemspider.www.MassSpecAPIStub.GetExtendedCompoundInfoArray getGetExtendedCompoundInfoArrayInput = new com.chemspider.www.MassSpecAPIStub.GetExtendedCompoundInfoArray();<br />
			getGetExtendedCompoundInfoArrayInput.setCSIDs(inputCSIDsArrayofInt);<br />
			getGetExtendedCompoundInfoArrayInput.setToken(token);<br />
			final GetExtendedCompoundInfoArrayResponse thisGetExtendedCompoundInfoArrayResponse = thisMassSpecAPIStub.getExtendedCompoundInfoArray(getGetExtendedCompoundInfoArrayInput);<br />
			ExtendedCompoundInfo[] thisExtendedCompoundInfo = thisGetExtendedCompoundInfoArrayResponse.getGetExtendedCompoundInfoArrayResult().getExtendedCompoundInfo();<br />
			for (int i=0; i
<thisExtendedCompoundInfo.length; i++) {<br />
				Map<String,String> thisCompoundExtendedCompoundInfoArrayOutput = new HashMap<String, String>();<br />
				thisCompoundExtendedCompoundInfoArrayOutput.put("CSID", Integer.toString(thisExtendedCompoundInfo[i].getCSID()));<br />
				thisCompoundExtendedCompoundInfoArrayOutput.put("MF", thisExtendedCompoundInfo[i].getMF());<br />
				thisCompoundExtendedCompoundInfoArrayOutput.put("SMILES", thisExtendedCompoundInfo[i].getSMILES());<br />
				thisCompoundExtendedCompoundInfoArrayOutput.put("InChI", thisExtendedCompoundInfo[i].getInChI());<br />
				thisCompoundExtendedCompoundInfoArrayOutput.put("InChIKey", thisExtendedCompoundInfo[i].getInChIKey());<br />
				thisCompoundExtendedCompoundInfoArrayOutput.put("AverageMass", Double.toString(thisExtendedCompoundInfo[i].getAverageMass()));<br />
				thisCompoundExtendedCompoundInfoArrayOutput.put("MolecularWeight", Double.toString(thisExtendedCompoundInfo[i].getMolecularWeight()));<br />
				thisCompoundExtendedCompoundInfoArrayOutput.put("MonoisotopicMass", Double.toString(thisExtendedCompoundInfo[i].getMonoisotopicMass()));<br />
				thisCompoundExtendedCompoundInfoArrayOutput.put("NominalMass", Double.toString(thisExtendedCompoundInfo[i].getNominalMass()));<br />
				thisCompoundExtendedCompoundInfoArrayOutput.put("ALogP", Double.toString(thisExtendedCompoundInfo[i].getALogP()));<br />
				thisCompoundExtendedCompoundInfoArrayOutput.put("XLogP", Double.toString(thisExtendedCompoundInfo[i].getXLogP()));<br />
				thisCompoundExtendedCompoundInfoArrayOutput.put("CommonName", thisExtendedCompoundInfo[i].getCommonName());<br />
				Output.put(thisExtendedCompoundInfo[i].getCSID(), thisCompoundExtendedCompoundInfoArrayOutput);<br />
			}</p>
<p>		} catch (Exception e) {<br />
			LOG.log(Level.ERROR, "Problem retrieving ChemSpider webservices", e);<br />
		}<br />
		return Output;<br />
	}</p>
<p>	/**<br />
	 * Function to call the SearchByMass2 operation of ChemSpider's MassSpecAPI SOAP 1.2 webservice (http://www.chemspider.com/massspecapi.asmx?op=SearchByMass2)<br />
	 * Search ChemSpider by mass +/- range.<br />
	 *<br />
	 * @param Mass: The compounds returned have a mass (Double) within the range Mass +/- Range<br />
	 * @param Range: The compounds returned have a mass (Double) within the range Mass +/- Range<br />
	 * @return: the ChemSpider IDs of compounds returned (as a String Array)<br />
	 */<br />
	public static String get_MassSpecAPI_SearchByMassAsync_Results(Double mass, Double range, String[] dbs, String token) {<br />
		String Output = null;<br />
		try {<br />
			final MassSpecAPIStub thisMassSpecAPIStub = new MassSpecAPIStub();<br />
			com.chemspider.www.MassSpecAPIStub.SearchByMassAsync getSearchByMassAsyncInput = new com.chemspider.www.MassSpecAPIStub.SearchByMassAsync();<br />
			getSearchByMassAsyncInput.setMass(mass);<br />
			getSearchByMassAsyncInput.setRange(range);<br />
			ArrayOfString inputDBsArrayofString = new ArrayOfString();<br />
			inputDBsArrayofString.setString(dbs);<br />
			getSearchByMassAsyncInput.setDbs(inputDBsArrayofString);<br />
			getSearchByMassAsyncInput.setToken(token);<br />
			final SearchByMassAsyncResponse thisSearchByMassAsyncResponse = thisMassSpecAPIStub.searchByMassAsync(getSearchByMassAsyncInput);<br />
			Output = thisSearchByMassAsyncResponse.getSearchByMassAsyncResult();<br />
		} catch (Exception e) {<br />
			LOG.log(Level.ERROR, "Problem retrieving ChemSpider webservices", e);<br />
		}<br />
		return Output;<br />
	}</p>
<p>	/**<br />
	 * Function to call the GetAsyncSearchStatus operation of ChemSpider's Search SOAP 1.2 webservice (http://www.chemspider.com/search.asmx?op=GetAsyncSearchStatus)<br />
	 * Query asynchronous operation status. Requires transaction ID returned by AsynchSearch operation. Security token is required.<br />
	 *<br />
	 * @param rid: String representing transaction ID returned from a previous search<br />
	 * @param token: string containing your user token (listed at your http://www.chemspider.com/UserProfile.aspx page)<br />
	 * @return: String describing status of this search - can have values Unknown or Created or Scheduled or Processing or Suspended or PartialResultReady or ResultReady or Failed or TooManyRecords<br />
	 */<br />
	public static String get_Search_GetAsyncSearchStatus_Results(String rid, String token) {<br />
		String Output = null;<br />
		try {<br />
			final SearchStub thisSearchStub = new SearchStub();<br />
			com.chemspider.www.SearchStub.GetAsyncSearchStatus GetAsyncSearchStatusInput = new com.chemspider.www.SearchStub.GetAsyncSearchStatus();<br />
			GetAsyncSearchStatusInput.setRid(rid);<br />
			GetAsyncSearchStatusInput.setToken(token);<br />
			final GetAsyncSearchStatusResponse thisGetAsyncSearchStatusResponse = thisSearchStub.getAsyncSearchStatus(GetAsyncSearchStatusInput);<br />
			Output = thisGetAsyncSearchStatusResponse.getGetAsyncSearchStatusResult().toString();<br />
		} catch (Exception e) {<br />
			LOG.log(Level.ERROR, "Problem retrieving ChemSpider webservices", e);<br />
		}<br />
		return Output;<br />
	}</p>
<p>	/**<br />
	 * Function to call the GetAsyncSearchResult operation of ChemSpider's Search SOAP 1.2 webservice (http://www.chemspider.com/search.asmx?op=GetAsyncSearchResult)<br />
	 * Returns the list of CSIDs found by AsynchSearch operation. Security token is required.<br />
	 *<br />
	 * @param rid: String representing transaction ID returned from a previous search<br />
	 * @param token: string containing your user token (listed at your http://www.chemspider.com/UserProfile.aspx page)<br />
	 * @return: int[] array containing the ChemSpider IDs.<br />
	 */<br />
	public static int[] get_Search_GetAsyncSearchResult_Results(String rid, String token) {<br />
		int[] Output = null;<br />
		try {<br />
			final SearchStub thisSearchStub = new SearchStub();<br />
			com.chemspider.www.SearchStub.GetAsyncSearchResult GetAsyncSearchResultInput = new com.chemspider.www.SearchStub.GetAsyncSearchResult();<br />
			GetAsyncSearchResultInput.setRid(rid);<br />
			GetAsyncSearchResultInput.setToken(token);<br />
			final GetAsyncSearchResultResponse thisGetAsyncSearchResultResponse = thisSearchStub.getAsyncSearchResult(GetAsyncSearchResultInput);<br />
			Output = thisGetAsyncSearchResultResponse.getGetAsyncSearchResultResult().get_int();<br />
		} catch (Exception e) {<br />
			LOG.log(Level.ERROR, "Problem retrieving ChemSpider webservices", e);<br />
		}<br />
		return Output;<br />
	}</p>
<p>}<br />
</code><br />
Disclaimer: I&#8217;m new to Java programming, so please excuse me if you are a java expert and I&#8217;ve said something obvious, offended you with my code or used the wrong terminology anywhere.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.chemspider.com%2Fblog%2Fhow-to-use-chemspider-webservices-when-programming-with-java.html';
  addthis_title  = 'How+to+use+ChemSpider+webservices+when+programming+with+java';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.chemspider.com/blog/how-to-use-chemspider-webservices-when-programming-with-java.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Countdown To ACS Denver</title>
		<link>http://www.chemspider.com/blog/countdown-to-acs-denver.html</link>
		<comments>http://www.chemspider.com/blog/countdown-to-acs-denver.html#comments</comments>
		<pubDate>Fri, 26 Aug 2011 11:19:18 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[ChemSpider Chemistry]]></category>
		<category><![CDATA[Community Building]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[RSC Publishing]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chemspider.com/blog/?p=3159</guid>
		<description><![CDATA[Only two days until the start of this year&#8217;s Fall ACS meeting in Denver. The ChemSpider team is busy preparing for the meeting, packing bags, polishing talks and honing workshop skills. Please drop by and say &#8220;Hi!&#8221; We&#8217;d like to repeat our invitation to everyone at the conference to drop by the RSC booth (Booth [...]]]></description>
			<content:encoded><![CDATA[<p>Only two days until the start of this year&#8217;s Fall ACS meeting in Denver. The ChemSpider team is busy preparing for the meeting, packing bags, polishing talks and honing workshop skills.</p>
<h2>Please drop by and say &#8220;Hi!&#8221;</h2>
<p>We&#8217;d like to repeat our invitation to everyone at the conference to drop by the RSC booth (Booth 1100). Where, of course you can chat with the ChemSpider team, get a quick demo (and find out more about our latest features), pick up our hot-off-the-press User Guide or scoop some exclusive ChemSpider goodies!</p>
<div id="attachment_3182" class="wp-caption aligncenter" style="width: 402px"><a href="http://www.chemspider.com/blog/wp-content/uploads/2011/08/Mobile-covers1.jpg"><img class="size-full wp-image-3182" title="Mobile covers" src="http://www.chemspider.com/blog/wp-content/uploads/2011/08/Mobile-covers1.jpg" alt="" width="392" height="469" /></a><p class="wp-caption-text">To celebrate the release of the new iPhone/iPad app* we have a limited number of covers for 3G and 4G iPhones as well as iPads</p></div>
<p>*The app itself is free to download from the <a href="http://itunes.apple.com/us/app/chemspider/id458878661">AppStore</a>.</p>
<p>You can also find out about lots of other things that the RSC does: from publishing books and journals to the promotion of chemistry worldwide. We&#8217;ll also have lots of information on our new e-membership option, which is making its&#8217; debut at this meeting. Also keep an eye out for members of our Editorial staff from journals including: <a href="http://pubs.rsc.org/en/journals/journalissues/ob">OBC</a>, <a href="http://pubs.rsc.org/en/journals/journalissues/md">MedChemComm</a>, <a href="http://pubs.rsc.org/en/journals/journalissues/pp">PCCP</a>, <a href="http://pubs.rsc.org/en/journals/journalissues/sm">Soft Matter</a> and <a href="http://pubs.rsc.org/en/journals/journalissues/ra">RSC Advances</a>, who will be scouring the conference in search of lots of new and exciting research.</p>
<h2>Natural Product &amp; Synthetic Chemists</h2>
<p>I&#8217;d like to make an extra special invitation to any Synthetic chemists and Natural products chemists &#8211; from PhD students to Professors (please pass this on to all your friends and colleagues who will be at the meeting). The ChemSpider team <span style="text-decoration: underline;"><strong>really</strong></span> wants to hear about <strong><span style="text-decoration: underline;">your</span></strong> research. Tell us about your latest publication or the work that you are most proud of, and we can make sure that your key compounds from these publications are in ChemSpider, on a platform freely accessible to chemists everywhere. If you are more interested in methodology you shouldn&#8217;t feel left out &#8211; ask us about <a href="http://cssp.chemspider.com/">ChemSpider Synthetic Pages</a>.</p>
<p>&nbsp;</p>
<h2>ChemSpider related talks and workshops</h2>
<p>Antony Williams (most-definitely the hardest working man I know) is giving a number of talks and workshops (details below) which are sure to be entertaining as well as thought-provoking and will be well-worth squeezing into your schedule.</p>
<p>We look forward to meeting you.</p>
<p>&nbsp;</p>
<p><strong> “Aligning scientific expertise and passion through a career path in the chemical sciences”</strong></p>
<p>Colorado Convention Center, Room: 110, Sunday 28<sup>th</sup> August 2011, 1.40PM – 2PM</p>
<p>&nbsp;</p>
<p><strong>“Chemistry in the hand: The delivery of structure databases and spectroscopy gaming on mobile devices</strong>”</p>
<p>Colorado Convention Center, Room: 110, Monday 29<sup>th</sup> August 2011, 9.05AM – 9.35AM</p>
<p>&nbsp;</p>
<p><strong>“ChemSpider: Does community engagement work to build a quality online resource for chemists?”</strong></p>
<p>Colorado Convention Center, Room: 110, Tuesday 30<sup>th</sup> August, 10.10AM – 10.50AM</p>
<p>&nbsp;</p>
<p><strong>“An Introduction to ChemSpider – A Combination Platform of  Free Chemistry Database, Free Prediction Engines and Wiki Environment”</strong></p>
<p>Colorado Convention Center, Room 503, Wednesday 31<sup>th</sup> August 2011, 08.30AM – 11AM</p>
<p>&nbsp;</p>
<p><strong>“Structure representations in public chemistry databases: The challenges of validating the chemical structures for 200 top-selling drugs”</strong></p>
<p>Colorado Convention Center, Room: 110, Wednesday 31<sup>st</sup> August 2011, 10.45AM – 11.05AM</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.chemspider.com%2Fblog%2Fcountdown-to-acs-denver.html';
  addthis_title  = 'Countdown+To+ACS+Denver';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.chemspider.com/blog/countdown-to-acs-denver.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Changing Face of ChemSpider Pt 2</title>
		<link>http://www.chemspider.com/blog/the-changing-face-of-chemspider-pt-2.html</link>
		<comments>http://www.chemspider.com/blog/the-changing-face-of-chemspider-pt-2.html#comments</comments>
		<pubDate>Tue, 23 Aug 2011 17:01:20 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chemspider.com/blog/?p=3114</guid>
		<description><![CDATA[As I mentioned in my blog post a few weeks ago, over the last few months we have been hard at work trying to improve how we organise all of the information and features that can be found when you view a ChemSpider record. And now you can see the fruits of our labour. We [...]]]></description>
			<content:encoded><![CDATA[<p>As I mentioned in my <a title="The Changing Face of ChemSpider" href="http://www.chemspider.com/blog/the-changing-face-of-chemspider.html">blog post </a>a few weeks ago, over the last few months we have been hard at work trying to improve how we organise all of the information and features that can be found when you view a ChemSpider record. And now you can see the fruits of our labour.</p>
<p>We hope that you find the changes we&#8217;ve made give you a better and easier user experience. While we think that the changes will be clear and intuitive, I&#8217;d like to highlight a few key features in my next few posts.</p>
<h2>Inline help</h2>
<p>When you look at compound pages and other useful pages, you should now see a lot more Question mark symbols dotted<a href="http://www.chemspider.com/blog/wp-content/uploads/2011/08/question.png"><img class="alignright size-full wp-image-3116" title="Inline Help question symbol" src="http://www.chemspider.com/blog/wp-content/uploads/2011/08/question.png" alt="Inline Help question symbol" width="25" height="25" /></a> throughout the pages. We’ve called this approach inline help: rather than giving you an in-depth help resource on a separate page or as a PDF, it is much more useful to have a little snippet of help right at the point in the page where you need it. Clicking on the question mark symbol should bring up a yellow text box with short guidance (where there is a need to provide more complete help, we’ll provide a link to a page which contains much more detailed information). Of course, do let us know if you have any suggestions for improvements to the help text.</p>
<p><a href="http://www.chemspider.com/blog/wp-content/uploads/2011/08/cs-inline.jpg"><img class="aligncenter size-full wp-image-3140" title="cs-inline" src="http://www.chemspider.com/blog/wp-content/uploads/2011/08/cs-inline.jpg" alt="Inline hep text" width="706" height="155" /></a><a href="http://www.chemspider.com/blog/wp-content/uploads/2011/08/cs-inline1.jpg"><br />
</a></p>
<p>&nbsp;</p>
<h2>Default infobox ordering*</h2>
<p>Many users indicate they most often look for names (or name-structure associations), physical properties and spectral data, so we have put this information at the beginning of the record. Now when you come to a record, by default the Names infobox is the first box listed followed by the Properties, Spectra and the Articles infoboxes.</p>
<p>None of your favourite infoboxes have been removed (in fact we’ve created some new ones &#8211; see later). If you don&#8217;t like the default order, it is easy to change the ordering of the infoboxes by clicking on the titlebar and dragging them up or down the record. ChemSpider will remember your order and will use this for all future visits to the site from that PC (in the same browser/profile).</p>
<p>*If you have visited the site before ChemSpider will remember your previous settings. If you want to see the new default order you will need to clear your browser history or delete the ChemSpider cookies that are saved in your profile.</p>
<p>&nbsp;</p>
<h2>New infoboxes: Searches and Chemical Vendors</h2>
<p>ChemSpider has always had great features, for instance:</p>
<p>The Similar Search &#8211; that allows you to find records for compounds that have the same skeleton, but have different stereochemistry or isotopic labels</p>
<p>The ability to load the structure from the current record into a structure search, so that you are able to modify it and construct a new search.</p>
<p>However, this hasn’t always been made very clear, in our redesigned compound page we have aimed to make these powerful search tools easier to discover and understand.</p>
<h3>The Searches Infobox</h3>
<p>Now you can find these all together in the Searches infobox &#8211; along with our Google Scholar custom queries which allow you to perform one search across publications using all of the validated synonyms (saving you from having to perform many separate searches for individual synonyms). We also help you to perform &#8216;structure searches&#8217; of Google (in the form of an InChIkey search).</p>
<p><a href="http://www.chemspider.com/blog/wp-content/uploads/2011/08/CS-SearchInfobox.jpg"><img class="aligncenter size-full wp-image-3139" title="CS SearchInfobox" src="http://www.chemspider.com/blog/wp-content/uploads/2011/08/CS-SearchInfobox.jpg" alt="The Search infobox" width="663" height="155" /></a></p>
<h3>The Chemical Vendors Infobox</h3>
<p>We&#8217;ve also created an infobox  just to display Chemical vendor information, so that it is much quicker to find if the compound in the record is commercially available.<a href="http://www.chemspider.com/blog/wp-content/uploads/2011/08/CS-vendors.jpg"><br />
</a></p>
<p><a href="http://www.chemspider.com/blog/wp-content/uploads/2011/08/CS-vendors1.jpg"><img class="aligncenter size-full wp-image-3138" title="CS vendors" src="http://www.chemspider.com/blog/wp-content/uploads/2011/08/CS-vendors1.jpg" alt="The record for Sparteine with it's Chemical vendors infobox" width="650" height="448" /></a></p>
<p>&nbsp;</p>
<p>In my next post I&#8217;ll finish off discussing the improvements that we&#8217;ve made to the site. But of course, if you have any comments or questions about the features I&#8217;ve discussed here, please leave a comment below, or send an email to the ChemSpider inbox.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.chemspider.com%2Fblog%2Fthe-changing-face-of-chemspider-pt-2.html';
  addthis_title  = 'The+Changing+Face+of+ChemSpider+Pt+2';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.chemspider.com/blog/the-changing-face-of-chemspider-pt-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is your favored Structure Drawing Editor on ChemSpider?</title>
		<link>http://www.chemspider.com/blog/what-is-your-favored-structure-drawing-editor-on-chemspider.html</link>
		<comments>http://www.chemspider.com/blog/what-is-your-favored-structure-drawing-editor-on-chemspider.html#comments</comments>
		<pubDate>Tue, 23 Aug 2011 00:25:03 +0000</pubDate>
		<dc:creator>Antony Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Accelrys JDraw]]></category>
		<category><![CDATA[ChemDoodle]]></category>
		<category><![CDATA[ChemSpider]]></category>
		<category><![CDATA[JChemPaint]]></category>
		<category><![CDATA[JSDraw]]></category>
		<category><![CDATA[Structure Drawing]]></category>

		<guid isPermaLink="false">http://www.chemspider.com/blog/?p=3131</guid>
		<description><![CDATA[There are multiple structure drawing editors on ChemSpider. And we could add more! For example, one we don&#8217;t have is JSDraw and we also don&#8217;t have the ChemDoodle components in place, yet, though I am VERY impressed with the spectral display components that are integrated into the SpectralGame that ChemSpider supports. Compared to just a few [...]]]></description>
			<content:encoded><![CDATA[<p>There are multiple structure drawing editors on ChemSpider. And we could add more! For example, one we don&#8217;t have is <a href="http://www.scilligence.com/web/jsdraw.aspx">JSDraw</a> and we also don&#8217;t have the <a href="http://www.chemdoodle.com/">ChemDoodle components</a> in place, yet, though I am VERY impressed with the <a href="http://web.chemdoodle.com/chemdoodle-web-component-spectra">spectral display components</a> that are integrated into the SpectralGame that ChemSpider supports. Compared to just a few years ago there is now an abundance of structure drawing editors in the form of Applets and JavaScript Editors. So many in fact that it can be confusing to the user. The user in reality should not worry about the technology behind the editor. It should be quite simple, especially when it comes to something as simple as the editor being the interface to querying ChemSpider. It should display perfectly on the browser(s) and platform(s) used by the user, it should be intuitive and easy to use (preferably without having to resort to reading help files), and essentially, it should &#8220;do what I want it to do&#8221;. Not at all an unreasonable list of demands right? Not so easy to deliver on mind you!</p>
<p>On ChemSpider we have multiple structure drawing editors. If you <a href="http://www.chemspider.com/StructureSearch.aspx">visit this page</a> and open up the selection window by using &#8220;Click to Edit&#8221; you will see the editor below and, underneath the editor shown, a series of editors that you can choose from.</p>
<p><a href="http://www.chemspider.com/blog/wp-content/uploads/2011/08/Structure-Editors.png"><img class="aligncenter size-full wp-image-3132" title="Structure Editors" src="http://www.chemspider.com/blog/wp-content/uploads/2011/08/Structure-Editors.png" alt="Structure Editors on ChemSpider " width="538" height="449" /></a></p>
<p>There has to be an order of listing the editors&#8230;the listed order is NOT a preferred order from our point of view. Just a list. We have heard feedback from numerous people about their preferred editor. Some live and breath the Java Molecular Editor (JME). Some prefer Accelrys JDraw because they already use Accelrys Draw. Many think that Elemental is a great Javascript Editor.</p>
<p>We are left with a choice&#8230;.leave all editors (which has a cost in time to support them, keep them updated, tested etc) or reduce the number of editors to just a couple (or three). So, we welcome your input, on this blog post as a comment, or via the <a href="http://www.surveymonkey.com/s/SWRKTHN">survey on SurveyMonkey here</a>. We&#8217;d like your input to help steer our decision. Thanks</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.chemspider.com%2Fblog%2Fwhat-is-your-favored-structure-drawing-editor-on-chemspider.html';
  addthis_title  = 'What+is+your+favored+Structure+Drawing+Editor+on+ChemSpider%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.chemspider.com/blog/what-is-your-favored-structure-drawing-editor-on-chemspider.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In Celebration of Chemistry in Sports. Introducing Olympicene.</title>
		<link>http://www.chemspider.com/blog/in-celebration-of-chemistry-in-sports-introducing-olympicene.html</link>
		<comments>http://www.chemspider.com/blog/in-celebration-of-chemistry-in-sports-introducing-olympicene.html#comments</comments>
		<pubDate>Fri, 05 Aug 2011 03:00:08 +0000</pubDate>
		<dc:creator>Antony Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chemspider.com/blog/?p=3090</guid>
		<description><![CDATA[COPIED FROM THE CHEMCONNECTOR BLOG Unless you have no interest in sports, or have your head under a stone, you will be aware of the fact that the next Olympics will be held in London in 2012. Peter Scott (one of the editors of ChemSpider SyntheticPages) and I were recently discussing how much of a [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.chemconnector.com/2011/08/01/in-celebration-of-chemistry-in-sports-introducing-olympicene/">COPIED FROM THE CHEMCONNECTOR BLOG</a></strong></p>
<p>Unless you have no interest in sports, or have your head under a stone, you will be aware of the fact that the next Olympics will be held in <a href="http://www.london2012.com/">London in 2012</a>. <a href="http://www2.warwick.ac.uk/fac/sci/chemistry/research/scott/">Peter Scott </a>(one of the editors of <a href="http://cssp.chemspider.com/">ChemSpider SyntheticPages</a>) and I were recently discussing how much of a role chemistry plays now in modern sports. I’m a runner, cyclist, swimmer and overall sporting type of guy and depend on wicking materials to keep me cool, nutritional support to get me through my 100-150 mile bike rides in a day, glide stick to “stop me chafing” (ow!) and graphite grease to silence the rattling chain on my bike. In fact it doesn’t matter what sport I am doing it is easy to notice the influence that chemistry has on my improved performance at my tender age of, ahem, just over 40 (and holding, for a while now).</p>
<p>I was reminiscing with Peter that <a href="http://research.chem.ox.ac.uk/graham-richards.aspx">Sir Graham Richards </a>and I were chatting about pyrenes about a year ago and we lamented on how Benzo[CD]pyrene, <a href="http://www.chemspider.com/Chemical-Structure.19896409.html">shown here</a>, looks just like the Olympic rings. There is another rather well known “Olympic molecule” of course, already captured on Wikipedia and named <a href="http://en.wikipedia.org/wiki/Olympiadane">Olympiadane</a>. It looks rather complex to synthesize and personally I think the benzopyrene looks a lot more like the Olympic rings so I attached the synonym Olympicene to it! In fact, if you search ChemSpider using the name Olympicene you will find it.</p>
<p><a href="http://www.chemconnector.com/wp-content/uploads/2011/08/olympicene.png"><img class="aligncenter" title="olympicene" src="http://www.chemconnector.com/wp-content/uploads/2011/08/olympicene.png" alt="" width="459" height="246" /></a></p>
<p>In a recent discussion about our online crowdsourced database of syntheses, ChemSpider SyntheticPages,(and not distracted at all by the conversation about the Olympics going to the UK next year!!!)  I mentioned again to Peter the molecule Olympicene and he searched ChemSpider to find it. We agreed that it would be fun to know how easy it would be too synthesize it and if it was done it would be a good synthesis to add to ChemSpider SyntheticPages. That was enough to trigger Peter into action and chat with one of his colleagues to see if he can make it.</p>
<p>And so it starts…the trials and tribulations of how to synthesize the chemical Olympicene will be captured on ChemSpider SyntheticPages step by step. We’re not sure how complex a synthesis it will be..time will tell. It will be great to add the analytical data to ChemSpider too as it gets generated..including all the intermediate reaction steps and associated data. ChemSpider and CSSP were designed to support projects like this so it will be a fun story to watch it work through.</p>
<p>If <strong>YOU</strong> have any thoughts about good synthetic approaches for what seems like a simple molecule post them on this blog. Actually, why not try synthesizing yourself and add your syntheses to SyntheticPages!? Every contribution is issued a DOI for your publication list!</p>
<p>It might be ideal to get a  number of synthetic approaches posted on ChemSpider SyntheticPages and see which one is the best! Watch this space. Also, I’ve set up a Twitter account to capture the progress at @Olympicene. Enjoy!</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.chemspider.com%2Fblog%2Fin-celebration-of-chemistry-in-sports-introducing-olympicene.html';
  addthis_title  = 'In+Celebration+of+Chemistry+in+Sports.+Introducing+Olympicene.';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.chemspider.com/blog/in-celebration-of-chemistry-in-sports-introducing-olympicene.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ChemSpider Training at ACS Denver</title>
		<link>http://www.chemspider.com/blog/chemspider-training-at-acs-denver.html</link>
		<comments>http://www.chemspider.com/blog/chemspider-training-at-acs-denver.html#comments</comments>
		<pubDate>Fri, 05 Aug 2011 02:35:45 +0000</pubDate>
		<dc:creator>Antony Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chemspider.com/blog/?p=3087</guid>
		<description><![CDATA[We will be hosting a training session for ChemSpider at the ACS meeting in Denver. Please register early. An Introduction to ChemSpider – A Combination Platform of Free Chemistry Database, Free Prediction Engines and Wiki Environment Where: Colorado Convention Center Room: 503 When: Wednesday, August 31, 8:30 AM – 11:00 AM &#62;&#62; Click here to [...]]]></description>
			<content:encoded><![CDATA[<p>We will be hosting a training session for ChemSpider at the ACS meeting in Denver. Please register early.</p>
<p><strong>An Introduction to ChemSpider – A Combination Platform of Free Chemistry Database, Free Prediction Engines and Wiki Environment</strong></p>
<p>Where: Colorado Convention Center<br />
Room: 503<br />
When: Wednesday, August 31, 8:30 AM – 11:00 AM</p>
<p><a href="index.cfm?M6KN%2ABY%2E%3DD8Y6%2CP%20%20182%21OBV%2919%5EFFU%5E%3DJX%2ALF%24%205DZ3MOI%3E5IOM7W9%5E%2DN%3F%24%21%0A%40P9%21%3BH%5E7C1U%5C0RT6L9%26%21%21%21M%2F%21G%20%5F%29VIB9CYI%5E0%2A%2A%2FT88%20%0Aurle">&gt;&gt; Click here to register for this workshop</a><br />
ChemSpider has become one of the premier free online chemistry resources used by many thousands of chemists around the world every day. Hosting over 26 million unique chemical entities, sourced from over 400 separate data sources, ChemSpider provides access to experimental and predicted data, links to patents and publications and uniquely offers the ability to deposit and share their own data online. With the intention of integrating and curating public chemistry resources for the community ChemSpider encourages participation from chemists around the world. Integrated to Wikipedia, Google Patents, Google Books, Google Scholar and PubMed, as well as to the RSC Publishing platform, ChemSpider provides access to chemistry contained in millions of articles. This training session will provide an overview of searching ChemSpider and will discuss how to deposit data and participate in curating the existing information. We will also provide an overview of ChemSpider SyntheticPages, our venture into providing a community-based resource of semantically enriched synthetic procedures and allowing community peer review. This will be an interactive session and you are encouraged to bring your laptops to work along and ask questions regarding present and future capabilities. ChemSpider is built for the community and we welcome your comments about how to make it better for your needs.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.chemspider.com%2Fblog%2Fchemspider-training-at-acs-denver.html';
  addthis_title  = 'ChemSpider+Training+at+ACS+Denver';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.chemspider.com/blog/chemspider-training-at-acs-denver.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Changing Face of ChemSpider</title>
		<link>http://www.chemspider.com/blog/the-changing-face-of-chemspider.html</link>
		<comments>http://www.chemspider.com/blog/the-changing-face-of-chemspider.html#comments</comments>
		<pubDate>Fri, 01 Jul 2011 16:19:11 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Quality and Content]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Vision]]></category>

		<guid isPermaLink="false">http://www.chemspider.com/blog/?p=2845</guid>
		<description><![CDATA[I&#8217;m sure that by now everyone has noticed that the ChemSpider homepage design changed just over a month ago. A few features moved around, the Molecules of Interest section was retired and perhaps most significantly the Search box was given a dose of CSID: 5791, becoming bigger and more prominent. The reason for this wasn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure that by now everyone has noticed that the ChemSpider homepage design changed just over a month ago. A few features moved around, the Molecules of Interest section was retired and perhaps most significantly the Search box was given a dose of <a title="Testosterone link" href="http://www.chemspider.com/Chemical-Structure.5791.html">CSID: 5791</a>, becoming bigger and more prominent.</p>
<p>The reason for this wasn&#8217;t just to make the site more attractive (though I think it does look &#8216;prettier&#8217;). Our motivation for the change is to deliver a site that makes it easier for users to interact with and understand. And by doing so, hopefully make it quicker and simpler for you to get your tasks done using ChemSpider. The refresh of the homepage is hopefully illustrative of this: We think that as most users come to ChemSpider to search for information &#8211; it should be easy to get straight into a search, hence the greater emphasis on this feature.</p>
<p>In the next few days we will release another upgrade to the interface which is centered on making it easier to understand the data presented in the compound Record View pages. I&#8217;ll post a blog entry dealing with some of the key features in the next few days.</p>
<p>The development of ChemSpider is an ongoing process, and we are aware that even after this upgrade there will be aspects of the compound Record View pages that will need more work (and also other parts of the site that still need development). It&#8217;s not going to be easy: ChemSpider brings together a rich and varied set of data from a large number of sources &#8211; this poses many challenges. We also realise that there are many different tasks that each of you &#8211; as users &#8211; want to perform, and it is always going to be difficult to reconcile all of the different opinions/needs.</p>
<p>However, we are trying to make the site better for <em>you</em>. And therefore, we&#8217;d really like to know <em>your</em> opinions on the changes (please test new features for a few days first). We welcome your feedback on the redesign either in the form of blog comments or email feedback (chemspider<span class="at">-at-</span>rsc.org).</p>
<p>Over the next week &#8211; keep your eyes peeled for the upgrade and my accompanying blog post which will endeavor to give you a good introduction to the new features.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.chemspider.com%2Fblog%2Fthe-changing-face-of-chemspider.html';
  addthis_title  = 'The+Changing+Face+of+ChemSpider';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.chemspider.com/blog/the-changing-face-of-chemspider.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Find Out How ChemSpider Connects Chemistry &amp; Mass Spectrometry Online – Register Today…</title>
		<link>http://www.chemspider.com/blog/find-out-how-chemspider-connects-chemistry-mass-spectrometry-online-register-today.html</link>
		<comments>http://www.chemspider.com/blog/find-out-how-chemspider-connects-chemistry-mass-spectrometry-online-register-today.html#comments</comments>
		<pubDate>Fri, 21 Jan 2011 10:50:01 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chemspider.com/blog/?p=2431</guid>
		<description><![CDATA[Connecting chemistry and mass spectrometry on the internet in the very first Chemistry World live webinar on 31 January, discover the powerful combination of the modern mass spectrometry and the ChemSpider database of chemical structures in metabolomics research. Dr Antony Williams of the RSC and Dr John Shockcor from Waters will be speaking on: Connecting [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: x-small; font-family: Arial;"><span style="font-size: 10pt; font-family: Arial;">Connecting chemistry and mass spectrometry on the internet in the very first <em><em><span style="font-family: Arial;"><span style="font-family: Arial;">Chemistry World </span></span></em></em><strong><strong><span style="font-family: Arial;"><span style="font-family: Arial;"><a title="http://chemistryworld.gav.co.uk/webcasts/event-detail/5/identification-of-metabolite-structures-using-mass-spectrometry.html" href="http://chemistryworld.gav.co.uk/webcasts/event-detail/5/identification-of-metabolite-structures-using-mass-spectrometry.html">live webinar on 31 January</a></span></span></strong></strong>, discover the powerful combination of the modern mass spectrometry and the <em><em><span style="font-family: Arial;"><span style="font-family: Arial;">ChemSpider </span></span></em></em>database of chemical structures in metabolomics research.</span></span></p>
<p><em><em><span style="font-size: x-small; font-family: Arial;"><span style="font-size: 10pt; font-family: Arial;">Dr Antony Williams of the RSC and Dr John Shockcor from Waters will be speaking on:</span></span></em></em></p>
<p><strong><strong><span style="font-size: x-small; font-family: Arial;"><span style="font-size: 10pt; font-family: Arial;">Connecting Chemistry and Mass Spectrometry on the Internet – ChemSpider</span></span></strong></strong><strong><span style="font-size: x-small; font-family: Arial;"><span style="font-weight: bold; font-size: 10pt; font-family: Arial;"><br />
<strong><strong><span style="font-family: Arial;"><span style="font-family: Arial;">Monday 31 January 2011</span></span></strong></strong></span></span></strong></p>
<p><strong><strong><span style="font-size: x-small; font-family: Arial;"><span style="font-size: 10pt; font-family: Arial;">Join the live webinar – <a title="http://chemistryworld.gav.co.uk/webcasts/event-detail/5/identification-of-metabolite-structures-using-mass-spectrometry.html" href="http://chemistryworld.gav.co.uk/webcasts/event-detail/5/identification-of-metabolite-structures-using-mass-spectrometry.html">Register Here</a></span></span></strong></strong></p>
<p><strong><strong><span style="font-size: x-small; font-family: Arial;"><span style="font-size: 10pt; font-family: Arial;">Or </span></span></strong></strong></p>
<p><strong><strong><span style="font-size: x-small; font-family: Arial;"><span style="font-size: 10pt; font-family: Arial;">Be part of the active audience at The Royal Society of Chemistry, London, UK – <a title="http://www.rsc.org/ConferencesAndEvents/RSCEvents/CW/web1/index.asp" href="http://www.rsc.org/ConferencesAndEvents/RSCEvents/CW/web1/index.asp">Register Here</a></span></span></strong></strong></p>
<p><em><em><span style="font-size: x-small; font-family: Arial;"><span style="font-size: 10pt; font-family: Arial;">This Chemistry World webinar is brought to you in partnership with ChemSpider and Waters. </span></span></em></em></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.chemspider.com%2Fblog%2Ffind-out-how-chemspider-connects-chemistry-mass-spectrometry-online-register-today.html';
  addthis_title  = 'Find+Out+How+ChemSpider+Connects+Chemistry+%26%23038%3B+Mass+Spectrometry+Online+%E2%80%93+Register+Today%E2%80%A6';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.chemspider.com/blog/find-out-how-chemspider-connects-chemistry-mass-spectrometry-online-register-today.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Round-Table Meeting for Metabolomics and How ChemSpider Can Help</title>
		<link>http://www.chemspider.com/blog/a-round-table-meeting-for-metabolomics-and-how-chemspider-can-help.html</link>
		<comments>http://www.chemspider.com/blog/a-round-table-meeting-for-metabolomics-and-how-chemspider-can-help.html#comments</comments>
		<pubDate>Fri, 07 Jan 2011 19:32:54 +0000</pubDate>
		<dc:creator>Antony Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chemspider.com/blog/?p=2401</guid>
		<description><![CDATA[I&#8217;ll shortly be announcing the details of a seminar we will be holding at the end of January regarding Metabolomics and ChemSpider. The details will come shortly. However, to parallel that seminar I want to be proactive in announcing that we will be holding a round-table discussion for scientists interested in further refining how ChemSpider [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll shortly be announcing the details of a seminar we will be holding at the end of January regarding Metabolomics and ChemSpider. The details will come shortly. However, to parallel that seminar I want to be proactive in announcing that we will be holding a round-table discussion for scientists interested in further refining how ChemSpider can be extended to serve the metabolomics community. An outline of the meeting is provided below. If you are interested in participating please respond to me directly at williams&#8221;AT&#8221;rsc&#8221;DOT&#8221;org by the deadline listed below. We will cap the attendance fairly quickly and are specifically looking for people who can be vocal about their needs and how we may be able to help with ChemSpider as a platform.</p>
<p align="center"><strong>Metabolomics Round Table – Delivering Value to the Metabolomics Community via ChemSpider, a Public Domain Database</strong></p>
<p align="center">Hosts: John Shockcor, Waters and Antony Williams, Royal Society of Chemistry</p>
<p align="center">When: January 31<sup>st</sup>, 2011</p>
<p align="center">Venue: Fish Room, Royal Society of Chemistry, Burlington House, London</p>
<p align="center">
<p>The metabolomics community presently utilizes public domain databases such as KEGG, LipidMap, DrugBank and a myriad of other online resources to assist in the analysis of data. However, rich as these resources are, they are limited in scope, are challenged by known data quality issues, and are not directly focused on serving the needs of the metabolomics community. ChemSpider is an online resource for the chemistry community hosted by the Royal Society of Chemistry with the intention of linking together online chemistry resources, cleaning and curating chemistry related data and collectively serving a number of communities. ChemSpider has been used by members of the mass spectrometry community, including instrument vendors, for the past 3 years. This roundtable meeting is to provide an overview of how ChemSpider is presently used by scientists working in the domain of metabolomics and garner feedback from the existing user base as well as new potential users to help define how ChemSpider can be enhanced to further support the needs of this community.</p>
<p>Antony Williams, VP of Strategic Development and host of ChemSpider at RSC, and John Shockcor, Director of Life Sciences Business Development at Waters Corp, invite you to attend this half day meeting to provide input to steer development of ChemSpider to address the needs of the metabolomics community. This meeting will be followed by a public seminar and networking meeting in the RSC’s new Chemistry Center. An outline of the agenda is given below.</p>
<p>If you are interested in attending please express your interest by sending an email to <a href="mailto:williamsa@rsc.org">williamsa@rsc.org</a> by January 21<sup>st</sup>, 2011</p>
<p>12 – 1pm Arrival, Buffet Lunch</p>
<p>1-1:15pm Logistics and Intros</p>
<p>1:15-1:30pm An introduction to ChemSpider, Antony Williams</p>
<p>1:30-2:00pm Integrating ChemSpider and Metabolomics workflows, John Shockcor</p>
<p>2:00-4:00pm Round table discussion – How can ChemSpider expand to support the metabolomics community?</p>
<p>4:00-4:45pm Prioritization process</p>
<p>4:45-5:00pm Summary and Close</p>
<p>5:00-6:00pm Break</p>
<p>6:30pm Public Seminar</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.chemspider.com%2Fblog%2Fa-round-table-meeting-for-metabolomics-and-how-chemspider-can-help.html';
  addthis_title  = 'A+Round-Table+Meeting+for+Metabolomics+and+How+ChemSpider+Can+Help';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.chemspider.com/blog/a-round-table-meeting-for-metabolomics-and-how-chemspider-can-help.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Year Ahead for ChemSpider</title>
		<link>http://www.chemspider.com/blog/the-year-ahead-for-chemspider.html</link>
		<comments>http://www.chemspider.com/blog/the-year-ahead-for-chemspider.html#comments</comments>
		<pubDate>Sun, 02 Jan 2011 06:29:35 +0000</pubDate>
		<dc:creator>Antony Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chemspider.com/blog/?p=2390</guid>
		<description><![CDATA[By now most of you are through the holiday season and recovering from the expenditures, both expected and unexpected, through the late nights and the joy of spending time with friends and family alike. The New Year provides a great time to reflect on the past year and think about what is coming in the [...]]]></description>
			<content:encoded><![CDATA[<p>By now most of you are through the holiday season and recovering from the expenditures, both expected and unexpected, through the late nights and the joy of spending time with friends and family alike. The New Year provides a great time to reflect on the past year and think about what is coming in the year ahead&#8230;and making plans. For ChemSpider it has been a good year. Our reputation has continued to expand, our user base has increased, our staffing has increased and our participation in some major projects both within RSC and with international efforts for managing data have expanded. We won three awards, we recommitted to quality above quantity and we have worked hard to build a team of cheminformatics experts and programmers who can continue the charge to revolutionize the integration and delivery of chemistry-related data.</p>
<p>With this team in place we are set to make a lot of changes and enhancements in the coming year. This will be the year of deprecation. We have been busily flagging &#8220;bad&#8221; data&#8230;obvious errors that have found their way into the database. These will be dealt with, both in our database as well in other databases where we have migrated some of these erroneous data. A usability study has been conducted and the data are being analyzed and reviewed. An action plan to implement the appropriate changes based on this user feedback will be put in place early in 2011. This will be the year of RDF&#8217;ing ChemSpider&#8230;a certain community has been waiting for us to get this in place. We are committed to delivering it. We already started integrating the RSC Publishing Platform with ChemSpider through compound pages&#8230;a project to perform text-mining across the RSC article archive and link to ChemSpider will be initiated in 2011. Our much discussed &#8220;ChemSpider Education&#8221; project is underway and led by <a href="http://www2.potsdam.edu/walkerma/">Martin Walker</a> from SUNY Potsdam. The first view will be exposed at the ACS meeting in Spring. ChemSPider Synthetic Pages will continue to expand with new content and we are already busy assembling hundreds of spectra to deposit onto ChemSpider. We should be able to add another 1000 spectra in the next few weeks.</p>
<p>2011 is going to be an exciting year for ChemSpider&#8230;we hope you visit, give us feedback and challenge us to be our best. We are out to serve you, our community of users.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.chemspider.com%2Fblog%2Fthe-year-ahead-for-chemspider.html';
  addthis_title  = 'The+Year+Ahead+for+ChemSpider';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.chemspider.com/blog/the-year-ahead-for-chemspider.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

