Exemple #1
0
        public static void Main(string[] args)
        {
            SourceService sourceService = new SourceService();

            sourceService.Url = "http://*****:*****@WebFault.");
            }
            catch (SoapException e) {
                //fall through
            }

            relationshipService.Touch();
            AssertionService assertionService = new AssertionService();

            assertionService.Url = "http://localhost:8080/full/soap-services/AssertionServiceService";
            Assertion[] assertions = assertionService.ReadAssertions();
            Assertion   gender     = assertions[0];

            Assert.AreEqual("gender", gender.Id);
            Assert.IsTrue(gender is Gender);
            Assertion name = assertions[1];

            Assert.AreEqual("name", name.Id);
            Assert.IsTrue(name is Name);
        }
        public static void Main(string[] args)
        {
            SourceService sourceService = new SourceService("http://*****:*****@WebFault.");
              }
              catch (SoapException e) {
            //fall through
              }

              relationshipService.Touch();
              AssertionService assertionService = new AssertionService("http://localhost:8080/full/AssertionServiceService");
              Assertion[] assertions = assertionService.ReadAssertions();
              Assertion gender = assertions[0];
              Assert.AreEqual("gender",gender.Id);
              Assert.IsTrue(gender is Gender);
              Assertion name = assertions[1];
              Assert.AreEqual("name",name.Id);
              Assert.IsTrue(name is Name);
        }