You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by Apache Wiki <wi...@apache.org> on 2006/07/18 05:00:19 UTC

[Struts Wiki] Update of "StrutsSolutions" by MichaelJouravlev

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification.

The following page has been changed by MichaelJouravlev:
http://wiki.apache.org/struts/StrutsSolutions

The comment on the change is:
Extracted web service info to StrutsWebService page

------------------------------------------------------------------------------
  
  5. Opening a response in a new window from a Struts Action
  
- 6. ["Comparison using nested tag vs JSTL for nested objects on form"]
- 
- 7. A plug & play solution to adding a "please wait" page to any Struts action: [StrutsPleaseWait]
  
  8. How do I include an anchor name when forwarding from an Action? (i.e., how can I make the page returned to the browser jump to a specific section out of an Action?)
  
@@ -134, +131 @@

  }
  }}}
  
- 4. Please see [url]http://sourceforge.net/projects/strutsws/ for complete details, but in brief... 
- 
- I decided that, in my case at least, the easiest path "into the application" that could be exposed as a service would actually be the Actions themselves.  You may ask, assuming the application was architected properly and the Actions delegated out work to business classes (that IS the case), why not just expose the business classes?  The answer is that I wanted to leverage all the form validation and security built in to the app (it was a custom security solution).  Because of this, I needed Struts to "do it's thing" leading up to the business class execution.
- 
- My solution was to write a custom request processor that could recognize a Web Service request (SOAP over HTTP).  It would be able to "unroll" the SOAP request, then let Struts process the request as it usually would, and then render the response.  My solution does this.
- 
- I don't claim this is THE way to do Web Services.  Far from it.  What I WILL claim though is that if you have an existing application and you want to expose parts of it as Web Services, this solution can give you a very easy way to do it, with some limitations of course...  First, it is Struts 1.1-only at the moment.  Second, the incoming request must be "flat", that is, no nested elements are allowed (aside from children of the root element).  Third, only strings are supported, so you lose the notion of true data typing that SOAP gives you.
- 
- All these details, and plenty more, as well as full source, are available at the linked address above.  I welcome any suggestions anyone has.  Although I haven't done much on this in a while (because it met my needs as-is), I would love to continue this work if enough people find it useful.
- 
- 5. Simply put, there is no way to do this.  Opening a new window is a strictly client-side activity.  You have to "fake it".  There's two ways to do it...
- 
- First, you could simply target your HTML form using the target="_blank" attribute.  This will result in whatever response the server sends back appearing in a new window.  The down-side to this is you have to know before-hand to do this.  If you want a variable solution, you have to get into scripting... You can set the target attribute's value via client-side scripting as appropiate before submitting the form.
- 
- Second, you could have a check in all JSP's that looks for some flag in the request object.  When present, the JSP inserts an onLoad Javascript event handler that opens the new window and redirects to the URL where the content can be found.
- 
- Another possibility if you are using frames is to target all form submissions to a hidden frame.  Include in all pages some Javascript that performs some checks and handles things accordingly... I use this in one system I wrote... The checks I'm speaking of are based on some flag value in the request object (just insert the value into a page-level Javascript variable)... The flag may direct the page to copy itself to the main display frame, or to a new window.  The former is a very nice way to have a "Please Wait" screen while the server is processing.  The later is the same basic idea, but in a new window.  This also allows you to do some nice error handling things, such as simply hiding the Please Wait layer in the main frame to expose the page as it existed before the form was submitted.  Nice way to debuild a page without incurring any server time.  But now I'm getting off on a tangent :)
- 
- The bottom-line here is this: There is no way to direct the browser to open the response in a new window from an Action.  You either have to indicate you want this behavior when the form is submitted, or make it happen with scripting once the response is back at the browser.  At least, this is true within the confines of plain old HTML... You could always pull an applet out and do something like this!
  
  8. In theory at least (can someone verify this, I'm being lazy!) you could actually name your forward "myForward#something", and it should work.  However, this ties your page design a little too much to your Struts config, and that's probably not a good idea.  The better solution is to use a little snippet of Javascript on the client like so: