由买买提看人间百态

topics

全部话题 - 话题: wcf
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
N********n
发帖数: 8363
1
来自主题: Programming版 - 选择 WCF 还是 ASP.NET WebApi

1. There's BSON support for binary data tho IDK how efficient it is.
2. "Reliable message" sounds like a TCP thing or at least some
"WS-Reliable" SOAP-based protocols. You may have to go w/ WCF here.
3. Message security is usually done w/ HTTPS & SSL available for
both WCF and Web API.
4. It's like supporting the plain old WebService. You could put it
all in one module or split them based on different functionality.
I guess you might have a mixture of WebAPI and WCF code. WebAPI for
simplicity ... 阅读全帖
i***0
发帖数: 8469
2
My name is Pinky and I'm a recruiter at Artech, a global staffing and IT
consulting company. We are constantly on the look out for professionals to
fulfill the staffing needs of our clients, and we currently have a job
opening that may interest you. Below is a summary of the position.
Job Title: SDE SSIS WCF
Location: Redmond, WA
Duration: 6+ Months
Job Description:
MUST HAVE skills/experience: SSIS and WCF
Candidate will be performing as trouble shooter for 2 project teams
4 plus years work rel... 阅读全帖
i***0
发帖数: 8469
3
My name is Ayaz and I'm a recruiter here at AxiusTechnologies. I just left
you a message, I was referred to you by my colleague,I have few potential
opportunities, I would like to discuss and understand what"YOU ARE LOOKING"
and would like to help you with a potentialopportunity. I am not a body shop
recruiter, I don't intend to waste yourtime. I am directly working with
the hiring managers and I assure you that yourresume will not go in to the
black hole. Please call me or let me knowwhat is ... 阅读全帖
H*******g
发帖数: 6997
4
来自主题: DotNet版 - WEB API能替代WCF不
MVC 4里,把本来属于WCF的WEB API给移植了。我个人觉得迟早WCF会被替代。
W********n
发帖数: 254
5
来自主题: DotNet版 - WEB API能替代WCF不
wcf支持不同的binding,可以运行在不同的host,还可以从server端broadcast到client
。web api想替代所有的这些最终会变成另一个wcf。没什么区别
s**m
发帖数: 1564
6
【 以下文字转载自 Programming 讨论区 】
发信人: slim (小时候胖), 信区: Programming
标 题: 选择 WCF 还是 ASP.NET WebApi
发信站: BBS 未名空间站 (Sat Oct 24 12:27:52 2015, 美东)
client side:
.NET web applications (on intranet),
windows desktop application (on intranet or internet),
iOS App (on internet)
potentially cloud app,
选择 WCF 还是 ASP.NET WebApi 来开发 web services, and API?
Thanks.
s**m
发帖数: 1564
7
【 以下文字转载自 Programming 讨论区 】
发信人: slim (小时候胖), 信区: Programming
标 题: 选择 WCF 还是 ASP.NET WebApi
发信站: BBS 未名空间站 (Sat Oct 24 12:27:52 2015, 美东)
client side:
.NET web applications (on intranet),
windows desktop application (on intranet or internet),
iOS App (on internet)
potentially cloud app,
选择 WCF 还是 ASP.NET WebApi 来开发 web services, and API?
Thanks.
h****n
发帖数: 298
8
来自主题: Classified版 - WCF Middle Tier Developer in Redmond, WA
Must haves:
6+ years’ of design and development experience on the enterprise
application.
5+ years’ strong experience with C# and the .Net Framework
2+ years’ of design and implementation of the systems that uses WCF
Experience on SOA (Service Oriented Architecture) application design/
development
Strong ability to analyze and design optimized Web Pages that solve slow
network performance
Strong Coding, debugging and analytical skills
Familiarity with source code tools/process, bug tracking, cod... 阅读全帖
R*****i
发帖数: 2126
9
来自主题: JobHunting版 - 请教精通WCF的技术大牛。
我现在需要用WCF作一个同步服务,就是把客户端的数据库和文件跟服务器的数据库和
文件相互更新。我们的客户都在条件特别恶劣的地方,也就是说,网络的带宽不仅窄,
而且流量费用巨高,所以需要尽量减少流量。我们公司的技术大牛(Lead Developer)
已经做过类似的同步服务。他的做法如下,不管是数据库的数据,还是文件,他都把它
们转化成byte[]。如果是数据库的数据,他把它们压缩成byte[],如果是文件,就把他
切成一块一块(chunk)传送,我查了一下他的设定,绑定直接用的是wsHttpBinding,里
面用的都是缺省的设置。我想问一下大牛,他的这种做法有没有问题啊?
我这两天一直在琢磨,上网查资料,我总感觉数据库的数据和文件应该分别对待,数据
库的数据可以用wsHttpBinding,但是文件应该用Stream来传输(wsHttpBinding不支持
Stream),现在的问题是basicHttpBinding的Security好像不容易搞定,要知道,上传/
下载文件也需要传递用户名和密码,然后根据服务器里的数据库数据来决定是否授权。
请指点迷津。
m********o
发帖数: 796
10
来自主题: JobHunting版 - 请教精通WCF的技术大牛。
不懂WCF, 只懂WTF...
R*****i
发帖数: 2126
11
来自主题: JobHunting版 - 请教精通WCF的技术大牛。

