首页
学习
活动
专区
工具
TVP
发布

c#开发者

专栏成员
256
文章
314699
阅读量
48
订阅数
复杂Excel转换与导入
  把不同客户提供Excel 直接导入到系统中生成对应的收货单或是出货单。后端创建收货端和出货单的接口已经有现成的webservice或是标准的xml;这类需要做的就是把客户提供不同种类的Excel mapping成标准格式。
阿新
2020-04-21
1.7K0
NHibernate Contrib Best Practice
NHibernate Contrib(Burrow)是一个轻量级的开发中间件,底层使用Nhibernate 2.0GA(Nhibernate 2.0的.hbm.xml和1.2是兼容的) ORM技术框架实现。Burrow提供了智能化的状态,会话,使管理,事务让你更方便的使用Nhibernate进行.net应用程序的开发。
阿新
2019-02-13
6540
遍列schema代码
Code class XmlSchemaTraverseExample {     static void Main()     {         // Add the customer schema to a new XmlSchemaSet and compile it.         // Any schema validation warnings and errors encountered reading or          // compiling the schema 
阿新
2018-04-12
8580
为什么nhibernate 不能保存on-to-many的结构
下面是主类文件 Code namespace EasyTalk.Module {     /// <summary>     /// SiteAddress object for NHibernate mapped table 'SiteAddress'.     /// </summary>     [Serializable]     public class SiteAddress     {         #region Member Variables         pro
阿新
2018-04-12
7100
Using XPaths in Message Assignment[转]
Microsoft BizTalk Server 2004 Using XPaths in Message Assignment You can use the xpath function to assign an XPath value to a message part, or to assign a value to an XPath that refers to a message part. For more information on assigning to messages and me
阿新
2018-04-12
7150
XmlSerializerFactory Is Pretty Cool[转]
The XmlSerializerFactory is a new class in .NET 2.0 that provides a factory pattern over the XmlSerializer.  It maintains the cache of generated assemblies so that you can avoid the XmlSerializer leaks.  Usage doesn't impact your code much at all. Here is
阿新
2018-04-12
6960
XML Encryption in .Net
XML Encryption in .Net One of the new features being introduced with the Whidbey version of the .Net framework is XML encryption.  XML Encryption allows you to encrypt arbitrary data, and have the result be an XML element.  Much as XML digital signatures a
阿新
2018-04-12
1K0
BizTalk对Outbound/Inbound message字符编码的转换
BizTalk对Outbound/Inbound message字符编码的转换 一般的Linux/unix环境出来的报文大部分使用UTF-8,而Windows环境则大多是UTF-16(Unicode)编码方式。因此很多时候都需要转换报文的编码方式 方法一 通过BizTalk server 2006的XML Transmit pipeline TargetCharset的值进行设定将 TargetCharset 值设置为 Big-Endian-UTF 16,希望使用UTF-16(Unicode) 注意
阿新
2018-04-12
1K0
BizTalk 2006 R2 如何实现EDI报文的接收处理
BizTalk 2006 R2 如何实现EDI报文的接收处理 本专题介绍使用标准的EDI ANSI x1报文,实现通过BizTalk接收一个810(Invoice)报文,然后发回一个确认回执997(
阿新
2018-04-12
9950
Silverlight RIA Service开发实战总结(一)
Silverlight RIA Service开发实战总结(一) 如何更新(新增实体)domainService和metadata class 第一次使用向导生成linq-to-sql data model或ado.net entity data model后创建domain service以及metadata class都有向导很方便的生成对应的代码,但在开发过程中难免会新增个表或字段的,虽然linq-to-sql,ado.net entity提供在设计视图同步更新数据结构,但domain servi
阿新
2018-04-12
7070
BizTalk 开发小技巧-Custom XSLT复杂mapping的简单实现
BizTalk最强大的就是消息的订阅/发布和消息转换(transform-mapping),与不同的业务系统做对接势必会用到mapping这个强大的工具。BizTalk提供了非常丰富的mapping函数(Functoids),满足你对业务的不同需要,实在不行可以用万能的Scripting这个工具。 但是处理XML消息的真正胸器是XPath和XSLT如果你精通这2种语言那么对于开发XML将事半功倍,当然也是必须要掌握的。 下面用2个小例子说明一下如何在BizTalk mapping过程中使用自定义的XSL
阿新
2018-04-12
1.6K0
xcode uiscrollview with paging and zoom
Here is a simple and sample code that demonstrate the photo slide function with zoom using uiscrollview.  image.png this is the first photo  image.png sliding image.png zooming in particular photo  1. first drag three photos to your project , size no
阿新
2018-04-12
1.1K0
Infinite Scrolling in UIScrollView
- (void)viewDidLoad {     [super viewDidLoad];          [theScrollView setContentSize:CGSizeMake(3 * theScrollView.bounds.size.width, theScrollView.bounds.size.height)];     [theScrollView setPagingEnabled:YES];          CGRect aFrame = theScrollView.bound
阿新
2018-04-12
5260
BizTalk开发小工具-批量更新发送端口订阅配置参数
最近公司的主要的数据交换都基于BizTalk完成,现在BizTalk已经成为不可缺少的数据交换核心。利用的就是BizTalk的发布/订阅模式。 因此在每个发送端口都要配置消息的属性过滤。每个配置必须手
阿新
2018-04-12
7880
making Task<T> awaitable
Eduasync part 5: making Task<T> awaitable In part 3 we looked at what the C# 5 compiler required for you to "await" something. The sample used a class which actually had an instance method called GetAwaiter, but I mentioned that it could also be an extensi
阿新
2018-04-12
6640
xmldocument内嵌入另一个xmldocument,xmlnode的方法
string xmlstr1 = @"<root><head>myHead</head><body></body></root>"; string xmlstr2 = @"<so><num>1</num><sodetail><num>1</num></sodetail></so>"; XmlDocument doc1 = new XmlDocument(); doc1.LoadXml(xmlstr1); XmlD
阿新
2018-04-12
7560
Debatching(Splitting) XML Message in Orchestration using DefaultPipeline - BizTalk 2010
Debatching(Splitting) XML Message in Orchestration using DefaultPipeline - BizTalk 2010 In this post we will walk through the process of debatching an xml message in Orchestration using pipeline in Biztalk. I have used the Default XML Receive pipeline to
阿新
2018-04-12
1.3K0
Modifying namespace in XML document programmatically
Modifying namespace in XML document programmatically static XElement stripNS(XElement root) { re
阿新
2018-04-12
1.4K0
BizTalk Orchestration execute Flat file disassembler ReceivePipeline
需求是这样,在一个inbound XML中有个一点节点使用平文件的方式存放,还要解析比如固定长度或根据特殊字符截取字段 也就是需要在流程里面先把输入的XML的节点先读出来,这个方式有很多可以直接升级属性,或调用Xpath来获取,在流程里面调用执行receivepipeline的方法也非常简单。 fstr="1001078604000107860400060M1000269 100287128 CONN ((PLT)) CONNECTOR
阿新
2018-04-12
6740
使用BizTalk实现RosettaNet B2B So Easy
使用BizTalk实现RosettaNet B2B So Easy 最近完成了一个vmi-hub的B2B项目,使用Rosettanet 2.0的标准与一家品牌商,OEM,供应商实现B2B。一共交换4个报文,4B2,3B2,4B2 POD,4C1,说白了就是收发存这些数据; 项目环境 BizTalk 2009 Accelerator for RosettaNet,并没有使用最新的BizTalk版本因为客户已经在使用了,所以就在现有的环境下进行。 下面说一下如何配置RosettaNet 交换证书 R
阿新
2018-04-12
1.1K0
点击加载更多
社区活动
【纪录片】中国数据库前世今生
穿越半个世纪,探寻中国数据库50年的发展历程
Python精品学习库
代码在线跑,知识轻松学
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
技术创作特训营·精选知识专栏
往期视频·千货材料·成员作品 最新动态
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档