The following issue has been updated:

    Updater: Michael Altenhofen (mailto:[EMAIL PROTECTED])
       Date: Fri, 8 Oct 2004 12:43 AM
    Changes:
             Attachment changed to jelly-tags-soap-patch.txt
    ---------------------------------------------------------------------
For a full history of the issue, see:

  http://issues.apache.org/jira/browse/JELLY-154?page=history

---------------------------------------------------------------------
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: Fri, 8 Oct 2004 12:43 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]

Reply via email to