HighTechTalks DotNet Forums  

Preventing Escapes in Post

ASP.net Web Services microsoft.public.dotnet.framework.aspnet.webservices


Discuss Preventing Escapes in Post in the ASP.net Web Services forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
SevDer
 
Posts: n/a

Default Preventing Escapes in Post - 08-26-2007 , 02:49 AM






Hi,

I am trying to consume the webservice which is written with Java through the
provided wsdl & xsd definitions.
However there is a slight problem.

Problem is, they are expecting a clean XML but .NET converts my query XML
into escaped form into the SOAP body which makes their service to respond in
the following form:

<?xml version="1.0" encoding="utf-8"?><soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><soapenv:Fault><faultcode> soapenv:Server.userException</faultcode><faultstring>java.lang.IndexOutOfBoundsE xception:
Index: 0, Size: 0</faultstring><detail><ns1:hostname
xmlns:ns1="http://xml.apache.org/axis/">trajanoxp</ns1:hostname></detail></soapenv:Fault></soapenv:Body></soapenv:Envelope>


Now my question is: Is there a way to prevent this escaping? Or I must write
all the soap from string and send the whole XML string manually?

Thanks for your help in advance.

--

SevDer
www.sevder.com


Reply With Quote
  #2  
Old   
John Saunders [MVP]
 
Posts: n/a

Default Re: Preventing Escapes in Post - 08-26-2007 , 01:13 PM






"SevDer" <sevder (AT) newsgroup (DOT) nospam> wrote

Quote:
Hi,

I am trying to consume the webservice which is written with Java through
the provided wsdl & xsd definitions.
However there is a slight problem.

Problem is, they are expecting a clean XML but .NET converts my query XML
into escaped form into the SOAP body
Obviously, this is not something that .NET does on its own, or everyone
would have this problem. This obviously has to do with the way that you are
using .NET.

Please tell us how you are producing the XML.

Also, is there a reason that you didn't just consume the web service by
using Add Web Reference in Visual Studio?
--
John Saunders [MVP]



Reply With Quote
  #3  
Old   
SevDer
 
Posts: n/a

Default Re: Preventing Escapes in Post - 08-26-2007 , 03:15 PM



Hello John,

Thanks for the reply.

I think you should check this again. I've learned that .NET actually escapes
the inner XML to prevent bad XML forming on some cases. And as far as I
learned this is the behavior of .NET not the way that I use.
Additionally the otherway around problem is there too. For your webservice
to work with other applications, you will need to escape all received inner
XMLs as they (like Java) send it as nonescaped form.

Also I added as web reference and I am trying to make the webreference to
work not any other way. If I cannot make this working, then I will have to
POST using regular HTTP Post and not use wsdl reference.

And their WSDL defined method calls does not accept structured objects but
simple and generic object which actually is simple XML.

The bottom line is, I am just trying to learn if there is a way for .NET to
not to escape my request XML while sending over!

--

Sevket Seyalioglu
CTO
www.kbstours.com
"John Saunders [MVP]" <john.saunders at trizetto.com> wrote

Quote:
"SevDer" <sevder (AT) newsgroup (DOT) nospam> wrote in message
news:7B84F435-B90B-40F7-8DF8-77C419164289 (AT) microsoft (DOT) com...
Hi,

I am trying to consume the webservice which is written with Java through
the provided wsdl & xsd definitions.
However there is a slight problem.

Problem is, they are expecting a clean XML but .NET converts my query XML
into escaped form into the SOAP body

Obviously, this is not something that .NET does on its own, or everyone
would have this problem. This obviously has to do with the way that you
are using .NET.

Please tell us how you are producing the XML.

Also, is there a reason that you didn't just consume the web service by
using Add Web Reference in Visual Studio?
--
John Saunders [MVP]



Reply With Quote
  #4  
Old   
John Saunders [MVP]
 
Posts: n/a

Default Re: Preventing Escapes in Post - 08-26-2007 , 09:14 PM



"SevDer" <sevder (AT) newsgroup (DOT) nospam> wrote

Quote:
Hello John,

Thanks for the reply.

