Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. XML / XSL
  4. Has Anyone ever worked on Veda Advantage? Need Some help.

Has Anyone ever worked on Veda Advantage? Need Some help.

Scheduled Pinned Locked Moved XML / XSL
helpxmlquestion
7 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G Offline
    G Offline
    Gandalf_TheWhite
    wrote on last edited by
    #1

    Hello Guys :) I m newbie at XML and has to work with Veda XML, Anyone of us has ever worked with this Veda Advantage : Please give some Guidelines to start with it. I have to do following -1st. Connection -2nd. Test Connection[Ping] -3rd. Transfer Data For Verification -4th. Received Response and Extract it and store values. -5th. If there is error in between then solve. but don't know the Exact And Correct Way to start with It. Anyone.......... who knows or have ever worked on VEDA.. PLEASE HELP. SOS...SOS...SOS :)

    Believe Yourself™ :->™

    L 1 Reply Last reply
    0
    • G Gandalf_TheWhite

      Hello Guys :) I m newbie at XML and has to work with Veda XML, Anyone of us has ever worked with this Veda Advantage : Please give some Guidelines to start with it. I have to do following -1st. Connection -2nd. Test Connection[Ping] -3rd. Transfer Data For Verification -4th. Received Response and Extract it and store values. -5th. If there is error in between then solve. but don't know the Exact And Correct Way to start with It. Anyone.......... who knows or have ever worked on VEDA.. PLEASE HELP. SOS...SOS...SOS :)

      Believe Yourself™ :->™

      L Offline
      L Offline
      led mike
      wrote on last edited by
      #2

      So I guess this didn't work:[^]

      VedaXML Developers Centre

      We provide you with all the technical information you need to integrate our services into your business systems using the VedaXML information channel. If you need more information on how VedaXML can save you time and money please refer to our VedaXML overview or contact us.

      led mike

      G 1 Reply Last reply
      0
      • L led mike

        So I guess this didn't work:[^]

        VedaXML Developers Centre

        We provide you with all the technical information you need to integrate our services into your business systems using the VedaXML information channel. If you need more information on how VedaXML can save you time and money please refer to our VedaXML overview or contact us.

        led mike

        G Offline
        G Offline
        Gandalf_TheWhite
        wrote on last edited by
        #3

        Hi Mike Thanks for reply

        led mike wrote:

        We provide you with all the technical information you need to integrate our services into your business systems

        Are u working for VEDA????? :omg: :cool: Actually me and my team is working on this task(Mentioned in previous post), we are trying to ping, but we are not getting where and what we are doing wrong. I have a Verification code and access pwd. Can you please check where we are going wrong? Here is my code written in C# for PING and the later one is for receive the response. This is button click on which it goes for PING #region XML Click protected void Button1_Click(object sender, EventArgs e) { string username = txt_username.Text; string pwd = txt_pwd.Text; string request = "`" + " " + " " + "" + username + " " + "" + pwd + " " + " " + " " + "ASUT99991 " + "PING " + "V00 " + " " + " " + " "; string response = getReply(request); Response.Write(response); } #endregion` ---------- And this one is for reply ---------- `#region getReply public string getReply(string strReq) { HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(txt_url.Text); StreamWriter writer = null; request.Timeout = 1000000000; request.Method = "POST"; request.CachePolicy = new RequestCachePolicy(RequestCacheLevel.NoCacheNoStore); string postData = "openagent&xml=" + strReq; //string postData = strReq; request.ContentLength = postData.Length; request.ContentType = "text/xml"; try { //Create a write to send the data stream to the server writer = new StreamWriter(request.GetRequestStream()); //Write to server writer.Write(postData);`

        L 1 Reply Last reply
        0
        • G Gandalf_TheWhite

          Hi Mike Thanks for reply

          led mike wrote:

          We provide you with all the technical information you need to integrate our services into your business systems

          Are u working for VEDA????? :omg: :cool: Actually me and my team is working on this task(Mentioned in previous post), we are trying to ping, but we are not getting where and what we are doing wrong. I have a Verification code and access pwd. Can you please check where we are going wrong? Here is my code written in C# for PING and the later one is for receive the response. This is button click on which it goes for PING #region XML Click protected void Button1_Click(object sender, EventArgs e) { string username = txt_username.Text; string pwd = txt_pwd.Text; string request = "`" + " " + " " + "" + username + " " + "" + pwd + " " + " " + " " + "ASUT99991 " + "PING " + "V00 " + " " + " " + " "; string response = getReply(request); Response.Write(response); } #endregion` ---------- And this one is for reply ---------- `#region getReply public string getReply(string strReq) { HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(txt_url.Text); StreamWriter writer = null; request.Timeout = 1000000000; request.Method = "POST"; request.CachePolicy = new RequestCachePolicy(RequestCacheLevel.NoCacheNoStore); string postData = "openagent&xml=" + strReq; //string postData = strReq; request.ContentLength = postData.Length; request.ContentType = "text/xml"; try { //Create a write to send the data stream to the server writer = new StreamWriter(request.GetRequestStream()); //Write to server writer.Write(postData);`

          L Offline
          L Offline
          led mike
          wrote on last edited by
          #4

          Gandalf - The White wrote:

          Can you please check where we are going wrong?

          I'm confused. Have you tried using the VedaXML Developers Center for help? It wasn't helpful and that's why you are asking here on CodePRoeject?

          led mike

          G 1 Reply Last reply
          0
          • L led mike

            Gandalf - The White wrote:

            Can you please check where we are going wrong?

            I'm confused. Have you tried using the VedaXML Developers Center for help? It wasn't helpful and that's why you are asking here on CodePRoeject?

            led mike

            G Offline
            G Offline
            Gandalf_TheWhite
            wrote on last edited by
            #5

            There is nothing to be confused! Obviously we have checked**(Many times)**.We can't depend only on this forum. Actually we were trying from 3 days for that, What have u thought we won't take reference from VEDA? The link that u have posted earlier that has been check many times before u have post. I thought u can do something, That's why I have asked u for check.:| But at last it is working without anyone's help. Thanks for taking interest. ;P The only problem was on there side in terms of starting of service, Code was perfect.

            Believe Yourself™ :-\™

            L 1 Reply Last reply
            0
            • G Gandalf_TheWhite

              There is nothing to be confused! Obviously we have checked**(Many times)**.We can't depend only on this forum. Actually we were trying from 3 days for that, What have u thought we won't take reference from VEDA? The link that u have posted earlier that has been check many times before u have post. I thought u can do something, That's why I have asked u for check.:| But at last it is working without anyone's help. Thanks for taking interest. ;P The only problem was on there side in terms of starting of service, Code was perfect.

              Believe Yourself™ :-\™

              L Offline
              L Offline
              led mike
              wrote on last edited by
              #6

              Gandalf - The White wrote:

              but don't know the Exact And Correct Way to start with It.

              Gandalf - The White wrote:

              he only problem was on there side in terms of starting of service, Code was perfect.

              So you don't know where to start but you are finished and the code was perfect. Apparently "start" doesn't mean what I thought it did. :rolleyes:

              led mike

              G 1 Reply Last reply
              0
              • L led mike

                Gandalf - The White wrote:

                but don't know the Exact And Correct Way to start with It.

                Gandalf - The White wrote:

                he only problem was on there side in terms of starting of service, Code was perfect.

                So you don't know where to start but you are finished and the code was perfect. Apparently "start" doesn't mean what I thought it did. :rolleyes:

                led mike

                G Offline
                G Offline
                Gandalf_TheWhite
                wrote on last edited by
                #7

                led mike wrote:

                So you don't know where to start but you are finished and the code was perfect.

                Code was perfect but at other side the service was not working. :rolleyes: , But When it was not working, I have asked, So we thought there might be a problem at our side, we may be wrong at some point and it was very first time, So I have thought we might be going wrong, That's why I have asked 'Exact and Correct Way'. But I wasn't sure I was asking for Correct Code!! :cool: I have asked only for those who have worked on it... I think u haven't Yet :rolleyes: Anyway Thanks for Taking Interest :-\ , That's Positive.

                Believe Yourself™ :-\™

                1 Reply Last reply
                0
                Reply
                • Reply as topic
                Log in to reply
                • Oldest to Newest
                • Newest to Oldest
                • Most Votes


                • Login

                • Don't have an account? Register

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • World
                • Users
                • Groups