-
Notifications
You must be signed in to change notification settings - Fork 1
/
call-for-papers.html
2221 lines (581 loc) · 41.1 KB
/
call-for-papers.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<!--
This website is powered by TYPOlight webCMS :: TYPOlight is licensed under GNU/LGPL
Copyright ©2005-2013 by Leo Feyer :: Extensions are copyright of their respective owners
Visit the project website at http://www.typolight.org for more information
//-->
<!-- Mirrored from www.csw.inf.fu-berlin.de/ruleml2010/call-for-papers.html by HTTrack Website Copier/3.x [XR&CO'2010], Mon, 12 Aug 2013 15:14:47 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<base />
<title>RuleML 2010 4th International Web Rule Symposium Research Based and Industry Focused - RuleML 2010 Call for Papers</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="ruleml.org" />
<link rel="stylesheet" href="plugins/slimbox/css/slimbox.css" type="text/css" media="screen" />
<link rel="stylesheet" href="1024px.css" type="text/css" media="projection, screen" />
<script type="text/javascript" src="plugins/mootools/mootools.js"></script>
<script type="text/javascript" src="plugins/slimbox/js/slimbox.js"></script>
</head>
<body>
<div id="wrap">
<div id="header">
<p id="headerlogo"><a href="http://www.ruleml.org/"><img src="tl_files/ruleml2010/Images/RuleMLlogo2005.jpg"/></a></p>
<p class="huge"><a href="index.html">RuleML <span class="fade">2010</span></a></p>
<p id="slogan">The 4th International Web Rule Symposium: Research Based and Industry Focused</p>
<p id="subslogan">October 21-23, 2010, Washington, DC, USA</p>
<p id="subslogan">Co-located with the 13th Business Rules Forum</p>
<div class="headerimage">
<img width=250 src="tl_files/ruleml2010/Images/Washington_Monument.jpg"/>
</div>
<div class="headerimagecopyright">
<a class="headerimagecopyright" href="http://creativecommons.org/licenses/by/2.0/deed.en_US" title="This image is licensed under the Creative Commons license"><img class="headerimagecopyright" src="tl_files/ruleml2010/Images/CreativeCommons.png"/></a>
<a class="headerimagecopyright" href="http://www.flickr.com/people/11897392@N04" title="Creator's Hompage">Image by Josh Carolina</a>
</div> </div>
<div id="sidebar">
<!-- indexer::stop -->
<div class="mod_search block" style="margin-bottom:12px;">
<form action="http://www.csw.inf.fu-berlin.de/ruleml2010/call-for-papers.html" method="get">
<div class="formbody">
<input type="text" name="keywords" id="keywords" class="text" value="" />
<input type="submit" id="submit" class="submit" value="Search" />
</div>
</form>
</div>
<!-- indexer::continue -->
<div class="mod_newslist block">
<h1>Latest News</h1>
<div class="layout_latest block first last even">
<p class="info">Oct 06, 2010 </p>
<h2><a href="news/items/please-join-the-lunch-panel-exhibition-meetup-and-rule-challenge-ruleml-2010.html" title="Read the whole article">Please join the Lunch Panel, Exhibition, Meetup and Rule Challenge @ RuleML-2010</a></h2>
<p class="teaser"></p>
<p class="more"><a href="news/items/please-join-the-lunch-panel-exhibition-meetup-and-rule-challenge-ruleml-2010.html" title="Read the whole article">Read more …</a></p>
</div>
</div>
<!-- indexer::stop -->
<div class="mod_navigation sidebar block">
<h1>Navigation</h1>
<a href="call-for-papers.html#skipNavigation_4" class="invisible" title="Skip navigation"></a>
<ul class="level_1">
<li class="submenu first"><a href="the-symposium.html" title="RuleML 2010" class="submenu first" onclick="this.blur();">The Symposium</a>
<ul class="level_2">
<li class="first"><a href="who-will-attend.html" title="Who Will Attend" class="first" onclick="this.blur();">Who Will Attend</a></li>
<li><a href="invited-speakers-demos.html" title="Keynote Speakers and Invited Demos" onclick="this.blur();">Keynote Speakers and Invited Demos</a></li>
<li><a href="program-committee.html" title="Program Committee" onclick="this.blur();">Program Committee</a></li>
<li><a href="program.html" title="Program" onclick="this.blur();">Program</a></li>
<li><a href="registration.html" title="Registration" onclick="this.blur();">Registration</a></li>
<li><a href="venue.html" title="Venue" onclick="this.blur();">Venue</a></li>
<li><a href="sponsors-partners.html" title="Sponsors and Partners" onclick="this.blur();">Sponsors and Partners</a></li>
<li><a href="sponsorship.html" title="Sponsorship Package" onclick="this.blur();">Sponsorship</a></li>
<li><a href="http://ruleml.org/RuleML-2010/RuleResponder/RuleResponder.htm" title="Rule Responder Q&A" onclick="this.blur();">Rule Responder Q&A</a></li>
<li><a href="http://www.businessrulesforum.com/" title="Business Rule Forum" onclick="this.blur();">Business Rule Forum</a></li>
<li><a href="ruleml-2010-awards.html" title="RuleML-2010 Awards" onclick="this.blur();">RuleML-2010 Awards</a></li>
<li class="last"><a href="contacts.html" title="Contacts" class="last" onclick="this.blur();">Contacts</a></li>
</ul>
</li>
<li class="submenu trail"><a href="authors.html" title="Authors" class="submenu trail" onclick="this.blur();">Authors</a>
<ul class="level_2">
<li class="first"><a href="objectives.html" title="Objectives" class="first" onclick="this.blur();">Objectives</a></li>
<li><a href="topics.html" title="Topics" onclick="this.blur();">Topics</a></li>
<li><a href="ruleml-2010-challenge.html" title="Int. Rule Challenge" onclick="this.blur();">Int. Rule Challenge</a></li>
<li><a href="submission-guidelines.html" title="Submission Guidelines" onclick="this.blur();">Submission Guidelines</a></li>
<li class="active"><p class="active">RuleML 2010 Call for Papers</p></li>
<li class="last"><a href="important-dates.html" title="Important Dates" class="last" onclick="this.blur();">Important Dates</a></li>
</ul>
</li>
<li class="submenu last"><a href="ruleml-initiative.html" title="RuleML Initiative" class="submenu last" onclick="this.blur();">RuleML Initiative</a>
<ul class="level_2">
<li class="first"><a href="http://ruleml.org/" title="About Us" class="first" onclick="this.blur();">About Us</a></li>
<li class="last"><a href="past-events.html" title="Past Events" class="last" onclick="this.blur();">Past Events</a></li>
</ul>
</li>
</ul>
<a id="skipNavigation_4" class="invisible" title="Skip navigation"></a>
</div>
<!-- indexer::continue -->
</div>
<div id="content">
<div class="mod_article block" id="call-for-papers">
<!-- indexer::stop -->
<div class="pdf_link">
<a href="call-for-papersfd05.html?pdf=29" title="Print article as PDF">Print article as PDF</a>
</div>
<!-- indexer::continue -->
<h1 class="ce_headline">RuleML 2010 Call for Papers</h1>
<h2 class="ce_headline">Overview and Aim</h2>
<div class="ce_text block">
<object id="ieooui" classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D">
</object>
<div style="text-align: justify;"><span lang="EN-US">
<p class="MsoNormal" style="margin: 0cm -0.3pt 0pt 0cm; mso-pagination: none; mso-layout-grid-align: none;"><span style="font-family: "Courier New"; font-size: 10pt; mso-bidi-font-size: 12.0pt;" lang="EN-US"><span style="color: #000000;">The International Web Rule Symposium has evolved from an annual series of international workshops since 2002, international conferences in 2005 and 2006, and international symposia since 2007. This year, the 4th International Web Rule Symposium (RuleML-2010) will be held near Washington, DC, USA, co-located with the 13th Business Rules Forum, the world's largest Business Rules event. RuleML-2010 is devoted to practical distributed rule technologies and rule-based applications, which need language standards for rules (inter)operating in, e.g., the Semantic Web, Enterprise Systems, Intelligent Multi-Agent Systems, Event-Driven Architectures, and Service-Oriented Applications.</span></span></p>
<p class="MsoNormal" style="margin: 0cm -0.3pt 0pt 0cm; mso-pagination: none; mso-layout-grid-align: none;"><span style="font-family: "Courier New"; font-size: 10pt; mso-bidi-font-size: 12.0pt;" lang="EN-US"><span style="color: #000000;"> </span></span></p>
<span style="font-family: "Courier New"; font-size: 10pt; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA; mso-bidi-font-size: 12.0pt;" lang="EN-US"><span style="color: #000000;">RuleML-2010 is a research-based, industry-focused symposium: its main goal is to build a bridge between academia and industry in the field of rules and semantic technology, and so to stimulate the cooperation and interoperability between business and research, by bringing together rule system providers, participants in rule standardization efforts, open source communities, practitioners, and researchers. The concept of the symposium has also advanced continuously in the face of extremely rapid progress in practical rule and event processing technologies. As a result, RuleML-2010 will feature hands-on demonstrations and challenges alongside a wide range of thematic tracks. It will thus be an exciting venue to exchange new ideas and experiences on all issues related to the engineering, management, integration, interoperation, and interchange of rules in distributed enterprise intranets and open distributed environments.</span></span></span></div>
</div>
<h2 class="ce_headline">Conference Theme</h2>
<div class="ce_text block">
<p class="MsoNormal" style="text-align: justify; margin: 0cm -0.3pt 0pt 0cm;"><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">This year, we particularly welcome submissions that address applications of Web rule technologies for business and information systems. We invite you to share your ideas, results, and experiences: as an industry practitioner, rule system provider, technical expert, developer, rule user or researcher, exploring foundations, developing systems and applications, or using rule-based systems. We invite high-quality submissions related to (but not limited to) one or more of the following topics:</span></span></span></p>
<p class="MsoNormal" style="text-align: justify; margin: 0cm -0.3pt 0pt 0cm;"><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;"> </span></span></span></p>
<p class="MsoNormal" style="text-align: justify; margin: 0cm -0.3pt 0pt 0cm;"><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;"><strong>Rules, Semantic Technology, and Cross-Industry Standards<br /></strong></span></span></span></p>
<ul>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Rules in Current Industry Standards, including:</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">XBRL: Extensible Business Reporting Language</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">MISMO: Mortgage Industry Standards Maintenance Org</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">FIXatdl: FIX Algorithmic Trading Definition Language</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">FpML: Financial products Markup Language</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">HL7: Health Level 7</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Acord: Association for Cooperative Operations Research and Development (Insurance Industry)</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Rules for Governance, Risk, and Compliance (GRC), e.g., rules for internal audit, SOX compliance, enterprise risk management (ERM), operational risk, etc</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Rules and Corporate Actions</span></span></span></li>
</ul>
<p class="MsoNormal" style="text-align: justify; margin: 0cm -0.3pt 0pt 0cm;"><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;"><br /><strong>Rule Transformation and Extraction<br /></strong></span></span></span></p>
<ul>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Transformation and extraction with rule standards, such as SBVR, RIF and OCL</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Extraction of rules from code</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Transformation and extraction in the context of frameworks such as KDM (Knowledge Discovery meta-model)</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Extraction of rules from natural language</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Transformation or rules from one dialect into another</span></span></span></li>
</ul>
<p class="MsoNormal" style="text-align: justify; margin: 0cm -0.3pt 0pt 0cm;"><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;"><br /><strong>Rules and Uncertainty<br /></strong></span></span></span></p>
<ul>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Languages for the formalization of uncertainty rules</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Probabilistic, fuzzy and other rule frameworks for reasoning with uncertain or incomplete information</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Handling inconsistent or disparate rules using uncertainty</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Uncertainty extensions of event processing rules, business rules, reactive rules, causal rules, derivation rules, association rules, or transformation rules</span></span></span></li>
</ul>
<p class="MsoNormal" style="text-align: justify; margin: 0cm -0.3pt 0pt 0cm;"><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;"><br /><strong>Rules and Norms<br /></strong></span></span></span></p>
<ul>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Methodologies for modeling regulations using both ontologies and rules</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Defeasibility and norms: modeling rule exceptions and priority relations among rules</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">The relationship between rules and legal argumentation schemes</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Rule language requirements for the "isomorphic" modeling of legislation</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Rule based inference mechanism for legal reasoning</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">E-contracting and automated negotiations with rule-based declarative strategies</span></span></span></li>
</ul>
<p class="MsoNormal" style="text-align: justify; margin: 0cm -0.3pt 0pt 0cm;"><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;"><br /><strong>Rules and Inferencing<br /></strong></span></span></span></p>
<ul>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">From rules to FOL to modal logics</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Rule-based non-monotonic reasoning</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Rule-based reasoning with modalities</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Deontic rule-based reasoning</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Temporal rule-based reasoning</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Priorities handling in rule-based systems</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Defeasible reasoning</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Rule-based reasoning about context and its use in smart environments</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Combination of rules and ontologies</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Modularity</span></span></span></li>
</ul>
<p class="MsoNormal" style="text-align: justify; margin: 0cm -0.3pt 0pt 0cm;"><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;"><br /><strong>Rule-based Event Processing and Reaction Rules<br /></strong></span></span></span></p>
<ul>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Reaction rule languages and engines (production rules, ECA rules, logic event action formalisms, vocabularies/ontologies)</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">State management approaches and frameworks</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Concurrency control and scalability</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Event and action definition, detection, consumption, termination, lifecycle management</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Dynamic rule-based workflows and intelligent event processing (rule-based CEP)</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Non-functional requirements, use of annotations, metadata to capture those</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Design time and execution time aspects of rule-based (Semantic) Business Processes Modeling and Management</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">Practical and business aspects of rule-based (Semantic) Business Process Management (business scenarios, case studies, use cases etc.)</span></span></span></li>
</ul>
<p class="MsoNormal" style="text-align: justify; margin: 0cm -0.3pt 0pt 0cm;"><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;"><br /><strong>Rule-Based Distributed/Multi-Agent Systems<br /></strong></span></span></span></p>
<ul>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">rule-based specification and verification of distributed and multi-agent system</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">rule-based distributed reasoning and problem solving</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">rule-based agent architectures</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">rules and ontologies for semantic agents</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">rule-based interaction protocols for multi-agent systems</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">rules for service-oriented computing (discovery, composition, etc.)</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">rule-based cooperation, coordination and argumentation in multi-agent systems</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">rule-based e-contracting and negotiation strategies in multi-agent systems</span></span></span></li>
<li><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;">rule interchange and reasoning interoperation in heterogeneous Distributed/Multi-Agent Systems</span></span></span></li>
</ul>
<p class="MsoNormal" style="text-align: justify; margin: 0cm -0.3pt 0pt 0cm;"><span style="font-size: 12px;"><span lang="EN-US"><span style="color: #000000;"><br /></span></span></span></p>
<ul>
</ul>
<p class="MsoNormal" style="margin: 0cm -0.3pt 0pt 0cm;"><span style="font-size: 12px;">We also welcome submissions on miscellaneous rule topics, such as</span></p>
<p class="MsoNormal" style="margin: 0cm -0.3pt 0pt 0cm;"><span style="font-size: 12px;"><br /> - Rules and ontologies<br /> - Execution models, rule engines, and environments<br /> - Graphical processing, modeling and rendering of rules<br /><br />
<br />Case studies, experience reports, and industrial problem statements are particularly encouraged.</span></p>
<p class="MsoNormal" style="text-align: justify; margin: 0cm -0.3pt 0pt 0cm; mso-pagination: none; mso-layout-grid-align: none;"> </p>
</div>
<h2 class="ce_headline">RuleML-2010 Challenge</h2>
<div class="ce_text block">
<!--[if gte mso 9]>
Normal
0
14
false
false
false
MicrosoftInternetExplorer4
<![endif]--><!--[if gte mso 9]>
<![endif]-->
<div style="text-align: justify;"><span lang="EN-US">The RuleML-2010 Challenge is one of the
highlights of RuleML-2010. Rules are used in interesting and practically
relevant ways to, e.g., derive useful information, transform knowledge, provide
decision support and provide automated rule-based monitoring, enforcement,
validation or management of the behavioural logic of the application. The
Challenge offers participants the chance to demonstrate their commercial and
open source tools, use cases, and applications.</span></div>
</div>
<h2 class="ce_headline">Conference Language</h2>
<div class="ce_text block">
<!--[if gte mso 9]>
Normal
0
14
false
false
false
MicrosoftInternetExplorer4
<![endif]--><!--[if gte mso 9]>
<![endif]-->
<!--[if gte mso 10]>
<style mce_bogus="1" mce_bogus="1" mce_bogus="1" mce_bogus="1" mce_bogus="1" mce_bogus="1" mce_bogus="1" mce_bogus="1"> /* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Tabella normale";
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]-->
<p class="MsoPlainText" style="text-align: justify;"><span lang="EN-US">The official language of the conference
will be English.</span></p>
</div>
<h2 class="ce_headline">RuleML-2010 Submission Guidelines, Springer Proceedings, Best Paper Award</h2>
<div class="ce_text block">
<!--[if gte mso 9]>
Normal
0
14
false
false
false