The data-transfer-objects tag has no wiki summary.
0
votes
3answers
62 views
PHP Best way to pass big Arrays or Objects between different Sites/Servers?
I have 2 websites (2 different domains/servers) and i need to transfer data between them. Source Server will be having an Array/ Array Object. Then it needs to be delivered to another site. I do not ...
0
votes
1answer
46 views
Using transferable objects from a Web Worker
I currently have this code to create a Web Worker:
w=new Worker("webwork.js");
w.onmessage=function(event){alert(event.data);}
And then the webwork.js code for the Web Worker:
...
2
votes
1answer
489 views
libusb bulk transfer
I am trying to implement user space usb driver using libusb1.0.9. I have lpc2148 blueboard(ARM7) with me..This board is loaded with opensource USB stack/firmware by Mr. Bertrik Sikken.. now my user ...
3
votes
1answer
439 views
Using DAO,DTO pattern as MVC
public abstract class BaseDAO<T extends BaseDTO> {
public Integer create(T dto) {
}
public Integer update(T dto) {
}
public Integer delete(T dto) {
...
2
votes
1answer
71 views
Stripping fields from entities when returning entities from a WCF service
I have a multitier system where all the business logic is available through WCF services.
Now consider the following scenario:
a user opens my web application (ASP.NET MVC 4) and requests some ...
0
votes
2answers
107 views
How to parse this special config file in python?
I have some config files and the data format can't be changed.
One of them looks like this:
root {
configuration {
field_a: "aaaa"
field_b: "bbbb"
}
child {
configuration {
...
0
votes
0answers
20 views
DataTransferObjects return DateTime? or string
When returning a dto from the application layer (not going over the wire)
do you return date properties as DateTime? or just return strings
If you just return string you can format the return ...
0
votes
1answer
58 views
Serialization between different domains
I'm new to serialization.I need to send a Serialized object from a one web site to another web site.
i'm using following serialization code in my first web site
private void Serialize()
{
...
0
votes
1answer
148 views
Approach to large object transfers in web services
I have to implement a SOA solution with web services. I have to transfer large objects (ex: Invoices of 25~30mb of XML data) and I wonder what's the best approach...
Should I:
A. transfer parts of ...
1
vote
1answer
130 views
DDD : Where should data be converted, formatted, encrypted etc?
For future projects i decided to use dto's to pass data to the domain layer . Here is also where i make most of the data validation .
Where should i put data formatting ?
1) In the DTOs when ...
0
votes
0answers
129 views
How to transfer parent-child item groups form a select box to another with jquery
I'm working on a code to transfer items from one multiple select box to another.
The code I have works pretty good to transfer items one by one, but what I want is to transfer back and forth ...
2
votes
1answer
255 views
Complex DTO structure
I've read a lot about DTO's here on SO, in books and articles, but I'm not sure if I get it right.
We're using DTO's in our project so that they're almost just properties of Domain Objects. For that ...
3
votes
2answers
2k views
Symfony2.1 - The option “em” does not exist when using DataTransformer
I am using this cookbook recipe to add a data transformer in Symfon 2.1, but I am getting the following error, The option "em" does not exist. Known options are: "attr", "block_name",....
Is this ...
2
votes
3answers
268 views
Use DTO as Base Class for DO?
I'm new to DDD and OO principles, sorry for my poor knowledge.
I have CustomerDTO and Customer classes.
I store all fields and properties in DTO class and use it as Base class for Customer class.
...
0
votes
3answers
204 views
Data Transfer Objects and Reporting
I have these scenario:
//This class maps to the "Item" table in the database
public class Item
{
public int itemID { get; set;}
public string itemName { get; set; }
public int quantity { ...
-1
votes
1answer
320 views
How to use JSONKit to transmit data to a server in Xcode?
I'm basically trying to send data to a server that contains objects and fellow peers have told me to use JSONKit.
As of now, I've implemented NSCoding protocol and serialized my objects with ...
2
votes
3answers
726 views
Data Transfer Objects - do mapping in DTO, or in business object?
I have a WCF service and have just created a DTO for a business object.
My question is where to put the mapping between the two?
A) In the DTO?
public class PersonDTO
{
[DataMember] public ...
0
votes
1answer
339 views
What does the `Key` Data Annotation do in database first?
Everything I find through Google refers to Code First so I'm wondering what the Key attribute is actually doing in regards to a Database First design? I'm mainly curious because a lot of the entities ...
4
votes
3answers
503 views
Is a Data Transfer Object same as Value Object?
Is a Data Transfer Object same as Value Object or they are different? If they are different then where should we use a DTO and where should we use a VO?
The programming language we are talking about ...
2
votes
1answer
681 views
Copy data from JTable as HTML
JTable's default TransferHandler exports data in tab-delimited format. I'm trying to create my own TransferHandler that will export the data as an HTML table, but currently nothing gets copied to the ...
0
votes
4answers
468 views
Java: Transferable Objects & Serialization
I need to serialize a Transferable object to I can send it over an object data stream but during runtime I get the error java.io.NotSerializableException & I have no idea whats wrong. How do I fix ...
3
votes
1answer
124 views
Combining business object & data transfer object into one. Would it work?
I know data transfer objects are used for transferring data only and having lightweight objects over the wire.
If I have tens or hundreds of business objects, creating dto's and mappers seems like a ...
2
votes
4answers
1k views
Difference between Value Object pattern and Data Transfer pattern
In which scenario can I use those design patterns in n-tier architecture?
3
votes
3answers
1k views
Difference between Transfer objects and Domain objects
Could you please explain the difference between Transfer objects and Domain objects in simple terms ? And if u could give a Java example, that would be great..
6
votes
2answers
699 views
Can DTO's have nested DTO's?
I have the following domain model:
public class Playlist
{
public long Id { get; set; }
public string Title { get; set; }
public virtual ICollection<Song> Songs { get; set; }
}
...
0
votes
1answer
129 views
Array to Virtual Object
Problem!
I was wondering if it is possible for an array to be transfered into a virtual object via method. Let's say that I have a class "Person" with two properties "@name" and "@lastname" and then ...
1
vote
1answer
644 views
DTOs in WCF RIA Services Master-Detail
I have to make a Master-Detail scenario where in the master I can show many types of items, that they all implement IDto:
interface IDto
{
int Id { get; set; }
string Title { get; set; }
...
0
votes
1answer
98 views
Should Transfer Object always reflect the entire DB row entry?
I've got a question on the transfer object in DAO pattern. Let's say you have a USER table, and there are 20 fields in this table. In the business logic, I notice that I may need field 1 to field 3 in ...
1
vote
1answer
221 views
Is the only difference between a POCO and 'Value Object' is POCO targets .Net?
I am trying to understand the exact meaning of POCO actually (Yes i have read wikipedia already but still cannot get the main point :( ).
I understand that Value Object is an object that basically ...
0
votes
1answer
127 views
Visual Studio project type for DTOs that should be accessible in Silverlight
What VS project type should I choose so that the data-transfer-objects that I create in it can be accessible in both in my Silverlight project as well as my WCF service project.
(I want to be able to ...
4
votes
2answers
317 views
Should the properties in Data Transfer Object expand the foreign keys or simply expose their primary keys
I have an EmployeeDTO that respresents an Employee record in the database. The Employee table has a relationship to a Department and a 1-to-many relationship to Permission.
In my entities, these ...
1
vote
1answer
686 views
Should DTOs in a composite DTO reference each other by primary key or by object reference?
There is a recommendation that transfer objects should not contain object references to other transfer objects. Instead, they should use the primary keys of the other transfer objects as foreign key ...
1
vote
1answer
158 views
Models just in a WCF Service or is it necessary a replica in the Client?
I am building an application. I am creating a Silverlight 4 client with the help of MVVM Light. I am acquiring data from a WCF Service. At least, this is the plan.
In the WCF Service I have defined ...
7
votes
2answers
2k views
Should a WCF service return an EntityObject or a POCO/DTO class?
I've been looking at a lot of WCF examples using EntityFramework and most of them seem to return some kind of POCO or DTO class to the client.
I was wondering why this was since the default ...
3
votes
1answer
1k views
What is a DTO and BO? What is the difference?
I know DTO is a data transfer object and a BO is a business object. But, what does it actually mean? When should I choose one over the other?
From, what I understand DTO is just used to transfer data ...
3
votes
2answers
505 views
Using DTOs and BOs
One area of question for me about DTOs/BOs is about when to pass/return the DTOs and when to pass/return the BOs.
My gut reaction tells me to always map NHibernate to the DTOs, not BOs, and always ...
6
votes
4answers
3k views
what is a good pattern for converting between hibernate entities and data transfer objects?
I have had similar questions and concerns as to how to convert between Hibernate entities and data transfer objects to be returned by a web service as are discussed in this question:
Is using data ...
0
votes
2answers
881 views
DTO pattern vs Memento pattern
What are the differences between DTO pattern(by Fowler) and Memento pattern(by GoF) in motivation and implementation aspect? Can it be the same classes? If yes, how can I name them (xxxDTO or ...
0
votes
2answers
307 views
Sorrow with Data Transfer Objects in Silverlight / WCF
I have a Silverlight app hosted in an Azure web role ASP project. The ASP project exposes a WCF service.
I would like to have one set of class definitions for the data types. Someone recommended ...
1
vote
1answer
322 views
Containership Question
Consider this example:
namespace ValueObjects
{
public class User
{
public string UserCode { get; set; }
public string UserName { get; set; }
}
public class Company
{
public ...
1
vote
2answers
519 views
Dto and domain entities. Did I create my dto correctly?
I have the following domain entity:
public class CartItem
{
public virtual Guid Id { get; set; }
public virtual Guid SessionId { get; set; }
public virtual int Quantity { get; set; }
...
21
votes
7answers
6k views
DTO or Domain Model Object in the View Layer?
I know this is probably an age-old question, but what is the better practice? Using a domain model object throughout all layers of your application, and even binding values directly to them on the ...
3
votes
3answers
2k views
Why do transfer objects need to implement Serializable?
I realized today that I have blindly just followed this requirement for years without ever really asking why. Today, I ran across a NotSerializableException with a model object I created from scratch ...
1
vote
3answers
172 views
Are there any frameworks or utilities (in the .NET space) for automatically generating data transfer objects from business objects
I'm looking for the best approach for generating data transfer objects from business objects (the type definition, not mapping the data) using a set of conventions (e.g. all public properties), and ...
2
votes
2answers
214 views
DTOs : Several DTO (and Assemblers) for the same resource
I often need, depending on cases, of several DTOs for a same resource.
Take the example of photo Albums. Depending of what i want to display, i'll need different data into my DTOs (creation thru a ...
0
votes
1answer
617 views
GWT - Grails rpc with transfer object failing
GWT version: 2.0.0
Grail version: 1.1.2
Grails - GWT plugin version: grails-gwt-0.5-SNAPSHOT, used after 0.4.1
I'm calling a method from the gwt side passing a transfer object, which implements ...
8
votes
8answers
783 views
Business Objects - Containers or functional?
Where I work, we've gone back and forth on this subject a number of times and are looking for a sanity check. Here's the question: Should Business Objects be data containers (more like DTOs) or ...
1
vote
4answers
2k views
Java data transfer object naming convention?
Given this scenario where you have "transfer objects" (POJO's with just getters/setters) which are passed by a client library to your API, what is the best way to name the transfer objects?
package ...
2
votes
1answer
134 views
business object, on the wire object and calculator - which is best
i see this pattern over and over again and wanted to get opinions:
Option 1: On the wire object and Business object composition:
On the wire object - the data that is serialized and sent back ...
0
votes
7answers
2k views
The meaning of API
Could anyone please tell me the meaning of API in following paragraph, that's actually about Transfer Object:
If it's likely that a business service
might be asked to send or receive all
or ...
