JOpt.ASP 2.2.6 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News JOpt.ASP 2.2.6 (Default branch)
# 1  
Old 11-07-2008
JOpt.ASP 2.2.6 (Default branch)

JOpt.ASP is a consistent advancement of JOpt.NET that exposes the unique JOpt vehicle routing capabilities via standard HTTP/SOAP interfaces. JOpt.ASP has been designed for enterprise applications and Web-based solutions that are based on ASP.NET. JOpt.ASP provides its optimization facilities through a stateful Web service that comes with a comfortable programming interface that is very similar to JOpt.NET. License: Other/Proprietary License with Free Trial Changes:
This release has an additional construction algorithm in order to better (i.e. faster) cope with heterogeneous fleet problems. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
ATALK(4)							   Netatalk 2.2 							  ATALK(4)

NAME
atalk - AppleTalk protocol family SYNOPSIS
#include <sys/types.h> #include <netatalk/at.h> DESCRIPTION
The AppleTalk protocol family is a collection of protocols layered above the Datagram Delivery Protocol (DDP), and using AppleTalk address format. The AppleTalk family may provide SOCK_STREAM (ADSP), SOCK_DGRAM (DDP), SOCK_RDM (ATP), and SOCK_SEQPACKET (ASP). Currently, only DDP is implemented in the kernel; ATP and ASP are implemented in user level libraries; and ADSP is planned. ADDRESSING
AppleTalk addresses are three byte quantities, stored in network byte order. The include file <netatalk/at.h> defines the AppleTalk address format. Sockets in the AppleTalk protocol family use the following address structure: struct sockaddr_at { short sat_family; u_char sat_port; struct at_addr sat_addr; char sat_zero[ 8 ]; }; The port of a socket may be set with bind(2). The node for bind must always be ATADDR_ANYNODE: ``this node.'' The net may be ATADDR_ANYNET or ATADDR_LATENET. ATADDR_ANYNET coresponds to the machine's ``primary'' address (the first configured). ATADDR_LATENET causes the address in outgoing packets to be determined when a packet is sent, i.e. determined late. ATADDR_LATENET is equivalent to opening one socket for each network interface. The port of a socket and either the primary address or ATADDR_LATENET are returned with getsockname(2). SEE ALSO
bind(2), getsockname(2), atalkd(8). Netatalk 2.2 17 Dec 1991 ATALK(4)