[flexcoders] Re: HotFix 2 breaks web service results of type xsd:anyType

2007-11-09 Thread cheftimbob
You're a genius Peter! I owe you.

--- In flexcoders@yahoogroups.com, "Peter Farland" <[EMAIL PROTECTED]> 
wrote:
>
> The WSDL says that the response part should be in an element called 
> executeReturn not executeResponse, and it should be qualified in 
the 
> 
targetNamespace "http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProdu
> ctTierWeb/services/BPMXtracService".
> 
> The following response.xml works:
> 
> 
>  xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/";
> xmlns:xsd="http://www.w3.org/2001/XMLSchema";
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
> 
>  
xmlns="http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProductTierWeb/
> services/BPMXtracService">
> 
> 
> 
> 
>




[flexcoders] Re: HotFix 2 breaks web service results of type xsd:anyType

2007-11-01 Thread cheftimbob
Matt,

I've downloaded the build from 10/31 and am still getting the same 
issue. It's doc literal services running in Axis 1.4 on WAS 5 server. 
No matter what I try, the ResultEvent.result is always null.
>From what I've been reading, this may have been a problem in one of 
the hotfixes for Flex 2 as well. Can you folks take a look at the 
wsdl and response sent and let me know if you see anything? I've got 
some of the Esria boys working on it as well with no luck.


--- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote:
>
> Not sure if you saw our post that the latest Flex 3 SDK drop should 
have
> fixes for most web service issues that we were aware of.
> 
>  
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of cheftimbob
> Sent: Thursday, November 01, 2007 12:57 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: HotFix 2 breaks web service results of 
type
> xsd:anyType
> 
>  
> 
> Still looking for help with this if anyone has a clue.
> 
> --- In flexcoders@yahoogroups.com <mailto:flexcoders%
40yahoogroups.com>
> , "cheftimbob"  wrote:
> >
> > I'm experiencing the same issue using Flex 3. Service calls that 
> > worked now return null for ResultEvent.result in all of our cases.
> > 
> > We've tried to modify the web service to conform as in this link 
> but 
> > still are not getting anywhere. 
> > 
> > https://bugs.adobe.com/jira/browse/SDK-11358
> > 
> > 
> > 
> > Here's the WSDL and the result:
> > 
> > WSDL
> > --
> >  
> > -  > 
> 
targetNamespace="http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProduc
> > tTierWeb/services/BPMXtracService" 
> > xmlns:apachesoap="http://xml.apache.org/xml-soap"; 
> > 
> 
xmlns:impl="http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProductTier
> > Web/services/BPMXtracService" 
> > 
> 
xmlns:intf="http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProductTier
> > Web/services/BPMXtracService" 
> > xmlns:tns1="http://xtrac.service.productTier.fims.fmr.com"; 
> > xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"; 
> > xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"; 
> > xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
> > -  
> > - 
> > -  > targetNamespace="http://xtrac.service.productTier.fims.fmr.com"; 
> > xmlns="http://www.w3.org/2001/XMLSchema";>
> >  
> > 
> > -  > 
> 
targetNamespace="http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProduc
> > tTierWeb/services/BPMXtracService" 
> > xmlns="http://www.w3.org/2001/XMLSchema";>
> >  
> > 
> > 
> > - 
> >  
> > 
> > - 
> >  
> > 
> > - 
> > - 
> >  name="executeRequest" /> 
> >  > name="executeResponse" /> 
> > 
> > 
> > -  > type="intf:XtracAdaptor">
> >  > transport="http://schemas.xmlsoap.org/soap/http"; /> 
> > - 
> >  
> > - 
> >  
> > 
> > - 
> >  
> > 
> > 
> > 
> > - 
> > -  > name="BPMXtracService">
> >  > 
> 
location="http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProductTierWe
> > b/services/BPMXtracService" /> 
> > 
> > 
> > 
> > 
> > 
> > RESULT
> > --
> > 
> >  > xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"; 
> > xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
> > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > --- In flexcoders@yahoogroups.com
> <mailto:flexcoders%40yahoogroups.com> , "pcolby_flex"  
> > wrote:
> > >
> > > This is a major headache for me!! :(
> > > 
> > > I have a number of Flex applications that access web services 
> that 
> > > return results as type xsd:anyType (the results are complex XML 
> > > hierarchies that change according to db values). Before HotFix 
2, 
> > in my 
> > > ResultEvent.RESULT event handler, I could get access to the 
> result 
> > as 
> > > an AS Object via the ResultEvent.result property. But since 
> HotFix 
> > 2, 
> > > the ResultEvent.result property is always null for web services 
> > results 
> > > of type xsd:anyType (for other result types, ResultEvent.result 
> is 
> > > correct).
> > > 
> > > I have to use Hotfix 2 for other fixes that were included, but 
> > can't 
> > > live without web-servcies! Does anyone have any suggestions?
> > > 
> > > Flex Builder 3 Beta 1 has exactly the same problem :(
> > > 
> > > Paul C.
> > >
> >
>




[flexcoders] Re: HotFix 2 breaks web service results of type xsd:anyType

2007-11-01 Thread cheftimbob
Still looking for help with this if anyone has a clue.




--- In flexcoders@yahoogroups.com, "cheftimbob" <[EMAIL PROTECTED]> wrote:
>
> I'm experiencing the same issue using Flex 3. Service calls that 
> worked now return null for ResultEvent.result in all of our cases.
> 
> We've tried to modify the web service to conform as in this link 
but 
> still are not getting anywhere. 
> 
> https://bugs.adobe.com/jira/browse/SDK-11358
> 
> 
> 
> Here's the WSDL and the result:
> 
> WSDL
> --
>
> -  
targetNamespace="http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProduc
> tTierWeb/services/BPMXtracService" 
> xmlns:apachesoap="http://xml.apache.org/xml-soap"; 
> 
xmlns:impl="http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProductTier
> Web/services/BPMXtracService" 
> 
xmlns:intf="http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProductTier
> Web/services/BPMXtracService" 
> xmlns:tns1="http://xtrac.service.productTier.fims.fmr.com"; 
> xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"; 
> xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"; 
> xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
> -  
> - 
> -  targetNamespace="http://xtrac.service.productTier.fims.fmr.com"; 
> xmlns="http://www.w3.org/2001/XMLSchema";>
>
>   
> -  
targetNamespace="http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProduc
> tTierWeb/services/BPMXtracService" 
> xmlns="http://www.w3.org/2001/XMLSchema";>
>
>   
>   
> - 
>
>   
> - 
>
>   
> - 
> - 
>
>name="executeResponse" /> 
>   
>   
> -  type="intf:XtracAdaptor">
>transport="http://schemas.xmlsoap.org/soap/http"; /> 
> - 
>
> - 
>
>   
> - 
>
>   
>   
>   
> - 
> -  name="BPMXtracService">
>
location="http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProductTierWe
> b/services/BPMXtracService" /> 
>   
>   
>   
> 
> 
> RESULT
> --
> 
>  xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"; 
> xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> --- In flexcoders@yahoogroups.com, "pcolby_flex"  
> wrote:
> >
> > This is a major headache for me!! :(
> > 
> > I have a number of Flex applications that access web services 
that 
> > return results as type xsd:anyType (the results are complex XML 
> > hierarchies that change according to db values). Before HotFix 2, 
> in my 
> > ResultEvent.RESULT event handler, I could get access to the 
result 
> as 
> > an AS Object via the ResultEvent.result property. But since 
HotFix 
> 2, 
> > the ResultEvent.result property is always null for web services 
> results 
> > of type xsd:anyType (for other result types, ResultEvent.result 
is 
> > correct).
> > 
> > I have to use Hotfix 2 for other fixes that were included, but 
> can't 
> > live without web-servcies! Does anyone have any suggestions?
> > 
> > Flex Builder 3 Beta 1 has exactly the same problem :(
> > 
> > Paul C.
> >
>




[flexcoders] Re: Large number coming back from Web Service is getting converted

2007-10-26 Thread cheftimbob
Sorry, this is with Flex 3 milestone 2. 


--- In flexcoders@yahoogroups.com, "cheftimbob" <[EMAIL PROTECTED]> wrote:
>
> We have a web service that returns a large numeric value that is 
> approximately 30 spaces wide. 
> 
> EG: 
> 
> 123456789987654321123456789000
> 
> 
> When we view the response of this value using
> 
> ResultEvent.result.somevalue, we're getting back something like 
this:
> 1.23456789987e+29
> 
> We need to use this value as a string that we pass back up on other 
web 
> service calls where it's examined. Even if we convert it back 
somehow 
> from this scientific notation value, we loose data. 
> 
> We've tried specifying in the wsdl that this is a string with the 
same 
> results.
>




[flexcoders] Large number coming back from Web Service is getting converted

2007-10-26 Thread cheftimbob
We have a web service that returns a large numeric value that is 
approximately 30 spaces wide. 

EG: 

123456789987654321123456789000


When we view the response of this value using

ResultEvent.result.somevalue, we're getting back something like this:
1.23456789987e+29

We need to use this value as a string that we pass back up on other web 
service calls where it's examined. Even if we convert it back somehow 
from this scientific notation value, we loose data. 

We've tried specifying in the wsdl that this is a string with the same 
results.






[flexcoders] Re: HotFix 2 breaks web service results of type xsd:anyType

2007-10-26 Thread cheftimbob
I'm experiencing the same issue using Flex 3. Service calls that 
worked now return null for ResultEvent.result in all of our cases.

We've tried to modify the web service to conform as in this link but 
still are not getting anywhere. 

https://bugs.adobe.com/jira/browse/SDK-11358



Here's the WSDL and the result:

WSDL
--
   
- http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProduc
tTierWeb/services/BPMXtracService" 
xmlns:apachesoap="http://xml.apache.org/xml-soap"; 
xmlns:impl="http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProductTier
Web/services/BPMXtracService" 
xmlns:intf="http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProductTier
Web/services/BPMXtracService" 
xmlns:tns1="http://xtrac.service.productTier.fims.fmr.com"; 
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"; 
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
-  
- 
- http://xtrac.service.productTier.fims.fmr.com"; 
xmlns="http://www.w3.org/2001/XMLSchema";>
   
  
- http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProduc
tTierWeb/services/BPMXtracService" 
xmlns="http://www.w3.org/2001/XMLSchema";>
   
  
  
- 
   
  
- 
   
  
- 
- 
   
   
  
  
- 
  http://schemas.xmlsoap.org/soap/http"; /> 
- 
   
- 
   
  
- 
   
  
  
  
- 
- 
  http://fimsadmro4.fmr.com:12600/bd/suntrust/BPMProductTierWe
b/services/BPMXtracService" /> 
  
  
  


RESULT
--

http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>










--- In flexcoders@yahoogroups.com, "pcolby_flex" <[EMAIL PROTECTED]> 
wrote:
>
> This is a major headache for me!! :(
> 
> I have a number of Flex applications that access web services that 
> return results as type xsd:anyType (the results are complex XML 
> hierarchies that change according to db values). Before HotFix 2, 
in my 
> ResultEvent.RESULT event handler, I could get access to the result 
as 
> an AS Object via the ResultEvent.result property. But since HotFix 
2, 
> the ResultEvent.result property is always null for web services 
results 
> of type xsd:anyType (for other result types, ResultEvent.result is 
> correct).
> 
> I have to use Hotfix 2 for other fixes that were included, but 
can't 
> live without web-servcies! Does anyone have any suggestions?
> 
> Flex Builder 3 Beta 1 has exactly the same problem :(
> 
> Paul C.
>




[flexcoders] Re: IFrame issue with settings menu

2007-02-01 Thread cheftimbob
bump

--- In flexcoders@yahoogroups.com, "cheftimbob" <[EMAIL PROTECTED]> wrote:
>
> I have an application that uses and IFrame to display images and word 
> docs as well as PDFs.
> 
> If I right click on the application somewhere, not on the IFrame, and 
> select the settings menu, there application freezes. I think it's 
> because of the modal window that the menu selection is brining up. 
> 
> Has anyone seen this or found a workaround?
>




[flexcoders] IFrame issue with settings menu

2007-01-30 Thread cheftimbob
I have an application that uses and IFrame to display images and word 
docs as well as PDFs.

If I right click on the application somewhere, not on the IFrame, and 
select the settings menu, there application freezes. I think it's 
because of the modal window that the menu selection is brining up. 

Has anyone seen this or found a workaround?



[flexcoders] Re: Transfer Images with FDS

2006-10-09 Thread cheftimbob
bump

--- In flexcoders@yahoogroups.com, "cheftimbob" <[EMAIL PROTECTED]> wrote:
>
> We have a middle layer that is responsible for storing files in a 
> repository. We provide web services using SOAP and attachments, 
DIME, 
> that allow injection and retrieval of these files, mostly TIFF 
images.
> 
> We're planning on utilizing Flex and FDS for various interactions. 
If I 
> capture these images as Stream on the FDS layer, how can I transfer 
the 
> file to the Flex client? 
> 
> You can't return attachments with SOAP calls from the client, right?
> 
> I don't want to cache the image to disk on the server side and 
retrieve 
> via URL. I'd like to transfer the binary data over the wire in the 
> communication between the client and FDS. How do you deal with the 
data 
> on the client side?
>







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Problem with IFrame

2006-09-27 Thread cheftimbob
I'm following one of the examples for displaying HTML in a flex 
application. It uses an IFrame. When I add this to my code:


http://www.yahoo.com";  initialCount="20"/>





The IFrame line throws and error 'type was not found or was not a 
compile time constant'. 

The example came from:
http://coenraets.com/viewarticle.jsp?articleId=95






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Transfer Images with FDS

2006-09-27 Thread cheftimbob
We have a middle layer that is responsible for storing files in a 
repository. We provide web services using SOAP and attachments, DIME, 
that allow injection and retrieval of these files, mostly TIFF images.

We're planning on utilizing Flex and FDS for various interactions. If I 
capture these images as Stream on the FDS layer, how can I transfer the 
file to the Flex client? 

You can't return attachments with SOAP calls from the client, right?

I don't want to cache the image to disk on the server side and retrieve 
via URL. I'd like to transfer the binary data over the wire in the 
communication between the client and FDS. How do you deal with the data 
on the client side?






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Re: Comments appreciated

2006-09-27 Thread cheftimbob
Thanks for the reply.

Are there any examples anyone knows of for doing similar?


--- In flexcoders@yahoogroups.com, "Brian Dunphy" <[EMAIL PROTECTED]> 
wrote:
>
> I've seen things like this done with Flash & PHP in the past, so it 
should
> be quite straightforward to do with Flex & your backend language of 
choice
> (Java, C#, PHP, etc).
> 
> Brian
> 
> 
> On 9/26/06, cheftimbob <[EMAIL PROTECTED]> wrote:
> >
> >   I'd like to create an application that displays an image and 
has a
> > couple widgets on the side. This app is to mimic putting a stamp, 
or
> > annotation, on an image. I'd like to drag one of the widgets onto 
the
> > image and grab the coordinates of the widget drop relative to the
> > image. The coordinates will be sent back to the server so that 
the next
> > time we render the image, we'll burn an image of the widget onto 
the
> > original image. The idea is to think of someone using a stamp that
> > says 'Approved', and dropping it onto an image and further 
rendering of
> > the image will show the stamp.
> >
> > Does this sound like something that can be done with Flex?
> >
> >  
> >
> 
> 
> 
> -- 
> Brian Dunphy
>









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Comments appreciated

2006-09-26 Thread cheftimbob
I'd like to create an application that displays an image and has a 
couple widgets on the side. This app is to mimic putting a stamp, or 
annotation, on an image. I'd like to drag one of the widgets onto the 
image and grab the coordinates of the widget drop relative to the 
image. The coordinates will be sent back to the server so that the next 
time we render the image, we'll burn an image of the widget onto the 
original image. The idea is to think of someone using a stamp that 
says 'Approved', and dropping it onto an image and further rendering of 
the image will show the stamp. 

Does this sound like something that can be done with Flex?






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Re: Invalid Root problem

2006-09-26 Thread cheftimbob
I have tried to post there, but, it keeps asking for a nickname. No 
matter what I put in for a nickname, it keeps telling me it's in use. 
So I haven't been able to post there.



--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> 
wrote:
>
> On Monday 25 September 2006 19:35, cheftimbob wrote:
> > Can anyone suggest a different forum where I could get an answer 
for
> > this?
> 
> Have you tried the Macrodobe online forum ?
> 
> -- 
> Tom Chiverton
> Helping to adaptively disseminate fine-grained technologies
> 
> 
> 
> This email is sent for and on behalf of Halliwells LLP.
> 
> Halliwells LLP is a limited liability partnership registered in 
England and Wales under registered number OC307980 whose registered 
office address is at St James's Court Brown Street Manchester M2 
2JF.  A list of members is available for inspection at the registered 
office. Any reference to a partner in relation to Halliwells LLP 
means a member of Halliwells LLP. Regulated by the Law Society.
> 
> CONFIDENTIALITY
> 
> This email is intended only for the use of the addressee named 
above and may be confidential or legally privileged.  If you are not 
the addressee you must not read it and must not use any information 
contained in nor copy it nor inform any person other than Halliwells 
LLP or the addressee of its existence or contents.  If you have 
received this email in error please delete it and notify Halliwells 
LLP IT Department on 0870 365 8008.
> 
> For more information about Halliwells LLP visit www.halliwells.com.
>







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Re: Invalid Root problem

2006-09-25 Thread cheftimbob
Can anyone suggest a different forum where I could get an answer for 
this?



--- In flexcoders@yahoogroups.com, "cheftimbob" <[EMAIL PROTECTED]> wrote:
>
> Ok, is there anyone working in this type of set up? How about AIX?
> 
> 
> 
> --- In flexcoders@yahoogroups.com, "cheftimbob"  wrote:
> >
> > Just a bump so this doesn't fall off. Any  experts out there with 
> > ideas?
> > 
> > 
> > --- In flexcoders@yahoogroups.com, "cheftimbob"  
wrote:
> > >
> > > I'm new to this so please bear with me.
> > > 
> > > I've installed Flex2 IDE on my desktop PC. I have installed the 
> FDS 
> > on 
> > > one of our test AIX servers running WAS 5.1. The samples 
> > applications 
> > > all work. 
> > > 
> > > I'm working through some of the tutorials for using the data 
> > management 
> > > services. When I create the new Flex Data Services project I 
get 
> to 
> > the 
> > > point where I have to specify the root folder and root url. The 
> > root 
> > > url is easy enough. What do I put in for the root folder 
though? 
> > All of 
> > > the posts I've seen for this typically are where someone is 
> trying 
> > to 
> > > access a server running on their desktop PC or on a mapped 
> server. 
> > This 
> > > is an AIX box.
> > >
> >
>







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Re: Invalid Root problem

2006-09-25 Thread cheftimbob
Ok, is there anyone working in this type of set up? How about AIX?



--- In flexcoders@yahoogroups.com, "cheftimbob" <[EMAIL PROTECTED]> wrote:
>
> Just a bump so this doesn't fall off. Any  experts out there with 
> ideas?
> 
> 
> --- In flexcoders@yahoogroups.com, "cheftimbob"  wrote:
> >
> > I'm new to this so please bear with me.
> > 
> > I've installed Flex2 IDE on my desktop PC. I have installed the 
FDS 
> on 
> > one of our test AIX servers running WAS 5.1. The samples 
> applications 
> > all work. 
> > 
> > I'm working through some of the tutorials for using the data 
> management 
> > services. When I create the new Flex Data Services project I get 
to 
> the 
> > point where I have to specify the root folder and root url. The 
> root 
> > url is easy enough. What do I put in for the root folder though? 
> All of 
> > the posts I've seen for this typically are where someone is 
trying 
> to 
> > access a server running on their desktop PC or on a mapped 
server. 
> This 
> > is an AIX box.
> >
>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Re: Invalid Root problem

2006-09-23 Thread cheftimbob
Just a bump so this doesn't fall off. Any  experts out there with 
ideas?


--- In flexcoders@yahoogroups.com, "cheftimbob" <[EMAIL PROTECTED]> wrote:
>
> I'm new to this so please bear with me.
> 
> I've installed Flex2 IDE on my desktop PC. I have installed the FDS 
on 
> one of our test AIX servers running WAS 5.1. The samples 
applications 
> all work. 
> 
> I'm working through some of the tutorials for using the data 
management 
> services. When I create the new Flex Data Services project I get to 
the 
> point where I have to specify the root folder and root url. The 
root 
> url is easy enough. What do I put in for the root folder though? 
All of 
> the posts I've seen for this typically are where someone is trying 
to 
> access a server running on their desktop PC or on a mapped server. 
This 
> is an AIX box.
>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Invalid Root problem

2006-09-22 Thread cheftimbob
I'm new to this so please bear with me.

I've installed Flex2 IDE on my desktop PC. I have installed the FDS on 
one of our test AIX servers running WAS 5.1. The samples applications 
all work. 

I'm working through some of the tutorials for using the data management 
services. When I create the new Flex Data Services project I get to the 
point where I have to specify the root folder and root url. The root 
url is easy enough. What do I put in for the root folder though? All of 
the posts I've seen for this typically are where someone is trying to 
access a server running on their desktop PC or on a mapped server. This 
is an AIX box. 






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Invalid Root problem

2006-09-22 Thread cheftimbob
Sorry if this shows up a second time. I posted question yesterday but 
don't see it yet.

I'm using Flex2 IDE on my desktop PC and trying to work through the 
samples for FDS. 

I've installed FDS on WAS on AIX. The samples are work well there. 

I want to create a new FDS project. I get to the screen that requires I 
enter the root folder and URL. The URL is no issue since I give I put 
in the location to the samples applications. I don't understand what to 
put in for the root folder though. I can't map a drive to the AIX 
location. I tried using the //server/restOfPath and \\server\restOfPath 
and those don't work either. How do I accomplish this?






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/