The following comment has been added to this issue:
Author: Michael Altenhofen
Created: Wed, 13 Oct 2004 4:11 AM
Body:
Ok,
maybe my example was a bit misleading. What you cannot do in the current version is
something like this:
<j:set
var="endpoint">http://aws-beta.amazon.com/onca/soap?Service=AWSProductData</j:set>
<j:set var="namespace"/>
<j:set var="method">ItemSearch</j:set>
<soap:invoke endpoint="${endpoint}" namespace="${namespace}" method="${method}">
<SubscriptionId>xxx</SubscriptionId>
<Request>
<Keywords>Perl</Keywords>
<SearchIndex>Books</SearchIndex>
</Request>
</soap:invoke>
As I understand the code, the current version would turn that parameter set into one
parameter object (essentially a String).
Using the original code I couldn't get the Amazon WS reply something useful.
To me, it looks "natural" that I can just "inline" the SOAPBody part of the call.
---------------------------------------------------------------------
View this comment:
http://issues.apache.org/jira/browse/JELLY-154?page=comments#action_53986
---------------------------------------------------------------------
View the issue:
http://issues.apache.org/jira/browse/JELLY-154
Here is an overview of the issue:
---------------------------------------------------------------------
Key: JELLY-154
Summary: invoke tag should allow to support literal parameters in nested tags
Type: Improvement
Status: Unassigned
Priority: Major
Project: jelly
Components:
taglib.soap
Assignee:
Reporter: Michael Altenhofen
Created: Fri, 8 Oct 2004 12:42 AM
Updated: Wed, 13 Oct 2004 4:11 AM
Description:
The current version (1.6) of InvokeTag's doTag method does not allow me to write
something like this:
<?xml version="1.0"?>
<j:jelly trim="false" xmlns:soap="jelly:soap" xmlns:j="jelly:core"
xmlns:ju="jelly:util">
<j:catch var="ex">
1. Define variables to hold invocation parameters
<j:set
var="endpoint">http://aws-beta.amazon.com/onca/soap?Service=AWSProductData</j:set>
<j:set var="namespace"/>
<j:set var="method">ItemSearch</j:set>
2. Load the parameters for the call from the file itemssearch_params.xml
<ju:loadText file="itemsearch_params.xml" var="params"/>
3. Invoke the web service using the parameters we've just read in
<soap:invoke endpoint="${endpoint}" namespace="${namespace}"
method="${method}">${params}</soap:invoke>
</j:catch>
<j:if test="${ex != null}">
Execption ${ex.message} occured
</j:if>
</j:jelly>
I've posted this issue into standard bugzilla (Bug #31542) but was advised to post it
here again.
---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
If you want more information on JIRA, or have a bug to report see:
http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]