The complextype tag has no wiki summary.
0
votes
1answer
13 views
Implementing “nested” properties in Entity Framework
Edit:
looks like this is called a "complex type" in Entity Framework, and I see how I would be able to set the name on columns for having once complex type contained in a class, but I don't know ...
0
votes
0answers
11 views
hibernate cascade of complex object
I'm having these classes in my project:
@entity
public class User {
@Id
@GeneratedValue
private long id;
private String fullName;
private Timestamp timeCreated;
private Timestamp timeUpdated;
...
0
votes
0answers
10 views
Entity Framwork is not working for dynamic result set using stored procedure
In my application,am working with wcf web service ,it has to implemented ADO.net entity data model.Here the problem is I have used stored procedure in entity data model.
stored procedure :
create a ...
1
vote
1answer
23 views
PHP SoapClient: multiple complex types are overwritten in soapcall
I'm having a problem with a soapclient call. The soaprequest has to look like:
<eng:Compose>
<!--Optional:-->
<EWSComposeRequest>
<!--Optional:-->
...
0
votes
0answers
35 views
Array in Javascript to Complex type in WB NuSOAP. How to do?
In the client the code to ws is in Javascript:
function MakeJson()
{
var response = new Array();
for(var i=0;i<x.length;i++)
{
var item =
{
table: ...
0
votes
1answer
152 views
Entity Framework Code First Update a Single Property of a Complex Type
I am having a weird behavior. I want to update a single property of a complex type. When I specify properties to be updated with IsModified (some property are to true and some to false) I have nothing ...
0
votes
0answers
70 views
PHP SOAP Complex Array Handing
Seems PHP does not handle complex array properly. Using PHP 5.
WSDL
<?xml version="1.0"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:tns="urn:CostQueryServicewsdl" ...
1
vote
1answer
92 views
wcf Serialization issue with complex types
possibly a duplicate of this question
I'm trying to serialize a set of objects using the standard DataSerializer which is used with wcf.
object structure:
...
0
votes
0answers
31 views
Entity framwork 5 multiple result set with complex types
Before anything I did investigate about multiple resultsets from a SP (I found the solution here ), the problem is I need to map them to complex types, in the link it says
It is also possible to ...
0
votes
1answer
58 views
MVC 4 ComplexType properties are not scaffolded
I have a an address complex type as one of the properties of a user. When I scaffold out the domain model, the complex type is skipped in the view. Is there a fix for this?
Thanks!
2
votes
1answer
91 views
Complex Numbers and Fractals
I am trying to adapt the code here : http://code.activestate.com/recipes/577166-newton-fractals/ into C and am having some trouble. I am using C99's complex type.
I basically have tried a few ...
0
votes
1answer
53 views
Order of element in an inherited complex type
I have a XSD schema that I use to validate XML files.
In the XSD schema, I created a complex type containing an attributes group and a choice, itself containg "_output", a recurring element.
My ...
3
votes
1answer
32 views
XSD restriction of element with inheritance doesn't work
I'm trying inherit and restrict an element but I'm getting following error (in eclipse validation):
The particle of the type is not a valid restriction of the particle
of the base.
The ...
0
votes
0answers
151 views
DropDownListFor for complex type binding/postback data
I'm making a game database and i'm stucked with using @HtmlDropDownFor with the gamecategory which is a complex type on the game object.
Game class:
public class Game {
[Required]
public int ...
0
votes
0answers
255 views
Using SOAP UI for elements of the type soapenc:arrayType
I have the below WSDL and am having a hard time figuring out how to pass the array items. This is basically an order creation which takes the product codes and related attributes as an array.
...
1
vote
0answers
483 views
PHP WSDL NuSoap ComplexType array of itself
This is what I want to do:
// Pull in the NuSOAP code
require_once('nusoap.php');
// Create the server instance
$server = new soap_server();
// Initialize WSDL support
...
0
votes
2answers
182 views
SVCUTIL Error when exporting XSD element - maxoccurs must = 1
I am encountering a very strange error when using Svcutil to convert XSD to C# objects.
Here is my XSD
<xs:element name="TestResults">
<xs:complexType>
<xs:sequence>
...
0
votes
0answers
133 views
Mapping lookup failure while invoking a webservice using Java client
Am calling a webservice from a java client, My Java client code uses call.invoke method to hit the webservice.
My Env:
Weblogic 11
Axis 1.3.9
My WDSL Snippet
- <complexType ...
1
vote
2answers
62 views
Is it possible to define a XSD element with an arbitrary name but with specific attributes
I would like to validate a custom XML document against a schema.
This document would include a structure with any number of elements, each having a specific attribute. Something like this:
<Root ...
0
votes
1answer
82 views
c# set value of xmlserialized class
I'd like to write the following XML:
<Fields>
<Field name="john">lorem</Field>
<Field name="john">lorem</Field>
<Field name="john">lorem</Field>
...
3
votes
1answer
276 views
Entity Framework: Type “mapped as a complex type” Error
In my database, I have a table called "tracking" with the following columns:
[OrderNumber] [varchar](50) NULL,
[TrackingNumber] [varchar](50) NULL,
[emailaddress] [varchar](100) NULL,
[courier] ...
1
vote
0answers
86 views
Entity Framework 4.1 Complex Type reuse in different models
Here is the senario for which I could not find anything useful. Maybe Im the first person thinking of doing it this way:
Approach: Database First
Database: SQL Server 2008 R2
Project : DLL (Data ...
2
votes
2answers
134 views
WPF datagrid binding complex type property back
I have a simple Datagrid binded to an ObservableCollection from the ViewModel. This ObservableCollection is composed by a Custom Type, say ObservableCollection.
The ComplexType only have 2 ...
0
votes
1answer
88 views
Referencing ComplexType Elements within ComplexType/Sequence Elements in XSD
I am trying to construct a xsd file (inside a WSDL) to get data from a SOAP Request. I have the expected soap Request:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" ...
0
votes
0answers
118 views
NULL arrives in request from Windows Phone 7 (wp7) to a jax-ws webservice
I have a problem while I wuold like to use an own java (jax-ws) webservice from windsows phone 7.
So, the service returns with (own class) complex object. I added the webservice to windows phone 7 ...
0
votes
1answer
1k views
PHP Web Service NuSOAP complex type
I wrote php web service using NuSOAP and client script. I used array complex type
to return an array of complex type, but it's print nothing!!
server.php
<?php
// Pull in the NuSOAP code
...
1
vote
0answers
150 views
Entity Framework 5 Complex Type not resolving because type is an interface
I have the following:
public interface IPerson
{
string Name {get; set;}
... more attributes ...
IAddress Address {get; set;}
}
public interface IAddress
{
string Street {get; set;}
... ...
0
votes
1answer
171 views
How to stored procedure complex type to poco?
I have a sql procedure and created a function import with entity framework on my web project. Fine but I want to poco object of my storedprocedure_Result object. Can i generate poco classes with ...
0
votes
1answer
130 views
Model (complex type) won't submit to action
I have some problem posting a form with 'complex type' model:
I have a Model:
public class CircleEditViewModel
{
[Key]
public int CircleId { get; set; }
[Required]
...
2
votes
1answer
1k views
NuSoap returns complexType array not correct?
I have a Webservice WSDL with NuSoap. I use it with CodeIgniter. I have problems with contexttype-array returns. Here is my PHP Code:
$this->nusoap_server->wsdl->addComplexType(
...
1
vote
0answers
219 views
Consuming SOAP complexType webservice with PHP
Ok guys, something bothering me for days. I have some WebService with a comlextype that I need to consume in PHP.
Webservice look something like this:
<s:element name="VerifySession">
...
0
votes
1answer
662 views
Dozer, how to map from java.util.Map to complex type?
I'd like to map from a java.util.Map to a complex type, let's call it Abc.
<mapping>
<class-a>java.util.Map</class-a>
<class-b bean-factory="xyz.AbcBeanFactory" ...
1
vote
2answers
893 views
Kendo - Grid - Aggregate with Complex Objects
I have a Kendo UI grid. The grid has a datasource with complex object data. For example, {"foo": {"bar" : 10}}. Although the column field can navigate the object graph (i.e. foo.bar), the aggregate ...
3
votes
1answer
200 views
Sending complex type as a parameter in SOAP message
I have a WCF Service like following:
public class Service1 : IService1
{
public string GetData(Person person)
{
if (person != null)
{
return "OK";
}
...
0
votes
1answer
38 views
Is this a bug in mpf_class types?
I came across a strange thing today while playing with the higher precision mpf_class of data type: it seems that any pre-multiplication, more than once, of a complex <mpf_class> object by an ...
0
votes
1answer
59 views
Extend complextype from element
Suppose I have define a general complextype
<xs:complexType name="Address">
<!--definition of address-->
</complexType>
now suppose I want to define a new type of address that ...
2
votes
1answer
352 views
Complex types in Delphi web service
How do I make complex types in a Delphi webservice, specifically soapenc:Array, available within the same namespace as the type defintions that use it. Currently if I try create a new webservice in ...
1
vote
0answers
234 views
Manually send soap request with complex type Array of String
I want to use the "FindPOI" in ViaMichelin API
Here is the link of the SOAP WSDL : https://webservices.viamichelin.com/ws2/services/FindPOI?wsdl
I'm using a soap client called "SOAP UI" to send ...
0
votes
0answers
119 views
complexType Parameter in CXF JAX-RS
I've a complexType specified in the XSD which is the Input parameter for the service operation.
Its a search Operation, which takes the 'Request' as the input parameter.
The ComplexType is like this
...
0
votes
1answer
51 views
jQuery plugin defaults containing complex objects
Is the following definition of defaults bad practice?
var defaults = {
name:'',
surname:'',
address:{
part1:'',
part2:'',
postCode:''
}
};
If only part1 in ...
0
votes
1answer
214 views
Entity Framework 5 complex type mapping different representation of the data
If I want to represent different appearances of data, for example, I want to store something in the database as string, however, it's a special type of string, for example, let's say it's a json ...
0
votes
2answers
2k views
How to setup Android-Web service using KSoap2-android with a complex wsdl file?
Background:
I have followed the tutorial at: http://drclawx.wordpress.com/2011/06/24/77/
I only managed to get to the hello(msg) method to work by using:
String NAMESPACE = "http://tempuri.org/" ...
0
votes
1answer
73 views
Using ComplexType with ToList causes InvalidOperationException
I have this model
namespace ProjectTimer.Models
{
public class TimerContext : DbContext
{
public TimerContext()
: base("DefaultConnection")
{
}
...
1
vote
1answer
759 views
defining a complexType in xsd: Src-resolve: Cannot Resolve The Name 'variable1' To A(n) 'type Definition' Component
I get an error:
Src-resolve: Cannot Resolve The Name 'variable1' To A(n) 'type Definition' Component.
by validating the following scheme:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema ...
1
vote
1answer
69 views
xml schema complextype
I'm trying to write a Schema for a xml similar to this
<?xml version="1.0" encoding="ISO-8859-1"?>
<store>
<book>title1</book>
<poster>some text</poster>
...
0
votes
1answer
47 views
Difficulty subscribing to SelectedItem property as input to SProc in EF4, Generic Repository Pattern/MVVM
I used the MsDesktop Stack example here to create my pattern and establish a view/viewmodel/repository for an entity set, whose PrimaryKey (called PartNumber) maps to many Attribute properties of ...
0
votes
2answers
108 views
Create STL Vector based on input data - scalar or complex types
I have a situation where I want to create an STL Vector as either a vector<float> or vector<complex<float> >. The program will determine the data format at run-time based on an ...
1
vote
2answers
889 views
How to parse an xsd file which has nested elements(complexType and simpleType elements and attributes)?
I have an xsd file like that:
<?xml version="1.0" encoding="utf-8" ?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" ...
1
vote
0answers
497 views
Complex Type not mapping in WSDL PHP
I'm new to WSDL's and am running into an issue with a complex type. Basically its as if the input message is not using the complexType as the type for the input message.
I purposely misspelled the ...
0
votes
1answer
732 views
Binding to ComplexType result of stored procedure in Entity Framework (WPF C#) [duplicate]
Possible Duplicate:
How to correctly invoke a function that maps a SProc to ObservableCollection in Entity Framework where Objects are of Complex Type
I need to get the output of my stored ...