I think you should check this again. I've learned that .NET actually
escapes the inner XML to prevent bad XML forming on some cases. And as far
as I learned this is the behavior of .NET not the way that I use.
Additionally the otherway around problem is there too. For your webservice
to work with other applications, you will need to escape all received
inner XMLs as they (like Java) send it as nonescaped form.

Also I added as web reference and I am trying to make the webreference to
work not any other way. If I cannot make this working, then I will have to
POST using regular HTTP Post and not use wsdl reference.

And their WSDL defined method calls does not accept structured objects but
simple and generic object which actually is simple XML.

The bottom line is, I am just trying to learn if there is a way for .NET
to not to escape my request XML while sending over!
I promise you that, as a general rule, .NET doesn't prevent people from
using XML by escaping it. You are clearly using it in a way that other
developers do not use it - they are succeeding and you are failing.

Please post some code showing us how you are using XML. Among other things,
your mention of "inner xml" is frightening. You are doing something very
strange.

Please look at some of the following links on Web Service basics.

Overview of XML Web services:

http://msdn2.microsoft.com/en-us/library/7bkzywba.aspx



A walkthrough of building a basic XML Web service:

http://msdn2.microsoft.com/en-us/library/7hs6sw69.aspx



A walkthrough of building a basic client application:

http://msdn2.microsoft.com/en-us/library/hk7y1596.aspx



Serializing objects with XML web services

http://msdn2.microsoft.com/en-us/library/564k8ys4.aspx
--
John Saunders [MVP]




Reply With Quote
  #5  
Old   
Steven Cheng[MSFT]
 
Posts: n/a

Default Re: Preventing Escapes in Post - 08-27-2007 , 12:08 AM



Thanks for John's input.

Hello SevDer,

I agree that the problem should be quite specific to the service and its
requirement on the SOAP message format. Would you provide some further
information on the service(such as the format and structure of the SOAP
message it expects from client). Normally, for any string value inside XML
document(include SOAP envelope), it have to escape those special characters
so as to ensure the validity of the document. If the customzation requests
for your scenario does be reasonable, we may look for some ways to
customize the client proxy class.

Please feel free to post here if there is anything we've missed.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead



==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.



Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================


This posting is provided "AS IS" with no warranties, and confers no rights.



--------------------
Quote:
From: "John Saunders [MVP]" <john.saunders at trizetto.com
References: <7B84F435-B90B-40F7-8DF8-77C419164289 (AT) microsoft (DOT) com
OiPtxRA6HHA.4584 (AT) TK2MSFTNGP03 (DOT) phx.gbl
<7267F6E2-FD37-4E29-84F2-55937C3B6D13 (AT) microsoft (DOT) com>
Quote:
Subject: Re: Preventing Escapes in Post
Date: Sun, 26 Aug 2007 21:14:58 -0400
Lines: 58
Organization: The TriZetto Group, Inc.
MIME-Version: 1.0
Content-Type: text/plain;
format=flowed;
charset="iso-8859-1";
reply-type=response
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138
Message-ID: <O0UuveE6HHA.1148 (AT) TK2MSFTNGP05 (DOT) phx.gbl
Newsgroups: microsoft.public.dotnet.framework.aspnet.webservic es
NNTP-Posting-Host: pool-71-184-5-216.bstnma.east.verizon.net 71.184.5.216
Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSF TNGP05.phx.gbl
Xref: TK2MSFTNGHUB02.phx.gbl
microsoft.public.dotnet.framework.aspnet.webservic es:1413
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.webservic es

"SevDer" <sevder (AT) newsgroup (DOT) nospam> wrote in message
news:7267F6E2-FD37-4E29-84F2-55937C3B6D13 (AT) microsoft (DOT) com...
Hello John,

Thanks for the reply.

I think you should check this again. I've learned that .NET actually
escapes the inner XML to prevent bad XML forming on some cases. And as
far
as I learned this is the behavior of .NET not the way that I use.
Additionally the otherway around problem is there too. For your
webservice
to work with other applications, you will need to escape all received
inner XMLs as they (like Java) send it as nonescaped form.

Also I added as web reference and I am trying to make the webreference
to
work not any other way. If I cannot make this working, then I will have
to
POST using regular HTTP Post and not use wsdl reference.

And their WSDL defined method calls does not accept structured objects
but
simple and generic object which actually is simple XML.

The bottom line is, I am just trying to learn if there is a way for .NET
to not to escape my request XML while sending over!

I promise you that, as a general rule, .NET doesn't prevent people from
using XML by escaping it. You are clearly using it in a way that other
developers do not use it - they are succeeding and you are failing.

Please post some code showing us how you are using XML. Among other
things,
your mention of "inner xml" is frightening. You are doing something very
strange.

Please look at some of the following links on Web Service basics.

Overview of XML Web services:

http://msdn2.microsoft.com/en-us/library/7bkzywba.aspx



A walkthrough of building a basic XML Web service:

http://msdn2.microsoft.com/en-us/library/7hs6sw69.aspx



A walkthrough of building a basic client application:

http://msdn2.microsoft.com/en-us/library/hk7y1596.aspx



Serializing objects with XML web services

http://msdn2.microsoft.com/en-us/library/564k8ys4.aspx
--
John Saunders [MVP]





Reply With Quote
  #6  
Old   
KBSTours
 
Posts: n/a

Default Re: Preventing Escapes in Post - 08-27-2007 , 09:54 PM



Hi Steven,

The webservice (not the native .NET webservice) which is written in Java is
expecting the string in XML format without being escaped. Its not my
service, I am just trying to consume it.
So how can I customize it in the proxy class?

What are the basics? Are there any samples or guides?

--


CTO
www.kbstours.com
"Steven Cheng[MSFT]" <stcheng (AT) online (DOT) microsoft.com> wrote

Quote:
Thanks for John's input.

Hello SevDer,

I agree that the problem should be quite specific to the service and its
requirement on the SOAP message format. Would you provide some further
information on the service(such as the format and structure of the SOAP
message it expects from client). Normally, for any string value inside XML
document(include SOAP envelope), it have to escape those special
characters
so as to ensure the validity of the document. If the customzation
requests
for your scenario does be reasonable, we may look for some ways to
customize the client proxy class.

Please feel free to post here if there is anything we've missed.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead



==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.



Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================


This posting is provided "AS IS" with no warranties, and confers no
rights.



--------------------
From: "John Saunders [MVP]" <john.saunders at trizetto.com
References: <7B84F435-B90B-40F7-8DF8-77C419164289 (AT) microsoft (DOT) com
OiPtxRA6HHA.4584 (AT) TK2MSFTNGP03 (DOT) phx.gbl
7267F6E2-FD37-4E29-84F2-55937C3B6D13...soft (DOT) com
Subject: Re: Preventing Escapes in Post
Date: Sun, 26 Aug 2007 21:14:58 -0400
Lines: 58
Organization: The TriZetto Group, Inc.
MIME-Version: 1.0
Content-Type: text/plain;
format=flowed;
charset="iso-8859-1";
reply-type=response
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138
Message-ID: <O0UuveE6HHA.1148 (AT) TK2MSFTNGP05 (DOT) phx.gbl
Newsgroups: microsoft.public.dotnet.framework.aspnet.webservic es
NNTP-Posting-Host: pool-71-184-5-216.bstnma.east.verizon.net 71.184.5.216
Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSF TNGP05.phx.gbl
Xref: TK2MSFTNGHUB02.phx.gbl
microsoft.public.dotnet.framework.aspnet.webservic es:1413
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.webservic es

"SevDer" <sevder (AT) newsgroup (DOT) nospam> wrote in message
news:7267F6E2-FD37-4E29-84F2-55937C3B6D13 (AT) microsoft (DOT) com...
Hello John,

Thanks for the reply.

I think you should check this again. I've learned that .NET actually
escapes the inner XML to prevent bad XML forming on some cases. And as
far
as I learned this is the behavior of .NET not the way that I use.
Additionally the otherway around problem is there too. For your
webservice
to work with other applications, you will need to escape all received
inner XMLs as they (like Java) send it as nonescaped form.

