|
Tutorial Books by Herong - References by Others
Part:
1
2
3
4
5
6
7
8
9
(Continued from previous part...)
Query on invoking remote java webservices from a Perl Client
Subject: Query on invoking remote java webservices from a Perl Client
Date: Jun 18, 2004
Source: USENET - comp.lang.perl.modules
Author: Asha
Hi all,
We are working on a Perl client, which should be able to invoke a
method exposed by remote Java webservice (Eg. JMXConnector) deployed
in the Weblogic server.
...
We are getting an error 'Could not find mandatory header connectionId'
in the Soap Response message.
The code Snippet is given below:
```````````````````````````````
use SOAP::Lite +trace; #Uses the SOAP::Lite library
use strict;
my $soap = new SOAP::Lite ();
my $service = $soap ->
uri('http://mx4j.sourceforge.net/remote/soap/1.0')
->
proxy('http://localhost:7001/axis/services/jmxconnector');
my $som = $service -> isRegistered();
my $result = $som-> result();
print "Is Registered? : $result";
References:
~~~~~~~~~~
1. http://www.geocities.com/herong_yang/perl/soap_lite.html
2. http://www.xav.com/perl/site/lib/SOAP/Lite.html
3. http://secu.zzu.edu.cn/book/Perl/Perl%20Bookshelf%20%5B3rd%20...
Any help on this would be greatly appreciated.
with regards,
Asha
Re: [vhdl-200x] IP Protection and Encryption Donation
Subject: Re: [vhdl-200x] IP Protection and Encryption Donation
Date: May 20, 2004
Source: http://www.eda.org/vhdl-200x/hm/0569.html
Author: Marcus
Hi Jay,
Jay Lawrence writes:
> Because I'm basically lazy and google is faster than my math,
> I found the following
>
> http://www.geocities.com/herong_yang/data/uuencode.html
>
> It contains a table of the printable range in uuencoded text and
> you are
> correct it does not contain lower case letters. The example should
> probably be updated to have actual encrypted/encoded text.
Do you know whether BASE64 was considered as encoding scheme and
whether uuencode was preferred?
BASE64 is well standardized and generally used in MIME email
(http://www.mhonarc.org/~ehood/MIME/2045/rfc2045.html#6.8) to encode
binary data. There are plenty of codecs floating around.
I remember reading this in the mmencode(1) man-page:
RATIONALE
Mimencode is intended to be a replacement for uuencode for mail
and news use. The reason is simple: uuencode doesn't work very
well in a number of circumstances and ways. In particular,
uuencode uses characters that don't translate well across all mail
gateways (particularly ASCII <-> EBCDIC gateways). Also, uuencode
is not standard -- there are several variants floating around,
encoding and decoding things in different and incompatible ways,
with no "standard" on which to base an implementation. [...]
Best regards,
Marcus
Re: Validate XML Documents
Subject: Re: Validate XML Documents
Date: Apr 26, 2004
Source: http://www.houseoffusion.com/lists.cfm/link=m:4:32158:161379
Author: Rob
Here is a good blurb on how to do it in java - pretty similar steps in
cf
http://www.geocities.com/herong_yang/jdk/xsd_validation.html
(Continued on next part...)
Part:
1
2
3
4
5
6
7
8
9
|