Search the web
Sign In
New User? Sign Up
pocketsoap
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 4545 - 4574 of 5326   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4545
You are a genius!!!!! It works!! Could I ask one more favor? Sorry for being such a pain. The next request sent to the Web server is to check stock levels...
bleakandgloomy
Offline Send Email
Jul 3, 2006
9:30 am
4546
I can't see anything wrong in the XML, the only real difference is that you are setting order_by to be "prodID", whereas the NuSOAP order_by is using "itemID"....
Nick Shaw
njshaw2
Offline Send Email
Jul 3, 2006
10:47 am
4547
This is returned from PocketSoap:- HTTP/1.1 200 OK Date: Mon, 03 Jul 2006 13:11:13 GMT Server: Apache/2.0.50 (Unix) mod_ssl/2.0.50 OpenSSL/0.9.7d PHP/4.3.10 ...
bleakandgloomy
Offline Send Email
Jul 3, 2006
1:27 pm
4548
... PHP/4.3.10 ... That looks like an incomplete response from the server - there's no XML at all, just pipes. Very odd! Are you sure that's the entirely of...
Nick Shaw
njshaw2
Offline Send Email
Jul 4, 2006
10:53 am
4549
... The response is claimed to be gzip compressed, so I wouldn't expect it to be readable. What does pocketSOAP print out if you re-serialize the envelope...
Simon Fell
simonfell99
Online Now Send Email
Jul 4, 2006
11:13 pm
4550
Ahhh, yes. It's compressed. After the post from Nick I was looking to see why the packet was so big yet so little was returned and now you've mentioned...
bleakandgloomy
Offline Send Email
Jul 5, 2006
9:17 am
4551
after the e.parse h line add Response.Write Server.HtmlEncode(e.serialize) You can also use the options property on the HTTP transport to disable the...
Simon Fell
simonfell99
Online Now Send Email
Jul 5, 2006
5:13 pm
4552
RESULT!!!! WINNER!!!! It works...muhahahahahahahahaha. Cheers for saving my job Simon - I owe you BIG time. Thanks for putting up with my whinging over the...
bleakandgloomy
Offline Send Email
Jul 6, 2006
4:21 pm
4553
Hello everyone, I am using PocketSOAP with Embedded Visual C++ 4.0 (EVC++). Just wondering if there is a PocketSOAP Proxy Generator for EVC++? or any ...
Jabran Asghar
jabrran
Offline Send Email
Jul 6, 2006
7:18 pm
4554
... There's no C++ proxy generator, I started work on one a while back, but haven't had the time to work on it recently. For now you'll need to build your...
Simon Fell
simonfell99
Online Now Send Email
Jul 7, 2006
5:03 am
4555
It appears you aren't putting the file's data into the parameter collection, only the filename, followed by an objFile parameter which you set as the string...
Nick Shaw
njshaw2
Offline Send Email
Jul 7, 2006
8:25 am
4556
I search allmost 1 year for a bit of code in VB6. How can i communicatie over SOAP with a x509 certificate (stored in the user profile)? So the server excepts...
kong_andre
Offline Send Email
Jul 10, 2006
9:47 pm
4557
... The HTTP transport in PocketSOAP doesn't support this yet (its on the todo list). However you can build your own alternative transport using WinInet which...
Simon Fell
simonfell99
Online Now Send Email
Jul 11, 2006
2:55 am
4558
Hi, I am having trouble compiling Pocket soap V1.5.4 for ARMV4. Although I see that there are binaries posted, I would like to compile the dll's. I would...
Roy Varghese
Roycev
Offline Send Email
Jul 17, 2006
11:53 pm
4559
... As the build docs, you need to use eVC3, it produces a single ARM binary that runs on PocketPC2000/2/3/5 It doesn't currently build on eVC4 or VS.NET 2005...
Simon Fell
simonfell99
Online Now Send Email
Jul 18, 2006
3:03 am
4560
Is out now, grab it while its hot. It has a fix for the SSL problems on Windows Mobile 5.0 devices, and in addition it has some extra functions for working...
Simon Fell
simonfell99
Online Now Send Email
Jul 18, 2006
5:49 am
4561
I must call the .NET Remoting function "void Send2( byte[] a_msg )" using pocketsoap with c++. When I do this, .NET throw an exception. With tcptrace I...
anro_c4b
Offline Send Email
Jul 18, 2006
4:18 pm
4562
Thank you for the reply. I have an issue where the call to AtlReportError in PocketHttp.dll does not return. I have a fairly large PocketPC application(4MB) ...
Roy Varghese
Roycev
Offline Send Email
Jul 21, 2006
2:15 am
4563
I suggest you look for an environmental problem in your environment, I haven't seen a problem like that on any platform. Are you sure you're calling...
Simon Fell
simonfell99
Online Now Send Email
Jul 21, 2006
2:17 am
4564
I need to call LoadLibrary when the application starts, else I get an error when trying to load the dll's as I run out of contigous memory. If I don't call...
Roy Varghese
Roycev
Offline Send Email
Jul 21, 2006
2:18 pm
4565
I don't have this problem on PPC2003 or WM5.0 devices. Are you sure you're calling CoInitializeEx for all your threads that are doing COM. manually calling...
Simon Fell
simonfell99
Online Now Send Email
Jul 21, 2006
7:18 pm
4566
You can change the serializerFactory to prefer the old sytle soap encoding type for byte array serialization. you need to call something like ...
Simon Fell
simonfell99
Online Now Send Email
Jul 26, 2006
5:20 am
4567
Thank's for your answer. I have tried your code (VB7): Dim env, trans Dim arr() As Byte = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0} env =...
anro_c4b
Offline Send Email
Jul 26, 2006
5:10 pm
4568
Ahh, yeah, it'll still prefer to use the xsd version of the type. You'll need to create a type mapping for it, it's pretty straight forward. Dim a(2) As Byte ...
Simon Fell
simonfell99
Online Now Send Email
Jul 27, 2006
2:07 am
4569
Now it works! Thanks a lot. ... S:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> ... ("Send2",...
anro_c4b
Offline Send Email
Jul 27, 2006
3:41 pm
4570
Hi, I need to change the "contentID" of Soap Part in SWA. The default value is : Content-ID: <B6B34A62-0FE2-440E-8F59-ACEF5D762BA6@... ...
marc_nadal
Offline Send Email
Jul 27, 2006
4:02 pm
4571
You can't change this for the root part that contains the soap envelope, it is created on demand when send is called, so you have no chance to alter it. What's...
Simon Fell
simonfell99
Online Now Send Email
Jul 31, 2006
2:06 am
4572
Hello, What would be a good, efficient way to transform the array of bytes returned by the HTTPTransport's Receive method into a String in VB6? I'm doing...
ebolanost
Offline Send Email
Aug 4, 2006
7:43 pm
4573
Its probably easier to use pocketHTTP directly in this case, rather than the pocketSOAP wrapper for it (which assumes that you'll be using PocketSOAP to parse...
Simon Fell
simonfell99
Online Now Send Email
Aug 4, 2006
8:07 pm
4574
Thanks, Simon! With what I have now, I found that I could use the StrConv function, which returns a String that I can use: bytes = http.Receive("") '... ...
ebolanost
Offline Send Email
Aug 5, 2006
1:00 am
Messages 4545 - 4574 of 5326   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help