Also I added as web reference and I am trying to make the webreference
to
work not any other way. If I cannot make this working, then I will have
to
POST using regular HTTP Post and not use wsdl reference.

And their WSDL defined method calls does not accept structured objects
but
simple and generic object which actually is simple XML.

The bottom line is, I am just trying to learn if there is a way for .NET
to not to escape my request XML while sending over!

I promise you that, as a general rule, .NET doesn't prevent people from
using XML by escaping it. You are clearly using it in a way that other
developers do not use it - they are succeeding and you are failing.

Please post some code showing us how you are using XML. Among other
things,
your mention of "inner xml" is frightening. You are doing something very
strange.

Please look at some of the following links on Web Service basics.

Overview of XML Web services:

http://msdn2.microsoft.com/en-us/library/7bkzywba.aspx



A walkthrough of building a basic XML Web service:

http://msdn2.microsoft.com/en-us/library/7hs6sw69.aspx



A walkthrough of building a basic client application:

http://msdn2.microsoft.com/en-us/library/hk7y1596.aspx



Serializing objects with XML web services

http://msdn2.microsoft.com/en-us/library/564k8ys4.aspx
--
John Saunders [MVP]






Reply With Quote
  #7  
Old   
KBSTours
 
Posts: n/a

Default Re: Preventing Escapes in Post - 08-27-2007 , 09:57 PM



Hi John,

It is not my first time using webservices.
Please see Stevens comments too. He clearly mentions that .NET needs to do
this escaping as a safe guard which I am trying to prevent. And this is not
an issue when both ends are .NET code but when one of the end is not .NET
like Java then you have a problem.

I've spent good amount of time to see where I fail and finally find this out
by writing the TraceExtension to the webservice call.

So if you can find anything for this, please let me know.

Thanks

--


CTO
www.kbstours.com
"John Saunders [MVP]" <john.saunders at trizetto.com> wrote

Quote:
news:7267F6E2-FD37-4E29-84F2-55937C3B6D13 (AT) microsoft (DOT) com...
Hello John,

Thanks for the reply.

I think you should check this again. I've learned that .NET actually
escapes the inner XML to prevent bad XML forming on some cases. And as
far as I learned this is the behavior of .NET not the way that I use.
Additionally the otherway around problem is there too. For your
webservice to work with other applications, you will need to escape all
received inner XMLs as they (like Java) send it as nonescaped form.

Also I added as web reference and I am trying to make the webreference to
work not any other way. If I cannot make this working, then I will have
to POST using regular HTTP Post and not use wsdl reference.

And their WSDL defined method calls does not accept structured objects
but simple and generic object which actually is simple XML.

The bottom line is, I am just trying to learn if there is a way for .NET
to not to escape my request XML while sending over!

I promise you that, as a general rule, .NET doesn't prevent people from
using XML by escaping it. You are clearly using it in a way that other
developers do not use it - they are succeeding and you are failing.

Please post some code showing us how you are using XML. Among other
things, your mention of "inner xml" is frightening. You are doing
something very strange.

Please look at some of the following links on Web Service basics.

Overview of XML Web services:

http://msdn2.microsoft.com/en-us/library/7bkzywba.aspx



A walkthrough of building a basic XML Web service:

http://msdn2.microsoft.com/en-us/library/7hs6sw69.aspx



A walkthrough of building a basic client application:

http://msdn2.microsoft.com/en-us/library/hk7y1596.aspx



Serializing objects with XML web services

http://msdn2.microsoft.com/en-us/library/564k8ys4.aspx
--
John Saunders [MVP]




Reply With Quote
  #8  
Old   
John Saunders [MVP]
 
Posts: n/a

Default Re: Preventing Escapes in Post - 08-28-2007 , 08:29 AM



"KBSTours" <kbstours (AT) kbstours (DOT) com> wrote

Quote:
Hi John,

It is not my first time using webservices.
Please see Stevens comments too. He clearly mentions that .NET needs to do
this escaping as a safe guard which I am trying to prevent.
You have misread Steven's post. The escaping he's referring to is within
text nodes. That is, within an attribute value or within the text value of
an element. For instance:

