fetchLimit rule: Insight Please

2007-11-01 Thread seevion
Been really stuck on how to properly do a fetchLimit rule in D2WS.  Without a fetchLimit rule in place I get only 100 records returned. When I put the fetchLimit rule in place it breaks the service.  I think I am doing the right hand side value wrong.  I've tried quoting it "2000" or "0" and tho

Totally stuck on FetchLimit in RuleEditor; HELP

2007-10-21 Thread seevion
I've tried the documentation, google and this list twice but still can't find the answer to get my direct to webservices app to return more than 100 results from a fetch.  In the SOAP response I see this, indicating that the array can only hold 100 records: \nhttp://schemas.xmlsoap.org/s

Rule Editor FetchLimit ... How?

2007-10-15 Thread seevion
I have a Direct to WebServices app that is supposed to return all dealers in a table but returns the default limit of 100.  I've tried incorporating the FetchLimit key in a custom d2w.d2wmodel as described in the documentation but haven't managed more than 100 returned.  I need some help or poin

fetchlimit rule

2007-10-05 Thread seevion
I'm running a direct to webservice app that should return all records in a table but is automatically limiting to the first 100.  Is the the best way around this to add a fetchLimit rule to the user.d2wmodel that is a larger number than the table contains?  If yes, what exactly would this rule l

finding SOAP call

2007-09-23 Thread seevion
I have a Direct to WebServices application running.  I want to run the test feature from WebServicesAssistant and see the actual SOAP call that it generates.  I tried TCP monitor but it doesn't "hear" the test function (is shows me WSDL generation).  Can anyone suggest a way to find exactly how

MySQL, EO, Sproc How-To

2007-09-06 Thread seevion
I solved this once in the past and finally figured it out again.  So I don't loose the notes and so others can get to the answer, here is what I did: Build the stored procedure in MySQL 5 or higher and test it Make sure that you have the current MySQL jar in your classpath "Discover" t

MySQL with EOModeler (can it call a sproc)?

2007-09-06 Thread seevion
Has anyone successfully called a stored procedure in MySQL 5.x from EOModeler? I've been stumped here for several days and am suddenly concerned that the MySQL driver is incapable and if someone would please confirm that it is or isn't that'd -- at least offer me some solid ground. Thanks,

MySQL Stored Procedure in EOModeler

2007-09-04 Thread seevion
Anyone have a hint or answer? I'm using MySQL 5.x and want to use a stored procedure for insert and it's not working.   I followed the Apple Documentation. I made the sproc in MySQL and tested it thoroughly to ensure it works error free (it does).  I "discovered" it with EOModeler and added

WSDL via Direct Action?

2007-06-19 Thread seevion
I'm having trouble with the types schema of my WSDL. In the WIKI for WebServices Francis Labrie recommends sharing the WSDL through Direct Action. Can somebody explain how to do this please? Is anyone aware of another work-around? --Mat __

D2WS, Fetch with Stored Procedure?

2007-06-15 Thread seevion
I am trying to make a fetch using a stored procedure via EO Modeler and would like some insight please. I add the fetch to a table object and in the fetch interface select the 'SQL' tab. Under this tab I click the 'Use Stored Procedures' toggle and see all SPROCs. I try to select the one I w

How to Consume D2WS via .NET

2007-06-15 Thread seevion
For some reason the WSDL from D2WS isn't as well done as .NET users need. For this reason I've made this little How-To for them and it may help others on this list to know. Here it is in short: .NET INSTRUCTIONS FOR CONSUMING WO D2WS... To more easily consume these services with .NET, you nee

Re: Fetch and Direct to WebServices

2007-06-13 Thread seevion
Philippe thanks for the response, I am completely baffled by what I may be doing wrong and am hoping a detailed explination of the process I am following may highlight where I am at making a mistake and you may be willing to send me an answer that indicates this. I've tried what you suggest bu

Fetch and Direct to WebServices

2007-06-13 Thread seevion
I can't seem to get any fetch spec to show up in the WebService Assistant of Direct to WebServices. I've asked this before and am hoping the second try will catch the eye of someone helpful in the know. The Apple documentation on this is: ---

Using a MySQL Sproc via WO

2007-05-21 Thread seevion
Got good and frustrated before asking. I am trying to use a Stored Procedure for an insert. I am using the method described in EOModeler documentation (http://developer.apple.com/documentation/WebObjects/UsingEOModeler/6Work ingWithEntities/chapter_6_section_5.html#//apple_ref/doc/uid/%20TP30

Fetch in Direct to WebService

2007-01-19 Thread seevion
The Apple documentation on this is: "When you make public an entity with fetch specifications in the Web Services Assistant, the Assistant creates operations corresponding to those fetch specifications. You can see the arguments th

Namespace in WebService

2007-01-07 Thread seevion
I am vending a webservice based on a class in my standard WO app (not a D2WS app) and having issues. In my WSDL on the server the Namespace starts out: targetNamespace="http://default/Apps/WebObjects/..."; Nowhere does it have the actual server address (which is an IP address) so I suspect t

Service and WSDL problem (help?)

2007-01-04 Thread seevion
I am new to vending a service and have added this capability to an application that I have running to make class methods available via WebService. The consumer hangs up when parsing the WSDL. Here is the error: ***Unable to import binding 'StoreLocationSoapBinding' from namespace 'http://de

WebService Error WOXMLprovider

2006-12-28 Thread seevion
Hello, I can't get a WebService running. I am using the current version of WO and Xcode. Here is the error: [2006-12-29 00:15:57 CST] A fatal exception occurred: com/webobjects/webservices/support/WOXMLProvider [2006-12-29 00:15:57 CST] java.lang.NoClassDefFoundError: com/webobjects/webs

Direct to WebServices Reading?

2006-12-22 Thread seevion
Does anyone know of decent text for learning Direct 2 WebObjects in WO? I have asked a few different ways for the full procedure to get a fetch spec available in WebServices Assistant with no answer and I have checked these readings: WO Wiki (http://en.wikibooks.org/wiki/Programming:WebObjec

Re: Webobjects-dev Digest, Vol 3, Issue 830

2006-12-20 Thread seevion
Jerry (others) In the scant Apple documentation on this topic, it seems to suggest that just making a fetch spec in the model and rebuilding the project makes that fetch spec available in WebServices Assistant's Arguments and Return panes. Please refer to this page: http://developer.apple.co

D2WS & Fetch Specs

2006-12-18 Thread seevion
Hello, I've read the Apple docs on Direct To WebServices and find that EO entities with fetch specs are supposed to have those fetches available in D2WS however it doesn't say how or were. I made a model, added fetches in EO and used it in D2WS but I can't find where these specs are avaiable

D2WebService Deploy Considerations

2006-12-12 Thread seevion
I have made a Direct 2 WebService application and it runs fine locally. When I build for the server are there any special considerations? Do I have to build the Web Server target or just the Application Server? I tried deploying a service and received the following error: [2006-12-11 21:39:4

modifying the save method for WO Display Group

2006-10-09 Thread seevion
I would like to know how to add a little math to the save method of a Display Group. I am using a display group to access records for modifying. The returned records are displayed in Strings and one to be edited is displayed in a Field. The user will enter a number into the field and invoke

CSV problem

2005-12-01 Thread seevion
My app generates CSV files from WORepetitions which open well via Excel on the Mac but in Windows Excel it shows the source instead of opening properly. On each string I set the escape HTML to NO and used the following code: public void appendToResponse (WOResponse aResponse, WOContext aContex