Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

3 Pages<123
Options
Go to last post Go to first unread
Dmitry  
#41 Posted : Monday, September 22, 2008 9:04:10 PM(UTC)
Dmitry

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 8/3/2003(UTC)
Posts: 1,070

Thanks: 1 times
Was thanked: 12 time(s) in 12 post(s)
Hello Nikola,

It is a good example, and the only way to fix this problem is to increase timeout.
Sincerely yours,
Dmitry Sevostyanov

UserPostedImage Follow Aurigma on Twitter!
nicola.baldi  
#42 Posted : Thursday, October 9, 2008 9:32:42 PM(UTC)
nicola.baldi

Rank: Newbie

Groups: Member
Joined: 9/22/2008(UTC)
Posts: 3

Hello Dmitry.
Ok, we changed the configuration file of our application.
This is the forms section:

Code:
<forms name=".ASPXAUTH" loginUrl="~/SignIn.aspx"
    defaultUrl="~/Admin/Default.aspx" timeout="40"
    slidingExpiration="true" />


And this is the code behind file for the login procedure:
Code:
DateTime now = DateTime.Now;
DateTime expiration = now.AddMinutes(ConfigurationService.FormsAuthenticationTimeout);
FormsAuthenticationTicket ticket = new FormsAuthenticationTicket(1, user.UserName, now, expiration, false, null, FormsAuthentication.FormsCookiePath);
String encryptedTicket = FormsAuthentication.Encrypt(ticket);
Response.Cookies.Add(new HttpCookie(FormsAuthentication.FormsCookieName, encryptedTicket));
Response.Redirect(FormsAuthentication.GetRedirectUrl(user.UserName, false));


ConfigurationService.FormsAuthenticationTimeout is a static property, and it retrieves the timeout value from configuration file (FormsAuthentication class does not provide access to timeout property).
Something like this:

Code:
private static readonly Int32 _formsAuthenticationTimeout = 30;
public static Int32 FormsAuthenticationTimeout
{
    get { return _formsAuthenticationTimeout; }
}

static ConfigurationService()
{
    // ...
    System.Configuration.Configuration configuration = WebConfigurationManager.OpenWebConfiguration("~");
    AuthenticationSection authenticationSection = configuration.GetSection("system.web/authentication") as AuthenticationSection;
    if (authenticationSection != null)
                    _formsAuthenticationTimeout = (Int32)authenticationSection.Forms.Timeout.TotalMinutes;
}


This code works properly.

Anyway, we still have problems with firefox, by including following code too:

Code:
if (getImageUploader("ImageUploader").getControlType == "Java")
	getImageUploader("ImageUploader").AddCookie('.ASPXAUTH=XXXXXXXXXX');


In Internet Explorer we didn't encounter any problem.
So, I'm asking if the "AddCookie" can receive a parameter about cookie's expiration, because Firefox seems to discard the web.config timeout value.

Thanks in advance,
Nicola Baldi
Dmitry  
#43 Posted : Sunday, October 12, 2008 8:08:35 PM(UTC)
Dmitry

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 8/3/2003(UTC)
Posts: 1,070

Thanks: 1 times
Was thanked: 12 time(s) in 12 post(s)
Hello Nikola,

Could you give me the content of Java console (see article Using Java Console) after Image Uploader finishes uploading?

Edited by user Wednesday, October 29, 2008 1:16:55 PM(UTC)  | Reason: Not specified

Sincerely yours,
Dmitry Sevostyanov

UserPostedImage Follow Aurigma on Twitter!
nicola.baldi  
#44 Posted : Monday, October 13, 2008 5:24:40 PM(UTC)
nicola.baldi

Rank: Newbie

Groups: Member
Joined: 9/22/2008(UTC)
Posts: 3

Hi Dmitry, we appreciate your support.
This is the output of java console (I omitted irrilevant parts).

First upload
Code:
Aurigma ImageUploader version: 2.7.16.0
Current document URL: http://fotoadmin.aruba.it/Admin/AddPhotos.aspx
Reading cookies
Cookies: .ASPXAUTH=2F8BD0E78__OMITTED__16D95F0AC44030DD202E31; bmv/ll2VPubV/ezt7flqAA##=OYS__OMITTED__QO4#
Reading referer
Referer: http://fotoadmin.aruba.it/Admin/AddPhotos.aspx
Reading additional form content
..
__OMITTED__
..
Additional form processing done
Uploading to http://fotoadmin.aruba.it/Admin/Upload.aspx
Setting HTTP params: Host=fotoadmin.aruba.it
Cookies:<.ASPXAUTH=2F8BD0E78__OMITTED__16D95F0AC44030DD202E31; bmv/ll2VPubV/ezt7flqAA##=OYS__OMITTED__QO4#>
Starting upload
Status =[200]
Upload complete. Result page:

