I am new in codenameone. i wanna consume ASP.Net WSDL web service in which i have to send one parameter with his value. I have implemented it in android using ksoap library but don't know how to do it in coodenameone.
Please help.
Codename One currently doesn't support SOAP functionality, this is planned for the future but for now you will need to package your own envelope as explained in this discussion forum post.
Related
I know cn1 has native support for Google Analytics. How can we get the same for Adobe Analytics?
The AppMeasurement java API is described here.
Cheers,
The documents you link pertain to JavaSE/EE not for mobile or web so I'm not sure how practical they are. You need to look for web service based documents and implement the required calls into the webservice.
You can also use the JavaEE version on your server and open a webservice yourself or use a native OS SDK if available.
To bind it to Codename One you can derive the AnalyticsService class and just call the init method with your own derived instance. Then calls to visit can be mapped to the Adobe implementation.
Does anyone know if Google is planning to release a end point client library for GWT ?
Regards.
Google is no longer developing GWT (on is own) so the answer is no BUT some people are creating GWT library to communicate with REST APIs (whatever the technology behind is: JAX-RS, endpoints ...).
Look at RestyGWT
RestyGWT is a GWT generator for REST services and JSON encoded data
transfer objects.
Such a client library already exists:
https://code.google.com/p/gwt-google-apis/
I am being asked to make some developments on salesforce. Is there anyway to do it using .Net instead of Apex?
It depends on exactly what you're trying to do, there are Web Services APIs you can call from .NET, but you can not run native .NET code on the salesforce servers.
How to integrate solr net in asp.net site. I am new and having little idea. After searching on google i am confused from where i should start. Please refer me some ref. link from where i can do this in better way. Thakns.
Your best option is to use SolrNet. It has the capability to parse a Solr response into a .Net object. Please see the examples on the SolrNet site for examples of how to setup the library to query and parse the responses. Also, if you check out the SolrNet source code on GitHub, it includes a sample ASP.NET MVC application that shows a great examples of using the library. Please note that if you do not have an MVC site, the code shown in the sample app can be applied in a Web Forms application.
I want to use twitter web service in my silverlight application but don't know where I can find skd and web service reference for the twitter ?
When using twitter API with silverlight or any .net client app, you cannot just add a service reference to the project. You have to hand code and make direct calls to each feature you require. You should go through the their API wiki here and a tutorial here.
If you want things done fast, use a library like tweetsharp.