Re: [U2] XML arrays

2012-03-01 Thread Symeon Breen
Is the actual http stream truncated, or is it just part of the payload that
is truncated.  If the first then there is some network/protocol error, if
the latter it could be an error in application you are connecting to, or a
misunderstanding as to what data you are trying to get.

Are you able to contact the https service from say curl or wget etc.  If you
turn on protocol logging you can acces the actual headers being sent so you
can try the precise http conversation outside of u2. In my experience many
issues using the build in u2 http(s) functions are due to a request http
header missing or being set incorrectly.



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dan Goble
Sent: 29 February 2012 21:30
To: U2 Users List
Subject: [U2] XML arrays

I have a programmer who is performing an https call and retrieving data back
from the webserver, but some of the data is coming back truncated.   The web
developer said that there is an array inside the xml that is being
truncated.   Has anyone seen this type of issue?We are running Unidata
7.2.12 on AIX.

Thanks,
Dan

Dan Goble | IT Senior Software Engineer

Interline Brands, Inc.
804 East Gate Drive Suite 100, Mount Laurel, NJ 08054
Office: 856.533.3110 | Mobile: 609.792.6855
E-mail: dan.go...@interlinebrands.com | Website: www.interlinebrands.com


This e-mail and any files transmitted with it are confidential and intended
solely for the individual or entity to whom they are addressed.  Please
notify the sender immediately by e-mail if you have received this e-mail in
error and delete all copies of this message.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 10.0.1424 / Virus Database: 2113/4842 - Release Date: 02/29/12

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] XML arrays

2012-03-01 Thread Carl Dula
We do this in uv, but it is most likely the same in unidata.

When receiving the XML you get a chunk (buffer) full at a time. You must save 
(write) this buffer to a file or other array, and then go back and get more 
until it is done. Basically, receive, write, repeat (loop). You might ask how 
do 
you know when it is done? Well, we test for content in the received buffer. For 
example, we test (FINDSTR) for the string /cXML, which typically ends an xml 
file. When we see this we know the sender is done. Also, don't forget that the 
sender will wait for an (XML) acknowledgement that you got it all, that you 
must 
send back

--
Carl Dula   Voice: 973-227-8440 X111
Pulsar Systems, Inc.Fax: 973-227-8440
271 US Highway 46, STE H209 email:c...@pulsarsystems.com
Fairfield, NJ 07004-2474http://www.pulsarsystems.com 


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] XML arrays

2012-03-01 Thread Symeon Breen
The https api should do all that for you - unless you are using the raw
socket api.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Carl Dula
Sent: 01 March 2012 11:10
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] XML arrays

We do this in uv, but it is most likely the same in unidata.

When receiving the XML you get a chunk (buffer) full at a time. You must
save
(write) this buffer to a file or other array, and then go back and get more
until it is done. Basically, receive, write, repeat (loop). You might ask
how do you know when it is done? Well, we test for content in the received
buffer. For example, we test (FINDSTR) for the string /cXML, which
typically ends an xml file. When we see this we know the sender is done.
Also, don't forget that the sender will wait for an (XML) acknowledgement
that you got it all, that you must send back

--
Carl Dula   Voice: 973-227-8440 X111
Pulsar Systems, Inc.Fax: 973-227-8440
271 US Highway 46, STE H209 email:c...@pulsarsystems.com
Fairfield, NJ 07004-2474http://www.pulsarsystems.com 


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 10.0.1424 / Virus Database: 2113/4843 - Release Date: 02/29/12

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] XML arrays

2012-03-01 Thread Dan Goble
This is a case where the programmer is getting the start and end tags, but data 
is missing in the middle.The vendor is saying that the data is an array in 
xml that is missing.


Dan Goble | IT Senior Software Engineer

Interline Brands, Inc.
804 East Gate Drive Suite 100, Mount Laurel, NJ 08054
Office: 856.533.3110 | Mobile: 609.792.6855
E-mail: dan.go...@interlinebrands.com | Website: www.interlinebrands.com


This e-mail and any files transmitted with it are confidential and intended 
solely for the individual or entity to whom they are addressed.  Please notify 
the sender immediately by e-mail if you have received this e-mail in error and 
delete all copies of this message.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Symeon Breen
Sent: Thursday, March 01, 2012 3:19 AM
To: 'U2 Users List'
Subject: Re: [U2] XML arrays

Is the actual http stream truncated, or is it just part of the payload that is 
truncated.  If the first then there is some network/protocol error, if the 
latter it could be an error in application you are connecting to, or a 
misunderstanding as to what data you are trying to get.

Are you able to contact the https service from say curl or wget etc.  If you 
turn on protocol logging you can acces the actual headers being sent so you can 
try the precise http conversation outside of u2. In my experience many issues 
using the build in u2 http(s) functions are due to a request http header 
missing or being set incorrectly.



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dan Goble
Sent: 29 February 2012 21:30
To: U2 Users List
Subject: [U2] XML arrays

I have a programmer who is performing an https call and retrieving data back
from the webserver, but some of the data is coming back truncated.   The web
developer said that there is an array inside the xml that is being
truncated.   Has anyone seen this type of issue?We are running Unidata
7.2.12 on AIX.

Thanks,
Dan

Dan Goble | IT Senior Software Engineer

Interline Brands, Inc.
804 East Gate Drive Suite 100, Mount Laurel, NJ 08054
Office: 856.533.3110 | Mobile: 609.792.6855
E-mail: dan.go...@interlinebrands.com | Website: www.interlinebrands.com


This e-mail and any files transmitted with it are confidential and intended 
solely for the individual or entity to whom they are addressed.  Please notify 
the sender immediately by e-mail if you have received this e-mail in error and 
delete all copies of this message.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 10.0.1424 / Virus Database: 2113/4842 - Release Date: 02/29/12

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] XML arrays

2012-03-01 Thread Symeon Breen
If the http message is complete, and the xml has the start and end tag but
not the middle then I would say that the web service you are connecting to
is in error.  Unless the programmer has not been able to get the code to
strip out the content of the message correctly.  Is the data  CDATA section,
or could it be not properly xml encoded or something.  Again protocol
logging will give a better insight into this,



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dan Goble
Sent: 01 March 2012 14:02
To: U2 Users List
Subject: Re: [U2] XML arrays

This is a case where the programmer is getting the start and end tags, but
data is missing in the middle.The vendor is saying that the data is an
array in xml that is missing.


Dan Goble | IT Senior Software Engineer

Interline Brands, Inc.
804 East Gate Drive Suite 100, Mount Laurel, NJ 08054
Office: 856.533.3110 | Mobile: 609.792.6855
E-mail: dan.go...@interlinebrands.com | Website: www.interlinebrands.com


This e-mail and any files transmitted with it are confidential and intended
solely for the individual or entity to whom they are addressed.  Please
notify the sender immediately by e-mail if you have received this e-mail in
error and delete all copies of this message.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Symeon Breen
Sent: Thursday, March 01, 2012 3:19 AM
To: 'U2 Users List'
Subject: Re: [U2] XML arrays

Is the actual http stream truncated, or is it just part of the payload that
is truncated.  If the first then there is some network/protocol error, if
the latter it could be an error in application you are connecting to, or a
misunderstanding as to what data you are trying to get.

Are you able to contact the https service from say curl or wget etc.  If you
turn on protocol logging you can acces the actual headers being sent so you
can try the precise http conversation outside of u2. In my experience many
issues using the build in u2 http(s) functions are due to a request http
header missing or being set incorrectly.



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dan Goble
Sent: 29 February 2012 21:30
To: U2 Users List
Subject: [U2] XML arrays

I have a programmer who is performing an https call and retrieving data back
from the webserver, but some of the data is coming back truncated.   The web
developer said that there is an array inside the xml that is being
truncated.   Has anyone seen this type of issue?We are running Unidata
7.2.12 on AIX.

Thanks,
Dan

Dan Goble | IT Senior Software Engineer

Interline Brands, Inc.
804 East Gate Drive Suite 100, Mount Laurel, NJ 08054
Office: 856.533.3110 | Mobile: 609.792.6855
E-mail: dan.go...@interlinebrands.com | Website: www.interlinebrands.com


This e-mail and any files transmitted with it are confidential and intended
solely for the individual or entity to whom they are addressed.  Please
notify the sender immediately by e-mail if you have received this e-mail in
error and delete all copies of this message.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 10.0.1424 / Virus Database: 2113/4842 - Release Date: 02/29/12

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 10.0.1424 / Virus Database: 2113/4843 - Release Date: 02/29/12

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] AS2 Integration

2012-03-01 Thread Phil Walker
Hi all,

Just a quick question to the group to see if anyone has done any integration 
between AS2 and Universe and how they have done this?

Cheers

Phil
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] AS2 Integration

2012-03-01 Thread Robert Houben
[AD] Better put this here, as it involves our products.

We did this for a customer of ours, using VLTrader and FusionWare Integration 
Server with the mvLynx Connect VLTrader Edition.  More info about it here:
http://www.fwic.net/Resources/FusionWareIntegrationBlogs/tabid/116/EntryId/43/The-Unlock-Code-for-MultiValue-Trading-Partner-Interaction.aspx

Our customer processes in excess of 200,000 instructions per year (both ways) 
between their trading partners and themselves.
[/AD]

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Phil Walker
Sent: March-01-12 12:50 PM
To: U2 Users List (u2-users@listserver.u2ug.org)
Subject: [U2] AS2 Integration

Hi all,

Just a quick question to the group to see if anyone has done any integration 
between AS2 and Universe and how they have done this?

Cheers

Phil
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] AS2 Integration

