y**u 发帖数: 42 | 1 初学程度。
最近做一个web service的项目,具体的endpoint还没出来,要求先写test client准备
测试。
Test Client端需要用到一个外部的dll,决定用python (with ctype)写。古了一下,
发现python没有官方的soap库,SOAPpy只有for python 2.2版本的,我们的测试环境全
部预装2.5版本的。(之所以提SOAPpy是因为和新的ZSI比它网上的文档实例似乎比较多
,虽然是同一样东西。)
小试了一下ZSI,在localhost上deploy了一个简单的服务,i.e. Test.asmx,提供一个
web method
int Add(int a, intb)
{
return (a+b);
}
http://localhost:8085/Test.asmx/Add?a=1&b=2
运行正常。
但是用zsi中的binding return 403
mb = Binding(host='localhost', port=8085, url='/Test.asmx', tracefile=sys.
stdout)
re |
|
y*c 发帖数: 904 | 2 jaxb自动换函数名字
一个web service endpoint的函数名字是abc_de, wsdl保持不变
client 用wsimport, 建立的java就变成AbcDe了。client 无法根据wsdl中的定义写
code了。
underscore "_" 可以通过custom jaxb 的globalbinding修改,但是capitalized
first
letter是怎么回事啊。
JAXB的算法搞什么搞啊,为什么要这么多此一举。
请赐教
搞了好几天搞不定。 |
|
g*****g 发帖数: 34805 | 3 因为有多个线程在同一个数据结构上进行读写,最少最少你也得来一个
ConcurrentHashMap吧,Java的HashMap是不线程安全的。C++的std::hash_map也是不线
程安全的。
你怎么知道每个entry的size是一样大的?楼主要统计某个操作的时间,这个操作的时
常跟Endpoint的内容有关,添加一些相关的Metadata进入Entry,是再正常不过的扩展。
这就是咱们的区别,你只看你今天要用到的,20分钟能写完了,有没有bug还两说(线程
安全)。我看到的是几个普通的扩展要求,都不是一个小时或者一天能完成的。轮子是
现成的啥都有,你非要从砍木头
开始。还要说,看,砍个木墩要不了20分钟。 |
|
g*****g 发帖数: 34805 | 4 楼主说得很清楚,是server app,client端引发的操作,有多个endpoint,有另外的
server线程需要读这些统计。线程安全是最基本的要求。你给个数据结构,连线程安全
都做不到,还说20分钟够了,我无语。人要轮子,你不能给个木墩凑数吧。 |
|
d*******r 发帖数: 3299 | 5 你说的对,大多数情况是 1500, 所以没啥问题,但是我感觉还是不是 100% 保险
The MSS that is chosen is the smaller of the values provided by the two ends
. If one endpoint does not provide its MSS, then 536 bytes is assumed, which
is bad for performance.
http://publib.boulder.ibm.com/infocenter/aix/v7r1/index.jsp?top
对了,你 SSA 的 C10M 系列进行到哪里了? :) |
|
c***d 发帖数: 996 | 6 if you are the owner of mitbbs, and allow cors request on a specific api
endpoint, then yes. otherwise no. |
|
c*********e 发帖数: 16335 | 7 spring,hibernate,maven,tomcat,
contract first,我用jaxb2-maven-plugin把写的2个xsd文件产生一大堆文件,然后建
立endpoints,产生wsdl. |
|
|
g*****g 发帖数: 34805 | 9 这个完全没有vendor lockin,AWS ELB就是一个 load balancer,跟应用无关。后面的
Endpoint是个service layer,也是必须的。 |
|
p*****2 发帖数: 21240 | 10
就查到了这个。这个也是利用dropwizard做web server吧?跟T那个没本质区别。大牛
是用那种方式直接从mobile写kafka呢?
HTTP REST
Apache Kafka HTTP Endpoint for producing and consuming messages from topics
Maintainer: Big Data Open Source Security LLC
License: Apache 2.0
https://github.com/stealthly/dropwizard-kafka-http |
|
c*******0 发帖数: 5247 | 11
replication,
using
binary
an
我看不出这个东西比Appengine好在哪里。Appengine也不用考虑replication,load
balancing,cache,有Android/iOS API,比parse便宜不知道多少倍。
当然你要写一点点后端程序,但有endpoint,这个一点点几乎可以忽略不计。 |
|
a*********y 发帖数: 63 | 12 正确。
HTTP Basic Authentication 在 SOAP Authentication 之前。如果你通不过认证,你
看不见SOAP Endpoint.这是一种常见的保护 Web Service 的方式。 |
|
f********x 发帖数: 99 | 13 Batch is a special case of streaming
Posted on September 15, 2015 by Kostas Tzoumas
In recent blog posts, we introduced what we deem as requirements for systems
to classify as stream processors, and followed up with a detailed
comparison of current approaches to data streaming, including extensive
experiments comparing Apache Flink and Apache Storm.
We are not the only ones to make the point that streaming systems are
reaching a point of maturity which makes older batch systems and
architectures... 阅读全帖 |
|
b***i 发帖数: 3043 | 14 都有了,根据asioref-1.10.6.pdf,使用的是async_accept,然后
asio::io_service io_service;
tcp_server server(io_service);
io_service.run();//这一步怎么替换成异步?
public:
tcp_server(asio::io_service& io_service)
: acceptor_(io_service, tcp::endpoint(tcp::v4(), 13))
{
start_accept();
}
private:
void start_accept()
{
tcp_connection::pointer new_connection =
tcp_connection::create(acceptor_.get_io_service());
acceptor_.async_accept(new_co... 阅读全帖 |
|
n**n 发帖数: 626 | 15 I don't quite understand the relation between singleton manager object
and static member variables.
singleton of manager class is usually implemented using a getServer() method
, while static member variable is more like a global variable under a class
name.
btw, I never see such 新潮.
[在 bihai (学得不好) 的大作中提到:]
:有一个类,TCPServer{
:public: TCPServer(asio::io_service& io_service, const tcp::endpoint&
listen_endpoint){...}
:........... |
|
d******a 发帖数: 32122 | 16 就是endpoint protection 11.0
过去的版本是每个软件往外发送信息的时候,第一次都会问你是否放行
现在似乎是根本不问就放行了 |
|
d******a 发帖数: 32122 | 17 我过去用的是symantec的endpoint,防火墙只管进入的不管出去的
现在只保留了防病毒部分,防火墙部分已经屏蔽了
改用comodo的防火墙,而且有主动防御功能,任何软件如果安装或者修改注册表,都会
被拦截 |
|
|
|
a**o 发帖数: 53 | 20 Symantec endpoint protection 很安静,
上网的过程中,突然弹出一个窗口,提示系统有很多病毒。还自动打开资源管理器的窗
口,显示各个分区,不停的闪,同时红色字体显示各个分区文件夹有多少病毒。
把窗口叉掉后,好像没有什么反应。
请求应该怎么办? |
|
w*********s 发帖数: 8428 | 21 电脑上装了个symantec endpoint protection,好象不怎么管用,经常报告有木马。大
家能不能推荐一个杀木马的? 或者好点的杀毒软件也行。如果能告知下载地点就更好
了,呵呵。
多谢 |
|
e******s 发帖数: 309 | 22 公司的安全措施很严格,公司电脑上的数据不许随便外传。可以我东奔西跑只带一个笔
记本。前一阵从USB传data被IT和HR给教训了一次。
朋友说主要是symantec endpoint protection可以监视USB口。请问SEP或者其他后台程
序可以监视Dropbox之类的数据传输吗?我不怕block connection,就怕被监视记录.
另外我如果强行关闭SEP,公司网上有记录吗? local computer上开关SEP的log在哪里?
谢谢. |
|
e******s 发帖数: 309 | 23 公司的安全措施很严格,公司电脑上的数据不许随便外传。可以我东奔西跑只带一个笔
记本。前一阵从USB传data被IT和HR给教训了一次。
朋友说主要是symantec endpoint protection可以监视USB口。请问SEP或者其他后台程
序可以监视Dropbox之类的数据传输吗?我不怕block connection,就怕被监视记录.
另外我如果强行关闭SEP,公司网上有记录吗? local computer上开关SEP的log在哪里?
谢谢. |
|
c*******n 发帖数: 671 | 24 有symentec endpoint protection, McAfee virusscan enterprise 8.8
还有免费的AVG,Avast, Microsoft,
360卫士,360杀毒,瑞星等等
怎么组合最好阿?我的系统配置不高,要个系统负载最小的推荐。请给指教一下,谢谢
! |
|
l****z 发帖数: 29846 | 25 symentec endpoint protection |
|
c*******n 发帖数: 671 | 26 有symentec endpoint protection, McAfee virusscan enterprise 8.8
还有免费的AVG,Avast, Microsoft,
360卫士,360杀毒,瑞星等等
怎么组合最好阿?我的系统配置不高,要个系统负载最小的推荐。请给指教一下,谢谢
! |
|
l****z 发帖数: 29846 | 27 symentec endpoint protection |
|
|
|
r****y 发帖数: 26819 | 30 endpoint不用每年付钱吧?
为啥个人版的每年都要掏钱,还很容易理解?每年掏20块钱左右,只要四年就赶上企业版
的价格了,这合理吗?明摆着是欺负个人用户信息不全啊。
花钱买了norton的人,不是很尴尬吗?继续用下去就每年缴费,要么就得扔掉买别的。
就算没有免费的企业版,还是买企业版合算啊。干嘛向别人推荐性能又不好,还抢钱的
norton呢?
样也 |
|
|
r****y 发帖数: 26819 | 32 ft,你这么说不是整个否定企业版嘛
endpoint有upgrade的价格啊
凭啥企业版就不升级? |
|
|
m**********e 发帖数: 8 | 34 机器是ThinkPad SL500, OS是Vista Home Basic,Symantec End Protection(
Symantec 11)后不能正常运行。具体情况如下。
Symantec安装后,不断有一个 interactive services dialogs detection提示pop up,
title 是 A program can't display message on your desktop, This program may
need information or permission to complete a task.
....
Program(s) or devices(s) [sic] requesting attention.
Message title: Microsoft Visual C++ Runtime Library
Program pah: C:\Program Files\Symantec\Symantec Endpoint Protection\Smc.exe
This problem happens because of |
|
|
w*****z 发帖数: 121 | 36 Symantec Endpoint, Microsoft security Essential, AVG, AVAST or Avira?
是不是大家都会选第一个啊? |
|
s*****7 发帖数: 433 | 37 电脑: Thinkpad X60;系统:winxp sp3; 防、杀毒软件:Symantec Endpoint
Protection, 金山卫士。
上星期正在浏览网页,突然跳出无数个窗口,然后当机。重启后桌面和开始菜单什
么也没有,无法运行任何软件。用系统还原后发现所有软件文件像标都变暗被设置成隐
藏。
用Symantec全面扫描发现有木马Trojan.gen2 被隔离,用不同杀毒软件经过整个一
天的查杀,不再有Trojan.gen2跳出,也没有发现其它病毒。但是在任务管理器发现CPU
使用率100%,是由一个ping.exe导致。可在任务管理器里删除,但是隔1~2分钟又被加
载,占用100%CPU和1G多内存。加载网页经常会被跳转,指向各种垃圾和广告网页,无
法找出原因。
快要被折腾疯了,望大牛指点迷津,帮帮小弟。
谢谢! |
|
e******s 发帖数: 309 | 38 公司的安全措施很严格,公司电脑上的数据不许随便外传。可以我东奔西跑只带一个笔
记本。前一阵从USB传data被IT和HR给教训了一次。
朋友说主要是symantec endpoint protection可以监视USB口。请问SEP或者其他后台程
序可以监视Dropbox之类的数据传输吗?我不怕block connection,就怕被监视记录.
另外我如果强行关闭SEP,公司网上有记录吗? local computer上开关SEP的log在哪里?
谢谢. |
|
r****y 发帖数: 26819 | 39 现在企业版的叫Endpoint,个人版的叫360? |
|