<element attr="&lt;x&gt;">Includes &quot;&amp;&quot;</element>

The main portion of your SOAP messages should not be getting escaped. If it
is, then you are doing something very unusual.

As a hint: note that there are many questions about web services on this
newsgroup, and yet no questions about how to not escape SOAP messages. Your
problem must be unique to your code.

Please post some of your code, so we can see what is going on. In
particular, if you can create a smaller example that reproduces what you're
seeing, and then if you could post the WSDL and client code for that smaller
example, then we'd be able to see what you're doing to produce escaped XML.
Without that, we're just guessing.

And, please let me reiterate that this may very well have to do with the
fact that you are manipulating OuterXml. It should be unnecessary to deal
with the string representation of XML in a web service.


Here are some basic references on Web Services in .NET:

Overview of XML Web services:
http://msdn2.microsoft.com/en-us/library/7bkzywba.aspx

A walkthrough of building a basic XML Web service:
http://msdn2.microsoft.com/en-us/library/7hs6sw69.aspx

A walkthrough of building a basic client application:
http://msdn2.microsoft.com/en-us/library/hk7y1596.aspx

Serializing objects with XML web services
http://msdn2.microsoft.com/en-us/library/564k8ys4.aspx

--
John Saunders [MVP]



Reply With Quote
  #9  
Old   
Steven Cheng[MSFT]
 
Posts: n/a

Default Re: Preventing Escapes in Post - 08-28-2007 , 11:07 PM



Thanks for the reply,

So based on your further description, I know that the java webservice
actually expect a webservice SOAP message which contains an XML fragment
(which is not escaped) as part of the SOAP body itself. I'm afraid this
doesn't quite conform to XML webservice standard. Because for any method's
data(parameters or return value) ,if it contains particular charaters, it
should be escaped. For example, the SOAP body xml document is used to
represent a request message of a method call, however, if your parameters
data is a XML fragment and not escaped, how can we know which part of the
xml document is the method body and which part are parameters data?

Therefore, for the scenario here, I think it would be better to manually
post the XML soap message through some network components such as
HttpWebRequest as it can let you freely control the underlying tranfered
message data. How do you think?

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


This posting is provided "AS IS" with no warranties, and confers no rights.


--------------------
Quote:
From: "KBSTours" <kbstours (AT) kbstours (DOT) com

Hi Steven,

The webservice (not the native .NET webservice) which is written in Java
is
expecting the string in XML format without being escaped. Its not my
service, I am just trying to consume it.
So how can I customize it in the proxy class?

What are the basics? Are there any samples or guides?

--


CTO
www.kbstours.com
"Steven Cheng[MSFT]" <stcheng (AT) online (DOT) microsoft.com> wrote in message
news:X%23gO%23$F6HHA.4200 (AT) TK2MSFTNGHUB02 (DOT) phx.gbl...
Thanks for John's input.

Hello SevDer,

I agree that the problem should be quite specific to the service and its
requirement on the SOAP message format. Would you provide some further
information on the service(such as the format and structure of the SOAP
message it expects from client). Normally, for any string value inside
XML
document(include SOAP envelope), it have to escape those special
characters
so as to ensure the validity of the document. If the customzation
requests
for your scenario does be reasonable, we may look for some ways to
customize the client proxy class.

Please feel free to post here if there is anything we've missed.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead



==================================================

Get notification to my posts through email? Please refer to

http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.



Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================


This posting is provided "AS IS" with no warranties, and confers no
rights.