EndOf Result page
Aurigma ImageUploader version: 2.7.16.0


Here, everything seems ok.
Let's start with second try.

Second upload
Code:
Aurigma ImageUploader version: 2.7.16.0
Current document URL: http://fotoadmin.aruba.it/Admin/AddPhotos.aspx
Reading cookies
Cookies: .ASPXAUTH=2F8BD0E78__OMITTED__16D95F0AC44030DD202E31; bmv/ll2VPubV/ezt7flqAA##=OYS__OMITTED__QO4#
Reading referer
Referer: http://fotoadmin.aruba.it/Admin/AddPhotos.aspx
Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
	at java.awt.image.DataBufferInt.<init>(Unknown Source)
	at java.awt.image.Raster.createPackedRaster(Unknown Source)
	at java.awt.image.DirectColorModel.createCompatibleWritableRaster(Unknown Source)
	at sun.awt.image.ImageRepresentation.createBufferedImage(Unknown Source)
	at sun.awt.image.ImageRepresentation.setPixels(Unknown Source)
	at sun.awt.image.ImageDecoder.setPixels(Unknown Source)
	at sun.awt.image.JPEGImageDecoder.sendPixels(Unknown Source)
	at sun.awt.image.JPEGImageDecoder.readImage(Native Method)
	at sun.awt.image.JPEGImageDecoder.produceImage(Unknown Source)
	at sun.awt.image.InputStreamImageSource.doFetch(Unknown Source)
	at sun.awt.image.ImageFetcher.fetchloop(Unknown Source)
	at sun.awt.image.ImageFetcher.run(Unknown Source)
Exception in thread "Image Fetcher 2" java.lang.OutOfMemoryError: Java heap space
	at java.awt.image.DataBufferInt.<init>(Unknown Source)
	at java.awt.image.Raster.createPackedRaster(Unknown Source)
	at java.awt.image.DirectColorModel.createCompatibleWritableRaster(Unknown Source)
	at sun.awt.image.ImageRepresentation.createBufferedImage(Unknown Source)
	at sun.awt.image.ImageRepresentation.setPixels(Unknown Source)
	at sun.awt.image.ImageDecoder.setPixels(Unknown Source)
	at sun.awt.image.JPEGImageDecoder.sendPixels(Unknown Source)
	at sun.awt.image.JPEGImageDecoder.readImage(Native Method)
	at sun.awt.image.JPEGImageDecoder.produceImage(Unknown Source)
	at sun.awt.image.InputStreamImageSource.doFetch(Unknown Source)
	at sun.awt.image.ImageFetcher.fetchloop(Unknown Source)
	at sun.awt.image.ImageFetcher.run(Unknown Source)
Exception in thread "Image Fetcher 3" java.lang.OutOfMemoryError: Java heap space
	at java.awt.image.DataBufferInt.<init>(Unknown Source)
	at java.awt.image.Raster.createPackedRaster(Unknown Source)
	at java.awt.image.DirectColorModel.createCompatibleWritableRaster(Unknown Source)
	at sun.awt.image.ImageRepresentation.createBufferedImage(Unknown Source)
	at sun.awt.image.ImageRepresentation.setPixels(Unknown Source)
	at sun.awt.image.ImageDecoder.setPixels(Unknown Source)
	at sun.awt.image.JPEGImageDecoder.sendPixels(Unknown Source)
	at sun.awt.image.JPEGImageDecoder.readImage(Native Method)
	at sun.awt.image.JPEGImageDecoder.produceImage(Unknown Source)
	at sun.awt.image.InputStreamImageSource.doFetch(Unknown Source)
	at sun.awt.image.ImageFetcher.fetchloop(Unknown Source)
	at sun.awt.image.ImageFetcher.run(Unknown Source)
