Webservice error

2009-10-01 Thread ch g
I am redirecting to another URL using cflocation in my webservice, then i am getting this error, if i comment the cflocation tag then its working fine. Any help or suggestions will be appreciated lot. Cannot perform web service invocation login. The fault returned when invoking the web service

Re: Web service error

2009-08-05 Thread ch g
he error message indicates that you neglected to put an "s" on > "arguments.firstName". You probably have "argument.firstname". > > ~Steve > > > From: ch g [chr_...@yahoo.com] > Sent: Wednesday, August 05, 2009

Re: Web service error

2009-08-05 Thread ch g
After i changed the file name it's working, so i developed another service to verify the information aganist my database. Now i am receiving this error. Cannot perform web service invocation testUser. The fault returned when invoking the web service operation is: AxisFault faultCode: {http://

Re: Web service error

2009-08-05 Thread ch g
I included that also Still receving the same error message Web service operation echoString with parameters {input={hello}} cannot be found. Thank you. >You need to set the access level for the function to "remote" if you wish to >use it as a WS. > > > >-Mark

Web service error

2009-08-05 Thread ch g
Hi all, I am developing a simple web service, but i am getting an error like this Web service operation echoString with parameters {INPUT={hello}} cannot be found. Here is the published web service And the test file is http://www.ecodes.biz/UserVerif.cfc?wsdl

Re: File upload

2008-01-22 Thread ch g
Thank you so much for all, some how it's working the only change i made was in CF administrator set Request Throttle memory to 500MB. It's uploading file, but it's taking more than 5 mins to upload 250MB file. The reason why i am using this, my end user using this uploading procedure from last

Re: File upload

2008-01-22 Thread ch g
Maximum size of post data:500MB Thank you for prompt response. chr >There is a setting in coldfusion Administrator you might want to take a look >at. > >Under basic settings: "* Maximum size of post data" >* >Make sure this is over 250mb might be 100 as the default.* > > >Casey >*

File upload

2008-01-22 Thread ch g
Hi all, I am trying to upload a file (250 MB) using CFFILE, if i ran that file after one minute browser is displaying to page can't be displayed. It's not displaying error messages or result and it's not uploading file. Because of file size it's running like that or anything wrong with my code.

Verity database search

2007-08-14 Thread ch g
What's wrong with my code... SELECT * from products Search is considering the whole criteria as single word, but in my opinion it should consider as two words. If any product has any of those two words it should return that product, but its returning if that product has the whole w

Re: Mac stuffit file

2007-08-07 Thread ch g
I appreciate your help... I was in little bit of confusion, this is my simple code Zip file Stuff it file If i click the link zip file its working perfect. If i click the Stuff it file link then its blowing an error. Both files are located in the same directory. Why only for sitx files server

Re: Mac stuffit file

2007-08-07 Thread ch g
But if i click that link its giving 404 error in both mac and windows systems. Thank you > > Recently we are updating our site to mac users also, we are > providing > > some downloadable stuff it compressed files to them. If they click > > that link or button its opening blank error page(error

Mac stuffit file

2007-08-07 Thread ch g
Recently we are updating our site to mac users also, we are providing some downloadable stuff it compressed files to them. If they click that link or button its opening blank error page(error 404). But the same code is working for zip file, if i replace zip file with sitx file its blowing an err

Re: I'm stuck! What's this notation?

2007-08-03 Thread ch g
Try val() function. >How do I convert this number to a whole number? > >3.80353e+013 >i need to convert it to ... >38035273713000 ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and

Re: cfsearch

2007-08-03 Thread ch g
once i got search results, i have to write some more code from all query fields and display all that fields information in page. I have no idea about custom1,2... > On 8/3/07, ch g <[EMAIL PROTECTED]> wrote: > > How can i get all query fields from cfindex and cfsearch? Cfsearch

cfsearch

2007-08-03 Thread ch g
How can i get all query fields from cfindex and cfsearch? Cfsearch is returning only title, summary, author But i need all query fields what ever i passed to cfindex. This is what i am doing, initially i am getting all the data from the database then i am passing id as key and two search f

Verity collections

2007-08-02 Thread ch g
How to create a verity collection in CF admin? I am in little bit of confuse about Verity K2 server and verity collection. Can any body explain what's k2 server and collection... Thank you Raj ~| Download the latest ColdFusion

Re: Cfqueryparam and list

2007-08-01 Thread ch g
SELECT * from prds WHERE 1=1 AND (prds.title like '%test%' OR prds.title like '%test1%') How to implement that logic for more than 3 keywords(on the fly)? Thanks Raj > Raj, > > That is the same as writing this: > > SELECT * from prds > WHERE 1=1 > and prds.title like 'test,test1' > > Unles

Re: Cfqueryparam and list

2007-08-01 Thread ch g
Thank you, its working. The only change i made verifing whether the list was existed or not. Raj > > SELECT > columns > FROM > prds > WHERE > > prds.title LIKE cfsqltype="cf_sql_char" /> > OR > > 1=1 > > > >--

Re: Cfqueryparam and list

2007-08-01 Thread ch g
that's what i am trying... but its not working. prds.title IN () >and prds.title IN ( > >> ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki. http://labs/adob

Re: Cfqueryparam and list

2007-08-01 Thread ch g
> prds.title like value="%#keyword2#%">) > or maybe > and prds.title IN value="%#keyword#%"> > don't forget the "%" so the keyword can be anywhere in the title > - Original Message > From: ch g <[EMAIL PROTECTED]> > T