2012-03-01 Thread Barry Rogen

We use a product  called Lexicom from a company called Cleo.  It is a 
very nice server based product and serves us flawlessly.  It imports the EDI 
documents and deposits them in a directory that we access from UV.  The product 
is great and the support from Cleo is terrific ((except that it is a call back 
support format).

Barry Rogen
Senior Programmer/Analyst
PNY Technologies, Inc.
(973) 560-5327
bro...@pny.com


We are continually faced with great opportunities brilliantly disguised 
as insoluble problems.
 John W Gardner




-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Phil Walker
Sent: Thursday, March 01, 2012 3:50 PM
To: U2 Users List (u2-users@listserver.u2ug.org)
Subject: [U2] AS2 Integration

Hi all,

Just a quick question to the group to see if anyone has done any integration 
between AS2 and Universe and how they have done this?

Cheers

Phil
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


NOT INTENDED AS A SUBSTITUTE FOR A WRITING
NOTHING IN THIS E-MAIL, IN ANY E-MAIL THREAD OF WHICH IT MAY BE A PART, OR IN 
ANY ATTACHMENTS THERETO, SHALL CONSTITUTE A BINDING CONTRACT, OR ANY 
CONTRACTUAL OBLIGATION BY PNY, OR ANY INTENT TO ENTER INTO ANY BINDING 
OBLIGATIONS, NOTWITHSTANDING ANY ENACTMENT OF THE UNIFORM ELECTRONIC 
TRANSACTIONS ACT, THE FEDERAL  E-SIGN ACT, OR ANY OTHER STATE OR FEDERAL LAW OF 
SIMILAR SUBSTANCE OR EFFECT.  THIS EMAIL MESSAGE, ITS CONTENTS AND ATTACHMENTS 
ARE NOT INTENDED TO REPRESENT AN OFFER OR ACCEPTANCE OF AN OFFER TO ENTER INTO 
A CONTRACT.  NOTHING IN THIS E-MAIL, IN ANY E-MAIL THREAD OF WHICH IT MAY BE A 
PART, OR IN ANY ATTACHMENTS THERETO SHALL ALTER THIS DISCLAIMER.

This e-mail message from PNY Technologies, Inc. is for the sole use of the 
intended recipient(s) and may contain confidential and privileged information. 
Any unauthorized review, use, disclosure or distribution is prohibited. If you 
are not the intended recipient, please contact the sender by reply e-mail and 
destroy all copies of the original message.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] AS2 Integration

2012-03-01 Thread Robert Houben
VLTrader is a Cleo product as well.  I agree, their support has always been 
good.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Barry Rogen
Sent: March-01-12 1:21 PM
To: U2 Users List
Subject: Re: [U2] AS2 Integration


We use a product  called Lexicom from a company called Cleo.  It is a 
very nice server based product and serves us flawlessly.  It imports the EDI 
documents and deposits them in a directory that we access from UV.  The product 
is great and the support from Cleo is terrific ((except that it is a call back 
support format).

Barry Rogen
Senior Programmer/Analyst
PNY Technologies, Inc.
(973) 560-5327
bro...@pny.com


We are continually faced with great opportunities brilliantly disguised 
as insoluble problems.
 John W Gardner




-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Phil Walker
Sent: Thursday, March 01, 2012 3:50 PM
To: U2 Users List (u2-users@listserver.u2ug.org)
Subject: [U2] AS2 Integration

Hi all,

Just a quick question to the group to see if anyone has done any integration 
between AS2 and Universe and how they have done this?

Cheers

Phil
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


NOT INTENDED AS A SUBSTITUTE FOR A WRITING NOTHING IN THIS E-MAIL, IN ANY 
E-MAIL THREAD OF WHICH IT MAY BE A PART, OR IN ANY ATTACHMENTS THERETO, SHALL 
CONSTITUTE A BINDING CONTRACT, OR ANY CONTRACTUAL OBLIGATION BY PNY, OR ANY 
INTENT TO ENTER INTO ANY BINDING OBLIGATIONS, NOTWITHSTANDING ANY ENACTMENT OF 
THE UNIFORM ELECTRONIC TRANSACTIONS ACT, THE FEDERAL  E-SIGN ACT, OR ANY OTHER 
STATE OR FEDERAL LAW OF SIMILAR SUBSTANCE OR EFFECT.  THIS EMAIL MESSAGE, ITS 
CONTENTS AND ATTACHMENTS ARE NOT INTENDED TO REPRESENT AN OFFER OR ACCEPTANCE 
OF AN OFFER TO ENTER INTO A CONTRACT.  NOTHING IN THIS E-MAIL, IN ANY E-MAIL 
THREAD OF WHICH IT MAY BE A PART, OR IN ANY ATTACHMENTS THERETO SHALL ALTER 
THIS DISCLAIMER.

This e-mail message from PNY Technologies, Inc. is for the sole use of the 
intended recipient(s) and may contain confidential and privileged information. 
Any unauthorized review, use, disclosure or distribution is prohibited. If you 
are not the intended recipient, please contact the sender by reply e-mail and 
destroy all copies of the original message.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] AS2 Integration

