Re: How send svg content to browser as response

2006-09-06 Thread Giorgio Clavelli
I'm not sure if this can help, but some time ago, I played around SVG (only with Firefox implementation) and was able, after my search homework to have SVG content in a JSP file. If you are just mocking around and hasn't strict requirements on using specifically servlet, then have a look at this p

Re: How send svg content to browser as response

2006-09-05 Thread prad
Hi , Am sorry...Actually i was wrong...While posting i made a mistake Here it is... public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.s

Re: How send svg content to browser as response

2006-09-05 Thread Giorgio Clavelli
If you are targeting firefox's svg implementation. Have a read at this first: http://jwatt.org/svg/authoring/ On 9/5/06, Markus Schönhaber <[EMAIL PROTECTED]> wrote: prad wrote: > Am processing some svg files on server side and after processing i need to > send the svg as response...I set the m

Re: How send svg content to browser as response

2006-09-05 Thread Markus Schönhaber
prad wrote: > Am processing some svg files on server side and after processing i need to > send the svg as response...I set the mime type as "image/svg+xml" > and tried the below code What has this servlet... > public void doGet(HttpServletRequest request, > HttpServletResp

RE: How send svg content to browser as response

2006-09-05 Thread Peter Crowther
> From: prad [mailto:[EMAIL PROTECTED] > Am processing some svg files on server side and after > processing i need to > send the svg as response...I set the mime type as "image/svg+xml" > and tried the below code > > public void doGet(HttpServletRequest request, > HttpSer