Re: translating java to CF

2004-09-28 Thread Joshua OConnor-Rose
Did that, compiled the jar file now I'm able to create the objects . . . now I have other problems. Is there a list where I can discuss create and update issues? for sforce I keep getting this error: Web service operation "create" with parameters [EMAIL PROTECTED] cou

Re: translating java to CF

2004-09-27 Thread Sean Corfield
On Mon, 27 Sep 2004 13:58:46 -0700 (PDT), Joshua OConnor-Rose <[EMAIL PROTECTED]> wrote: > We have not. I have a bunch of generated .java files > from the sforce web site and I am suggesting that we > just use those. Is that the direction I should take > with this? You would need to compile those

Re: translating java to CF

2004-09-27 Thread Joshua OConnor-Rose
Just the guy I wanted to hear from. We have not. I have a bunch of generated .java files from the sforce web site and I am suggesting that we just use those. Is that the direction I should take with this? It seems to me to be the obvious choice. In fact would adding all the generated java files b

Re: translating java to CF

2004-09-27 Thread Sean Corfield
Have you added the compiled Java class files to your CFMX class path? On Mon, 27 Sep 2004 13:21:10 -0700 (PDT), Joshua OConnor-Rose <[EMAIL PROTECTED]> wrote: > so if the header in Java says this: > - > import com.sforce.soap.enterprise.sobject.Account; > > and then the code d

translating java to CF

2004-09-27 Thread Joshua OConnor-Rose
so if the header in Java says this: - import com.sforce.soap.enterprise.sobject.Account; and then the code does this to create the object: Account account1 = new Account(); - Oh and I'm using SOAP In CF I use createObject("webservice",arguments.wsdluri) /