|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.commons.jelly.TagSupport
org.apache.commons.jelly.tags.http.HttpTagSupport
org.apache.commons.jelly.tags.http.PostTag
org.apache.commons.jelly.tags.http.MultipartPostTag
public class MultipartPostTag
A Multipart MIME message post This tag should contain one or more <part> tags, to specify the multiple parts of the message Example:
<mppost uri="http://localhost?doit"> <part name="user" type="text/plain">Fred</part> <part name="data" type="text/plain">This is the second part of the message</part> </mppost>
Field Summary | |
---|---|
private java.util.List |
_parts
list of parts as name value pairs |
private org.apache.commons.httpclient.methods.MultipartPostMethod |
_postMethod
the post method |
Fields inherited from class org.apache.commons.jelly.TagSupport |
---|
body, context, hasTrimmed, parent, shouldTrim |
Constructor Summary | |
---|---|
MultipartPostTag()
Creates a new instance of MppostTag |
Method Summary | |
---|---|
void |
addPart(org.apache.commons.httpclient.methods.multipart.Part p)
Add a part to the message |
protected org.apache.commons.httpclient.HttpMethod |
getHttpMethod()
Return a method to be used for multi-part post'ing |
protected void |
setParameters(org.apache.commons.httpclient.HttpMethod method)
Set the current parameters on the url method ready for processing This method basically It must be called after getHttpUrlMethod |
Methods inherited from class org.apache.commons.jelly.tags.http.HttpTagSupport |
---|
addParameter, addRequestHeader, doTag, getParameters, getPath, getRequestHeaders, getResolvedUrl, getUri, getVar, isFollowRedirects, setFollowRedirects, setParameters, setPath, setRequestHeaders, setUri, setVar |
Methods inherited from class org.apache.commons.jelly.TagSupport |
---|
findAncestorWithClass, findAncestorWithClass, findAncestorWithClass, findAncestorWithClass, findAncestorWithClass, findAncestorWithClass, getBody, getBodyText, getBodyText, getContext, getParent, invokeBody, isEscapeText, isTrim, setBody, setContext, setEscapeText, setParent, setTrim, trimBody |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private org.apache.commons.httpclient.methods.MultipartPostMethod _postMethod
private java.util.List _parts
Constructor Detail |
---|
public MultipartPostTag()
Method Detail |
---|
protected org.apache.commons.httpclient.HttpMethod getHttpMethod() throws java.net.MalformedURLException
method
to be used for multi-part post'ing
getHttpMethod
in class PostTag
java.net.MalformedURLException
- when the url
or
path
is invalidpublic void addPart(org.apache.commons.httpclient.methods.multipart.Part p)
name
- the parameter namevalue
- the parameter valueprotected void setParameters(org.apache.commons.httpclient.HttpMethod method)
getHttpUrlMethod
setParameters
in class PostTag
method
- the method
to configure
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |