Studying the "Caspio Bridge Microsoft .Net Framework Sample", that is a general example of WS API usage in C# .Net Windows applications and demonstrates the object de-serialization and usage of SelectDataXML and ListObjects WS API methods, we could connect to our Caspio Bridge tables via WS API and Select our field values.
The sample code below is working perfectly!
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Timers;
using dataPhase.com.caspio.c0bkr041;
using System.Web.Services.Protocols;
using System.Xml;
namespace dataPhase
{
public partial class Form1 : Form
{
private static CaspioBridgeAPI soapClient;
public Form1()
{
InitializeComponent();
soapClient = new com.caspio.c0bkr041.CaspioBridgeAPI();
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Question
luizcruz
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.