致支持和关注本Blog的朋友:
感谢你访问PaulLeder--程序部落
在这里包括一些与计算机有关知识的讨论和学习。
我希望能以这个网站为平台,和大家一起交流计算机程序设计的经历和心得。
衷心祝福大家在学业和事业上不断进步,体会成功、自信和快乐。

 

预览模式: 普通 | 列表

彩信MM7协议Soap包

引用内容 引用内容
POST /vas HTTP/1.1
Host:211.139.144.200:8081
Content-Type:multipart/related; boundary="--NextPart_0_2817_24856";type="text/xml";start="</tnn-200102/mm7-vasp>"
Content-Transfer-Encoding:8bit
Authorization:Basic ODg4ODg4Og==

查看更多...

分类:.Net | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 230

C#获取Gif图片每一帧的时间

引用内容 引用内容
Image img=Image.FromFile("C:\\1.gif");//加载Gif图片
FrameDimension dim = new FrameDimension(img.FrameDimensionsList[0] );
for (int i = 0; i < img.GetFrameCount(dim);i++ )//遍历图像帧
{
    img.SelectActiveFrame(dim, i);//激活当前帧

查看更多...

分类:.Net | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 171

.Net (C#) and SOAP with Attachments

 

In our project we offer a web service to our customers and to simplify the use of the web service we have implemented web service clients as examples in different frameworks. So we have the usual suspects for Java (JAX-WS, Apache CXF and Axis).

查看更多...

分类:.Net | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 137

How to: Add Attachments to a SOAP Message by Using

The Web Services Enhancements for Microsoft .NET (WSE) supports attaching files to SOAP messages outside the SOAP envelope; these files are not serialized as XML. This can be beneficial when sending large text or binary files because XML serialization is a very costly process and can result in files much larger than the originals. Direct Internet Message Encapsulation (DIME) is a lightweight, binary message format that WSE uses to encapsulate SOAP messages and their attachments in a DIME message. The following procedure details how to:

查看更多...

分类:.Net | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 119