HighTechTalks DotNet Forums  

Access to SOAP Objects

Dotnet XML microsoft.public.dotnet.xml


Discuss Access to SOAP Objects in the Dotnet XML forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #11  
Old   
John Saunders [MVP]
 
Posts: n/a

Default Re: Access to SOAP Objects - 07-05-2007 , 08:11 PM






"doug" <dmartin (AT) newsgroups (DOT) nospam> wrote

Quote:
Looks like the SOAP SDK is depreciated. I found a WSE download:
en_Web_Services_Enhancements_1.0.msi but on install it says it requires
Framework 1.1 (which is installed version 1.1.4322.573), but I also have
Framework v2 (version 2.0.50727.42) installed via MSVS 2005 install. It
hints this is a "beta" version (or maybe it is stating the 1.1 is beta)
neither should be unless MS shipped beta with MSVS 2005.

Our projects are all Framework v2 based.
I don't recall your original post, so I don't recall if you need the
features of WSE.

Is there a reason you can't just use straight .NET Framework code?
--
John Saunders [MVP]



Reply With Quote
  #12  
Old   
=?Utf-8?B?ZG91Zw==?=
 
Posts: n/a

Default Re: Access to SOAP Objects - 07-05-2007 , 11:12 PM






Yes, I need access to the SOP Request and Response and it looks like VS and
Framework hide the Soap implementation details.

doug

"John Saunders [MVP]" wrote:

Quote:
"doug" <dmartin (AT) newsgroups (DOT) nospam> wrote in message
news:0A0BC8FD-906C-4EC0-9954-EEED23F6905F (AT) microsoft (DOT) com...
Looks like the SOAP SDK is depreciated. I found a WSE download:
en_Web_Services_Enhancements_1.0.msi but on install it says it requires
Framework 1.1 (which is installed version 1.1.4322.573), but I also have
Framework v2 (version 2.0.50727.42) installed via MSVS 2005 install. It
hints this is a "beta" version (or maybe it is stating the 1.1 is beta)
neither should be unless MS shipped beta with MSVS 2005.

Our projects are all Framework v2 based.

I don't recall your original post, so I don't recall if you need the
features of WSE.

Is there a reason you can't just use straight .NET Framework code?
--
John Saunders [MVP]



Reply With Quote
  #13  
Old   
=?Utf-8?B?ZG91Zw==?=
 
Posts: n/a

Default Re: Access to SOAP Objects - 07-05-2007 , 11:12 PM



Yes, I need access to the SOP Request and Response and it looks like VS and
Framework hide the Soap implementation details.

doug

"John Saunders [MVP]" wrote:

Quote:
"doug" <dmartin (AT) newsgroups (DOT) nospam> wrote in message
news:0A0BC8FD-906C-4EC0-9954-EEED23F6905F (AT) microsoft (DOT) com...
Looks like the SOAP SDK is depreciated. I found a WSE download:
en_Web_Services_Enhancements_1.0.msi but on install it says it requires
Framework 1.1 (which is installed version 1.1.4322.573), but I also have
Framework v2 (version 2.0.50727.42) installed via MSVS 2005 install. It
hints this is a "beta" version (or maybe it is stating the 1.1 is beta)
neither should be unless MS shipped beta with MSVS 2005.

Our projects are all Framework v2 based.

I don't recall your original post, so I don't recall if you need the
features of WSE.

Is there a reason you can't just use straight .NET Framework code?
--
John Saunders [MVP]



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

Default Re: Access to SOAP Objects - 07-06-2007 , 12:02 AM



"doug" <dmartin (AT) newsgroups (DOT) nospam> wrote

Quote:
Yes, I need access to the SOP Request and Response and it looks like VS
and
Framework hide the Soap implementation details.
Doug, there are several things you can do to get closer to the wire.

You can use a SoapExtension, for instance. These can get access to the raw
message stream coming in or going out, and can change it before the server
sees it or before the client sees it. They can also get access to a
higher-level version of the same data. See
http://support.microsoft.com/kb/320438 for a bunch of good examples.

You may also want to look at
http://msdn2.microsoft.com/en-us/library/dkwy2d72.aspx, which is the
beginning of a set of articles on "Customizing SOAP Message Formatting"
--
John Saunders [MVP]



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

Default Re: Access to SOAP Objects - 07-06-2007 , 12:02 AM



"doug" <dmartin (AT) newsgroups (DOT) nospam> wrote

Quote:
Yes, I need access to the SOP Request and Response and it looks like VS
and
Framework hide the Soap implementation details.
Doug, there are several things you can do to get closer to the wire.

You can use a SoapExtension, for instance. These can get access to the raw
message stream coming in or going out, and can change it before the server
sees it or before the client sees it. They can also get access to a
higher-level version of the same data. See
http://support.microsoft.com/kb/320438 for a bunch of good examples.

You may also want to look at
http://msdn2.microsoft.com/en-us/library/dkwy2d72.aspx, which is the
beginning of a set of articles on "Customizing SOAP Message Formatting"
--
John Saunders [MVP]



Reply With Quote
  #16  
Old   
=?Utf-8?B?ZG91Zw==?=
 
Posts: n/a

Default Re: Access to SOAP Objects - 07-06-2007 , 11:44 AM



