由买买提看人间百态

topics

全部话题 - 话题: xsd
1 2 下页 末页 (共2页)
b**********g
发帖数: 806
1
来自主题: Java版 - 怎么样同时build两个xsd file
除非我改动了第二个,ant才会去找第二个,不然总是去第一个.因为总是build第一个,这
样我在第二个里面定义的,system就没生成.我现在改成了这个样子,显示的就是compile
client_2.0.xsd and others. 以前都是要么显示compile client_2.0.xsd, 要么显示
compile streaming_1.0.xsd.
也不知道我说清楚了没有:(
package="net.company.ui.web.client.jaxb">
>



b**********g
发帖数: 806
2
来自主题: Java版 - 怎么样同时build两个xsd file
我的build.xml里要build两个xsd,象下面这样子.但是不能同时build两个,我看到有说u
se a nested element,用过的给个sample好吗,谢谢谢谢.
schema="${src.xml}/ruckusStreaming_1.0.xsd"
target="${target.src}"
package="net.company.ui.web.client.jaxb">




target="${target.src}"
package="net.company.ui.web.
f*******h
发帖数: 1269
3
Could you read some tutorials first?
Goto: http://www.w3.org
There is no standard called XSD. XSD is normally used as the file extension of
XML Schema.
t**r
发帖数: 3428
4
来自主题: Stock版 - 抛了nvda入xsd吧。呵呵
抛了nvda入xsd吧。呵呵
反正肥水不流外人田
b**********g
发帖数: 806
5
来自主题: Java版 - 怎么样同时build两个xsd file
就是每次build的时候,总是只compile第一个,client_2.0.xsd.
s***e
发帖数: 28
6
来自主题: XML版 - 使用group出现问题
我在宣告group的时候发生一个问题...
1. 这是合法的








2. 这不合法的








<
c***c
发帖数: 6234
7
来自主题: XML版 - XML schema questions
I am new in XML and need some help.
for example
xml schema is

http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.demo.org"
xmlns="http://www.demo.org"
elementFormDefault="qualified">





t*******e
发帖数: 684
8
来自主题: Java版 - JAXB
WSDL有好几个部分,包括XSD,Operations,SOAP bindings. 其中XSD是data structure,
Operations是method interfaces.
只有XML没有XSD是不能用JAXB的, 设想XSD就是Java class definition,XML是Java
object.有了XSD,就能用JAXB生成Schema derived classes. 如果给你的string包含所
有的elements和attributes,可以自己搞个XSD,再用JAXB.
l***y
发帖数: 25
9
来自主题: XML版 - Help: Several questions on XML

Or I want to get the answer for a simple version of this: If I want to write
a schma named test2.xsd which includes all the elements defined in test1.xsd
and defined some more elements, but test2.xsd has changed the annotations of
the elements in test1.xsd, leaving the names and types unchanged. Now, can I
just simply import the namespace of test1.xsd in test2.xsd and only define the
extra elements? The changes on annotations will not make any difference in
using the schemas. Is that correct?
A**o
发帖数: 1550
10
来自主题: Java版 - JAXB
继续问问题,如果给你一个xml数据样本,没有xsd,你怎么生成自己的xsd和java类?
如果数据样本以后有一定的扩展,你怎么保持你的xsd和java跟得上形势?
目前的use case是在使用人家的web service,人家的wsdl上说返回的是一个string,
但实际上是一个xml string……我要parse丫的,怎么做比较容易呢?
我现在是手动model java类,然后以此为样板生成自己的xsd,然后用JAXB unmarshal。
有啥更简洁的方法吗?当然的,要让人家更新wsdl是不大现实的。nnd
g***l
发帖数: 18555
11
来自主题: Database版 - SSIS+ XMLSCHEMAL出XML
自问自答一下,XSD就跟TABLE SCHEMA是一样的,要不知道TABLE SCHEMA也就没法
SELECT,SSIS有一个XML CONTROL可以VALIDATE XSD,出错可以SEND EMAIL,或者用DATA
FLOW CONTROL,DATA SOURCE ANY XLM 加自己的XSD,这样就可以把XML SCHEMA翻译成
TABLE SCHEMA了。
老板提出的要求,自己不学真是答不出来啊
c******n
发帖数: 4965
12
I don't think so
if you check the following simple code
///////////////////////
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class TTT {
private String p ;
public String getP() { return p;}
public void setP(String p) { this.p = p;}

public void fun() {
System.out.println("value" + p);
}

public static void main(String args[]) {

ApplicationContext ctx ... 阅读全帖
k********n
发帖数: 18523
13
来自主题: Stock版 - 想找个长线的股票
XLU,
XRT,
XES
XSD
XLF
XME
XOP
XLK
emphasizing on XES for long term,
specially focus on XSD for short -mid term
A*******n
发帖数: 625
14
来自主题: DotNet版 - add web service
加了也没用。
他们的做法是去他们的网站下载需要的wsdl和xsd files。 用svcutil 建一个cs和一个
config 文件, 然后在写function。
他们说function最后送出去的format like below:
?xml version="1.0" encoding="UTF-8"?>
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">


http://docs.oasis-open.org/wss/2004/... 阅读全帖
t*******e
发帖数: 684
15
来自主题: Java版 - JAXB
可以自己搞个XSD,再用JAXB runtime parsing XML string.
或者用JDOM,dom4j之类的不要求XSD.
A**o
发帖数: 1550
16
来自主题: Java版 - JAXB
我现在是先建好java model,然后生成xsd,因为我没有xsd的开发经验。
昨天折腾了几个小时,搞定了。想听听大家有没有类似的经历和建议。
S*********t
发帖数: 78
17
我看到很多人都是从数据库来生成domain object(entity)和 xsd ,然后用在web
service 数据传递。
可不可以先写 domain objects 然后用这个object 生成 xsd 呢?
感觉第一种方法 OO 不够好,是以数据库表为驱动的。
大家怎么看这个问题?
t*******e
发帖数: 684
18

我开始的想法和你的类似。但实际上WS已经发展的非常远了。
Object centric web services比较合适企业内部使用,原因是简单,xml透明。但当通
信要跨越corporate boundaries 时,document centric (contract-first) approach
更合适些,这种情况下,method (operation) binding就被忽略了,所有的信息都包含
在XSD之中,包括具体的operations,transaction, security,policy等等。
修改一下,所有的信息都包含在XSD之中,以及SOAP headers里面。
g**********y
发帖数: 14569
19
来自主题: Java版 - XML schema to instance generator?
Anyone knows a good Java XML instance generator (from XSD schema)? open
source is better.
Sun used to have a instance generator, but took off from its website. And I
heard it doesn't do well with XSD. If you still have a copy of this xmlgen.
jar, can you share it?
Thanks.
s*****i
发帖数: 650
20
If I have a xsd file, I can convert it into DTD file, how can I get the
binding schema name extension is xjs? Any tool can convert XSD file into
DTD AND binding schema file?
Thanks.
r*****s
发帖数: 985
21
来自主题: Java版 - 帮忙看看maven 的问题
maven一开始上手确实痛苦,
Stabilized就好了。
有一点about windows Xp env,
if you are using it.
by default maven saves all jars under your home dir .m2
but on xp it could be a long dir name with space in it,
e.g.C:\Documents and Settings\youruname\.m2
some compiler/maven plugin may fail because of that.
the solution is to put a settings.xml under the dir to re-direct
it somewhere else:
http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocat... 阅读全帖
z*********e
发帖数: 10149
22

这个是什么意思?不明白
我在tomcat manager里面看到的running app显示这个springapp的running 状态是
false,我在tomcat manager尝试start这个app的时候message: FAIL - Application
at context path /springapp could not be started
尝试访问localhost:8080/springapp/的时候,浏览器里显示
HTTP Status 404 - /springapp/
type Status report
message /springapp/
description The requested resource is not available.
Apache Tomcat/6.0.41
我的./springapp/war/WEB-INF/web.xml文件是

xmlns="http://java.sun.com... 阅读全帖
d******e
发帖数: 152
23
thank you very much.
Now it works. What I did is:
1. new a typed dataset,
2. find the connectionstring, and select command
3. new adapter(command, connectionstring) (this dataadapter is different
from .xsd)
4. adapter.fill(dataset)
(I didn't use the adapter class in .xsd)
请问现在比较流行什么技术来access数据库 based on c# window from,。net3。5?
(linq?dataset and adapter 组合?)
b***s
发帖数: 117
24
来自主题: Programming版 - 怎么设计这个client
我感觉这个有点象jaxb xsd的一套,xsd定义数据结构,jaxb做marshall, unmashall
I*******r
发帖数: 211
25
【 以下文字转载自 Linux 讨论区,原文如下 】
发信人: IExplorer (Powered by .COM), 信区: Linux
标 题: 救命, 怎样用SOAP::Lite访问.NET WEB Service?
发信站: Unknown Space - 未名空间 (Thu Jun 10 19:52:27 2004) WWW-POST
我可以调用函数, 但传如的值为空. Request Message 基本上和SERVICE 提供的消息一致
, 只是 有这点区别:
要求:
http://192.168.0.118/WebService1/">
string
string

生成:
http://192.168.0.118/WebService1/">
string
string
l***y
发帖数: 25
26
来自主题: XML版 - Help: Several questions on XML
1. Is there any kind of "polymorphism" in XML like
in Java? Can type substitution do this?
2. Having defined an XML schema(*.xsd), How can I
validate my XML instance file using any XML parser?
I am using SAX parser.
3. And given a *.xsd file, if I want to define any
instance file, I can use the global element and
global attribute. Can I directly use the global types
(either simple or complex) defined in the schema?
Maybe the questions are trivial or not well stated, but
your help will be highly
I*******r
发帖数: 211
27
【 以下文字转载自 Linux 讨论区,原文如下 】
发信人: IExplorer (Powered by .COM), 信区: Linux
标 题: 救命, 怎样用SOAP::Lite访问.NET WEB Service?
发信站: Unknown Space - 未名空间 (Thu Jun 10 19:52:27 2004) WWW-POST
我可以调用函数, 但传如的值为空. Request Message 基本上和SERVICE 提供的消息一致
, 只是 有这点区别:
要求:
http://192.168.0.118/WebService1/">
string
string

生成:
http://192.168.0.118/WebService1/">
string
string
y*****g
发帖数: 6223
28
来自主题: Automobile版 - Golf GTI 2.0T再花一万刀MTM改到310hp
GLi带, gti选配?不清楚
好像交xSD。
j*********s
发帖数: 61
29
来自主题: Classified版 - NYC mid town 金融公司招码工
老印朋友forward他们公司的opening,只能网投,正在面,合适的话很快就有回复。虽
然是老印提供的职位,但这个公司老印不多。
Experience:
5-10 years of experience working on financial systems, preferably
trading related technology
5+ years of core Java development (1.5 and up)
3+ years of UI (Swing) development experience
Buy side and/or sell side knowledgeable
Knowledgeable about fixed income, MBS, FX and other markets
BA/BS or advanced degree in Computer Science, Information Systems,
Mathematics or a related field.
Excellen... 阅读全帖
l****3
发帖数: 896
30
xsd哪家自助餐好吃?
l****3
发帖数: 896
31
xsd哪家自助餐好吃?
B*********d
发帖数: 97
32
2 developers & 1 tester needed in our group.
You can send resume to n*****[email protected].
I will directly forward to the manager.
Senior Product Developer
Skills, Experience and Knowledge
· A degree in Information Technology
· Proven experience with at least one of the following technologies:
Microsoft .NET 2.0 or higher
server-side Java
(D)HTML, JavaScript, CSS and AJAX
XML, XSD, XSLT
· Willing to learn new technologies
· Experience in leading a development team in their daily dev
q*********u
发帖数: 280
E***X
发帖数: 885
34
来自主题: JobHunting版 - Java Jobs
I am posting the jobs for one of the best recruiters I have worked with.
Please contact Kathleen directly as following:
Kathleen Mitchell
Executive Recruiter
f******************[email protected]
Contact : 201 468 0519
High Frequency Connectivity Developer
The Quantitative Prime Services team is part of the Equities Technology
organization at Barclays Capital.
This team is responsible for the development and maintenance of a low
latency trading platform that
caters to clients engaged in high-frequency ... 阅读全帖
j*********s
发帖数: 61
35
来自主题: JobHunting版 - NYC mid town 金融公司招码工
老印朋友forward他们公司的opening,只能网投,正在面,合适的话很快就有回复。虽
然是老印提供的职位,但这个公司老印不多。
Experience:
5-10 years of experience working on financial systems, preferably
trading related technology
5+ years of core Java development (1.5 and up)
3+ years of UI (Swing) development experience
Buy side and/or sell side knowledgeable
Knowledgeable about fixed income, MBS, FX and other markets
BA/BS or advanced degree in Computer Science, Information Systems,
Mathematics or a related field.
Excellen... 阅读全帖
b******s
发帖数: 25
36
Please contact:
Alex Melaik
Technical Engineering Recruiter
CATAPULT STAFFING, INC.
1820 Preston Park Blvd, Suite 1600, Plano, TX 75093
Office: 972-299-8809
Fax : 469-298-3473
Cell : 972-802-9627
A*********[email protected]
See below information from recruiter Alex. He said there are two very good
positions (senior software engineer) in Sugarland, TX. They are full time
positions in a global company with a salary range from 105-120K. Sugarland
has excellent elementary/middle/high scho... 阅读全帖
W**********2
发帖数: 30
37
公司名就不说了, 板上的大公司。LZ 找工作到现在从没遇到过这种情况。
LZ 用JAVA 面的是backend engineer, 面试官是烙印,一共面了四道题: 面之前没问
LZ背景和简历。
1. 根据两个C++ 函数, 写另一个函数。 LZ 跟烙印讲自己是用JAVA, 烙印说用c++。
2. 问SQL, 我说在学校时候学过, 但工作了以后就没写过了,然后他出了一道SQL题目
,要用到 Left join,我以为backend 不会问SQL 就没复习,简单的SQL 还记得,这种
几个table join 的真心不记得了。
3. leetcode 题, 写完要讲解,但是LZ一开口就被烙印打断,每次都没怎么讲解他就
跳到下一个问题。LZ 用Java写的。
4. 问Python题, lz简历上没有写会python, 只是有一个project 用java 和 python,
但lz 在简历上就写了LZ负责的就是Java 部分。 烙印问到 Python时候我就说我不会
,但他不由分说就出题。我自然不会,他就说 ok, cool.
5.问前端知识,xsd 和json 的区别。
这是这家公司的第二... 阅读全帖
p*****3
发帖数: 34
38
He is trying to get his job done and not flexible. You could do better on
preparing the interview.
My guessing his comments will be something like this.
Hi Decision Maker,
1. He has limited knowledge about C++, and couldn't do this and that.
2. He doesn't know how to do left join on sql
3. His java skill is this and that based on blah, blah
4. He claimed he had done some project with python, however he couldn't do
this with python.
5. He is telling me the difference between xsd and json are blah... 阅读全帖
b*********g
发帖数: 1
39
来自主题: JobMarket版 - Java Developer
Job Type: Full-Time
Location : Houston, Texas
Responsibilities : This person will be responsible for developing and
maintaining our end-to-end business process applications built with the
Adobe LiveCycle J2EE workflow technology.
Constructing process/software, which meet requirements, promote re-use of
software components, and facilitate ease of support.
As a member of the team, you will work on unique and innovative solutions on
a highly scalable, multi-framework environment.
You wil... 阅读全帖
M*****8
发帖数: 17722
40
股票符号 日期 最后价 跌幅 百分比
AAR, 20110520, 24.4999, -0.1624, -0.7
AAUKY, 20110520, 23.8300, -0.0513, -0.2
AAWW, 20110520, 63.9700, -1.4313, -2.2
AAXJ, 20110520, 62.6625, -0.3633, -0.6
AB, 20110520, 21.5300, -0.0545, -0.3
ABAX, 20110520, 30.8500, -1.4335, -4.6
ABB, 20110520, 26.3200, -0.0229, -0.1
ABCO, 20110520, 50.9300, -0.4103, -0.8
ABFS, 20110520, 25.3500, -0.7916, -3.1
ABW-A, 20110520, 25.2... 阅读全帖
w**k
发帖数: 6722
41
这里都是ETF
发包子吧
AADR AAIT AAXJ ACIM ACWI ACWV ACWX ADRA ADRD ADRE ADRU
ADZ AFK AGA AGF AGG AGLS AGND AGOL AGQ AGZ AGZD AIA
AIRR ALD ALFA ALTS AMJ AMLP AMPS AMU AMZA AND ANGL
AOA AOK AOM AOR ARGT ARKG ARKK ARKQ ARKW ASEA ASHR
ASHS AUNZ AUSE AXJL AXJS AXJV AYT AZIA BAB BABS BAL
BAR BBC BBH BBRC BCHP BCM BDCL BDCS BDD BFOR BIB BICK
BIK BIL BIS BIV BIZD BJK B... 阅读全帖
g****t
发帖数: 31659
42
来自主题: Stock版 - 半导体十年来最好年景, why?
XSD年初41,现在57。作为半导体公司老兵,我真不知道发生了什么。
整个板块这么厉害,我猜一定是有政策出来。不可能是纯技术原因。
要么就是中国投资刺激的。
j********r
发帖数: 96
43
WE are looking to find 2 candidates immediately.
This is a Contract-to-Hire position. Pay Rate: $50+ per hour.
If interested please contact: j**[email protected]
Requirements:
- 8+ years experience in OO development (Java or C/C++)
- Proficient in XML, XSD, DTD
- Familiarity with XBRL is a significant plus
- Experience with JAXB, XSLT, SAX, Xerces
- Experience developing for multi-tier distributed applications using J2EE,
JMS, JMX, JavaBeans, EJB, Java, JavaScript, JSF, JSP, XML, SOAP, JAXWS, an
S*******e
发帖数: 525
44
I may help pass your resume to the manager.
================================================
AT&T Sr. JAVA Developer att.com (eCommerce Bothell WA.)
Location: Bothell, WA
Description
The AT&T Mobility Consumer eCommerce Team is responsible for AT&T's online
presence (att.com) for selling products and services. This industry leading
telecom site has previously ranked in the top five retail web sites visited
on both Black Friday and Cyber Monday. We support millions of UVs every
month and enable... 阅读全帖
T*****n
发帖数: 223
45
来自主题: Seattle版 - Expedia Hiring some Dev/PM
Our group have multiple dev/pm positions open, use below url to search jobs.
http://expediajobs.findly.com/candidate/job_search/quick/result
Below is example dev position job requirement. You can apply directly or
send me your name/emailaddress/JobID(5 digits) if you need me to refer.
Qualifications:
•A minimum of 3 years designing and developing large scale, production
quality code in a professional software developer role
•Significant experience with client side technologies such a... 阅读全帖
b******s
发帖数: 25
46
Please contact:
Alex Melaik
Technical Engineering Recruiter
CATAPULT STAFFING, INC.
1820 Preston Park Blvd, Suite 1600, Plano, TX 75093
Office: 972-299-8809
Fax : 469-298-3473
Cell : 972-802-9627
A*********[email protected]
See below information from recruiter Alex. He said there are two very good
positions (senior software engineer) in Sugarland, TX. They are full time
positions in a global company with a salary range from 105-120K. Sugarland
has excellent elementary/middle/high scho... 阅读全帖
l****r
发帖数: 118
47
来自主题: WashingtonDC版 - 发个开发职位
有兴趣私信我。
Senior Solutions Engineer
DEPARTMENT: Enterprise Applications
STATUS: Full-time/Regular/Exempt
JOB OBJECTIVE:
The Enterprise Applications team works across the Technology & Operations
corporate area to design scalable and flexible integration solutions that
support Broadcast and Enterprise Systems workflows.
The Senior Solutions Engineer collaborates with product team and business
users throughout PBS to build and maintain system integrati... 阅读全帖
s***s
发帖数: 7178
48
来自主题: Whisper版 - 洋同学们
问题是我的帖子你看不见啊
About: Ramesses IIIAn Entity of Type : people, from Named Graph : http://dbpedia.org, within Data Space : dbpedia.org Ramesse III (... – ... ) è stato il secondo sovrano della XX dinastia egizia. |-bgcolor="EFEFEF" |align="center"|Nome Horo |align="center"|Altri nomi |- |align="center"|Ka-nekhet Aa-nesyt (numerose varianti) |align="center"|Ramesse III |}
Property Value
dbpedia-owl:abstract ■Ramses III. (* um 1221 v. Chr. ; † 7. April
1156 v. Chr. ) war ein altägyptische... 阅读全帖
i****a
发帖数: 36252
49
来自主题: Database版 - SQL and XML
In SQL 2008, can can I generate an xml file with mixed elements in it?
For example:



Alice Smith
123 Maple Street
Mill Valley
CA
90952


Robert Smith
8 Oak Avenue
Old Town
PA
... 阅读全帖
l*****e
发帖数: 3343
50
I need more info to help you...
using xsd.exe - generate objects from your xml, Populate your XML files to
objects, load forms to memory, and then assign values of forms using xml
objects.

set
is
1 2 下页 末页 (共2页)