_尐燕_吧 关注:21贴子:7,222

.·●Оo·.●. 某燕MST复习专用贴-0-

只看楼主收藏回复

一L河蟹


1楼2007-10-30 22:22回复
    由于发现我对word 还是对BD比较感兴趣



    SO...有了此贴的由来-0-


    2楼2007-10-30 22:23
    回复
      2025-10-22 05:32:41
      广告
      不感兴趣
      开通SVIP免广告
      MDAD



      --------------------



      Introduction 


      Web Services are self-contained, modular, distributed 

      dynamic applications that can be described, published, located, 

      or invoked over the network to create products, processes, 

      and supply chains. They can be local, distributed, or Web-based. 


      Web services are built on top of open stanards such as TCP/IP, 

      HTTP, Java, HTML, and XML. Web services use new standard technologies 

      such as SOAP(Simple Object Access Protocol) for messaging and 

      UDDI(Universal Description, Discovery and Integration) and 

      WSDL(Web Service Description Language) for publishing.


      3楼2007-10-30 22:24
      回复
        0 0
        寒···
        全部都是英文


        4楼2007-10-31 13:06
        回复
          悲情贴= =


          我回来了````


          5楼2007-11-01 15:35
          回复
            Identify a useful web service



            You have been browsing the Web and searching for information using the Internet.

            Identify a task or process that you do frequently using the Web,

            for example, downloading newsletter, MSN chat, exchanging files,sending email.



            You may think of a new method or way that will make your daily task easier

            using Web Service.Alternatively, devalop a Web Service that you think

            will be useful to software developer, example validation module,

            spell checker, email validator, ect.


            6楼2007-11-01 16:43
            回复
              Develop the tool



              Once you have identified the tool that you wish to develop,

              determin the parameters that user must provide to ger required result.

              What should be the wxpected result?

              Do you provide validation before you process the user data?


              Start to write and test the Web Service.= =||||||||||||||||



              -----------


              不是人做的


              7楼2007-11-01 16:46
              回复
                Testing and Evaluation


                Share wif ur classmate the advantages of the web service that you have developed

                and get him/her to use your Web Service(do not tell him wat is required to use the Web Service).


                Ask your classmate to comment on the Wen Service and take note of the comments.



                T.T


                8楼2007-11-01 16:52
                回复
                  2025-10-22 05:26:41
                  广告
                  不感兴趣
                  开通SVIP免广告
                  Reflection


                  Does your Web Service work according to wat you have planned?

                  Imagine that this Web Service have been pblished, wat will happened to the 

                  Web Service if user request to add more functionalitites.


                  Submit the finding through Assignment submission.


                  -----------------------


                  duno how 2 do- -


                  肯定的是我肯定S了- 0 -


                  9楼2007-11-01 16:55
                  回复
                    搞定- -


                    10楼2007-11-01 18:34
                    回复
                      SAPP

                      -------------
                      1st creat a XML file

                      2nd imports --> imports system.XML

                      ---------------


                      Dim objXMLTR as new XmlTextReader("menbers.xml")

                      objXMLTR.WhitespaceHandling = WhitespaceHandling.None '不明白-.-

                      While objXMLTR.Read

                      If (objXMLTR.NodeType = XmlNodeType.Element) Then
                       
                       If (objXMLTR.Name = "name") Then

                       blnIsNameElement = true '又不懂- -||

                       Else
                       
                       blnIsNameElement = False

                       End if

                      End if

                      If (objXMLTR.NodeType = XmlNodeType.Text) Then
                       
                       If (blnIsNameElement = True) Then

                       strName = objXMLTR.Value
                       
                       txtData.Text = txtData.Text & strName & vbCrlf
                       Else
                       strName = ""
                       End If

                      End If


                      IP属地:浙江11楼2007-11-01 21:31
                      回复
                        写到BD上来嫩没有美感- -


                        IP属地:浙江12楼2007-11-01 21:31
                        回复
                          objXMLTR.Read()


                          If (objXMLTR.NodeType = XmlNodeType.Element) Then

                           MessageBox.Show("This is indeed an element type node")

                          End If


                          IP属地:浙江13楼2007-11-01 22:07
                          回复
                            txtData.Text = txtData.Text & strName & vbTab



                            ---------


                            information are much more organize and it getting more and more closed- 0 -


                            IP属地:浙江15楼2007-11-01 22:21
                            回复
                              2025-10-22 05:20:41
                              广告
                              不感兴趣
                              开通SVIP免广告
                              <members>

                              <member>
                              <name>Edmund</name>
                              <contact>97580001</contact>
                              </member>

                              <member>
                              <name>David</name>
                              <contact>97580002<contact>
                              </member>

                              </members>

                              -----------------------------
                              XML TextWriter 

                              Dim objXMLTW As XML TextWriter

                              WriteStartElement

                              WriteEndElement

                              WriteElementString


                              IP属地:浙江16楼2007-11-01 22:34
                              回复