Cfqueryparam and list

2007-08-01 Thread ch g
what's wrong with this code SELECT * from prds WHERE 1 = 1 and prds.title like I am trying to get data from database with those two key words, if any title has the keyword test or test1 pull that data, i don't know what i am missing... Thanks Raj ~

Re: How to print directly from coldfusion code

2007-07-09 Thread ch g
Thank you. > My personal approach would be to use the print.exe executable found on > windows machines via the cfexecute tag. > > Print.exe syntax: PRINT [/D:device] [[drive:][path]filename[...]] > > So something like this should work: > > > > arguments="/D:\\networkPrinter c:\printDir

Re: How to print directly from coldfusion code

2007-07-09 Thread ch g
Printer is located in the same server domain and printer has all capabilities. Thank you for your quick response. >First question, "print where?" > >On what printer are you expecting the output to appear? Of course the >CF application server is only going to be able to access printers >availab

Re: Subreports using CFReportbuilder

2007-07-03 Thread ch g
Any ideas about this error... >Report data binding error Duplicate declaration of report font : >ReportTitle. > >Any ideas what the above error means, i am just trying to include a >subreport in main report detail band. > > >Any help will be appreciated. > >Thanks ~~~

Subreports using CFReportbuilder

2007-07-03 Thread ch g
Report data binding error Duplicate declaration of report font : ReportTitle. Any ideas what the above error means, i am just trying to include a subreport in main report detail band. Any help will be appreciated. Thanks ~

CF Report

2007-06-26 Thread ch g
I am creating a big array of information and I want to create my report based on it and not an SQL query. Is this possible? Thanks. ~| ColdFusion MX7 by Adobe® Dyncamically transform webcontent into Adobe PDF with new ColdFusion

CFReport

2007-06-26 Thread ch g
I am creating a big array of information and I want to create my report based on it and not an SQL query. Is this possible? Thanks. ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & Flex 2 Free Tria

Re: CF Report

2007-06-26 Thread ch g
Any ideas please Thanks ch > I am creating a big array of information and I want to create my > report based on it and not an SQL query. Is this possible? > > Thanks. > > - > We won't tell. Get more on shows you hate to love > (and love to hate): Yahoo! TV

Re: Adding password security to a pdf upload on the fly

2007-05-14 Thread ch g
Hi Burns, i would suggest protectedpdf.com from Vitrium, we are using their software from last one year. Andy, could you explain little bit more about coldfusion 8 new features and PDF changes. Thanks >FYI, Coldfusion 8 will allow you to do just about anything with a PDF. > >-Original Mes

Re: Browser default home page

2007-03-27 Thread ch g
Thanks everybody, finally i got it by using window.home() in javascript. I agree with you guys, but that's what i got from my management, i have to go with them. Once again thanks everybody. >ch g wrote: >> >> I just want to redirect to their default home page once they

Re: Browser default home page

2007-03-27 Thread ch g
>> eh let me browse where I wish to. If I was done with your >> site and wanted to go to my home page I'd hit the >> conveniently placed button in my browser. I hate sites >> redirecting me or trying to js bookmarks etc. my .02 anyhow :) > >Amen! > >Dave Watts, CTO, Fig Leaf Software >http://www

Re: Browser default home page

2007-03-27 Thread ch g
>> eh let me browse where I wish to. If I was done with your >> site and wanted to go to my home page I'd hit the >> conveniently placed button in my browser. I hate sites >> redirecting me or trying to js bookmarks etc. my .02 anyhow :) > >Amen! > >Dave Watts, CTO, Fig Leaf Software >http://www

Re: Browser default home page

2007-03-27 Thread ch g
>> eh let me browse where I wish to. If I was done with your >> site and wanted to go to my home page I'd hit the >> conveniently placed button in my browser. I hate sites >> redirecting me or trying to js bookmarks etc. my .02 anyhow :) > >Amen! > >Dave Watts, CTO, Fig Leaf Software >http://www

Re: Browser default home page

2007-03-27 Thread ch g
When ever they click the logout button in my website, kill all the session variables and redirect browser to their default home page(like my default home page is google.com). Thanks >> I just want to redirect to their default home page once they are done with >> my site > >Can you elaborate o

Re: Browser default home page

2007-03-27 Thread ch g
out there were always >viewing/updating your browser's home page? Not to mention the virus >problems it would cause... > >On 3/27/07, ch g <[EMAIL PROTECTED]> wrote: >> Hi all, >> >> Any idea ho

Browser default home page

2007-03-27 Thread ch g
Hi all, Any idea how to get browser default home page in coldfusion? Thanks ~| ColdFusion MX7 and Flex 2 Build sales & marketing dashboard RIA’s for your business. Upgrade now http://www.adobe.com/products/coldfusion/flex2?sd