Hello, Sorry for the length of this post, but I wanted to include an example. I seem to be having a rather strange problem with passing some string parameters...
2283
Sean.Meisner@...
Jan 17, 2003 8:57 pm
Hi, I haven't used Net::LDAP, so this is just a guess, but: I believe your problem is related to the fact that, when you get an LDAP error, you return...
2284
b1v1r <b1v1r@...>
b1v1r
Jan 17, 2003 9:41 pm
But, I do unbind() and undef $LDAP, unless there is an udefined message (ie then returns -1), but that does not happen (always returns 0, but with different...
2285
Sean.Meisner@...
Jan 17, 2003 10:08 pm
Try a test comparing the strings you get over the network to what you think they should be, something like: sub authenticate { ($this,$dn,$password) = @_; ...
2286
B R
b1v1r
Jan 17, 2003 10:21 pm
Yep, I did that too. Perl compares them as equal, yet LDAP seems to see a difference. It is a very strange problem. I have done everything I can think of to...
2287
Keanan Smith
KSmith@...
Jan 17, 2003 10:37 pm
If the actual strings themselves are the same (a la 'eq') then there are two other places I can think to check. One is that you are passing a reference that...
2288
B R
b1v1r
Jan 17, 2003 11:52 pm
Excellent call, thank you! I added a: use Devel::Peek qw(Dump); ... print "dn='$dn'92;n"; Dump($dn); print "password='$password39;\n"; Dump($password); and sure...
2289
B R
b1v1r
Jan 20, 2003 5:17 pm
I have tried to override the as_string to do the utf8::downgrade, but SOAP::Lite always uses the SOAP::XMLSchema1999::Deserializer instead. Basically, I want...
2290
jorel_martirosov <...
jorel_martir...
Jan 20, 2003 8:38 pm
this is probably trivial, but i've tried every combination i can find for accomplishing this and nothing works. i need to create something equal or equivalent...
2291
Byrne Reese
byrnereese
Jan 20, 2003 8:56 pm
Take a look at this sample code which I used to serialize some complex data types... This may help you determine the best way to get your prefixes, namespaces,...
2292
Dan Muey
dmuey@...
Jan 22, 2003 10:36 pm
Hello list, I am extremely new to Web Services and Soap. Soap was recommended to me by a couple of perl lists that I frequent. I was checking out the awesome...
2293
Keanan Smith
KSmith@...
Jan 22, 2003 11:26 pm
0: None functionally, the URI is intended to indicate a unique 'space39; in which the code exists, so this should technically be a space you control and/or can...
2294
Dan Muey
dmuey@...
Jan 22, 2003 11:30 pm
Awesome! Thanks a zillion! I'll look this over and see how it goes. I apprteciate it very much! Dan...
2295
Keanan Smith
KSmith@...
Jan 22, 2003 11:52 pm
Actually, I implied a little less work than it actually takes to modify a variable server side from a parameter passed in from the client side, autobinding is...
2296
dcgrigsby <dan@......
dcgrigsby
Jan 23, 2003 6:54 am
Hello, I decided to take a crack at writing a module to work with Apache-2 and mod_perl-2. Before I loose you, let me say that I made it work; I want to do it...
2297
fulkohew <fulkohew...
fulkohew
Jan 23, 2003 2:46 pm
... custom ... for ... cache ... I have tried ths example, i.e. -> objects_by_reference('TestF39; => \&garbage_collector) and in all permuatations, but my server...
2298
Paul Kulchenko
paulclinger
Jan 23, 2003 10:16 pm
Hi Dan, ... No inheritance? I guess it's because of this: package ModPerl2SOAP; @ISA = qw(SOAP::Transport::HTTP::Server); ISA doesn't belong to this package....
2299
Paul Kulchenko
paulclinger
Jan 23, 2003 10:36 pm
Hi Fulko, ... It appears to be my fault. The code inside objects_by_reference turns out to be version dependent (it relies on left-to-right order of execution...
2300
Rob Moser
moserunsweduau
Jan 24, 2003 2:26 am
Hello all, Lots of things in the archives about using SSL through apache, but I was wondering if its possible to get an independent SSL server. I've got a ...
2301
Dan Grigsby
dcgrigsby
Jan 24, 2003 3:28 am
Hi Paul, Thanks for the help. I see why you want one that works with both. It would be nice to have one that works with both so that folks can just update the...
2302
Dan Grigsby
dcgrigsby
Jan 24, 2003 4:07 am
Hi Paul, Attached please find an HTTP.pm that includes a SOAP::Transport::HTTP::Apache that should work with mod_perl-1 and mod_perl-2. I used $ENV{MOD_PERL}...
2303
nerdscan <nramjee@...
nerdscan
Jan 25, 2003 11:30 pm
Hi, I am running the client example with the following error: "not well-formed (invalid token) at line 1, column 1, byte 1 at...
2304
Mike Kopack <makop...
makopack
Jan 26, 2003 4:57 am
Hi gang. I'm currently helping write a book on web services. One of the toolkits we're looking to discuss in the book is SOAP::Lite. Unfortunately this is a...
2305
Randy J. Ray
rjray_perl
Jan 26, 2003 6:16 am
... This probably isn't what he has in mind, but let me take the opportunity to point out that the book, "Programming Web Services with Perl" (co-written by ...
2306
fulkohew <fulkohew...
fulkohew
Jan 27, 2003 4:13 pm
In my server when I add: use SOAP::Lite +trace; I get the error: Use of uninitialized value in join or string at /usr/lib/perl5/site_perl/5.6.0/SOAP/Lite.pm...
2307
fliragne <florian....
fliragne
Jan 29, 2003 10:46 am
is there a way to log the SOAP request (means the xml body)?? I need this feature for some debugging work, but i don't have find it in the doc. thanks for...
2308
Andy Kelk
mopoke_uk
Jan 29, 2003 12:48 pm
Hi there, I have an array of data which I want to send in a SOAP request and expect it to come out something like this: <skuElements> <product sku="Test"> ...
2309
starnuto_di_topo <...
starnuto_di_...
Jan 29, 2003 1:45 pm
Hallo! I'm using a SOAP::lite client to call a GLUE server. In the WSDL, it is pecified to connect to the service at http://127.0.0.1:8080/abc : <soap:address...
2310
fulkohew <fulkohew...
fulkohew
Jan 29, 2003 2:20 pm
Why can't I programatically define the host name and port number? Statically it works, but dynamically I get the error: IO::Socket::INET: Bad hostname ':' ... ...
2311
Sean.Meisner@...
Jan 29, 2003 3:00 pm
Hi Fulko, You can't do that because "use" happens at compile-time, before $host and $port are defined. A common trick is to put the use in a string and then...