to
由于带宽的限制和流量的代价,所以我们希望尽量减少流量。
现在的代码,上传的时候,在客户端(代码由我们提供)人为地切割成chunk,然后用普
通的wsHttpBinding传输,最后一块传完以后拼装(为了减少内存,每一块都放进了临
时表里了)。但是我想的是,文件是不是用stream传起来更快更高效?但是stream在
wsHttpBinding里不支持,所以如果要用stream,就只能用basicHttpBinding,但是
basicHttpBinding好像有security方面的麻烦事。
下载也跟上传类似,文件转成byte[],通过buffer传输。
我对wcf不熟,所以很纠结。
R*********9
发帖数: 342
12
来自主题: JobHunting版 - 微软招FTE SR.SDE-C#, ASP.Net, IIS and WCF
获悉Windows Notification Service 组招Sr level SDE,欢迎发送简历至welearnsql@
gmail.com.
Primary Responsibilities include:
• Work closely with partner teams to define and implement the end-to-
end solution
• Design, develop and maintain core pieces of services
• Become an expert in one or more of the technologies involved (TCP/IP
, web services, mobile networks, push notifications).
Required Qualifications include:
• 3+ years cumulative software development experience
• Demonstr... 阅读全帖
h****n
发帖数: 298
13
来自主题: JobMarket版 - WCF Middle Tier Developer in Redmond, WA
Must haves:
6+ years’ of design and development experience on the enterprise
application.
5+ years’ strong experience with C# and the .Net Framework
2+ years’ of design and implementation of the systems that uses WCF
Experience on SOA (Service Oriented Architecture) application design/
development
Strong ability to analyze and design optimized Web Pages that solve slow
network performance
Strong Coding, debugging and analytical skills
Familiarity with source code tools/process, bug tracking, cod... 阅读全帖
h****n
发帖数: 298
14
来自主题: JobMarket版 - WCF cloud dev positions in Redmond, WA
Location: Redmond, WA
JOB Description
We are looking for experienced .Net cloud developers with a keen eye for
quality with the following qualifications:
Technical Skills:
• Solid prior experience with WCF on enterprise or consumer-
level web services development
• Experience with Windows Azure cloud services or other cloud
service platforms
Functional Skills:
• Automated Unit Testing using VSTS (preferably)
• Experience with TDD and automa... 阅读全帖
h****n
发帖数: 298
15
来自主题: Seattle版 - Strong WCF/WPF developer in Redmond, WA
Need strong WCF/WPF developer.
Please email me at h*******[email protected]
Thanks,
x******o
发帖数: 94
16
来自主题: DotNet版 - looking for good books about WCF
Professional WCF 4: Windows Communication Foundation with .NET 4 by Pablo
Cibraro, Kurt Claeys, Fabio Cozzolino and Johann Grabner Wrox Press ©
2010
s***o
发帖数: 2191
17
来自主题: DotNet版 - looking for good books about WCF
For advanced and practical topics, check Juval Lowy's "Programming WCF
Services".
R********0
发帖数: 133
18
来自主题: DotNet版 - looking for good books about WCF
Programming WCF Services Juaval Lowy. i have read that one.
o****e
发帖数: 916
19
silverlight to self hosting wcf service, 非得用async pattern, 折腾半天才搞明
白,原来这么简单。睡觉前来这里吼一把,有木有啊!
s****r
发帖数: 36
20
Anyone has automatic build(NAnt or MSbuild) eperience on the .NET web
application using Silverlight 4 + WCF Ria service?
BAO ZI wi be offered for the tips.
G***U
发帖数: 83
21
来自主题: DotNet版 - 求教:Call WCF from SQL Server 2008
之前是call web service,基本程序跟这个(http://blog.hoegaerden.be/2008/11/11/calling-a-web-service-from-sql-server-2005/)是一样的。
但是升级后用WCF就不work了,总是提示:
CREATE ASSEMBLY for assembly 'UDF' failed because assembly 'UDF' failed
verification. Check if the referenced assemblies are up-to-date and trusted
(for external_access or unsafe) to execute in the database. CLR Verifier
error messages if any will follow this message
请大牛们指教啊!
s*****w
发帖数: 215
22
来自主题: DotNet版 - 求教:Call WCF from SQL Server 2008
建立一个WCF client/proxy exe,用sql server直接call client不行吗

trusted
L******e
发帖数: 136
23
来自主题: DotNet版 - 如何快速掌握WPF 和WCF
WPF easy:
WPF unleashed
WPF control development unleashed
read these 2 book you'll be good at it.
WCF? probably you need to practice on real projects.
k**n
发帖数: 3989
24
来自主题: DotNet版 - 如何快速掌握WPF 和WCF
wpf我也是拿来就用, 没看任何书..
wcf看了点书,但实际上要用起来也不复杂。用其基本默认设置就行了。
n****y
发帖数: 270
25
请问如果想从external network call internal wcf service,应该怎么做? 需要打通
firewall吗?需要的话应该怎么做?
因为只是短期test用,所以不想改变web service security.
请牛人帮忙。谢谢!
R*****i
发帖数: 2126
26
来自主题: DotNet版 - 请教精通WCF的技术大牛。
我现在需要用WCF作一个同步服务,就是把客户端的数据库和文件跟服务器的数据库和
文件相互更新。我们的客户都在条件特别恶劣的地方,也就是说,网络的带宽不仅窄,
而且流量费用巨高,所以需要尽量减少流量。我们公司的技术大牛(Lead Developer)
已经做过类似的同步服务。他的做法如下,不管是数据库的数据,还是文件,他都把它
们转化成byte[]。如果是数据库的数据,他把它们压缩成byte[],如果是文件,就把他
切成一块一块(chunk)传送,我查了一下他的设定,绑定直接用的是wsHttpBinding,里
面用的都是缺省的设置。我想问一下大牛,他的这种做法有没有问题啊?
我这两天一直在琢磨,上网查资料,我总感觉数据库的数据和文件应该分别对待,数据
库的数据可以用wsHttpBinding,但是文件应该用Stream来传输(wsHttpBinding不支持
Stream),现在的问题是basicHttpBinding的Security好像不容易搞定,要知道,上传/
下载文件也需要传递用户名和密码,然后根据服务器里的数据库数据来决定是否授权。
请指点迷津。
R*****i
发帖数: 2126
27
来自主题: DotNet版 - 请教精通WCF的技术大牛。
我现在需要用WCF作一个同步服务,就是把客户端的数据库和文件跟服务器的数据库和
文件相互更新。我们的客户都在条件特别恶劣的地方,也就是说,网络的带宽不仅窄,
而且流量费用巨高,所以需要尽量减少流量。我们公司的技术大牛(Lead Developer)
已经做过类似的同步服务。他的做法如下,不管是数据库的数据,还是文件,他都把它
们转化成byte[]。如果是数据库的数据,他把它们压缩成byte[],如果是文件,就把他
切成一块一块(chunk)传送,我查了一下他的设定,绑定直接用的是wsHttpBinding,里
面用的都是缺省的设置。我想问一下大牛,他的这种做法有没有问题啊?
我这两天一直在琢磨,上网查资料,我总感觉数据库的数据和文件应该分别对待,数据
库的数据可以用wsHttpBinding,但是文件应该用Stream来传输(wsHttpBinding不支持
Stream),现在的问题是basicHttpBinding的Security好像不容易搞定,要知道,上传/
下载文件也需要传递用户名和密码,然后根据服务器里的数据库数据来决定是否授权。
请指点迷津。
c*********e
发帖数: 16335
28
来自主题: DotNet版 - 请教精通WCF的技术大牛。
为啥用wcf? 直接写c#/php/java code来更新不行吗,还能用try catch写exception
handling code,rollback.
H*******g
发帖数: 6997
29
来自主题: DotNet版 - 请教精通WCF的技术大牛。
你有点答非所问。。。WCF是SERVICE, C#是语言。。。不能这样类比把。
n****y
发帖数: 270
30
公司的网络有一条线出现问题, 需要再加另一条comcast. 这样导致WCF service 的
external address有两个, 请问有什么方法可以自动选择mvc application 中的
client service endpoint with right base address?
k**n
发帖数: 3989
31
这是网络问题...你们公司没内网吗?没dns 吗, 没loadbalence, 没proxy 吗..
你的问题与mvc 与wcf 没啥关系.
s**m
发帖数: 1564
32
Thanks.
We have several small web MVC applications using web API now. We will have a
lot more new applications and some will be big and complex. So I am
wondering a few things:
1. Does web API support transferring binary data?
2. how does web API support reliable message transfer when network is not
good?
3. how does web API support message security?
4. Can I move web API project out from those web applications and put them
into a separate centralized library location like what WCF can do?
Thank... 阅读全帖
s**m
发帖数: 1564
33
Thanks.
We have several small web MVC applications using web API now. We will have a
lot more new applications and some will be big and complex. So I am
wondering a few things:
1. Does web API support transferring binary data?
2. how does web API support reliable message transfer when network is not
good?
3. how does web API support message security?
4. Can I move web API project out from those web applications and put them
into a separate centralized library location like what WCF can do?
Thank... 阅读全帖
c**t
发帖数: 2744
34
Web API is very easy to integrate in mobile app; and WCF is much more secure
. There is no right or wrong, all depends on your requirements.
c**t
发帖数: 2744
35
Web API is very easy to integrate in mobile app; and WCF is much more secure
. There is no right or wrong, all depends on your requirements.
s**m
发帖数: 1564
36
来自主题: Programming版 - 选择 WCF 还是 ASP.NET WebApi
client side:
.NET web applications (on intranet),
windows desktop application (on intranet or internet),
iOS App (on internet)
potentially cloud app,
选择 WCF 还是 ASP.NET WebApi 来开发 web services, and API?
Thanks.
N********n
发帖数: 8363
37
来自主题: Programming版 - 选择 WCF 还是 ASP.NET WebApi

用不用JSON? 用的话走纯HTTP路线的WebAPI更合适。WCF支持TCP接口,适合
INTRANET接口,如果INTRANET APP允许使用TCP的情况下。
s**m
发帖数: 1564
38
来自主题: Programming版 - 选择 WCF 还是 ASP.NET WebApi
Thanks.
We have several small web MVC applications using web API and JSON.
We will have a lot more new applications and some will be big and complex.
So I am wondering a few things:
1. Does web API support transferring binary data?
2. how does web API support reliable message transfer when network is not
good?
3. how does web API support message security?
4. Can I move web API project out from those web applications and put them
into a separate centralized library location like what WCF can do?
... 阅读全帖
c********1
发帖数: 5269
39
来自主题: Programming版 - 选择 WCF 还是 ASP.NET WebApi
1 Implements REST-style APIs with WebAPI.
2. WCF code if REST-style APIs can not meet your needs.
l*s
发帖数: 783
40
来自主题: DotNet版 - [合集] .NET 何去何从
☆─────────────────────────────────────☆
BubbleSort (亚特兰蒂斯) 于 h 提到:
我们组的Silverlight网站,头决定用Java Spring MVC完全重做,因为
微软今后不会对Silverliht继续升级了。
这一两年,微软的脑残决定可不少啊。看看这篇评论:
http://www.i-programmer.info/professional-programmer/i-programm
网友的杰作:
http://www.youtube.com/watch?v=RRFiu0xfQzw&autoplay=1
☆─────────────────────────────────────☆
rodney (√) 于 (Sat Jan 12 13:46:05 2013, 美东) 提到:
NeverLearn会给你定心的。

☆─────────────────────────────────────☆
goodbug (好虫) 于 (Sat Jan 12 23:00:26 2013, 美东) 提到:
Hi... 阅读全帖
C****n
发帖数: 2324
41
要看你的具体应用, 这个没有定论, 我也不知道你的MAINPROCESS是个什么东西.
我的布局是:
ASP.NET website/IIS
WINDOWS SERVICE/HOST WCF SERVICE
这样ASP.NET就是一个WCF CLIENT, call WCF HOST. 我的是ONE WAY的. 也就是撂给
WCFSERVICE就不管了, 不等结果的.
如果你一定要等结果, 而且处理时间不长的话, 最好把哪个WCF合并到ASP.NET里面吧 (
如果可能的话). 这样没那么多罗嗦事. 如果由于某种原因必须分开, 就两个PROCESS
挺好. ASP.NET/IIS CALL WINDOWS SERVICE/WCF
看来你其实是可以合在一起的, 而且网页用户是不用等结果的. 那就合在一起做吧.
你怕影响响应时间, 直接用threadPool 就行了.
ThreadPool.QueueUserItem(xxxx), 这样你的ASP.NET逻辑马上返回. 让你的任务处理
在IIS后台慢慢来吧.几个小时也没问题.
不过你真这样做就要注意不要随便重启IIS, 因为怕你处理一半你把... 阅读全帖
i***0
发帖数: 8469
42
来自主题: JobHunting版 - C# $$$$
I am looking for a .Net Developer that has significant exposure in Asp. Net,
C#, WPF/WCF/Silverlight for one of our client’s team is working on the
Overland Park, KS. This project would initially be 9 months with the
potential of additional works based on the approval of additional phases. I
am not sure where things stand on your end but if this is something that
you would be interested in please send the most recent version of your
resume.
Job Description:
Client is looking for a candida... 阅读全帖
J****R
发帖数: 373
43
面tesla Services and Integration team,
烙印HM,一上来问工作经历。我大概说了一下.然后问技术问题。
用过WCF?
用过,
那就写写wcf的流程。
我大概说了一下数据怎么从DB里一直到client。貌似我说的跟他想要听的不一样,那面
没什么反应。
停顿了一下,懒洋洋的问了一个简单的sql, 这时候我英语说的有点乱,他那面就不耐
烦了,马上出下一题找2个表的不同record, 我用nest query做,他又问如果数据很多
怎么办,我这迟疑了几秒钟,那面就更不耐烦了,转回去问我用没用过message
context, 我表示没有用过,这时候能听出来那面他好像已经不想问下去了,停顿了一
下,又问wcf里面exception怎么处理,我按照c#普通的exception处理方式说了一下。
然后那面就说:what are you good at? c#? sql? wcf? entity framework? what are
you good at?
我当时气就上来了,压住火气跟他说c#, 他就接着有气无力的问了一个问题,我没听清
,他又有气无力的说了一遍... 阅读全帖
h********8
发帖数: 7355
44
【 以下文字转载自 LosAngeles 讨论区 】
发信人: Specialone (SpecialOne), 信区: LosAngeles
标 题: Senior fulltime .NET Developer needed urgently in my comp
发信站: BBS 未名空间站 (Wed Jan 12 20:58:21 2011, 美东)
Senior .Net Developer needed. (Salary matches the market rate)
5+ years working with Microsoft .NET 2.0 - .NET 4.0 Frameworks. Deep knowledge and advanced skills in developing scalable, fast executing and secure communication software based on ASP.NET and WCF technology stacks.
Exceptional knowledge of the ASP.NET ... 阅读全帖
s******g
发帖数: 755
45
Chapter 5
Washington Commonwealth Federation & Washington Pension Union
By Jennifer Phipps
More than 1,100 delegates attend 1940 Seattle convention of the Washington
Commonwealth Federation. The WCF nominated candidates for state and local
offices, functioning as a leftwing caucus within the Democratic Party. (
February 8, 1940)Imagine the difficulties of today trying to organize such
disparate groups as welfare mothers, members of Democratic Party clubs, AFL-
affiliated members, militant radica... 阅读全帖
i***0
发帖数: 8469
46
来自主题: Seattle版 - 60 $ to 70 $ per hour
I have found your resume for SDE and SDET position.
Below is the JD(s) for multiple req’s. Please sent me your resume and
availability ASAP:
Role: Sr.SDE
Location: Redmond, WA
Duration: Long Term
· Experience designing and building large scale consumer web
services (SOAP) and enterprise level integrations
· Experience directing a team of 5 – 8 developers and testers
independently
· Strong in C#, WCF, SQL , .NET 3.5/4.0, XML
· Strong with Windows Workflow Foundat... 阅读全帖
m*******I
发帖数: 1049
47
☆─────────────────────────────────────☆
wcf (wcf) 于 (Mon Sep 29 16:43:51 2008) 提到:
我九月从外州搬到马里兰,把车也开过来了。看见马里兰州的网页上介绍说要求在居住
60天以内到DMV换马里兰驾照,并且给车注册一个马里兰州title和牌照。
我已经去过DMV一次,那个办事员说我的J1签证过期了,我已经在美国待了两年,签证
当然过期了。不过后来因为资料没有带齐就没有深究这个问题,反正办不成。记得曾经
在版上看见过有人遇到过这样的傻叉办事员,硬说签证过期就不给办,怎么解释和出示
DS2019表都不行。请问遇到这样的情况该怎么办呢,要求见supervisor还是什么办法啊
?不能因为那个办事员傻我就办不成驾照阿。我去的是silver spring那个DMV,里面的
顾客95%都是老墨,汗。
另外我的车子和驾照都差不多还有大半年才过期,我如果现在不注册车和驾照可以吗?
假如我半年后才办,DMV会有什么样的penalty吗?不知道哪位有这样的经验?
新来乍到,问题多多,谢谢大家。
☆─────────────... 阅读全帖
vn
发帖数: 6191
48
来自主题: WashingtonDC版 - 前版大和我是两个闲人
至少vb.net是vb来的亚
c#在风格上和vb是不像 但(我临时搜了一下) 人家的说法是借鉴了c++
java的创始人非说是用了java
而.net发展到今天已经和java基本摆脱阴影了
关于wcf的手写 你可能没有明白我的意思
http://code-magazine.com/Article.aspx?quickid=0809101
这是wcf里挺有名的一个文章 是针对wcf的缺陷提出来的
但这篇文章也不涵盖所有情况 而wcf在官方提供的文档基本没有怎么手写的 我个人不
喜欢这个东西 即使某种情况下没其他可用的
至于senior 我是想说 这几年遇到几次java entry的招人 而.net遇到基本都要
senior
所以机会不比java好
x*******1
发帖数: 28835
49
来自主题: Basketball版 - C# $$$$ (转载)
【 以下文字转载自 JobHunting 讨论区 】
发信人: iq350 (iq350), 信区: JobHunting
标 题: C# $$$$
发信站: BBS 未名空间站 (Tue Jul 3 13:42:12 2012, 美东)
I am looking for a .Net Developer that has significant exposure in Asp. Net,
C#, WPF/WCF/Silverlight for one of our client’s team is working on the
Overland Park, KS. This project would initially be 9 months with the
potential of additional works based on the approval of additional phases. I
am not sure where things stand on your end but if this is something that
you would b... 阅读全帖
l******o
发帖数: 67
50
来自主题: Basketball版 - ESPN排的历史10大分卫
科比是命好,韦德要不是伤病和队友屎,成就肯定前三。 看看 科比 的抱大腿记录
From 99/00 to 01/02
Lakers - 25-7 (0.781 win%) without Kobe
Lakers - 13-13 (0.500 win%) without Shaq
Shaq = won all those rings by himself
2003
Lakers = 45-22 with Shaq (0.672 win%)
Lakers = 5-10 without Shaq (0.333 win%)
2004
Kobe and Shaq both missed 15+ games so I won't use W-L data
Kobe = all time playoff missed shots leader
Shaq = all time playoff off. rebounds leader (getting Kobe all his
opportunities)
PLAYOFF USAGE%
00 Shaq= 31.2...Kobe= 26.7 - Cham... 阅读全帖
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)