Exception in thread "Image Fetcher 2" java.lang.OutOfMemoryError: Java heap space
	at java.awt.image.DataBufferInt.<init>(Unknown Source)
	at java.awt.image.Raster.createPackedRaster(Unknown Source)
	at java.awt.image.DirectColorModel.createCompatibleWritableRaster(Unknown Source)
	at sun.awt.image.ImageRepresentation.createBufferedImage(Unknown Source)
	at sun.awt.image.ImageRepresentation.setPixels(Unknown Source)
	at sun.awt.image.ImageDecoder.setPixels(Unknown Source)
	at sun.awt.image.JPEGImageDecoder.sendPixels(Unknown Source)
	at sun.awt.image.JPEGImageDecoder.readImage(Native Method)
	at sun.awt.image.JPEGImageDecoder.produceImage(Unknown Source)
	at sun.awt.image.InputStreamImageSource.doFetch(Unknown Source)
	at sun.awt.image.ImageFetcher.fetchloop(Unknown Source)
	at sun.awt.image.ImageFetcher.run(Unknown Source)
Exception in thread "Image Fetcher 3" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 2" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 3" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 1" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 2" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
Reading additional form content
..
__OMITTED__
..
Additional form processing done
Uploading to http://fotoadmin.aruba.it/Admin/Upload.aspx
Setting HTTP params: Host=fotoadmin.aruba.it
Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 1" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
OutOfMemoryError catched in function getBufferedImageFromFile_ImageIO()
Total garbage collection started.
Exception in thread "Image Fetcher 1" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
Cookies:<.ASPXAUTH=2F8BD0E78__OMITTED__16D95F0AC44030DD202E31; bmv/ll2VPubV/ezt7flqAA##=OYS__OMITTED__QO4#>
Starting upload

Status =[200]
Upload complete. Result page:

EndOf Result page
Aurigma ImageUploader version: 2.7.16.0
Current document URL: http://fotoadmin.aruba.it/Admin/AddPhotos.aspx
Reading cookies
Cookies: bmv/ll2VPubV/ezt7flqAA##=OYS__OMITTED__QO4#
Reading referer
Referer: http://fotoadmin.aruba.it/Admin/AddPhotos.aspx


As you can see, value of authentication cookie is missing!
That's so strange, because within the page rendering we can clearly see the cookie initialization:

Code:
function ImageUploader1_BeforeUpload()
{
	if (getImageUploader("ImageUploader").getControlType == "Java")
		getImageUploader("ImageUploader").AddCookie('.ASPXAUTH=3AEBD8FE8D39078__OMITTED__AE51E3E3B1E70207EFB3C2;bmv/ll2VPubV/ezt7flqAA##=OYS__OMITTED__QO4#');
}


Anyway, this is the third upload:

Third upload
Code:
Aurigma ImageUploader version: 2.7.16.0
Current document URL: http://fotoadmin.aruba.it/Admin/AddPhotos.aspx
Reading cookies
Cookies: bmv/ll2VPubV/ezt7flqAA##=OYS4uRZTQO4#
Reading referer
Referer: http://fotoadmin.aruba.it/Admin/AddPhotos.aspx
Exception in thread "Image Fetcher 3" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 2" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 2" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 2" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 1" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 3" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 2" java.lang.OutOfMemoryError: Java heap space
Reading additional form content
..
__OMITTED__
..
Additional form processing done
Uploading to http://fotoadmin.aruba.it/Admin/Upload.aspx
Setting HTTP params: Host=fotoadmin.aruba.it
Exception in thread "Image Fetcher 3" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 1" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 2" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 1" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 1" java.lang.OutOfMemoryError: Java heap space
Exception in thread "Image Fetcher 3" java.lang.OutOfMemoryError: Java heap space
Total garbage collection started.


You can notice that cookie value is different (may be the asp.net runtime refreshed the ticket), but cookie is initialized correctly, by method "AddCookie" you provide us.
Thanks in advance.

Regards,
Nicola Baldi
Dmitry  
#45 Posted : Tuesday, October 14, 2008 5:17:41 PM(UTC)
Dmitry

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 8/3/2003(UTC)
Posts: 1,070

Thanks: 1 times
Was thanked: 12 time(s) in 12 post(s)
Hello Nicola,

Thank you for your feedback.

I looked through the code you provided and found the following problem: ImageUploader object does not have getControlType method, this method is in ImageUploaderWriter object instead. That is why your code in ImageUploader1_BeforeUpload never executes.

So you need to change this method:
Code:

var iu = new ImageUploaderWriter("ImageUploader1", 650, 400);
...
iu.writeHtml();
...
function ImageUploader1_BeforeUpload()
{
    if (iu.getControlType() == "Java") 
        getImageUploader("ImageUploader1").AddCookie(...);
}

