Projects tagged ‘api’ and ‘soap’


Jump to tag:

Projects tagged ‘api’ and ‘soap’

Filtered by Project Tags api soap

Refine results Project Tags php (8) adwords (7) google (6) wsdl (6) xml (4) python (4) library (3) client (3) soa (3) java (3) sample (3) webservice (2)

[25 total ]

2 Users

Confluencer is a FrontEnd of Atlassian Confluence. It's written in Delphi 7 Ent using Confluence Remote API. Confluencer.NET is written in C#. http://confluence.atlassian.com/display/CONFEXT/Confluencer
Created about 1 year ago.

1 Users

python-fedex is a Python module for using Fedex's Web Services SOAP API. The module makes use of the excellent suds package.
Created 3 months ago.

0 Users

WEBVision SA is a common platform to comunicate with web applications and webservices.
Created 12 months ago.

0 Users

A collection of Tools and Plugins (mostly for Wordpress) using the YiGG API
Created 3 months ago.

0 Users

XPlanner provides a SOAP interface. This is a Perl-based wrapper around that interface that makes it easier for Perl developers to work with XPlanner through web services.
Created 12 months ago.

0 Users

Google's AdWords API service lets developers design programs that interact directly with the AdWords platform. With these applications, advertisers and third-parties can more efficiently - and ... [More] creatively - manage their large or complex AdWords accounts and campaigns. The AdWords API Ruby Client Library makes it easier to write Ruby clients to programmatically access AdWords accounts. FeaturesSupport for logging incoming and outgoing SOAP messages Support for logging request information Support for API calls to the production or Sandbox environments Support for tracking API unit usage Report downloading in XML and CSV formats Extensions for returning breakdown of API usage per client account or API method Utility methods for retrieving lists of commonly used codes (categories, countries, etc.) Local validation for parameter number and type on API calls RDoc documentation and unit tests Thread-safe Note: if you're looking for examples of how to use this library, they're included with the tarball and also available on the repository. You can find them at http://code.google.com/p/google-api-adwords-ruby/source/browse/#svn/trunk/examples --AdWords API Team [Less]
Created about 1 year ago.

0 Users

Simple, lightweight and works with LabManager 4.0
Created 2 months ago.

0 Users

Another Amazon AWS SimpleDB wrapper?Yes, this is yet another wrapper for Amazon SimpleDB. First of all, despite the REST hype, I still see SOAP + WS standards as a much more mature platform for ... [More] enterprise development. Second, there needs to be an authority that keeps APIs in synch with latest Amazon AWS WSDLs. I would like to utilize my development team to help become such an authority, hopefully with your help. And by help I mean user community. Please use this API if you like it or not ;) Since all the projects we are involved in make use of Spring framework, we decided to make heavy use of it here as well. We are actively using Apache ServiceMix and Progress Fuse OSGi-containers, that is why the project is using Maven with PAX to create OSGi bundles. If you are not using OSGi, you can treat this library as a regular jar. We love Apache CXF (untill we ran into issues with EC2 WSDL and wsdl2java :)) and use it as to help out with SOAP stuff. UsageAt first, check out our unit tests to get the best idea about SimpleDB client. The API is very simple to use once you configure everything. // Get all domains. SimpleDB simpledb = (SimpleDB) context.getBean("simpleDB"); Iterator> domainsIterator; try { domainsIterator = simpledb.getDomains(); while (domainsIterator.hasNext()) { List domains = (List) domainsIterator.next(); for (Domain domain : domains) { System.out.println(domain.getName()); } } } catch (SimpleDBException e) { // TODO Auto-generated catch block e.printStackTrace(); } // Issue select. Iterator> itemIterator; try { itemIterator = simpledb.select("select * from Domain where LN='Party' and city like 'Buck%'"); while (itemIterator.hasNext()) { List items = (List) itemIterator.next(); for (Item item : items) { System.out.print(item.getIdentifier()); List attributes = item.getAttributes(); for (ItemAttribute attribute : attributes) { System.out.print(attribute.getName() + "=" + attribute.getValue() + " , "); System.out.println(); } } } } catch (SimpleDBException e) { // TODO Auto-generated catch block e.printStackTrace(); }Spring Context aws.propertiesamazonaws.simpledb.url=https\://sdb.amazonaws.com keystore.alias=REPLACEME signaturePropFile=clientKeystore.properties encryptionPropFile=clientKeystore.properties signatureParts={Element}{http\://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd}Timestamp;{Element}{http\://schemas.xmlsoap.org/soap/envelope/}BodyclientKeystore.propertiesorg.apache.ws.security.crypto.provider=org.apache.ws.security.components.crypto.Merlin org.apache.ws.security.crypto.merlin.keystore.type=jks org.apache.ws.security.crypto.merlin.keystore.password=REPLACEME org.apache.ws.security.crypto.merlin.keystore.alias=REPLACEME org.apache.ws.security.crypto.merlin.file=awskeystore.jksawskeystore.jksThis is your java keystore file. Obviously, you can rename it, just make sure you update clientKeystore.properties accordingly. This is the most complex step of the entire setup. Unlike REST, SOAP needs a keystore file, composed of a pair: your Amazon x509 certificate (xxx.pem) and your Amazon private key. Unfortunatelly, java keygen utility cannot create a keystore using exising certificate + private key. To create, the keystore, please follow these instructions. In couple of days we will provide a utility that will simplify things. http://www.agentbob.info/agentbob/79-AB.html Contains Instructions http://www.slproweb.com/products/Win32OpenSSL.html Contains Windows OpenSSL install instructions. Here is what had to do: openssl pkcs8 -topk8 -nocrypt -in pk-YOURPRIVATEKEY.pem -inform PEM -out C:\Users\netflexity\Documents\pk-YOURPRIVATEKEY.der -outform DER openssl x509 -in cert-YOURX509.pem -inform PEM -out cert-YOURX509.der -outform DER java ImportKey C:\\Users\\xx\\xx\\projects\\workspace-fuse\\netflexitysolutions.amazonws.sdb\\src\\test\\resources\\pk-YOURPRIVATEKEY.der C:\\Users\\netflexity\\development\\projects\\workspace-fuse\\netflexitysolutions.amazonws.sdb\\src\\test\\resources\\cert-YOURX509.cer YOUR-KEYSTORE-ALIAS [Less]
Created 4 months ago.

0 Users

The APIlity PHP Library provides an object-oriented way to easily access and manage the Google AdWords API from within PHP. This comes along with an abstraction from the SOAP and WSDL details. The ... [More] name APIlity is a wordplay on 'API' and 'ability', symbolizing that the AdWords API gives you the ability to do whatever you ever wanted to do with AdWords, and even more. [Less]
Created 12 months ago.

0 Users

Google's AdWords API service lets developers design computer programs that interact directly with the AdWords platform. With these applications, advertisers and third parties can more efficiently -- ... [More] and creatively -- manage their large or complex AdWords accounts and campaigns. AdWords API Java Client Library makes it easier to write Java clients to programmatically access AdWords accounts. FeaturesSingle jar file with precompiled stub classes to write Java clients Outgoing and incoming SOAP message are monitored and logged on demand Support for API calls to production system or sandbox Tracking of all API usage Loading of user credentials from local file or source code Online documentation -- AdWords API Team Updates 10/22/09 Java client library v6.0.0 released: updates for v200909 generated code. Download here 7/21/09 Java client library v5.1.0 released: updates for v200906 generated code. Download here 7/02/09 Javadocs now hosted online. Visit here [Less]
Created 12 months ago.