2012-03-01 Thread John Thompson
Ok. So I'm going to ask the dummy question.

What is AS2?
I found this, but, somehow I doubt this is what you are talking about...

http://en.wikipedia.org/wiki/AS2

On Thu, Mar 1, 2012 at 4:21 PM, Robert Houben robert.hou...@fwic.netwrote:

 VLTrader is a Cleo product as well.  I agree, their support has always
 been good.

 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org [mailto:
 u2-users-boun...@listserver.u2ug.org] On Behalf Of Barry Rogen
 Sent: March-01-12 1:21 PM
 To: U2 Users List
 Subject: Re: [U2] AS2 Integration


We use a product  called Lexicom from a company called Cleo.  It is
 a very nice server based product and serves us flawlessly.  It imports the
 EDI documents and deposits them in a directory that we access from UV.  The
 product is great and the support from Cleo is terrific ((except that it is
 a call back support format).

 Barry Rogen
 Senior Programmer/Analyst
 PNY Technologies, Inc.
 (973) 560-5327
 bro...@pny.com


 
We are continually faced with great opportunities brilliantly
 disguised as insoluble problems.
 John W Gardner

 



 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org [mailto:
 u2-users-boun...@listserver.u2ug.org] On Behalf Of Phil Walker
 Sent: Thursday, March 01, 2012 3:50 PM
 To: U2 Users List (u2-users@listserver.u2ug.org)
 Subject: [U2] AS2 Integration

 Hi all,

 Just a quick question to the group to see if anyone has done any
 integration between AS2 and Universe and how they have done this?

 Cheers

 Phil
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users


 NOT INTENDED AS A SUBSTITUTE FOR A WRITING NOTHING IN THIS E-MAIL, IN ANY
 E-MAIL THREAD OF WHICH IT MAY BE A PART, OR IN ANY ATTACHMENTS THERETO,
 SHALL CONSTITUTE A BINDING CONTRACT, OR ANY CONTRACTUAL OBLIGATION BY PNY,
 OR ANY INTENT TO ENTER INTO ANY BINDING OBLIGATIONS, NOTWITHSTANDING ANY
 ENACTMENT OF THE UNIFORM ELECTRONIC TRANSACTIONS ACT, THE FEDERAL  E-SIGN
 ACT, OR ANY OTHER STATE OR FEDERAL LAW OF SIMILAR SUBSTANCE OR EFFECT.
  THIS EMAIL MESSAGE, ITS CONTENTS AND ATTACHMENTS ARE NOT INTENDED TO
 REPRESENT AN OFFER OR ACCEPTANCE OF AN OFFER TO ENTER INTO A CONTRACT.
  NOTHING IN THIS E-MAIL, IN ANY E-MAIL THREAD OF WHICH IT MAY BE A PART, OR
 IN ANY ATTACHMENTS THERETO SHALL ALTER THIS DISCLAIMER.

 This e-mail message from PNY Technologies, Inc. is for the sole use of the
 intended recipient(s) and may contain confidential and privileged
 information. Any unauthorized review, use, disclosure or distribution is
 prohibited. If you are not the intended recipient, please contact the
 sender by reply e-mail and destroy all copies of the original message.

 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users




-- 
John Thompson
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] AS2 Integration

2012-03-01 Thread Robert Houben
From a blog post I did (linked to in my earlier reply to this question):

Sometimes referred to as EDI over HTTP, AS2 is a specification about how to 
transport data securely and reliably over the internet, using digital 
certificates and encryption.  Certification with this standard guarantees that 
your product will interact with all other certified products, enabling you to 
participate in electronic commerce with over 20,000 companies. This can help to 
identify you as a preferred supplier for larger companies who may wish to 
purchase or resell your products.

In addition to ensuring that the instructions are transferred securely, the 
standard defines a mechanism whereby you will receive a receipt from the 
trading partner, which they cannot refute.  The legal term for this is 
non-repudiation.

The Drummond Group has been tasked by the standards body with certifying that 
all providers are interoperable.  Information about them and the standard is 
available here:
http://www.drummondgroup.com/index.php/b2b-certified-products/certified-products/as2

HTH,
-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of John Thompson
Sent: March-01-12 1:23 PM
To: U2 Users List
Subject: Re: [U2] AS2 Integration

Ok. So I'm going to ask the dummy question.

What is AS2?
I found this, but, somehow I doubt this is what you are talking about...

http://en.wikipedia.org/wiki/AS2

On Thu, Mar 1, 2012 at 4:21 PM, Robert Houben robert.hou...@fwic.netwrote:

 VLTrader is a Cleo product as well.  I agree, their support has always
 been good.

 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org [mailto:
 u2-users-boun...@listserver.u2ug.org] On Behalf Of Barry Rogen
 Sent: March-01-12 1:21 PM
 To: U2 Users List
 Subject: Re: [U2] AS2 Integration


We use a product  called Lexicom from a company called Cleo.
 It is a very nice server based product and serves us flawlessly.  It
 imports the EDI documents and deposits them in a directory that we
 access from UV.  The product is great and the support from Cleo is
 terrific ((except that it is a call back support format).

 Barry Rogen
 Senior Programmer/Analyst
 PNY Technologies, Inc.
 (973) 560-5327
 bro...@pny.com


 
We are continually faced with great opportunities brilliantly
 disguised as insoluble problems.
 John W
 Gardner

 --
 --



 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org [mailto:
 u2-users-boun...@listserver.u2ug.org] On Behalf Of Phil Walker
 Sent: Thursday, March 01, 2012 3:50 PM
 To: U2 Users List (u2-users@listserver.u2ug.org)
 Subject: [U2] AS2 Integration

 Hi all,

 Just a quick question to the group to see if anyone has done any
 integration between AS2 and Universe and how they have done this?

 Cheers

 Phil
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users


 NOT INTENDED AS A SUBSTITUTE FOR A WRITING NOTHING IN THIS E-MAIL, IN
 ANY E-MAIL THREAD OF WHICH IT MAY BE A PART, OR IN ANY ATTACHMENTS
 THERETO, SHALL CONSTITUTE A BINDING CONTRACT, OR ANY CONTRACTUAL
 OBLIGATION BY PNY, OR ANY INTENT TO ENTER INTO ANY BINDING
 OBLIGATIONS, NOTWITHSTANDING ANY ENACTMENT OF THE UNIFORM ELECTRONIC
 TRANSACTIONS ACT, THE FEDERAL  E-SIGN ACT, OR ANY OTHER STATE OR FEDERAL LAW 
 OF SIMILAR SUBSTANCE OR EFFECT.
  THIS EMAIL MESSAGE, ITS CONTENTS AND ATTACHMENTS ARE NOT INTENDED TO
 REPRESENT AN OFFER OR ACCEPTANCE OF AN OFFER TO ENTER INTO A CONTRACT.
  NOTHING IN THIS E-MAIL, IN ANY E-MAIL THREAD OF WHICH IT MAY BE A
 PART, OR IN ANY ATTACHMENTS THERETO SHALL ALTER THIS DISCLAIMER.

 This e-mail message from PNY Technologies, Inc. is for the sole use of
 the intended recipient(s) and may contain confidential and privileged
 information. Any unauthorized review, use, disclosure or distribution
 is prohibited. If you are not the intended recipient, please contact
 the sender by reply e-mail and destroy all copies of the original message.

 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users




--
John Thompson
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org

Re: [U2] AS2 Integration

2012-03-01 Thread Holt, Jake
It is essentially EDI over HTTP or FTP bypassing the traditional VAN
mailbox process.

We use BizConnect for our AS2 customers.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of John Thompson
Sent: Thursday, March 01, 2012 3:23 PM
To: U2 Users List
Subject: Re: [U2] AS2 Integration

Ok. So I'm going to ask the dummy question.

What is AS2?
I found this, but, somehow I doubt this is what you are talking about...

http://en.wikipedia.org/wiki/AS2

On Thu, Mar 1, 2012 at 4:21 PM, Robert Houben
robert.hou...@fwic.netwrote:

 VLTrader is a Cleo product as well.  I agree, their support has always

 been good.

 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org [mailto:
 u2-users-boun...@listserver.u2ug.org] On Behalf Of Barry Rogen
 Sent: March-01-12 1:21 PM
 To: U2 Users List
 Subject: Re: [U2] AS2 Integration


We use a product  called Lexicom from a company called Cleo.  
 It is a very nice server based product and serves us flawlessly.  It 
 imports the EDI documents and deposits them in a directory that we 
 access from UV.  The product is great and the support from Cleo is 
 terrific ((except that it is a call back support format).

 Barry Rogen
 Senior Programmer/Analyst
 PNY Technologies, Inc.
 (973) 560-5327
 bro...@pny.com





We are continually faced with great opportunities brilliantly 
 disguised as insoluble problems.
 John W 
 Gardner

 --
 --



 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org [mailto:
 u2-users-boun...@listserver.u2ug.org] On Behalf Of Phil Walker
 Sent: Thursday, March 01, 2012 3:50 PM
 To: U2 Users List (u2-users@listserver.u2ug.org)
 Subject: [U2] AS2 Integration

 Hi all,

 Just a quick question to the group to see if anyone has done any 
 integration between AS2 and Universe and how they have done this?

 Cheers

 Phil
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users


 NOT INTENDED AS A SUBSTITUTE FOR A WRITING NOTHING IN THIS E-MAIL, IN 
 ANY E-MAIL THREAD OF WHICH IT MAY BE A PART, OR IN ANY ATTACHMENTS 
 THERETO, SHALL CONSTITUTE A BINDING CONTRACT, OR ANY CONTRACTUAL 
 OBLIGATION BY PNY, OR ANY INTENT TO ENTER INTO ANY BINDING 
 OBLIGATIONS, NOTWITHSTANDING ANY ENACTMENT OF THE UNIFORM ELECTRONIC 
 TRANSACTIONS ACT, THE FEDERAL  E-SIGN ACT, OR ANY OTHER STATE OR
FEDERAL LAW OF SIMILAR SUBSTANCE OR EFFECT.
  THIS EMAIL MESSAGE, ITS CONTENTS AND ATTACHMENTS ARE NOT INTENDED TO 
 REPRESENT AN OFFER OR ACCEPTANCE OF AN OFFER TO ENTER INTO A CONTRACT.
  NOTHING IN THIS E-MAIL, IN ANY E-MAIL THREAD OF WHICH IT MAY BE A 
 PART, OR IN ANY ATTACHMENTS THERETO SHALL ALTER THIS DISCLAIMER.

 This e-mail message from PNY Technologies, Inc. is for the sole use of

 the intended recipient(s) and may contain confidential and privileged 
 information. Any unauthorized review, use, disclosure or distribution 
 is prohibited. If you are not the intended recipient, please contact 
 the sender by reply e-mail and destroy all copies of the original
message.

 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users




--
John Thompson
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] AS2 Integration

2012-03-01 Thread Phil Walker
The company I am having to do this integration with is going to use OpenAS2 
which is an opensource AS2 implementation to talk to the biztalk server using 
an AS2 connector.

What I was wondering was has anyone written an API in BASIC/GCI or similar to 
do this already using the AS2 api, if it has one. That way I can more closely 
interact with the AS2 software to handle errors/ handshaking etc.

Maybe I should keep it simple and just use the directory integration at the OS 
level.

Cheers

Phil

 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
 boun...@listserver.u2ug.org] On Behalf Of Holt, Jake
 Sent: Friday, 2 March 2012 11:09 a.m.
 To: U2 Users List
 Subject: Re: [U2] AS2 Integration
 
 It is essentially EDI over HTTP or FTP bypassing the traditional VAN mailbox
 process.
 
 We use BizConnect for our AS2 customers.
 
 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org
 [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of John
 Thompson
 Sent: Thursday, March 01, 2012 3:23 PM
 To: U2 Users List
 Subject: Re: [U2] AS2 Integration
 
 Ok. So I'm going to ask the dummy question.
 
 What is AS2?
 I found this, but, somehow I doubt this is what you are talking about...
 
 http://en.wikipedia.org/wiki/AS2
 
 On Thu, Mar 1, 2012 at 4:21 PM, Robert Houben
 robert.hou...@fwic.netwrote:
 
  VLTrader is a Cleo product as well.  I agree, their support has always
 
  been good.
 
  -Original Message-
  From: u2-users-boun...@listserver.u2ug.org [mailto:
  u2-users-boun...@listserver.u2ug.org] On Behalf Of Barry Rogen
  Sent: March-01-12 1:21 PM
  To: U2 Users List
  Subject: Re: [U2] AS2 Integration
 
 
 We use a product  called Lexicom from a company called Cleo.
  It is a very nice server based product and serves us flawlessly.  It
  imports the EDI documents and deposits them in a directory that we
  access from UV.  The product is great and the support from Cleo is
  terrific ((except that it is a call back support format).
 
  Barry Rogen
  Senior Programmer/Analyst
  PNY Technologies, Inc.
  (973) 560-5327
  bro...@pny.com
 
 
 
 
 
 We are continually faced with great opportunities brilliantly
  disguised as insoluble problems.
  John W
  Gardner
 
  --
  --
 
 
 
  -Original Message-
  From: u2-users-boun...@listserver.u2ug.org [mailto:
  u2-users-boun...@listserver.u2ug.org] On Behalf Of Phil Walker
  Sent: Thursday, March 01, 2012 3:50 PM
  To: U2 Users List (u2-users@listserver.u2ug.org)
  Subject: [U2] AS2 Integration
 
  Hi all,
 
  Just a quick question to the group to see if anyone has done any
  integration between AS2 and Universe and how they have done this?
 
  Cheers
 
  Phil
  ___
  U2-Users mailing list
  U2-Users@listserver.u2ug.org
  http://listserver.u2ug.org/mailman/listinfo/u2-users
 
 
  NOT INTENDED AS A SUBSTITUTE FOR A WRITING NOTHING IN THIS E-
 MAIL, IN
  ANY E-MAIL THREAD OF WHICH IT MAY BE A PART, OR IN ANY
 ATTACHMENTS
  THERETO, SHALL CONSTITUTE A BINDING CONTRACT, OR ANY
 CONTRACTUAL
  OBLIGATION BY PNY, OR ANY INTENT TO ENTER INTO ANY BINDING
  OBLIGATIONS, NOTWITHSTANDING ANY ENACTMENT OF THE UNIFORM
 ELECTRONIC
  TRANSACTIONS ACT, THE FEDERAL  E-SIGN ACT, OR ANY OTHER STATE OR
 FEDERAL LAW OF SIMILAR SUBSTANCE OR EFFECT.
   THIS EMAIL MESSAGE, ITS CONTENTS AND ATTACHMENTS ARE NOT
 INTENDED TO
  REPRESENT AN OFFER OR ACCEPTANCE OF AN OFFER TO ENTER INTO A
 CONTRACT.
   NOTHING IN THIS E-MAIL, IN ANY E-MAIL THREAD OF WHICH IT MAY BE A
  PART, OR IN ANY ATTACHMENTS THERETO SHALL ALTER THIS DISCLAIMER.
 
  This e-mail message from PNY Technologies, Inc. is for the sole use of
 
  the intended recipient(s) and may contain confidential and privileged
  information. Any unauthorized review, use, disclosure or distribution
  is prohibited. If you are not the intended recipient, please contact
  the sender by reply e-mail and destroy all copies of the original
 message.
 
  ___
  U2-Users mailing list
  U2-Users@listserver.u2ug.org
  http://listserver.u2ug.org/mailman/listinfo/u2-users
  ___
  U2-Users mailing list
  U2-Users@listserver.u2ug.org
  http://listserver.u2ug.org/mailman/listinfo/u2-users
 
 
 
 
 --
 John Thompson
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] AS2 Integration

2012-03-01 Thread Tony Gravagno
http://nebula-rnd.com/blog/tech/mv/2009/08/mv-to-anything.html


 From: Phil Walker 
 Just a quick question to the group to see if anyone has done any
 integration between AS2 and Universe and how they have done this?

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] Where can I get UniAdmin?

