-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRuleML05-CFP-v4.htm
1255 lines (1155 loc) · 72.1 KB
/
RuleML05-CFP-v4.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=Word.Document>
<meta name=Generator content="Microsoft Word 11">
<meta name=Originator content="Microsoft Word 11">
<link rel=File-List href="RuleML05-CFP-v4_files/filelist.xml">
<title>Rules and Rule Markup Languages for the Semantic Web </title>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="State"/>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="country-region"/>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="PlaceName"/>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="PlaceType"/>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="PersonName"/>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="date"/>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="place"/>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="City"/>
<!--[if gte mso 9]><xml>
<o:DocumentProperties>
<o:Author>Development</o:Author>
<o:LastAuthor>Danny D'Amours</o:LastAuthor>
<o:Revision>2</o:Revision>
<o:TotalTime>119</o:TotalTime>
<o:Created>2005-05-26T18:33:00Z</o:Created>
<o:LastSaved>2005-05-26T18:33:00Z</o:LastSaved>
<o:Pages>1</o:Pages>
<o:Words>1222</o:Words>
<o:Characters>6971</o:Characters>
<o:Company>Macgregor</o:Company>
<o:Lines>58</o:Lines>
<o:Paragraphs>16</o:Paragraphs>
<o:CharactersWithSpaces>8177</o:CharactersWithSpaces>
<o:Version>11.6408</o:Version>
</o:DocumentProperties>
<o:CustomDocumentProperties>
<o:_AdHocReviewCycleID dt:dt="float">1349583293</o:_AdHocReviewCycleID>
<o:_NewReviewCycle dt:dt="string"></o:_NewReviewCycle>
<o:_EmailSubject dt:dt="string">Final CFP</o:_EmailSubject>
<o:_AuthorEmail dt:dt="string">SUZETTE@mitre.org</o:_AuthorEmail>
<o:_AuthorEmailDisplayName dt:dt="string">Stoutenburg,Suzette</o:_AuthorEmailDisplayName>
<o:_PreviousAdHocReviewCycleID dt:dt="float">1955292870</o:_PreviousAdHocReviewCycleID>
<o:_ReviewingToolsShownOnce dt:dt="string"></o:_ReviewingToolsShownOnce>
</o:CustomDocumentProperties>
</xml><![endif]--><!--[if gte mso 9]><xml>
<w:WordDocument>
<w:TrackRevisions/>
<w:ValidateAgainstSchemas/>
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
<w:Compatibility>
<w:BreakWrappedTables/>
<w:SnapToGridInCell/>
<w:WrapTextWithPunct/>
<w:UseAsianBreakRules/>
<w:UseWord2002TableStyleRules/>
</w:Compatibility>
<w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
</w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
<w:LatentStyles DefLockedState="false" LatentStyleCount="156">
</w:LatentStyles>
</xml><![endif]--><!--[if !mso]><object
classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
<style>
st1\:*{behavior:url(#ieooui) }
</style>
<![endif]-->
<style>
<!--
/* Font Definitions */
@font-face
{font-family:Wingdings;
panose-1:5 0 0 0 0 0 0 0 0 0;
mso-font-charset:2;
mso-generic-font-family:auto;
mso-font-pitch:variable;
mso-font-signature:0 268435456 0 0 -2147483648 0;}
@font-face
{font-family:Tahoma;
panose-1:2 11 6 4 3 5 4 4 2 4;
mso-font-charset:0;
mso-generic-font-family:swiss;
mso-font-pitch:variable;
mso-font-signature:1627421319 -2147483648 8 0 66047 0;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-parent:"";
margin:0cm;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:12.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
color:windowtext;}
h3
{mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
mso-pagination:widow-orphan;
mso-outline-level:3;
font-size:13.5pt;
font-family:"Times New Roman";
color:black;
font-weight:bold;}
h4
{mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
mso-pagination:widow-orphan;
mso-outline-level:4;
font-size:12.0pt;
font-family:"Times New Roman";
color:black;
font-weight:bold;}
p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText
{mso-style-noshow:yes;
margin:0cm;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
color:windowtext;}
p.MsoCommentText, li.MsoCommentText, div.MsoCommentText
{mso-style-noshow:yes;
margin:0cm;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
color:windowtext;}
p.MsoHeader, li.MsoHeader, div.MsoHeader
{margin:0cm;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
tab-stops:center 216.0pt right 432.0pt;
font-size:12.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
color:windowtext;}
p.MsoFooter, li.MsoFooter, div.MsoFooter
{margin:0cm;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
tab-stops:center 216.0pt right 432.0pt;
font-size:12.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
color:windowtext;}
span.MsoFootnoteReference
{mso-style-noshow:yes;
vertical-align:super;}
span.MsoCommentReference
{mso-style-noshow:yes;
mso-ansi-font-size:8.0pt;
mso-bidi-font-size:8.0pt;}
a:link, span.MsoHyperlink
{color:blue;
text-decoration:underline;
text-underline:single;}
a:visited, span.MsoHyperlinkFollowed
{color:navy;
text-decoration:underline;
text-underline:single;}
p
{mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
mso-pagination:widow-orphan;
font-size:12.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
color:black;}
p.MsoCommentSubject, li.MsoCommentSubject, div.MsoCommentSubject
{mso-style-noshow:yes;
mso-style-parent:"Comment Text";
mso-style-next:"Comment Text";
margin:0cm;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
color:windowtext;
font-weight:bold;}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
{mso-style-noshow:yes;
margin:0cm;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:8.0pt;
font-family:Tahoma;
mso-fareast-font-family:"Times New Roman";
color:windowtext;}
ins
{mso-style-type:export-only;
text-decoration:none;}
span.msoIns
{mso-style-type:export-only;
mso-style-name:"";
text-decoration:underline;
text-underline:single;}
span.msoDel
{mso-style-type:export-only;
mso-style-name:"";
text-decoration:line-through;
color:red;}
/* Page Definitions */
@page
{mso-footnote-separator:url("RuleML05-CFP-v4_files/header.htm") fs;
mso-footnote-continuation-separator:url("RuleML05-CFP-v4_files/header.htm") fcs;
mso-endnote-separator:url("RuleML05-CFP-v4_files/header.htm") es;
mso-endnote-continuation-separator:url("RuleML05-CFP-v4_files/header.htm") ecs;}
@page Section1
{size:612.0pt 792.0pt;
margin:72.0pt 90.0pt 72.0pt 90.0pt;
mso-header-margin:36.0pt;
mso-footer-margin:36.0pt;
mso-paper-source:0;}
div.Section1
{page:Section1;}
/* List Definitions */
@list l0
{mso-list-id:321659039;
mso-list-template-ids:1744993682;}
@list l0:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:36.0pt;
mso-level-number-position:left;
text-indent:-18.0pt;
mso-ansi-font-size:10.0pt;
font-family:Symbol;}
@list l1
{mso-list-id:737703527;
mso-list-template-ids:975734128;}
@list l1:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:36.0pt;
mso-level-number-position:left;
text-indent:-18.0pt;
mso-ansi-font-size:10.0pt;
font-family:Symbol;}
@list l2
{mso-list-id:833953227;
mso-list-type:hybrid;
mso-list-template-ids:1485591904 67698695 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l2:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:36.0pt;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l3
{mso-list-id:880674550;
mso-list-template-ids:1825324510;}
@list l3:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:36.0pt;
mso-level-number-position:left;
text-indent:-18.0pt;
mso-ansi-font-size:10.0pt;
font-family:Symbol;}
@list l4
{mso-list-id:1489908115;
mso-list-template-ids:564697192;}
@list l4:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:36.0pt;
mso-level-number-position:left;
text-indent:-18.0pt;
mso-ansi-font-size:10.0pt;
font-family:Symbol;}
@list l5
{mso-list-id:1631592314;
mso-list-template-ids:-2002102694;}
@list l5:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:36.0pt;
mso-level-number-position:left;
text-indent:-18.0pt;
mso-ansi-font-size:10.0pt;
font-family:Symbol;}
@list l6
{mso-list-id:1788039372;
mso-list-template-ids:-602637638;}
@list l6:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:36.0pt;
mso-level-number-position:left;
text-indent:-18.0pt;
mso-ansi-font-size:10.0pt;
font-family:Symbol;}
ol
{margin-bottom:0cm;}
ul
{margin-bottom:0cm;}
-->
</style>
<!--[if gte mso 10]>
<style>
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Table Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-parent:"";
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
mso-para-margin:0cm;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman";
mso-ansi-language:#0400;
mso-fareast-language:#0400;
mso-bidi-language:#0400;}
</style>
<![endif]--><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="2050"/>
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1"/>
</o:shapelayout></xml><![endif]-->
</head>
<body lang=EN-US link=blue vlink=navy style='tab-interval:36.0pt'>
<div class=Section1>
<p class=MsoNormal align=center style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
auto;text-align:center'><b><span style='font-size:16.0pt'>RuleML-2005<o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
auto;text-align:center'><b><span style='font-size:16.0pt'>International
Conference on<o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
auto;text-align:center'><b><span style='font-size:16.0pt'>Rules and Rule Markup
Languages for the Semantic Web</span></b><span style='font-size:16.0pt'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
auto;text-align:center'><u><span style='font-size:14.0pt'><a
href="http://2005.ruleml.org/"><span style='color:windowtext'>http://2005.ruleml.org</span></a></span></u><span
style='font-size:14.0pt'> <br style='mso-special-character:line-break'>
<![if !supportLineBreakNewLine]><br style='mso-special-character:line-break'>
<![endif]></span><b><span style='font-size:8.0pt'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
auto;text-align:center'><st1:place w:st="on"><st1:City w:st="on"><b>Galway</b></st1:City><b>,
<st1:country-region w:st="on">Ireland</st1:country-region></b></st1:place><b><br>
10-11 November 2005 <o:p></o:p></b></p>
<p class=MsoNormal align=center style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
auto;text-align:center;mso-outline-level:3'><b><span style='font-size:16.0pt'>Call
For Papers <o:p></o:p></span></b></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-align:justify'>Rules are widely recognized to be a major part of the
frontier of the Semantic Web, and critical to the early adoption and
applications of knowledge-based techniques in e-business, especially enterprise
integration and B2B e-commerce. <span style='mso-spacerun:yes'> </span>This
includes knowledge representation (KR) theory and algorithms; markup languages
based on such KR; engines, translators, and other tools; relationships to
standardization efforts; and, not least, applications. <span
style='mso-spacerun:yes'> </span>Interest and activity in the area of Rules for
the Semantic Web has grown rapidly over the last five years. The RuleML-2005
Conference is aimed to be this years premiere scientific conference on the
topic.<span style='mso-spacerun:yes'> </span>It continues in topic, leadership,
and collaboration with the previous series of three highly successful annual
international workshops (last years was<span style='mso-spacerun:yes'>
</span>RuleML-2004).<span style='mso-spacerun:yes'> </span>RuleML-2005 is
colocated with the International Semantic Web Conference (<a
href="http://iswc2005.semanticweb.org/">http://iswc2005.semanticweb.org/</a>)
which meets 6-10 November 2005.</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-align:justify'>This years main conference theme is rule languages for
reactive and proactive rules, complex event processing, and event-driven rules,
for applications on the Semantic Web.</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-align:justify;mso-outline-level:3'><b><span style='font-size:13.5pt'>Topics
of Interest<o:p></o:p></span></b></p>
<p class=MsoNormal style='text-align:justify'>We encourage submissions on all
topics related to rules and rule markup languages for the Semantic Web.<span
style='mso-spacerun:yes'> </span>In particular, the conference seeks papers
addressing the syntax and semantics of rule languages, translations and
interoperability between rule languages, associated theory, execution engines
and processing models, implemented systems, use cases, and deployed
applications. We are also interested in research and applications integrating
declarative business Web Services, business processes, and rules.<span
style='mso-spacerun:yes'> </span>Particularly encouraged this year as the
conference theme is: languages for reactive and proactive rules, complex event
processing, and event-driven rules.</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-align:justify'><i style='mso-bidi-font-style:normal'>Background: </i><span
style='mso-spacerun:yes'> </span>Rules complement and extend ontologies on the
Semantic Web. <span style='mso-spacerun:yes'> </span>Rules can be used in
combination with ontologies, or as a means to specify ontologies.<span
style='mso-spacerun:yes'> </span>In particular, simple rules and axioms can be
applied via ontology languages, either in conjunction with or as an alternative
to description logics. Rules can also be applied over ontologies, so as to draw
inferences, express constraints, specify policies, react to events/changes,
discover new knowledge, transform data, etc. Rule markup languages enrich web
ontologies so as to extend definitions of derived concepts, and supporting
publishing rules on the Web, exchange rules between different systems and
tools, share guidelines and policies, merge and maintain rulebases, and more.</p>
<p class=MsoNormal style='text-align:justify'><span style='color:black'>Topics
of interest include the following. <o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Rule-based policies:<span
style='mso-spacerun:yes'> </span>their specification, execution, and
management</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Combining rules with ontologies</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><span style='color:black'>Reaction rules for the
Semantic Web<o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><span style='color:black'>Complex event
processing<o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><span style='color:black'>Rules for event correlation<o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><span style='color:black'>Event-driven/action
rule languages and models<o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><span style='color:black'>Semantic Rule
Management<o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><span style='color:black'>Resolving conflicts in
triggered action sets <o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><span style='color:black'>Extraction of rules
from unstructured data sources<o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><span style='color:black'>Languages, including
standards (RuleML, SWRL, Jess, N3, F-logic/FLORA-2, etc.) <o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Execution models, rule engines, and environments
</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Implemented tools and systems for active rules
on the Semantic Web </p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Combining active rules and ontologies</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Integrating active rules and description logics</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Applying active rules for Semantic Web Services</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Modeling of business rules and
event-driven/active rules</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Rule-based software agents and the Semantic Web </p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>E-contracting and automated negotiations with
rule-based declarative strategies </p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Connecting event-driven and reactive rules to
legacy knowledge bases </p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Integrating rule bases and distributed fact
bases </p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Rule base validation, verification and exception
handling on the Semantic Web</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l1 level1 lfo1;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>XSL transformations of event-driven and reactive
rules </p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-align:justify;mso-outline-level:3'><b><span style='font-size:13.5pt'>Submission<o:p></o:p></span></b></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>We
invite articles of no more than 15 pages length formatted in Springer's <a
href="http://www.springer.de/comp/lncs/authors.html"><span style='color:windowtext'>LNCS
style</span></a> (www.springer.de/comp/lncs/authors.html) describing original
completed work, work in progress, or interesting problems or use cases. (Note
that this page limit includes title, abstract, and all figures, and
references.)<span style='mso-spacerun:yes'> </span>Submitted papers will be
fully refereed based on the originality and significance of the ideas presented
as well as on technical aspects. <span style='mso-spacerun:yes'> </span>Publication
of the proceedings is again planned in the Springer LNCS series.</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>Submissions
should be made to <a href="http://witanweb.ca/ruleml2005/">http://witanweb.ca/ruleml2005/</a>
BEFORE OR BY 1 July 2005. <span style='mso-spacerun:yes'> </span>(Note: authors
unable to submit PDF may instead submit Postscript format.)<span
style='mso-spacerun:yes'> </span>In the submission email, indicate the
contact author including full name and affiliation, email address, and
telephone number.<span style='mso-spacerun:yes'> </span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-align:justify'><b style='mso-bidi-font-weight:normal'>Multiple Submission
Policy:</b><span style='mso-spacerun:yes'> </span>Papers may be submitted to
ISWC-2005 and RuleML-2005, but cannot be presented at both conferences.<span
style='mso-spacerun:yes'> </span>If your paper has been submitted to
ISWC-2005, you must indicate that fact at the top of the first page.<span
style='mso-spacerun:yes'> </span>Failure to do so may result in summary
rejection of your paper.<span style='mso-spacerun:yes'> </span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-align:justify;mso-outline-level:3'><a name=dates><b><span
style='font-size:13.5pt'>Important Dates</span></b></a><b><span
style='font-size:13.5pt'> <o:p></o:p></span></b></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l5 level1 lfo2;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><st1:date Month="7" Day="1" Year="2005" w:st="on">1
July 2005</st1:date> -- Deadline for paper submissions. </p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l5 level1 lfo2;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><st1:date Month="8" Day="5" Year="2005" w:st="on">5
August 2005--</st1:date> Notification of acceptance. </p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l5 level1 lfo2;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><st1:date Month="9" Day="2" Year="2005" w:st="on"><span
style='color:black'>2 September 2005</span></st1:date><span style='color:black'>
-- Final version of paper (camera-ready) due. <o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l5 level1 lfo2;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><st1:date Month="9" Day="12" Year="2005" w:st="on"><span
style='color:black'>12 September 2005</span></st1:date><span style='color:
black'> -- Early registration deadline for conference authors. <o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l5 level1 lfo2;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><span style='color:black'>10-11 November 2005
RuleML 2005 <o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-align:justify;mso-outline-level:3'><b><span style='font-size:13.5pt'>Conference
Program Co-Chairs<o:p></o:p></span></b></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l4 level1 lfo8;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Asaf Adi, IBM, <st1:place w:st="on"><st1:country-region
w:st="on">Israel</st1:country-region></st1:place></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l4 level1 lfo8;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Suzette Stoutenburg, The MITRE Corporation, <st1:place
w:st="on"><st1:country-region w:st="on">USA</st1:country-region></st1:place></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l4 level1 lfo8;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Said Tabet, RuleML Initiative and Macgregor
Inc., <st1:country-region w:st="on"><st1:place w:st="on">USA</st1:place></st1:country-region></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-align:justify;mso-outline-level:3'><b><span style='font-size:13.5pt'>Conference
General Co-Chairs<o:p></o:p></span></b></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l4 level1 lfo4;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Harold Boley, National Research Council and <st1:place
w:st="on"><st1:City w:st="on">University of New Brunswick</st1:City>, <st1:country-region
w:st="on">Canada</st1:country-region></st1:place> </p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l4 level1 lfo4;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Benjamin Grosof, Massachusetts Institute of <st1:place
w:st="on"><st1:City w:st="on">Technology</st1:City>, <st1:country-region w:st="on">USA</st1:country-region></st1:place>
</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-align:justify;mso-outline-level:3'><b><span style='font-size:13.5pt'>Steering
Committee<o:p></o:p></span></b></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l4 level1 lfo4;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Asaf Adi, IBM, <st1:country-region w:st="on"><st1:place
w:st="on">Israel</st1:place></st1:country-region></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l4 level1 lfo4;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Grigoris Antoniou, <st1:PlaceType w:st="on">University</st1:PlaceType>
of <st1:PlaceName w:st="on">Crete</st1:PlaceName>, FORTH, <st1:country-region
w:st="on"><st1:place w:st="on">Greece</st1:place></st1:country-region></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l4 level1 lfo4;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Harold Boley, National Research Council and <st1:place
w:st="on"><st1:City w:st="on">University of New Brunswick</st1:City>, <st1:country-region
w:st="on">Canada</st1:country-region></st1:place> </p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l4 level1 lfo4;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Benjamin Grosof, Massachusetts Institute of <st1:place
w:st="on"><st1:City w:st="on">Technology</st1:City>, <st1:country-region w:st="on">USA</st1:country-region></st1:place>
</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l4 level1 lfo4;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span lang=DE style='font-size:
10.0pt;mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:
Symbol;mso-bidi-font-family:Symbol;mso-ansi-language:DE'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><span lang=DE style='mso-ansi-language:DE'>Mike
Dean, BBN Technologies, USA <o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l4 level1 lfo4;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><span style='color:black'>Dieter Fensel, </span>Digital
Enterprise Research Institute (DERI), <st1:City w:st="on">University of
Innsbruck</st1:City>, <st1:country-region w:st="on">Austria</st1:country-region>,
and National <st1:place w:st="on"><st1:City w:st="on">University of Ireland</st1:City>,
<st1:country-region w:st="on">Ireland</st1:country-region></st1:place><span
style='color:black'><o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l4 level1 lfo4;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Steve Ross-Talbot, Pi4 Technologies, <st1:place
w:st="on"><st1:country-region w:st="on">USA</st1:country-region></st1:place></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l4 level1 lfo4;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Suzette Stoutenburg, The MITRE Corporation, <st1:place
w:st="on"><st1:country-region w:st="on">USA</st1:country-region></st1:place></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l4 level1 lfo4;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Said Tabet, RuleML Initiative and Macgregor
Inc., <st1:country-region w:st="on"><st1:place w:st="on">USA</st1:place></st1:country-region></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l4 level1 lfo4;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><st1:City w:st="on">Gerd Wagner</st1:City>, <st1:State
w:st="on">Brandenburg</st1:State> <st1:PlaceType w:st="on">University</st1:PlaceType>
of <st1:PlaceName w:st="on">Technology</st1:PlaceName> at <st1:place w:st="on"><st1:City
w:st="on">Cottbus</st1:City>, <st1:country-region w:st="on">Germany</st1:country-region></st1:place></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-align:justify;mso-outline-level:3'><b><span style='font-size:13.5pt'>Program
Committee <span style='mso-spacerun:yes'> </span><o:p></o:p></span></b></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l6 level1 lfo6;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Grigoris Antoniou, <st1:PlaceType w:st="on">University</st1:PlaceType>
of <st1:PlaceName w:st="on">Crete</st1:PlaceName>, FORTH, <st1:country-region
w:st="on"><st1:place w:st="on">Greece</st1:place></st1:country-region></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l6 level1 lfo6;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Nick Bassiliades, <st1:PlaceName w:st="on">Aristotle</st1:PlaceName>
<st1:PlaceName w:st="on">University</st1:PlaceName> of <st1:City w:st="on">Thessaloniki</st1:City>,
<st1:place w:st="on"><st1:country-region w:st="on">Greece</st1:country-region></st1:place>
</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l6 level1 lfo6;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Harold Boley, National Research Council and <st1:place
w:st="on"><st1:City w:st="on">University of New Brunswick</st1:City>, <st1:country-region
w:st="on">Canada</st1:country-region></st1:place> </p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l6 level1 lfo6;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Scott Buffett, National Research Council and <st1:place
w:st="on"><st1:City w:st="on">University of New Brunswick</st1:City>, <st1:country-region
w:st="on">Canada</st1:country-region></st1:place> </p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l6 level1 lfo6;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Carlos Damasio, New <st1:place w:st="on"><st1:City
w:st="on">University of Lisbon</st1:City>, <st1:country-region w:st="on">Portugal</st1:country-region></st1:place>
</p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l6 level1 lfo6;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span lang=DE style='font-size:
10.0pt;mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:
Symbol;mso-bidi-font-family:Symbol;mso-ansi-language:DE'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Christian de Sainte Marie, ILOG, France<span
lang=DE style='mso-ansi-language:DE'><o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l6 level1 lfo6;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span lang=DE style='font-size:
10.0pt;mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:
Symbol;mso-bidi-font-family:Symbol;mso-ansi-language:DE'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]><span lang=DE style='mso-ansi-language:DE'>Mike
Dean, BBN Technologies, USA <o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:36.0pt;text-align:justify;text-indent:-36.0pt;mso-text-indent-alt:
-18.0pt;mso-list:l6 level1 lfo6;mso-list-change:\F0B7 "Suzette Stoutenburg" 20050526T0826;
tab-stops:list 36.0pt'><![if !supportLists]><span style='font-size:10.0pt;
mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span