lilantha    2003/07/24 22:00:28

  Modified:    c/src/server/apache mod_axis.c
  Log:
  fix content type to be text/xml
  
  Revision  Changes    Path
  1.3       +1 -1      xml-axis/c/src/server/apache/mod_axis.c
  
  Index: mod_axis.c
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/server/apache/mod_axis.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- mod_axis.c        24 Jul 2003 06:53:23 -0000      1.2
  +++ mod_axis.c        25 Jul 2003 05:00:28 -0000      1.3
  @@ -89,7 +89,7 @@
   
        sstr = malloc(sizeof(soapstream));
        sstr->trtype=APTHTTP;
  -     r->content_type = "text/html";
  +     r->content_type = "text/xml"; //for SOAP 1.2 this this should be 
"application/soap+xml" but keep this for the moment
        //set up the read policy from the client.
        if ((rc = ap_setup_client_block(r, REQUEST_CHUNKED_ERROR)) != OK)
        {
  
  
  

Reply via email to