2012-03-01 Thread Tony Gravagno
I am re-installing Universe and Unidata from scratch with the very
latest 'everything'.

The latest (?) Universe installation guide (October 2010 for v11.1)
says The UniVerse Clients CD-ROM contains the following client
software for use with
Windows servers.  The most recent (?) client and DBTools downloads
from Rocket don't seem to include UniAdmin:
http://www.rocketsoftware.com/u2/products/u2-clients-and-db-tools/u2-r
esources

So where is it these days for Universe and Unidata?

Thanks!
T

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Where can I get UniAdmin?

2012-03-01 Thread Gregor Scott
I thought the new U2 DB Tools includes the extensible admin tool, built on 
eclipse.

I have downloaded the package but not installed to confirm.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Tony Gravagno
Sent: Friday, 2 March 2012 10:36 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Where can I get UniAdmin?

I am re-installing Universe and Unidata from scratch with the very latest 
'everything'.

The latest (?) Universe installation guide (October 2010 for v11.1) says The 
UniVerse Clients CD-ROM contains the following client software for use with 
Windows servers.  The most recent (?) client and DBTools downloads from Rocket 
don't seem to include UniAdmin:
http://www.rocketsoftware.com/u2/products/u2-clients-and-db-tools/u2-r
esources

So where is it these days for Universe and Unidata?

