Getting the HTTP Request from a TIBCO BW Process?

I don't think you can get the original request from Java code - simply because you cannot access the HTTPServletRequest object of the HTTP Receiver from a Java activity. If you'd like to access the raw request data, you may write a proxy servlet and access BusinessWorks via this proxy servlet.

I don't think you can get the original request from Java code - simply because you cannot access the HTTPServletRequest object of the HTTP Receiver from a Java activity. If you'd like to access the raw request data, you may write a proxy servlet and access BusinessWorks via this proxy servlet. If your task is only to get stats on the request size, there is a simpler solution.

You can use the "Content-length" header parameter for this reason (w3.org/Protocols/rfc2616/rfc2616-sec14.html). The Content-Length entity-header field indicates the size of the entity-body, in decimal number of OCTETs, sent to the recipient Content-length is an output parameter of the HTTP receiver. You may need to add the length of "RequestURI", "PostData" and "Header" parameters as they are not part of the entity body.

Update: PostData is part of entity-body, therefore its size is included in Content-length.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions