English 中文(简体)
Tibco General Interface XML Mapper using different data types?
原标题:

I have a matrix that is mapped to a .NET web service via the XML mapper tool in general interface. I have two columns in particular that I need to sort accurately (date and time columns), however the XML mapper automatically sets their data-type to string values. Obviously, when you sort string dates they may jump around because it doesn t sort by value it sorts by the alpha numeric representation of the values. Is it possible for GI to set the values to date object values when parsing through the returned XML data in order to place those values into the columns in their correct data types?

Or, is there any way for me to add flags in my XML data that show that these results are in a different data type than string?

These are the tools that I am using: Tibco/Dojo Foundation General Interface 3.9 Visual C# Web Service .NET Framework 4.0 Visual Studio 2010

最佳回答

Scratch that, I figured it out. I found that there is a sort attribute CDF tag that you can apply to each column. I converted my back end data to UNIX time and sent them back as a separate XML tag to apply to each row as a sort value and everything sorts great now.

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签