If you don't wanna use frames you can stream a page from magnolia as
you were doing before, but if its a secured site you need to send
Authorization header
instead of getting an output stream from a URL (as gathered from your
initial post), do something like
URLConnection connection = url.openConnection()
connection.setRequestProperty("Authorization", request.getHeader
("Authorization"));
.... = connection.getInoutStream();
....
hope this helps
Regards,
- Sameer
On May 4, 2006, at 12:20 PM, Robert Weber wrote:
I've tested it and it works. I talked to my customer and they don't
want to use any frames, so is there any workaround or another
solution?
Robert.
----------------------------------------------------------------
for list details see
http://www.magnolia.info/en/magnolia/developer.html
----------------------------------------------------------------