Search the web
Sign In
New User? Sign Up
struts-xsl · Struts for Transforming XML with XSL
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

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 1110 - 1139 of 2669   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1110
I'm trying to get IE 6 to display a page in CSV format. I changed: 1). stxx.properties - added lines: stxx.transformer.csv.mimeType=text/x-csv ...
sjagels67
Offline Send Email
May 1, 2003
7:14 pm
1111
... The stxx.transformer.csv.mimeType=text/x-csv is not necessary if you hardcoded the mime type. The only reason to add this is if your transformer looked...
Don Brown
mrdon42
Offline Send Email
May 1, 2003
7:30 pm
1112
Thanks. I made the changes you mentioned but I still get the same results. ... stxx.transformer.csv.class=com.oroad.stxx.transform.CachedCSVTransform ... use ...
sjagels67
Offline Send Email
May 1, 2003
8:10 pm
1113
Could you post the relevant stxx.properties sections, action mappings, XSL stylesheet used for the transform, and anything else you think might be relevant?...
Don Brown
mrdon42
Offline Send Email
May 1, 2003
8:15 pm
1114
stxx 1.07B3 Struts 1.0 jdk 1.3.1 jaxp dated 12/9/2002 (v. 1.1?) tomcat 4.1.12 from stxx.properties: ...
sjagels67
Offline Send Email
May 1, 2003
8:39 pm
1115
from stxx.properties: stxx.transformer.xml.class=com.oroad.stxx.transform.CachedXSLTransform er stxx.transformer.xml.mimeType=text/xml ...
sjagels67
Offline Send Email
May 1, 2003
8:56 pm
1116
It looks like this didn't get through... ... Date: Thu, 1 May 2003 10:52:08 -1000 (HST) From: Don Brown <mrdon@...> To: struts-xsl@yahoogroups.com ...
Don Brown
mrdon42
Offline Send Email
May 1, 2003
9:06 pm
1117
Well, first you need to upgrade to the latest version of stxx - 1.1.2. That would explain the "type" attribute not being recognized. If that still doesn't...
Don Brown
mrdon42
Offline Send Email
May 1, 2003
9:06 pm
1118
The best way to have stxx automatically serialize your action form would be to extend DefaultSerializer and override serializeRequestAttribute. In the method,...
Don Brown
mrdon42
Offline Send Email
May 1, 2003
9:24 pm
1119
I have upgraded to 1.1.2. I now get an error: com.oroad.stxx.transform.TransformerException: The type of transformation cannot be found: html at ...
sjagels67
Offline Send Email
May 1, 2003
11:27 pm
1120
It might help to get the example working first, then look at how it works and reuse as much of it as possible. For example, it sounds like your ...
Don Brown
mrdon42
Offline Send Email
May 1, 2003
11:41 pm
1121
This is what I have essentially done. Thanks. ... -- "Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit..."...
Jim Horner
zbeeker
Offline Send Email
May 2, 2003
5:09 pm
1122
The big change in 1.2b1 is the addition of the new way to define stxx transformations. For more information, see ...
mrdon42
Offline Send Email
May 2, 2003
11:52 pm
1123
Using Forrest (http://xml.apache.org/forrest), I created a new stxx web site and am in the process of migrating the documention into XML. In addition to ...
Don Brown
mrdon42
Offline Send Email
May 4, 2003
8:14 am
1124
I am extending DefaultSAXSerializer to serialize ActionMessages and ActionForms (after setting a request attribute). I was wondering if I am using the right...
Jim Horner
zbeeker
Offline Send Email
May 5, 2003
3:27 am
1125
Ok, I see you are working with the 1.2 branch...you picked the right class. I agree and have made the methods protected in the CVS. To configure stxx to use...
Don Brown
mrdon42
Offline Send Email
May 5, 2003
5:38 am
1126
Hi, if I understand this discussion correctly (relatively new to stxx and struts), what you're trying to do is serialize an ActionForm, which you store in the ...
Silvester van der Bijl
silvester@...
Send Email
May 5, 2003
6:42 am
1127
Well, hate to break it to you but you'll probably have to change it again because I'll be adding support for forms and action messages into stxx. :) Jeff...
Don Brown
mrdon42
Offline Send Email
May 5, 2003
8:19 am
1128
Ah, but I don't have to rewrite it completely it this time :-) I'll be happy to add to it stxx, just let me know when the new code is there. Silvester...
Silvester van der Bijl
silvester@...
Send Email
May 5, 2003
1:51 pm
1129
Hi Silvester, My serializer is doing exactly what you say you are doing. Funny. I am using betwixt (http://jakarta.apache.org/commons/betwixt/) to convert any ...
Jim Horner
zbeeker
Offline Send Email
May 5, 2003
4:49 pm
1130
Hi Jim Probably a lot faster to implement. Next time, I'll check apache first :-) Silvester...
Silvester van der Bijl
silvester@...
Send Email
May 5, 2003
5:17 pm
1131
What about this: set stxx.attach.requestAttributes.ignore=(com\\.oroad\\.stxx\\.action.*)|(org\\.apache\\.struts\\.action.*) by default and get rid of the...
Don Brown
mrdon42
Offline Send Email
May 5, 2003
8:32 pm
1132
Unfortunately, it seems they don't support DynaBeans yet. Does anyone know of a framework that does? Don...
Don Brown
mrdon42
Offline Send Email
May 5, 2003
9:01 pm
1133
I fixed up a few things and put up our new stxx website. We went with the Krystalis theme because it supported more Forrest features like code snippets and...
mrdon42
Offline Send Email
May 5, 2003
10:06 pm
1134
For instanceof DynaBean, I did (sorry it wasn't until you mentioned DynaBeans that I rememebered) the following: String tag =...
Jim Horner
zbeeker
Offline Send Email
May 5, 2003
11:37 pm
1135
That looks nice and clean. Any way your serializer would work w/o Betwixt? I'd hate to make stxx depend on a project that only has an alpha release. It...
Don Brown
mrdon42
Offline Send Email
May 5, 2003
11:47 pm
1136
The code below only depends on import org.apache.commons.beanutils.BeanUtils; import org.apache.commons.beanutils.PropertyUtils; import...
Jim Horner
zbeeker
Offline Send Email
May 6, 2003
12:37 am
1137
It seems that there is a screen resolution problem! ... From: mrdon42 [mailto:mrdon@...] Sent: 06 May 2003 00:06 To: struts-xsl@yahoogroups.com Subject:...
Claus, Alexandre
aclaus2003
Offline Send Email
May 6, 2003
6:56 am
1138
Sorry, I just noticed that it can be adjusted by clicking on the -a button in top right of the page. ==>Do not forget to move the horizontal scroll bar to get...
Claus, Alexandre
aclaus2003
Offline Send Email
May 6, 2003
7:01 am
1139
Scrollbar eh? I hate websites that make you scroll...what resolution are you running? I'll see if I can fix the problem. Don...
Don Brown
mrdon42
Offline Send Email
May 6, 2003
7:15 am
Messages 1110 - 1139 of 2669   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