I installed WSE v3, used the tool to update web.config with new settings to
enable inputtrace.webinfo and outputtrace.webinfo and I ensured permissions
for website directory set to full control for NETWORK SERVICE and ASPNET
accounts. I issued IISRESET, and reran my test aspx page. No output.
Nothing logged in event logs. I'm running everything local (web service and
client) in IDE. Web searches find others with same problem and either no
reply or replays suggests it should work.

doug

"John Saunders [MVP]" wrote:

Quote:
"doug" <dmartin (AT) newsgroups (DOT) nospam> wrote in message
news:6F6999BC-E570-4301-B2BE-105AC112DE90 (AT) microsoft (DOT) com...
Yes, I need access to the SOP Request and Response and it looks like VS
and
Framework hide the Soap implementation details.

Doug, there are several things you can do to get closer to the wire.

You can use a SoapExtension, for instance. These can get access to the raw
message stream coming in or going out, and can change it before the server
sees it or before the client sees it. They can also get access to a
higher-level version of the same data. See
http://support.microsoft.com/kb/320438 for a bunch of good examples.

You may also want to look at
http://msdn2.microsoft.com/en-us/library/dkwy2d72.aspx, which is the
beginning of a set of articles on "Customizing SOAP Message Formatting"
--
John Saunders [MVP]



Reply With Quote
  #17  
Old   
=?Utf-8?B?ZG91Zw==?=
 
Posts: n/a

Default Re: Access to SOAP Objects - 07-06-2007 , 11:44 AM



I installed WSE v3, used the tool to update web.config with new settings to
enable inputtrace.webinfo and outputtrace.webinfo and I ensured permissions
for website directory set to full control for NETWORK SERVICE and ASPNET
accounts. I issued IISRESET, and reran my test aspx page. No output.
Nothing logged in event logs. I'm running everything local (web service and
client) in IDE. Web searches find others with same problem and either no
reply or replays suggests it should work.

doug

"John Saunders [MVP]" wrote:

Quote:
"doug" <dmartin (AT) newsgroups (DOT) nospam> wrote in message
news:6F6999BC-E570-4301-B2BE-105AC112DE90 (AT) microsoft (DOT) com...
Yes, I need access to the SOP Request and Response and it looks like VS
and
Framework hide the Soap implementation details.

Doug, there are several things you can do to get closer to the wire.

You can use a SoapExtension, for instance. These can get access to the raw
message stream coming in or going out, and can change it before the server
sees it or before the client sees it. They can also get access to a
higher-level version of the same data. See
http://support.microsoft.com/kb/320438 for a bunch of good examples.

You may also want to look at
http://msdn2.microsoft.com/en-us/library/dkwy2d72.aspx, which is the
beginning of a set of articles on "Customizing SOAP Message Formatting"
--
John Saunders [MVP]



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

Default Re: Access to SOAP Objects - 07-06-2007 , 01:31 PM



"doug" <dmartin (AT) newsgroups (DOT) nospam> wrote

Quote:
I installed WSE v3, used the tool to update web.config with new settings to
enable inputtrace.webinfo and outputtrace.webinfo and I ensured
permissions
for website directory set to full control for NETWORK SERVICE and ASPNET
accounts. I issued IISRESET, and reran my test aspx page. No output.
Nothing logged in event logs. I'm running everything local (web service
and
client) in IDE. Web searches find others with same problem and either no
reply or replays suggests it should work.
Can you simplify the problem? In particular, can you reproduce it without
WSE?
--
John Saunders [MVP]



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

Default Re: Access to SOAP Objects - 07-06-2007 , 01:31 PM



"doug" <dmartin (AT) newsgroups (DOT) nospam> wrote

Quote:
I installed WSE v3, used the tool to update web.config with new settings to
enable inputtrace.webinfo and outputtrace.webinfo and I ensured
permissions
for website directory set to full control for NETWORK SERVICE and ASPNET
accounts. I issued IISRESET, and reran my test aspx page. No output.
Nothing logged in event logs. I'm running everything local (web service
and
client) in IDE. Web searches find others with same problem and either no
reply or replays suggests it should work.
Can you simplify the problem? In particular, can you reproduce it without
WSE?
--
John Saunders [MVP]



Reply With Quote
  #20  
Old   
=?Utf-8?B?ZG91Zw==?=
 
Posts: n/a

Default Re: Access to SOAP Objects - 07-06-2007 , 01:40 PM



Reproduce what? My web service runs fine currently. Client side asked for
data pertaining to the Soap response I send back, so I want to capture the
Soap message. It seemed like WSE with trace enabled would do the trick on my
test client page without having to put code in web service directly.

doug

"John Saunders [MVP]" wrote:

Quote:
"doug" <dmartin (AT) newsgroups (DOT) nospam> wrote in message
news:81F7CDDA-E5E9-491D-BA24-1E781FB7FB9B (AT) microsoft (DOT) com...
I installed WSE v3, used the tool to update web.config with new settings to
enable inputtrace.webinfo and outputtrace.webinfo and I ensured
permissions
for website directory set to full control for NETWORK SERVICE and ASPNET
accounts. I issued IISRESET, and reran my test aspx page. No output.
Nothing logged in event logs. I'm running everything local (web service
and
client) in IDE. Web searches find others with same problem and either no
reply or replays suggests it should work.

Can you simplify the problem? In particular, can you reproduce it without
WSE?
--
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.