In a RESTful Call to this service:
https://www.googleapis.com/language/translate/v2?key=&q=%val%&source=%inLang%&target=%outLang%&prettyprint=false
The input parameter q is query that can contain any characters, including spaces(%20), etc...
The question is what is the best way within the jopera framework to escape the parameters in order to be use in the HTTP adapter in a GET call?
should we use a JS script to encode the parameter?
Thanks,
Manuel
Hello,
Could you help me please?
I want to know the source of this problem: "broken cardinlity contraints . cannot connect them"
How to change a cardinality of a branch?
Best Regards
Nabil
Hi,
Firstly, Thank you for JOpera, it is an excellent tool! I'm learning its functionality and trying to evaluate it.
This message is to report a Condor adapter issue:
*.sub files lose the line with "queue" command during staging from local host (Eclipse with JOpera) to condor submission host. And Condor adapter programs (in eclipse 3.5, eclipse 3.5.1, on Windows XP) exit with error message:
-----------------------------------------------
Submission failed
ch.ethz.jopera.subsystems.condor.api.CondorException: JOB SUBMISSION FAILED
Submitting job(s)
Hello JOpera team:
When I run DoodleMap in Eclipse, I meet a problem.
The process stop at PostDoodlePoll, and the following is the errormsg
errormsg IOException: Server returned HTTP response code: 400 for URL:
http://doodle-test.com/api1WithoutAccessControl/polls
A binary distribution of JOpera for Eclipse is currently available from this site. The latest version of JOpera is 2.6.0
To download and install JOpera,
simply tell Eclipse about the JOpera update site:
http://www.update.jopera.org/
You can also install JOpera from the command line.
JOpera 2.6.0 and above runs on Eclipse 3.7 Indigo on Java 1.6
JOpera 2.5.4 and above runs on Eclipse 3.6 Helios (32bit) on Java 1.6
JOpera 2.5.0 and above runs on Eclipse 3.6 Helios (32bit) on Java 1.5/1.6
JOpera 2.4.6 and above runs on Eclipse 3.5 Galileo on Java 1.5/1.6
Dear All
How do I start a process on Window
i can't run eclipse always to use the WSDL file
please help me
Thanks
Err
errkum@hotmail.com
Dear JOpera Team
Thank you for your cooperation and brilliant support.
I hope to call Java methods in other eclipse project from my JOpera Project. How to perform that?
Best Regards
Dear JOpera Team
I hope you are fine
I need to know how to call Parametrized JOpera Program/Process by AJAX
Best Regards
Mahmoud
I am working in a class project to demo RESTful web service workflows. The idea is to use different web services available online: e.g Google Services...
I implemented a HTTP adapter to perform a GET to the Google Translation RESTful Web Service.
The URL is https://www.googleapis.com/language/translate/v2?key=%key%&q=%val%&sourc...
The response of this call is given as JSON only (No XML support), and the format is:
{
"data": {
"translations": [
{
"translatedText": "fleurs"
}
]
}
}