You can see that I used iu variable to launch getControlType method.
Sincerely yours,
Dmitry Sevostyanov

UserPostedImage Follow Aurigma on Twitter!
dap5079  
#46 Posted : Thursday, December 18, 2008 2:23:34 PM(UTC)
dap5079

Rank: Newbie

Groups: Member
Joined: 12/18/2008(UTC)
Posts: 3

The issue we are having is almost identical to this, but it is not the forms auth cookie that needs to be persisted, but the ASP.NET_SessionId.

Tracing the application shows that the code iu.addParam("Action","ImageUploader.aspx") opens that aspx page in a new window but in FireFox also with a new sessionID value. That page stores session information that the calling page requires, and this works in IE. Obviously, when using FireFox (using a new session id) that information stored in state is not available to the calling page when the popup closes.

Any way to affect the session ID much in the same way you are describing the forms auth cookie is being handled?

Thanks in advance.
Dmitry  
#47 Posted : Thursday, December 18, 2008 3:51:27 PM(UTC)
Dmitry

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 8/3/2003(UTC)
Posts: 1,070

Thanks: 1 times
Was thanked: 12 time(s) in 12 post(s)
Hello,

I described how to preserve sessions state in this thread:
Dmitry wrote:

Hello,

I just want to add the same trick with HTTP-Only cookies for session variables. All you need to fix the problem is to pass the cookie in the way described above. The name of cookie is ASP.NET_SessionId. You need to insert BeforeUpload event handler in your script and add the following:
Code:

