Search

Results 21 - 30 of 239

Search results

HTTP Adapter: urlstring parameters no longer escaped by default ... How to escape parameters?

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

Problem: "broken cardinality constraints. cannot connect them"

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

issue with Condor adapter

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)

DoodleMap failure

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

How do I start a process on Window

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

Download JOpera

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.

System Requirements

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

REST API (DELETE, JSON)

REST API (DELETE, JSON)

Respond to any REST verb using the REST adapter (including DELETE). Test your processes using CURL and integrate them easily from JavaScript clients thanks to their JSON representation.

Call Java methods from other eclipse project

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

How to call Parametrized JOpera Program/Process by AJAX

Dear JOpera Team

I hope you are fine

I need to know how to call Parametrized JOpera Program/Process by AJAX

Best Regards
Mahmoud

Parse JSON response from a RESTful call

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"
}
]
}
}