上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 30 下一页
摘要: Microsoft.ServiceModel.Channels.Common.MetadataException: Invalid argument: <BtsActionMapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Operation Name="Select" Action="http://Microsoft.LobServices. 阅读全文
posted @ 2013-04-17 14:41 阿新 阅读(792) 评论(0) 推荐(0)
摘要: BizTalk Orchestration Publish Host In-Process Wcf Service without IIS 多种供客户端调用方式 BizTalk Server 2006 R2开始支持WCF adapter本次Demo用的是BizTalk Server 2010,把一个简单的流程发布成一个WCF服务供客户端调用。有了wcf-custom adapter解决BizTalk和外部交互必须借助第三方协议进行,比如FTP,MSMQ,HTTP(IIS),database,现在通过BizTalk发布in-process的wcf就可以,变得非常方便简单。BizTalk流程设计流 阅读全文
posted @ 2013-04-09 11:07 阿新 阅读(945) 评论(1) 推荐(3)
摘要: Compare methodEither you implement a compare-method for your object:-(NSComparisonResult)compare:(Person*)otherObject {return[self.birthDate compare:otherObject.birthDate];}NSArray*sortedArray;sortedArray =[drinkDetails sortedArrayUsingSelector:@selector(compare:)];NSSortDescriptor (better)or usuall 阅读全文
posted @ 2013-04-02 20:12 阿新 阅读(318) 评论(0) 推荐(0)
摘要: 今天我得知我的一个好朋友辞职了,他在一家很知名的科技公司工作,很多人削尖脑袋想进这家公司。我问他为什么,本来预期的回答可能是“我需要更大的挑战”,或“这个职位已经容不下我,我需要更大的发展空间”,但他却说“我受够了我的老板”。他这样说让我联想到了所有只是因为无法忍受老板而辞职的那些人。工作令人兴奋,团队非常和睦,但老板(管理者)让人忍无可忍。在这种情况下,你能看到的就是好的员工不断的流失,而所有管理层围坐在会议桌前试图找出人才流失的症结,思考留住员工的方法。留住人才,这是摆在所有企业管理者面前的实际问题。留住好员工的关键并不是特别关乎老板提供的薪水或给了他们多少/什么样的工作,更重要的是管理者 阅读全文
posted @ 2013-03-10 20:41 阿新 阅读(463) 评论(0) 推荐(0)
摘要: -(UIToolbar *)createActionBar { UIToolbar *actionBar = [[UIToolbar alloc] init]; actionBar.translucent = YES; [actionBar sizeToFit]; actionBar.barStyle = UIBarStyleBlackTranslucent; UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Done", @"" 阅读全文
posted @ 2013-03-01 21:37 阿新 阅读(619) 评论(0) 推荐(0)
摘要: I wanted to recreate the slide out menu in the Facebook iPhone app. I also wanted implement it in a jQuery mobile layout. This is what I came up with.HTML<!DOCTYPE html><html> <head> <title>FB Style Menu</title> <meta id="extViewportMeta" name="viewpor 阅读全文
posted @ 2013-02-01 17:18 阿新 阅读(678) 评论(0) 推荐(0)
摘要: NSData* sendData = [self.fileName.text dataUsingEncoding:NSUTF8StringEncoding]; NSDictionary *sendDictionary = [NSDictionary dictionaryWithObject:sendData forKey:@"name"]; AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:remoteUrl]; NSMutableURLRequest *afRequest = [httpCl. 阅读全文
posted @ 2013-01-19 14:37 阿新 阅读(5233) 评论(0) 推荐(0)
摘要: @{ }<!DOCTYPE html><html lang="zh"> <head> <meta name="viewport" content="initial-scale=1.0, user-scalable=no" /><script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=false"> </script> < 阅读全文
posted @ 2013-01-13 19:31 阿新 阅读(880) 评论(0) 推荐(0)
摘要: 代码片段,google了半天,找到的都是4.5 rc,或之前版本的代码,发现都不能用,正式版后有些方法做了修改。我重新修改一下分享给大家public static class HttpRequestMessageExtensions { public static string QueryString(this HttpRequestMessage request, string name) { string requestUri = request.RequestUri.Query; string[] querie... 阅读全文
posted @ 2013-01-07 10:38 阿新 阅读(1581) 评论(1) 推荐(1)
摘要: Eduasync part 5: making Task<T> awaitableInpart 3we 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 extension method.In this post, we' 阅读全文
posted @ 2013-01-05 19:30 阿新 阅读(1720) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 30 下一页