--------------------
From: "John Saunders [MVP]" <john.saunders at trizetto.com
References: <7B84F435-B90B-40F7-8DF8-77C419164289 (AT) microsoft (DOT) com
OiPtxRA6HHA.4584 (AT) TK2MSFTNGP03 (DOT) phx.gbl
7267F6E2-FD37-4E29-84F2-55937C3B6D13...soft (DOT) com
Subject: Re: Preventing Escapes in Post
Date: Sun, 26 Aug 2007 21:14:58 -0400
Lines: 58
Organization: The TriZetto Group, Inc.
MIME-Version: 1.0
Content-Type: text/plain;
format=flowed;
charset="iso-8859-1";
reply-type=response
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138
Message-ID: <O0UuveE6HHA.1148 (AT) TK2MSFTNGP05 (DOT) phx.gbl
Newsgroups: microsoft.public.dotnet.framework.aspnet.webservic es
NNTP-Posting-Host: pool-71-184-5-216.bstnma.east.verizon.net 71.184.5.216
Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSF TNGP05.phx.gbl
Xref: TK2MSFTNGHUB02.phx.gbl
microsoft.public.dotnet.framework.aspnet.webservic es:1413
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.webservic es

"SevDer" <sevder (AT) newsgroup (DOT) nospam> wrote in message
news:7267F6E2-FD37-4E29-84F2-55937C3B6D13 (AT) microsoft (DOT) com...
Hello John,

Thanks for the reply.

I think you should check this again. I've learned that .NET actually
escapes the inner XML to prevent bad XML forming on some cases. And as
far
as I learned this is the behavior of .NET not the way that I use.
Additionally the otherway around problem is there too. For your
webservice
to work with other applications, you will need to escape all received
inner XMLs as they (like Java) send it as nonescaped form.

Also I added as web reference and I am trying to make the webreference
to
work not any other way. If I cannot make this working, then I will have
to
POST using regular HTTP Post and not use wsdl reference.

And their WSDL defined method calls does not accept structured objects
but
simple and generic object which actually is simple XML.

The bottom line is, I am just trying to learn if there is a way for
.NET
to not to escape my request XML while sending over!

I promise you that, as a general rule, .NET doesn't prevent people from
using XML by escaping it. You are clearly using it in a way that other
developers do not use it - they are succeeding and you are failing.

Please post some code showing us how you are using XML. Among other
things,
your mention of "inner xml" is frightening. You are doing something very
strange.

Please look at some of the following links on Web Service basics.

Overview of XML Web services:

http://msdn2.microsoft.com/en-us/library/7bkzywba.aspx



A walkthrough of building a basic XML Web service:

http://msdn2.microsoft.com/en-us/library/7hs6sw69.aspx



A walkthrough of building a basic client application:

http://msdn2.microsoft.com/en-us/library/hk7y1596.aspx



Serializing objects with XML web services

http://msdn2.microsoft.com/en-us/library/564k8ys4.aspx
--
John Saunders [MVP]








Reply With Quote
  #10  
Old   
KBSTours
 
Posts: n/a

Default Re: Preventing Escapes in Post - 08-29-2007 , 10:11 PM



Thanks Steven,

I was actually looking for answer and you've given that to me.
At least I do not need to look for more.

I also during that time, given up and started developing by my own posting
as I didn't see any chance.

Thanks for the information.

--


CTO
www.kbstours.com
"Steven Cheng[MSFT]" <stcheng (AT) online (DOT) microsoft.com> wrote

Quote:
Thanks for the reply,

So based on your further description, I know that the java webservice
actually expect a webservice SOAP message which contains an XML fragment
(which is not escaped) as part of the SOAP body itself. I'm afraid this
doesn't quite conform to XML webservice standard. Because for any method's
data(parameters or return value) ,if it contains particular charaters, it
should be escaped. For example, the SOAP body xml document is used to
represent a request message of a method call, however, if your parameters
data is a XML fragment and not escaped, how can we know which part of the
xml document is the method body and which part are parameters data?

Therefore, for the scenario here, I think it would be better to manually
post the XML soap message through some network components such as
HttpWebRequest as it can let you freely control the underlying tranfered
message data. How do you think?

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


This posting is provided "AS IS" with no warranties, and confers no
rights.


--------------------
From: "KBSTours" <kbstours (AT) kbstours (DOT) com

Hi Steven,

The webservice (not the native .NET webservice) which is written in Java
is
expecting the string in XML format without being escaped. Its not my
service, I am just trying to consume it.
So how can I customize it in the proxy class?