function ImageUploader_BeforeUpload()
{
    getImageUploader("ImageUploader").AddCookie('ASP.NET_SessionId=
        <%= Request.Cookies["ASP.NET_SessionId"].Value %>;');
}


Hope it will help you.

Edited by user Sunday, May 24, 2009 1:24:15 PM(UTC)  | Reason: Not specified

Sincerely yours,
Dmitry Sevostyanov

UserPostedImage Follow Aurigma on Twitter!
dap5079  
#48 Posted : Friday, December 19, 2008 12:38:48 AM(UTC)
dap5079

Rank: Newbie

Groups: Member
Joined: 12/18/2008(UTC)
Posts: 3

Demitry,
Thanks for your reply. I have tried this per your original post, but still the call to the upload processing page by the Java applet is not sending the session cookie.

Here is code in the upload page:

<script type="text/javascript">
function ImageUploader_BeforeUpload()
{
getImageUploader("ImageUploader1").AddCookie('"ASP.NET_SessionId"=<%= Request.Cookies["ASP.NET_SessionId"].Value %>;');
}
</script>

<script type="text/javascript">
var iu = new ImageUploaderWriter("ImageUploader1", 550, 320);
.
.
iu.addParam("Action", "ImageUploadHandler.aspx")
.
.
iu.addEventListener("BeforeUpload", "ImageUploader_BeforeUpload");

Tracing the session ID value in this page gives me a value of:
5udtoa45sq5mt3nade2cpn45
But tracing it in the ImageUploadHandler.aspx page shows a value of:
4vnnnkeanu2extf50egpnl2e

Could it be a version problem?? Or do you see something I'm missing?

Thanks for your assistance.
dap5079  
#49 Posted : Friday, December 19, 2008 12:50:08 AM(UTC)
dap5079

Rank: Newbie

Groups: Member
Joined: 12/18/2008(UTC)
Posts: 3

I think I solved it... there may be double quotes around the cookie name in the code you posted that are not necessary. I re-wrote the cookie creation as:

function ImageUploader_BeforeUpload()
{
var cookievalue = '<%=Request.Cookies["ASP.NET_SessionId"].Value %>';
cookievalue = "ASP.NET_SessionId="+cookievalue;
getImageUploader("ImageUploader1").AddCookie(cookievalue);
}


And it works now. Couldn't have done it without your help! Thanks again!
hip  
#50 Posted : Monday, October 12, 2009 10:42:02 AM(UTC)
hip

Rank: Newbie

Groups: Member
Joined: 4/8/2008(UTC)
Posts: 8

How do you make this change work with the Cold Fusion application server on the server side? Cold Fusion Ver 8.
Tamila  
#51 Posted : Wednesday, October 14, 2009 8:23:00 PM(UTC)
Tamila

Rank: Advanced Member

Groups: Member
Joined: 3/9/2008(UTC)
Posts: 554

Was thanked: 1 time(s) in 1 post(s)
Hello,

For Cold Fusion you can use the following code:
Code:
<script type="text/javascript">
//<![CDATA[

<!--- Enable session scope --->
<cfapplication name="your_application_name" sessionmanagement="Yes" sessiontimeout=#CreateTimeSpan(0,0,45,0)#>

<!--- Get session token and session id. --->
<!--- More about session in coldfusion http://livedocs.adobe.com/coldfusion/6/Developing_ColdFusion_MX_Applications_with_CFML/sharedVars5.htm --->
<cflock timeout=20 scope="Session" type="Exclusive">
  <cfset cftoken=#Session.CFToken#>
  <cfset cfid=#Session.CFID#>
</cflock>
<!--- add cookies into the Image Uploader --->
<cfoutput>
function ImageUploader_BeforeUpload(){
  if (iu.getControlType() == "Java") {
    getImageUploader("ImageUploader1").AddCookie('CFToken=#cftoken#;CFID=#cfid#');
  }
}
</cfoutput>

//Create JavaScript object that will embed Image Uploader to the page.
var iu = new ImageUploaderWriter("ImageUploader1", 650, 400);

//Add event listener for BeforeUpload event
iu.addEventListener("BeforeUpload", "ImageUploader_BeforeUpload");

//Other parameters...

</script>


If you want to use Cookies instead of Sessions you should write this line:
Code:
<cfset cftoken=#Cookie.YOUR_COOKIE_NAME#>

instead of
Code:
<cfset cftoken=#Session.CFToken#>

Aurigma Support Team

UserPostedImage Follow Aurigma on Twitter!
hip  
#52 Posted : Monday, October 26, 2009 5:07:36 AM(UTC)
hip

Rank: Newbie

Groups: Member
Joined: 4/8/2008(UTC)
Posts: 8

Regarding that Cold Fusion example. Does ImageUploader just need a session token to manage sessions - and imageuploader does not care who generates the session token? I just want to understand what is going on as I try to implement this.

One more thing, is this now an issue with IE8 as well?
Tamila  
#53 Posted : Monday, October 26, 2009 7:10:55 PM(UTC)
Tamila

Rank: Advanced Member

Groups: Member
Joined: 3/9/2008(UTC)
Posts: 554

Was thanked: 1 time(s) in 1 post(s)
Hello,
Quote:
Does ImageUploader just need a session token to manage sessions - and image uploader does not care who generates the session token?

Yes, Image Uploader just needs a session token to manage sessions. Please note that you need to use AddCookie method for Image Uploader Java only. Image Uploader ActiveX edition can send appropriate cookie or session variables itself. So, if you use ActiveX control in IE you do not need to use the code above.

Edited by user Monday, October 26, 2009 7:12:30 PM(UTC)  | Reason: Not specified

Aurigma Support Team

UserPostedImage Follow Aurigma on Twitter!
hip  
#54 Posted : Wednesday, November 4, 2009 11:27:06 AM(UTC)
hip

Rank: Newbie

Groups: Member
Joined: 4/8/2008(UTC)
Posts: 8

Tamila, is this code needed for the ActiveX version 4.7.0.0 though? My guess is that it is. Please advise.
Tamila  
#55 Posted : Wednesday, November 4, 2009 7:18:13 PM(UTC)
Tamila

Rank: Advanced Member

Groups: Member
Joined: 3/9/2008(UTC)
Posts: 554

Was thanked: 1 time(s) in 1 post(s)
Hi,

Image Uploader ActiveX does not need this code. Moreover ActiveX has not AddCookie() method, this method is Java only. See the following articles:
Preserving Sessions and Authentication Tickets Passed in Cookies
ImageUploader.AddCookie Method

Aurigma Support Team

UserPostedImage Follow Aurigma on Twitter!
hip  
#56 Posted : Wednesday, November 11, 2009 8:19:00 PM(UTC)
hip

Rank: Newbie

Groups: Member
Joined: 4/8/2008(UTC)
Posts: 8

Tamika, I have added the code and verified that it is executing and that it is attaching the appropriate session tokens. Unfortunately, it still errors. Below please find the Java console as that may help you.

==== begin java console output====

Aurigma ImageUploader version: 2.7.0.0
Current document URL: http://www.pictours.com/...fm?section=upload_photos
Reading cookies
Cookies: __utma=224559131.1714996895.1174874957.1257431141.1257994264.189; __utmz=224559131.1251981463.172.6.utmccn=(referral)|utmcsr=hipidxdev.hipknowsysdev.com|utmcct=/property/detail.cfm|utmcmd=referral; CFGLOBALS=urltoken%3DCFID%23%3D252960%26CFTOKEN%23%3D32491723%23lastvisit%3D%7Bts%20%272009%2D11%2D11%2023%3A00%3A30%27%7D%23timecreated%3D%7Bts%20%272009%2D07%2D14%2010%3A35%3A16%27%7D%23hitcount%3D339%23cftoken%3D10038364%23cfid%3D18795%23; CFID=252960; CFTOKEN=32491723; __utmb=224559131; __utmc=224559131
Reading referer
Referer: http://www.pictours.com/...fm?section=upload_photos
Reading additional form content
Wrong element:<button><><Upload Selected Images>
Form element:<file><photo1_upload><>
Form element:<file><photo2_upload><>
Form element:<file><photo3_upload><>
Form element:<file><photo4_upload><>
Form element:<file><photo5_upload><>
Form element:<file><photo6_upload><>
Wrong element:<button><><>
Additional form processing done
Uploading to http://www.pictours.com/pro/upload.cfm
Setting HTTP params: Host=www.pictours.com
Cookies:[CFToken=32491723;CFID=252960]
Starting upload
Status =[200]
Nov 11, 2009 11:15:39 PM org.apache.commons.httpclient.HttpMethodBase getResponseBody
WARNING: Going to buffer response body of large or unknown size. Using getResponseBodyAsStream instead is recommended.
Upload complete. Result page:

EndOf Result page
Exception occured

Exception class: class netscape.javascript.JSException

No such method "__ImageUploader1_InnerComplete" on JavaScript object

netscape.javascript.JSException: No such method "__ImageUploader1_InnerComplete" on JavaScript object
at sun.plugin2.main.client.MessagePassingJSObject.newJSException(Unknown Source)
at sun.plugin2.main.client.MessagePassingJSObject.waitForReply(Unknown Source)
at sun.plugin2.main.client.MessagePassingJSObject.call(Unknown Source)
at com.aurigma.imageuploader.gw.a(Unknown Source)
at com.aurigma.imageuploader.fc.a(Unknown Source)
at com.aurigma.imageuploader.et.a(Unknown Source)
at com.aurigma.imageuploader.upload.h.a(Unknown Source)
at com.aurigma.imageuploader.upload.c.a(Unknown Source)
at com.aurigma.imageuploader.upload.c.b(Unknown Source)
at com.aurigma.imageuploader.upload.c.c(Unknown Source)
at com.aurigma.imageuploader.upload.c.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)

