[JBoss JIRA] Created: (JBREM-728) Improve access to HTTP response headers
by Thomas Diesler (JIRA)
Improve access to HTTP response headers
---------------------------------------
Key: JBREM-728
URL: http://jira.jboss.com/jira/browse/JBREM-728
Project: JBoss Remoting
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Affects Versions: 2.2.0.Alpha7
Reporter: Thomas Diesler
Assigned To: Tom Elrod
JAXWS needs access to the HTTP response headers
/**
* Standard property: HTTP response headers.
* <p>Type: java.util.Map<java.lang.String, java.util.List<java.lang.String>>
*/
public static final String HTTP_RESPONSE_HEADERS = "javax.xml.ws.http.response.headers";
Currently remoting copies these headers to the metadata and I can access them doing a little guess work like this
// Get the HTTP response headers
Map<String, List> headers = new HashMap<String, List>();
for (Map.Entry en : msgContext.entrySet())
{
if (en.getKey() instanceof String && en.getValue() instanceof List)
headers.put((String)en.getKey(), (List)en.getValue());
}
msgContext.put(MessageContext.HTTP_RESPONSE_HEADERS, headers);
I suggest remoting copies the concept of accessing the headers through a single property
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 1 month
[JBoss JIRA] Created: (JBPM-1077) Build process for whole jBPM is failing on BPEL clean
by Jiri Pechanec (JIRA)
Build process for whole jBPM is failing on BPEL clean
-----------------------------------------------------
Key: JBPM-1077
URL: http://jira.jboss.com/jira/browse/JBPM-1077
Project: JBoss jBPM
Issue Type: Bug
Components: BPEL, Core Engine
Reporter: Jiri Pechanec
Assigned To: Tom Baeyens
Priority: Blocker
See the mail exchange with Tom B,
Check this
http://dev45.qa.atl.jboss.com:8585/hudson/job/JBPM.3_db2-8.2/
This error happend beforu you introduced error you have described
J.
On Mon, 05 Nov 2007 15:32:44 +0100, Tom Baeyens <tbaeyens(a)redhat.com> wrote:
just to make sure that we fix the right problem: i see a different error message. where did you find your error message?
regards, tom.
http://dev45.qa.atl.jboss.com:8585/hudson/job/JBPM.3/lastBuild/console
...
[get] Not modified - so not downloaded
[get] Getting: http://repository.jboss.org/jasperreports/2.0.2/lib/jasperreports.jar
[get] To: /home/hudson/static_build_env/jbpm/repository/jasperreports/2.0.2/lib/jasperreports.jar
[get] Not modified - so not downloaded
[get] Getting: http://repository.jboss.org/jfreechart/1.0.2/lib/jfreechart.jar
[get] To: /home/hudson/static_build_env/jbpm/repository/jfreechart/1.0.2/lib/jfreechart.jar
[get] Not modified - so not downloaded
BUILD FAILED
/qa/services/hudson/hudson_workspace/workspace/JBPM.3/build/build.xml:336: java.net.MalformedURLException: no protocol: ${lib.jcommon.remote}
Total time: 3 seconds
Recording test results
Sending e-mails to: jboss-qa-internal(a)redhat.com dev-jbpm(a)jboss.com
finished: FAILURE
Jiri Pechanec wrote:
Hi Tom,
could you please check the jBPM ant scripts?
We are getting this error message
BUILD FAILED
/qa/services/hudson/hudson_workspace/workspace/JBPM.3/build/build.xml:28: The following error occurred while executing this line:
/qa/services/hudson/hudson_workspace/workspace/JBPM.3/bpel/examples/build.xml:44: The following error occurred while executing this line:
/qa/services/hudson/hudson_workspace/workspace/JBPM.3/bpel/examples/build.xml:33: The following error occurred while executing this line:
Target `deploy-webservice' does not exist in this project. It is used from target `main'.
Thanks in advance
J.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 1 month