Thanks!
T

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
--
Message  protected by DealerGuard: e-mail anti-virus, anti-spam and content 
filtering.
http://www.pentanasolutions.com

Click here to report this message as spam:
https://login.mailguard.com.au/report/1EfhESO4BU/4QyfMTGezeH3YBeHlxXACb/0


This email and any attachments to it are confidential.
You must not use, disclose or act on the email if you are not the intended
recipient.  Liability limited by a scheme approved under Professional
Standards Legislation.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Where can I get UniAdmin?

2012-03-01 Thread Doug Averch
Hi Tony:

XAdmin is in the U2BDT_JAN2012 directory.  It is, of course, Eclipse based.

Regards,
Doug
www.u2logic.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Where can I get UniAdmin?

2012-03-01 Thread Bill Haskett
Yea, well when I installed the xAdmin product it didn't do most things 
UniAdmin did.  So I had to keep the old UniAdmin in order to manage U2 
servers.  Not sure what xAdmin does now but it was pretty useless back 
in June of 2011.  :-(


Bill


- Original Message -
*From:* gregor.sc...@pentanasolutions.com
*To:* U2 Users List u2-users@listserver.u2ug.org
*Date:* 3/1/2012 4:16 PM
*Subject:* Re: [U2] Where can I get UniAdmin?

I thought the new U2 DB Tools includes the extensible admin tool, built on 
eclipse.

I have downloaded the package but not installed to confirm.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Tony Gravagno
Sent: Friday, 2 March 2012 10:36 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Where can I get UniAdmin?

I am re-installing Universe and Unidata from scratch with the very latest 
'everything'.

The latest (?) Universe installation guide (October 2010 for v11.1) says The 
UniVerse Clients CD-ROM contains the following client software for use with Windows 
servers.  The most recent (?) client and DBTools downloads from Rocket don't seem 
to include UniAdmin:
http://www.rocketsoftware.com/u2/products/u2-clients-and-db-tools/u2-r
esources

So where is it these days for Universe and Unidata?

Thanks!
T

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
--
Message  protected by DealerGuard: e-mail anti-virus, anti-spam and content 
filtering.
http://www.pentanasolutions.com

Click here to report this message as spam:
https://login.mailguard.com.au/report/1EfhESO4BU/4QyfMTGezeH3YBeHlxXACb/0


This email and any attachments to it are confidential.
You must not use, disclose or act on the email if you are not the intended
recipient.  Liability limited by a scheme approved under Professional
Standards Legislation.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Where can I get UniAdmin?

2012-03-01 Thread Tony Gravagno
 From: Bill Haskett 
 Yea, well when I installed the xAdmin product it didn't do most
things
 UniAdmin did.  So I had to keep the old UniAdmin in order to manage
 U2 servers.  Not sure what xAdmin does now but it was pretty useless
 back in June of 2011.  :-( 

I did see XAdmin in DBTools but didn't load it to see what it did.
(Not sure that deserves a forehead slap but I'll take it.)
I don't see Eclipse as an application Deployment environment but as an
app Development environment. So I figured it was something completely
different.  (Note to Rocket engineering/marketing/doc people: you
might want to get some feel for whether this is a common perception.)

I didn't know UniAdmin was withdrawn as soon as XAdmin was introduced.
Very few companies do that for exactly the reason Bill cited.

I have the original UniAdmin from my prior install media and the
question is answered.

So now before I install, the questions are: 

How well does XAdmin replace UniAdmin?

How fast is Rocket working to bring back lost functionality?

Can XAdmin and UniAdmin be run in the same environment?

Is there any good resource for answers to these and related questions?
(Always looking to learn where to fish rather than asking for fish...)

Thanks!
T


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Where can I get UniAdmin?

2012-03-01 Thread Daniel McGrath
Hi Tony,

We are aware of the delta in functionality between UniAdmin and XAdmin. This 
delta is addressed in our upcoming U2 DBTools for which you won't have long to 
wait. For anyone using UniAdmin, I encourage you to keep a look out for this 
release and check out XAdmin.

We are always looking for customer feedback on our products.

Dan McGrath
U2 Product Manager | Rocket Software

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Tony Gravagno
Sent: Thursday, March 01, 2012 7:20 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Where can I get UniAdmin?

 From: Bill Haskett
 Yea, well when I installed the xAdmin product it didn't do most
things
 UniAdmin did.  So I had to keep the old UniAdmin in order to manage
 U2 servers.  Not sure what xAdmin does now but it was pretty useless 
 back in June of 2011.  :-(

I did see XAdmin in DBTools but didn't load it to see what it did.
(Not sure that deserves a forehead slap but I'll take it.) I don't see Eclipse 
as an application Deployment environment but as an app Development environment. 
So I figured it was something completely different.  (Note to Rocket 
engineering/marketing/doc people: you might want to get some feel for whether 
this is a common perception.)

I didn't know UniAdmin was withdrawn as soon as XAdmin was introduced.
Very few companies do that for exactly the reason Bill cited.

I have the original UniAdmin from my prior install media and the question is 
answered.

So now before I install, the questions are: 

How well does XAdmin replace UniAdmin?

How fast is Rocket working to bring back lost functionality?

Can XAdmin and UniAdmin be run in the same environment?

Is there any good resource for answers to these and related questions?
(Always looking to learn where to fish rather than asking for fish...)

Thanks!
T


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Where can I get UniAdmin?

2012-03-01 Thread Tony Gravagno
Dan, that's really great news  - thanks!

Unless you or someone else sees an issue with this, here is my planned
approach:

1) Install the last release of UniAdmin.
2) Install the latest release of XAdmin on the same system.
3) Try XAdmin, revert to UniAdmin as required. (Without keeping both
open simultaneously)
4) Upgrade XAdmin in-place when a new release is available.
5) Repeat 3-4 as required until UniAdmin is entirely obsolete.

T

 
 From: Daniel McGrath 
 Hi Tony, 
 We are aware of the delta in functionality between UniAdmin and
 XAdmin. This delta is addressed in our upcoming U2 DBTools for which
 you won't have long to wait. For anyone using UniAdmin, I encourage
 you to keep a look out for this release and check out XAdmin.
 
 We are always looking for customer feedback on our products.
 
 Dan McGrath
 U2 Product Manager | Rocket Software 


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users