Tamila  
#57 Posted : Thursday, November 12, 2009 3:36:32 AM(UTC)
Tamila

Rank: Advanced Member

Groups: Member
Joined: 3/9/2008(UTC)
Posts: 554

Was thanked: 1 time(s) in 1 post(s)
Hi,

Could you please submit support case about this problem. In this case send us the link to the page where you experience problem with Image Uploader, also send the login information if necessary.
Aurigma Support Team

UserPostedImage Follow Aurigma on Twitter!
hip  
#58 Posted : Thursday, November 12, 2009 5:46:30 AM(UTC)
hip

Rank: Newbie

Groups: Member
Joined: 4/8/2008(UTC)
Posts: 8

Case CAS-3075 is already there.
I'll post the login information there.
maruthi  
#59 Posted : Friday, December 18, 2009 6:22:08 PM(UTC)
maruthi

Rank: Newbie

Groups: Member
Joined: 11/16/2009(UTC)
Posts: 3

Hello All,

I have integrated Image Uploader into the site and everything went well, however facing two main problems, one the client is facing problems rigorously....his environment is MAC OS and safari browser and he is not able to upload the images and getting the error as "Contact the administrator". and the other one is as our site is social networking site, users can upload large size of images, uploading is completing successfully as i am receiving "upload complete" message, but after that redirecting to the site is taking a long time and link is broking. can anyone please let me know any approach towards this..... As this is very urgent for me please let me know....

thanks,
Maruthi
Tamila  
#60 Posted : Sunday, December 20, 2009 1:46:46 PM(UTC)
Tamila

Rank: Advanced Member

Groups: Member
Joined: 3/9/2008(UTC)
Posts: 554

Was thanked: 1 time(s) in 1 post(s)
Hi Maruthi,

Could you please submit the case with detailed information about each of your problems.
Aurigma Support Team

UserPostedImage Follow Aurigma on Twitter!
Users browsing this topic
3 Pages<123
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.