- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- XML corrupted when sent as attachement
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2006 11:54 PM
06-18-2006 11:54 PM
* Application creates an XML-file
* This file is sent using TCPIP$SMTP_SFF.EXE
* On receipt it seems tha every "=" in the original file cases a skip of the next two characters.
Attached the output to be sent, code that creates the file used by TCPIP$SMTP_SFF, and the resulting, corrupted file.
The DCL code is part of the batch procedure that handles sending of the XML file.
We need to have this file copied as an attachement because the receiver is an application that will read this (as XML) and will process it.
What way can we sent this XML files - as it is now - so teh reciver will get the right data?
Willem
OpenVMS Developer & System Manager
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2006 12:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2006 12:34 AM
06-19-2006 12:34 AM
Re: XML corrupted when sent as attachement
I am rather busy at this instant, so I cannot play with the examples that you attached.
However, on several occasions BEFORE the utility support, I have directly injected messages with attachments into the SMTP delivery system by using C-KERMIT to directlty connect to TCP Port 25 and processing the SMTP dialogue (which is not particularly difficult).
- Bob Gezelter, http://www.rlgsc.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2006 01:07 AM
06-19-2006 01:07 AM
Re: XML corrupted when sent as attachement
I thought it had to do with something in the part before. I guess I can simply take this out (it's only needed for non-text, I think?)
Robert,
It should be solved with the standard software - extra software is no option ;-(
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2006 01:25 AM
06-19-2006 01:25 AM
Re: XML corrupted when sent as attachement
I would agree with Ian.
My suggestion was meant in the event that there was some longer duration problem than the Content Type
- Bob Gezelter, http://www.rlgsc.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2006 02:04 AM
06-19-2006 02:04 AM
Re: XML corrupted when sent as attachement
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2006 02:43 AM
06-19-2006 02:43 AM
Re: XML corrupted when sent as attachement
The easiest is to change encoding to 7bit/8bit.
But I recommend real quoted-printable, unless You are sure plain text survives all mail gateways and receivers. The VMS MIME utility does the conversion and produces all headers nicely.
Look in some recent discussion on MIME attachment sending in this forum. There are several procedures mentioned.