Hi,
From your description, your .net client app have to consume a java based
webservice and currently the JAVA service want to use DIME for transfering
large documente and you're wondering how to deal with DIME in .net
application correct?
As for DIME, the WSE component does have provided support for it. However,
it is supported in the WSE 2.0 version which works with .net framework
1.1(VS 2003). So is your .net application 2.0 based or can also adopt .net
1.1 based solution? Here are some articles about using WSE 2+DIME:
#Configure DIME with WSE 2.0
http://www.dnzone.com/showDetail.asp?TypeId=2&NewsId=961 #How to: Add Attachments to a SOAP Message by Using DIME
http://msdn2.microsoft.com/en-us/library/ms824597.aspx #Dime Buffered Upload
http://www.codeproject.com/cs/webservices/DimeBufferedUpload.asp For .NET framework 2.0, new WSE 3.0 is provided to work with it. However,
in .WSE 3.0, we have enhanced binary content transfer approach "MTOM" and
"DIME" is replaced.
Migrating to WSE 3.0
http://msdn.microsoft.com/msdnmag/issues/06/04/ServiceStation/default.aspx http://msdn2.microsoft.com/en-us/library/aa529283.aspx Will your java service also support MTOM?
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.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/subscriptions/support/default.aspx. ==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
From: =?Utf-8?B?SmFrb2IgTGl0aG5lcg==?= <jaklithn@noemail.noemail>
Subject: Send attachment with DIME
Date: Tue, 23 Oct 2007 00:41:06 -0700
I have never sent attachment with webservices.
Yesterday I got the challenge to redesign my solution that sends large XML
structures to a Java webservice. The reason was that the Java SOAP
implementation had problems consuming too large files that way. They
encountered a memory leak in the parser that made the whole mainframe
environment to crash! So the decided they should go for DIME attachments
instead.
I use VB.Net in VS2005.
Where do I begin?
Should I install WSE 3.0?
It was hard to find examples.
I found some Microsoft artcicles from 2002 and 2003 but no code examples.
When searching this forum for DIME I just received ONE result where the