What are the basics? Are there any samples or guides?

--


CTO
www.kbstours.com
"Steven Cheng[MSFT]" <stcheng (AT) online (DOT) microsoft.com> wrote in message
news:X%23gO%23$F6HHA.4200 (AT) TK2MSFTNGHUB02 (DOT) phx.gbl...
Thanks for John's input.

Hello SevDer,

I agree that the problem should be quite specific to the service and its
requirement on the SOAP message format. Would you provide some further
information on the service(such as the format and structure of the SOAP
message it expects from client). Normally, for any string value inside
XML
document(include SOAP envelope), it have to escape those special
characters
so as to ensure the validity of the document. If the customzation
requests
for your scenario does be reasonable, we may look for some ways to
customize the client proxy class.

Please feel free to post here if there is anything we've missed.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead



==================================================

Get notification to my posts through email? Please refer to

http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.



Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach
the
most efficient resolution. The offering is not appropriate for
situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are
best
handled working with a dedicated Microsoft Support Engineer by
contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================


This posting is provided "AS IS" with no warranties, and confers no
rights.



--------------------
From: "John Saunders [MVP]" <john.saunders at trizetto.com
References: <7B84F435-B90B-40F7-8DF8-77C419164289 (AT) microsoft (DOT) com
OiPtxRA6HHA.4584 (AT) TK2MSFTNGP03 (DOT) phx.gbl
7267F6E2-FD37-4E29-84F2-55937C3B6D13...soft (DOT) com
Subject: Re: Preventing Escapes in Post
Date: Sun, 26 Aug 2007 21:14:58 -0400
Lines: 58
Organization: The TriZetto Group, Inc.
MIME-Version: 1.0
Content-Type: text/plain;
format=flowed;
charset="iso-8859-1";
reply-type=response
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.3138
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138
Message-ID: <O0UuveE6HHA.1148 (AT) TK2MSFTNGP05 (DOT) phx.gbl
Newsgroups: microsoft.public.dotnet.framework.aspnet.webservic es
NNTP-Posting-Host: pool-71-184-5-216.bstnma.east.verizon.net
71.184.5.216
Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSF TNGP05.phx.gbl
Xref: TK2MSFTNGHUB02.phx.gbl
microsoft.public.dotnet.framework.aspnet.webservic es:1413
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.webservic es

"SevDer" <sevder (AT) newsgroup (DOT) nospam> wrote in message
news:7267F6E2-FD37-4E29-84F2-55937C3B6D13 (AT) microsoft (DOT) com...
Hello John,

Thanks for the reply.

I think you should check this again. I've learned that .NET actually
escapes the inner XML to prevent bad XML forming on some cases. And as
far
as I learned this is the behavior of .NET not the way that I use.
Additionally the otherway around problem is there too. For your
webservice
to work with other applications, you will need to escape all received
inner XMLs as they (like Java) send it as nonescaped form.

Also I added as web reference and I am trying to make the webreference
to
work not any other way. If I cannot make this working, then I will
have
to
POST using regular HTTP Post and not use wsdl reference.

And their WSDL defined method calls does not accept structured objects
but
simple and generic object which actually is simple XML.

The bottom line is, I am just trying to learn if there is a way for
NET
to not to escape my request XML while sending over!

I promise you that, as a general rule, .NET doesn't prevent people from
using XML by escaping it. You are clearly using it in a way that other
developers do not use it - they are succeeding and you are failing.

Please post some code showing us how you are using XML. Among other
things,
your mention of "inner xml" is frightening. You are doing something very
strange.

Please look at some of the following links on Web Service basics.

Overview of XML Web services:

http://msdn2.microsoft.com/en-us/library/7bkzywba.aspx



A walkthrough of building a basic XML Web service:

http://msdn2.microsoft.com/en-us/library/7hs6sw69.aspx



A walkthrough of building a basic client application:

http://msdn2.microsoft.com/en-us/library/hk7y1596.aspx



Serializing objects with XML web services

http://msdn2.microsoft.com/en-us/library/564k8ys4.aspx
--
John Saunders [MVP]









Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.